Skip to content

Commit

Permalink
update highlight groups and add new colors
Browse files Browse the repository at this point in the history
  • Loading branch information
zootedb0t committed Nov 6, 2023
1 parent e62a976 commit cc46971
Show file tree
Hide file tree
Showing 9 changed files with 147 additions and 136 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,22 +124,23 @@ lualine.setup {

| Color | Value | Background |
| -------------- | --------- | -------------------------------------------------------- |
| Background | `#232323` | ![background](https://place-hold.it/32/232323?text=+) |
| Background | `#121212` | ![background](https://place-hold.it/32/121212?text=+) |
| Foreground | `#BFBFBF` | ![foreground](https://place-hold.it/32/BFBFBF?text=+) |
| Visual | `#404040` | ![cursor](https://place-hold.it/32/404040?text=+) |
| Cursor | `#666666` | ![cursor](https://place-hold.it/32/666666?text=+) |
| Cursor | `#383838` | ![cursor](https://place-hold.it/32/666666?text=+) |
| Black | `#232323` | ![black](https://place-hold.it/32/232323?text=+) |
| Red | `#FF5454` | ![red](https://place-hold.it/32/FF5454?text=+) |
| Green | `#00CC7A` | ![green](https://place-hold.it/32/00CC7A?text=+) |
| Yellow | `#FFD400` | ![Yellow](https://place-hold.it/32/F0D50C?text=+) |
| Orange | `#FF8C00` | ![Orange](https://place-hold.it/32/FF8C00?text=+) |
| Yellow | `#FFD700` | ![Yellow](https://place-hold.it/32/F0D50C?text=+) |
| Orange | `#FF7431` | ![Orange](https://place-hold.it/32/FF8C00?text=+) |
| Blue | `#00BFFF` | ![purple](https://place-hold.it/32/00BFFF?text=+) |
| Cyan | `#48D1CC` | ![Cyan](https://place-hold.it/32/48D1CC?text=+) |
| White | `#BFBFBF` | ![white](https://place-hold.it/32/BFBFBF?text=+) |
| Black(Bright) | `#808080` | ![bright_black](https://place-hold.it/32/808080?text=+) |
| Black(Bright) | `#767C77` | ![bright_black](https://place-hold.it/32/808080?text=+) |
| Red(Bright) | `#FF1A75` | ![bright_red](https://place-hold.it/32/FF1A75?text=+) |
| Green(Bright) | `#1AFFA3` | ![bright_green](https://place-hold.it/32/1AFFA3?text=+) |
| Yellow(Bright) | `#FFFF00` | ![bright_yellow](https://place-hold.it/32/FFFF00?text=+) |
| Orange(Bright) | `#FF9633` | ![bright_orange](https://place-hold.it/32/FF9633?text=+) |
| Orange(Bright) | `#FFAA54` | ![bright_orange](https://place-hold.it/32/FF9633?text=+) |
| Blue(Bright) | `#28C9FF` | ![bright_purple](https://place-hold.it/32/33CFFF?text=+) |
| Cyan(Bright) | `#09FFF2` | ![bright_cyan](https://place-hold.it/32/00FFF2?text=+) |
| White(Bright) | `#F9F9F9` | ![bright_cyan](https://place-hold.it/32/F9F9F9?text=+) |
Expand Down
8 changes: 4 additions & 4 deletions extra/foot-terminal
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@
color=121212 BFBFBF

[colors]
background=232323
background=121212
foreground=BFBFBF
regular0=121212
regular1=FF5454
regular2=00CC7A
regular3=FFD700
regular4=FF8C00
regular4=FF7431
regular5=00BFFF
regular6=48D1CC
regular7=BFBFBF
bright0=808080
bright0=767C77
bright1=FF1A75
bright2=1AFFA3
bright3=FFFF00
bright4=FF9633
bright4=FFAA54
bright5=28C9FF
bright6=09FFF2
bright7=F9F9F9
Expand Down
12 changes: 6 additions & 6 deletions extra/kitty-theme.conf
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
background #232323
background #121212
foreground #BFBFBF
cursor #666666
color0 #121212
color0 #232323
color1 #FF5454
color2 #00CC7A
color3 #FFD400
color4 #FF8C00
color3 #FFD700
color4 #FF7431
color5 #00BFFF
color6 #48D1CC
color7 #BFBFBF
color8 #808080
color8 #767C77
color9 #FF1A75
color10 #1AFFA3
color11 #FFFF00
color12 #FF9633
color12 #FFAA54
color13 #28C9FF
color14 #09FFF2
color15 #F9F9F9
Expand Down
10 changes: 5 additions & 5 deletions extra/xresources
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
*.background: #232323
*.background: #121212
*.foreground: #BFBFBF

*.color0: #121212
*.color8: #808080
*.color0: #232323
*.color8: #767C77

*.color1: #FF5454
*.color9: #FF1A75
Expand All @@ -13,8 +13,8 @@
*.color3: #FFD700
*.color11: #FFFF00

*.color4: #FF8C00
*.color12: #FF9633
*.color4: #FF7431
*.color12: #FFAA54

*.color5: #00BFFF
*.color13: #28C9FF
Expand Down
217 changes: 111 additions & 106 deletions lua/citruszest/highlights/init.lua

Large diffs are not rendered by default.

17 changes: 11 additions & 6 deletions lua/citruszest/palettes/colors.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-- Citruszest color palette
local colors = {
background = "#232323",
background = "#121212",
foreground = "#BFBFBF",
visual = "#404040",
cursor = "#383838",
Expand All @@ -10,19 +10,24 @@ local colors = {
red = "#FF5454",
green = "#00CC7A",
yellow = "#FFD700",
orange = "#FF8C00",
orange = "#FF7431",
blue = "#00BFFF",
cyan = "#48D1CC",
turquoise_medium = "#48D1CC",
white = "#BFBFBF",

bright_black = "#808080",
bright_black = "#767C77",
bright_red = "#FF1A75",
bright_green = "#1AFFA3",
bright_yellow = "#FFFF00",
bright_orange = "#FF9633",
bright_orange = "#FFAA54",
bright_blue = "#28C9FF",
bright_cyan = "#09FFF2",
turquoise_blue = "#09FFF2",
bright_white = "#F9F9F9",

-- Extra
baby_blue = "#9ADCFF",
lemon_yellow = "#FFF2B3",
aurora = "#B2F3AC",
}

return colors
4 changes: 2 additions & 2 deletions lua/lualine/themes/citruszest.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ local colors = {
red = "#FF5454",
green = "#00CC7A",
yellow = "#FFD700",
orange = "#FF8C00",
orange = "#FF7431",
blue = "#00BFFF",
cyan = "#09fff2",
cyan = "#48D1CC",
white = "#BFBFBF",
}

Expand Down
Binary file modified misc/citruszest-palette.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion misc/color-palette.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh

convert -size 100x200 xc:"#232323" xc:"#ff5454" xc:"#00CC7A" xc:"#FFD400" xc:"#FF8C00" xc:"#00BFFF" xc:"#48D1CC" xc:"#BFBFBF" xc:"#808080" xc:"#FF1A75" xc:"#1AFFA3" xc:"#FFFF00" xc:"#FF9633" xc:"#28C9FF" xc:"#09FFF2" xc:"#F9F9F9" +append citruszest-palette.png
convert -size 100x200 xc:"#232323" xc:"#FF5454" xc:"#00CC7A" xc:"#FFD700" xc:"#FF7431" xc:"#00BFFF" xc:"#48D1CC" xc:"#BFBFBF" xc:"#767C77" xc:"#FF1A75" xc:"#1AFFA3" xc:"#FFFF00" xc:"#FFAA54" xc:"#28C9FF" xc:"#09FFF2" xc:"#F9F9F9" +append citruszest-palette.png

0 comments on commit cc46971

Please sign in to comment.