Update themes

This commit is contained in:
Daniel Lynn 2023-04-11 02:34:13 -05:00
parent afa28983e1
commit b1fb865ab0
Signed by: daniel
GPG Key ID: 655C07B9B3DDC88B
23 changed files with 369 additions and 21 deletions

6
.gitmodules vendored Normal file
View File

@ -0,0 +1,6 @@
[submodule "alacritty/themes"]
path = alacritty/themes
url = git@github.com:alacritty/alacritty-theme
[submodule "alacritty-theme"]
path = alacritty-theme
url = git@github.com:alacritty/alacritty-theme

1
alacritty-theme Submodule

@ -0,0 +1 @@
Subproject commit 981f48c9e4de2c0b657ed23a8ca425d8bf6ae0c7

View File

@ -183,7 +183,7 @@ font:
# Theme import (sets colors key)
import:
- ~/.config/alacritty/themes/{{alacritty_theme}}.yml
- ~/.config/alacritty/themes/{{alacritty_theme}}.yaml
# Colors (Tomorrow Night)
#colors:

View File

@ -22,6 +22,7 @@ vars = [ "dark.toml" ]
# alacritty
alacritty = { source = "alacritty", target = ".config/alacritty" }
alacritty_themes = { source = "alacritty-theme/themes", target = ".config/alacritty/themes" }
# broot
broot = { source = "broot", target = ".config/broot" }
@ -44,10 +45,6 @@ mimeapps = { source = "mimeapps.list", target = ".config/mimeapps.list" }
# navi
navi = { source = "navi", target = ".config/navi" }
# tmux
tmux = { source = "tmux", target = ".config/tmux" }
tmux_conf = { source = "tmux.conf", target = ".tmux.conf" }
# zellij
zellij = { source = "zellij", target = ".config/zellij" }

View File

@ -206,21 +206,21 @@ plugins {
// For more examples, see: https://github.com/zellij-org/zellij/tree/main/example/themes
// Once these themes are defined, one of them should to be selected in the "theme" section of this file
//
// themes {
// dracula {
// fg 248 248 242
// bg 40 42 54
// red 255 85 85
// green 80 250 123
// yellow 241 250 140
// blue 98 114 164
// magenta 255 121 198
// orange 255 184 108
// cyan 139 233 253
// black 0 0 0
// white 255 255 255
// }
// }
themes {
dracula {
fg 248 248 242
bg 40 42 54
red 255 85 85
green 80 250 123
yellow 241 250 140
blue 98 114 164
magenta 255 121 198
orange 255 184 108
cyan 139 233 253
black 0 0 0
white 255 255 255
}
}
themes {
bogster-dark {
@ -243,7 +243,7 @@ themes {
//
// theme "default"
theme "bogster-dark"
theme "{{zellij_theme}}"
// The name of the default layout to load on startup
// Default: "default"

19
zellij/themes/README.md Normal file
View File

@ -0,0 +1,19 @@
# Themes
Themes can contain different flavors in one file, or can be created as individual files.
Example:
```
gruvbox.kdl
├─ gruvbox-light
└─ gruvbox-dark
or
gruvbox-light.kdl
└─ gruvbox-light
gruvbox-dark.kdl
└─ gruvbox-dark
```

View File

@ -0,0 +1,60 @@
// Catppuccin Theme:
// https://github.com/catppuccin/catppuccin
themes {
catppuccin-latte {
bg "#acb0be" // Surface2
fg "#acb0be" // Surface2
red "#d20f39"
green "#40a02b"
blue "#1e66f5"
yellow "#df8e1d"
magenta "#ea76cb" // Pink
orange "#fe640b" // Peach
cyan "#04a5e5" // Sky
black "#dce0e8" // Crust
white "#4c4f69" // Text
}
catppuccin-frappe {
bg "#626880" // Surface2
fg "#c6d0f5"
red "#e78284"
green "#a6d189"
blue "#8caaee"
yellow "#e5c890"
magenta "#f4b8e4" // Pink
orange "#ef9f76" // Peach
cyan "#99d1db" // Sky
black "#292c3c" // Mantle
white "#c6d0f5"
}
catppuccin-macchiato {
bg "#5b6078" // Surface2
fg "#cad3f5"
red "#ed8796"
green "#a6da95"
blue "#8aadf4"
yellow "#eed49f"
magenta "#f5bde6" // Pink
orange "#f5a97f" // Peach
cyan "#91d7e3" // Sky
black "#1e2030" // Mantle
white "#cad3f5"
}
catppuccin-mocha {
bg "#585b70" // Surface2
fg "#cdd6f4"
red "#f38ba8"
green "#a6e3a1"
blue "#89b4fa"
yellow "#f9e2af"
magenta "#f5c2e7" // Pink
orange "#fab387" // Peach
cyan "#89dceb" // Sky
black "#181825" // Mantle
white "#cdd6f4"
}
}

17
zellij/themes/dracula.kdl Normal file
View File

@ -0,0 +1,17 @@
// From https://github.com/dracula/zellij
themes {
dracula {
fg 248 248 242
bg 40 42 54
black 0 0 0
red 255 85 85
green 80 250 123
yellow 241 250 140
blue 98 114 164
magenta 255 121 198
cyan 139 233 253
white 255 255 255
orange 255 184 108
}
}

View File

@ -0,0 +1,15 @@
themes {
everforest-dark {
bg "#2b3339"
fg "#d3c6aa"
black "#4b565c"
red "#e67e80"
green "#a7c080"
yellow "#dbbc7f"
blue "#7fbbb3"
magenta "#d699b6"
cyan "#83c092"
white "#d3c6aa"
orange "#FF9E64"
}
}

View File

@ -0,0 +1,15 @@
themes {
everforest-light {
bg "#fff9e8"
fg "#5c6a72"
black "#5c6a72"
red "#f85552"
green "#8da101"
yellow "#dfa000"
blue "#3a94c5"
magenta "#df69ba"
cyan "#35a77c"
white "#dfddc8"
orange "#FF9E64"
}
}

29
zellij/themes/gruvbox.kdl Normal file
View File

@ -0,0 +1,29 @@
themes {
gruvbox-light {
fg 60 56 54
bg 251 82 75
black 40 40 40
red 205 75 69
green 152 151 26
yellow 215 153 33
blue 69 133 136
magenta 177 98 134
cyan 104 157 106
white 213 196 161
orange 214 93 14
}
gruvbox-dark {
fg 213 196 161
bg 40 40 40
black 60 56 54
red 204 36 29
green 152 151 26
yellow 215 153 33
blue 69 133 136
magenta 177 98 134
cyan 104 157 106
white 251 241 199
orange 214 93 14
}
}

View File

@ -0,0 +1,15 @@
themes {
kanagawa {
fg "#DCD7BA"
bg "#1F1F28"
red "#C34043"
green "#76946A"
yellow "#FF9E3B"
blue "#7E9CD8"
magenta "#957FB8"
orange "#FFA066"
cyan "#7FB4CA"
black "#16161D"
white "#DCD7BA"
}
}

17
zellij/themes/menace.kdl Normal file
View File

@ -0,0 +1,17 @@
// orange-green-blue
themes {
menace {
fg "#e3a555"
bg 40 42 54
red "#f74c17"
green 80 250 123
yellow 241 250 140
blue 98 114 164
magenta 255 121 198
orange 255 184 108
cyan 139 233 253
black "#04399d"
white 255 255 255
}
}

View File

@ -0,0 +1,16 @@
themes {
molokai-dark {
fg 248 248 240
bg 27 29 30
black 0 0 0
red 255 0 0
green 0 140 0
yellow 255 255 0
blue 102 217 239
magenta 174 129 255
cyan 0 255 255
white 255 255 255
orange 253 151 31
}
}

15
zellij/themes/nord.kdl Normal file
View File

@ -0,0 +1,15 @@
themes {
nord {
fg 216 222 233 // #D8DEE9
bg 46 52 64 // #2E3440
black 59 66 82 // #3B4252
red 191 97 106 // #BF616A
green 163 190 140 // #A3BE8C
yellow 235 203 139 // #EBCB8B
blue 129 161 193 // #81A1C1
magenta 180 142 173 // #B48EAD
cyan 136 192 208 // #88C0D0
white 229 233 240 // #E5E9F0
orange 208 135 112 // #D08770
}
}

View File

@ -0,0 +1,16 @@
themes {
one-half-dark {
fg 220 223 228
bg 40 44 52
black 27 29 35
red 227 63 76
green 152 195 121
yellow 229 192 123
blue 97 175 239
magenta 198 120 221
cyan 86 182 194
white 233 225 254
orange 216 133 76
}
}

15
zellij/themes/pencil.kdl Normal file
View File

@ -0,0 +1,15 @@
themes {
pencil-light {
fg "#005F87"
bg "#f1f1f1"
black "#f1f1f1"
red "#B6D6FD"
green "#10A778"
yellow "#A89C14"
blue "#008EC4"
magenta "#B6D6FD"
cyan "#20A5BA"
white "#424242"
orange "#D75F5F"
}
}

View File

@ -0,0 +1,16 @@
themes {
solarized-dark {
fg 253 246 227
bg 0 43 54
black 7 54 66
red 220 50 47
green 133 153 0
yellow 181 137 0
blue 38 139 210
magenta 211 54 130
cyan 42 161 152
white 238 232 213
orange 203 75 22
}
}

View File

@ -0,0 +1,16 @@
themes {
solarized-light {
fg 101 123 131
bg 253 246 227
black 7 54 66
red 220 50 47
green 133 153 0
yellow 181 137 0
blue 38 139 210
magenta 211 54 130
cyan 42 161 152
white 238 232 213
orange 203 75 22
}
}

View File

@ -0,0 +1,15 @@
themes {
tokyo-night-dark {
fg 169 177 214
bg 26 27 38
black 56 62 90
red 249 51 87
green 158 206 106
yellow 224 175 104
blue 122 162 247
magenta 187 154 247
cyan 42 195 222
white 192 202 245
orange 255 158 100
}
}

View File

@ -0,0 +1,16 @@
themes {
tokyo-night-light {
fg 52 59 88
bg 213 214 219
black 15 15 20
red 186 75 96
green 72 94 48
yellow 143 94 21
blue 52 84 138
magenta 90 74 120
cyan 15 75 110
white 130 137 172
orange 150 80 39
}
}

View File

@ -0,0 +1,16 @@
themes {
tokyo-night-storm {
fg 169 177 214
bg 36 40 59
black 56 62 90
red 249 51 87
green 158 206 106
yellow 224 175 104
blue 122 162 247
magenta 187 154 247
cyan 42 195 222
white 192 202 245
orange 255 158 100
}
}

View File

@ -0,0 +1,16 @@
themes {
tokyo-night {
fg 169 177 214
bg 26 27 38
black 56 62 90
red 249 51 87
green 158 206 106
yellow 224 175 104
blue 122 162 247
magenta 187 154 247
cyan 42 195 222
white 192 202 245
orange 255 158 100
}
}