diff options
| -rw-r--r-- | CHANGELOG.md | 6 | ||||
| -rw-r--r-- | colors/colors.sh | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 565dac3..d451d96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # CHANGELOG Documentation on how the colors were determined in every version, along with the changes. +## V2 +Tweak green to be more easily differentiable from yellow using HSV. +First, make it complimentary to yellow (hue of 132). +Regular version is set to a saturation of 60 and value of 80. +Bright version is set to a saturation and value of 90. + ## V1 Non black/white colors are picked mathematically using a six-tone model, then tweaked individually by HSL. On the baseline, the hue used to generate the six tones is 180, the saturation 80-100 (regular/bright) and lightness +/-5% (45-55, regular/bright). diff --git a/colors/colors.sh b/colors/colors.sh index 5267f87..f3e03cc 100644 --- a/colors/colors.sh +++ b/colors/colors.sh @@ -7,8 +7,8 @@ brblack=242424 red=CF1745 brred=FF1A53 -green=73C322 -brgreen=8CFF1A +green=3ECF5B +brgreen=17E640 yellow=CFCF17 bryellow=ECFF1A |
