From a5d743017b0ec2afc7168f3dc84add20d4035e6e Mon Sep 17 00:00:00 2001
From: s-hadinger <49731213+s-hadinger@users.noreply.github.com>
Date: Sat, 16 Dec 2023 22:08:26 +0100
Subject: [PATCH] Final palettes
---
docs/Berry_Addressable-LED.md | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/docs/Berry_Addressable-LED.md b/docs/Berry_Addressable-LED.md
index 7fd6a186bd..fdba774b23 100644
--- a/docs/Berry_Addressable-LED.md
+++ b/docs/Berry_Addressable-LED.md
@@ -153,9 +153,9 @@ set_bri|`set_bri(bri:0..100) -> nil` sets the brightness for the color, defaults
Palette|Description
:---|:---
`animate.PALETTE_RAINBOW_WHITE`|Cycle through 8 colors (including white) and keep colors steady
-`animate.PALETTE_STANDARD_TAG`|Standard palette cycling through 7 colors
-`animate.PALETTE_STANDARD_VAL`|Same palette described as values
-`animate.PALETTE_SATURATED_TAG`|Cycle through 7 saturated colors
+`animate.PALETTE_STANDARD_TAG`|Standard palette cycling through 7 colors
+`animate.PALETTE_STANDARD_VAL`|Cycle through 6 colors as values
+`animate.PALETTE_SATURATED_TAG`|Cycle through 6 saturated colors
Palettes can be specified as a `bytes()` object of via `comptr` if they are solidified in Flash.
@@ -172,7 +172,7 @@ This format makes it easier to adjust the transition time between colors
Example:
```berry
-var PALETTE_SATURATED_TAG = bytes(
+var PALETTE_TAG = bytes(
"40" "FF0000" # red
"40" "FFA500" # orange
"40" "FFFF00" # yellow
@@ -196,7 +196,7 @@ This format is useful to use palettes that represent a color range.
Example:
```berry
-var PALETTE_STANDARD_VAL = bytes(
+var PALETTE_VAL = bytes(
"00" "FF0000" # red
"24" "FFA500" # orange
"49" "FFFF00" # yellow