From 5051bb098a27f9dae1baccb7c3a5ba48e4e6e112 Mon Sep 17 00:00:00 2001 From: Jakub Trzeciak Date: Wed, 20 Sep 2023 19:26:40 +0200 Subject: Gradient redesign --- .config/Xresources | 36 ------------------------------------ .config/foot/foot.ini | 27 --------------------------- README.md | 2 +- banner-small.png | Bin 336 -> 376 bytes banner.png | Bin 1294 -> 4315 bytes lux-theme.yaml | 24 ++++++++++++------------ makefile | 2 ++ 7 files changed, 15 insertions(+), 76 deletions(-) delete mode 100644 .config/Xresources delete mode 100644 .config/foot/foot.ini create mode 100644 makefile diff --git a/.config/Xresources b/.config/Xresources deleted file mode 100644 index 5f9d9ce..0000000 --- a/.config/Xresources +++ /dev/null @@ -1,36 +0,0 @@ -! special -*.foreground: #eceadd -*.background: #181921 -*.cursorColor: #eceadd - -! black -*.color0: #090618 -*.color8: #413e53 - -! red -*.color1: #e32929 -*.color9: #d94545 - -! green -*.color2: #bdcc27 -*.color10: #bac455 - -! yellow -*.color3: #ff920d -*.color11: #e59e46 - -! blue -*.color4: #1984db -*.color12: #5a9dd4 - -! magenta -*.color5: #af18db -*.color13: #ba5ac9 - -! cyan -*.color6: #55c8b9 -*.color14: #61b5aa - -! white -*.color7: #9ca7b2 -*.color15: #f1f1f1 diff --git a/.config/foot/foot.ini b/.config/foot/foot.ini deleted file mode 100644 index f3af0f7..0000000 --- a/.config/foot/foot.ini +++ /dev/null @@ -1,27 +0,0 @@ -[colors] -foreground = eceadd -background = 181921 - -selection-foreground = c8c093 -selection-background = 272836 - -regular0 = 090618 -regular1 = e32929 -regular2 = bdcc27 -regular3 = ff920d -regular4 = 1984db -regular5 = af18db -regular6 = 55c8b9 -regular7 = 9ca7b2 - -bright0 = 413e53 -bright1 = d94545 -bright2 = bac455 -bright3 = e59e46 -bright4 = 609aca -bright5 = ba5ac9 -bright6 = 61b5aa -bright7 = f1f1f1 - -16 = ffa066 -17 = ff5d62 diff --git a/README.md b/README.md index dc0831e..ffafadd 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![banner](banner.png) -## Goals +# Goals **Vibrant** and **clear** color scheme, which is hard to find. diff --git a/banner-small.png b/banner-small.png index 6d00e74..31bacea 100644 Binary files a/banner-small.png and b/banner-small.png differ diff --git a/banner.png b/banner.png index 49f83f2..c179a63 100644 Binary files a/banner.png and b/banner.png differ diff --git a/lux-theme.yaml b/lux-theme.yaml index 76c429d..1f70022 100644 --- a/lux-theme.yaml +++ b/lux-theme.yaml @@ -1,27 +1,27 @@ # Lux Scheme for the Base24 standard (https://github.com/tinted-theming/base24/blob/master/styling.md) scheme: "lux" author: "Jakub (jptrzy) Trzeciak (https://jptrzy.xyz)" -base00: "181921" # # ---- -base01: "292734" # 00 # --- -base02: "4A4750" # 08 # -- -base03: "6A686C" # # - -base04: "8B8889" # # + -base05: "ABA9A5" # # ++ -base06: "CCC9C1" # 07 # +++ -base07: "eceadd" # 15 # ++++ +base00: "181926" # # ---- +base01: "232434" # 00 # --- +base02: "383949" # 08 # -- +base03: "4a4d5c" # # - +base04: "9ca7b2" # # + +base05: "bcc2c3" # # ++ +base06: "eceadd" # 07 # +++ +base07: "f1f1f1" # 15 # ++++ base08: "e32929" # 01 # red base09: "ff920d" # # orange base0A: "bdcc27" # 03 # yellow -base0B: "3ff62f" # 02 # green +base0B: "11c842" # 02 # green base0C: "55c8b9" # 06 # aqua base0D: "1984db" # 04 # blue base0E: "af18db" # 05 # purple base0F: "9d4e0e" # # brown -base10: "eceadd" # # ----- -base11: "000000" # # ------ +base10: "202031" # # ----- +base11: "090618" # # ------ base12: "d94545" # 09 # bright red base13: "bdcc27" # 11 # bright yellow -base14: "34cc27" # 10 # bright green +base14: "50c76f" # 10 # bright green base15: "609aca" # 14 # bright aqua base16: "61b5aa" # 12 # bright blue base17: "ba5ac9" # 13 # bright purple diff --git a/makefile b/makefile new file mode 100644 index 0000000..1b3f083 --- /dev/null +++ b/makefile @@ -0,0 +1,2 @@ +scale: + ffmpeg -i banner-small.png -vf scale="iw*10:-1:flags=neighbor" banner.png -- cgit v1.2.3