aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md7
-rw-r--r--colors/colors.sh6
2 files changed, 10 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d451d96..a2ade0b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,13 @@
# CHANGELOG
Documentation on how the colors were determined in every version, along with the changes.
+## V3
+We use black as the background, and move old brblack into black.
+We then make brblack more of a gray.
+Since old brblack is 14% L, we double that to a 38% for the new brblack.
+This gives us a black of `#242424` and a brblack of `#616161`,
+with background being equivalent to `black`.
+
## V2
Tweak green to be more easily differentiable from yellow using HSV.
First, make it complimentary to yellow (hue of 132).
diff --git a/colors/colors.sh b/colors/colors.sh
index f3e03cc..b9f7c4e 100644
--- a/colors/colors.sh
+++ b/colors/colors.sh
@@ -1,8 +1,8 @@
theme=starlight
# define all of the colors in hex (rgb)
-black=0D0D0D
-brblack=242424
+black=242424
+brblack=616161
red=CF1745
brred=FF1A53
@@ -25,5 +25,5 @@ brcyan=1AFFC6
white=E6E6E6
brwhite=FFFFFF
-background=$brblack
+background=$black
foreground=$brwhite