chore: Added theme change script to raycast and fix a bunch of theme related stuff
This commit is contained in:
parent
52c8d9ccd9
commit
a7a9cd1848
27 changed files with 442 additions and 490 deletions
|
@ -1,6 +1,4 @@
|
|||
import = [
|
||||
"~/.config/alacritty/catppuccin-latte.toml"
|
||||
]
|
||||
import = ["~/.config/alacritty/themes/gruvbox_material_dark.toml"]
|
||||
|
||||
[env]
|
||||
TERM = "xterm-256color"
|
||||
|
@ -10,7 +8,7 @@ size = 14.0
|
|||
|
||||
[font.normal]
|
||||
family = "FiraCode Nerd Font Mono"
|
||||
style = "Light"
|
||||
style = "Retina"
|
||||
|
||||
[window]
|
||||
opacity = 0.95
|
||||
|
|
75
.config/alacritty/themes/catppuccin_latte.toml
Normal file
75
.config/alacritty/themes/catppuccin_latte.toml
Normal file
|
@ -0,0 +1,75 @@
|
|||
[colors.primary]
|
||||
background = "#EFF1F5"
|
||||
foreground = "#4C4F69"
|
||||
dim_foreground = "#4C4F69"
|
||||
bright_foreground = "#4C4F69"
|
||||
|
||||
[colors.cursor]
|
||||
text = "#EFF1F5"
|
||||
cursor = "#DC8A78"
|
||||
|
||||
[colors.vi_mode_cursor]
|
||||
text = "#EFF1F5"
|
||||
cursor = "#7287FD"
|
||||
|
||||
[colors.search.matches]
|
||||
foreground = "#EFF1F5"
|
||||
background = "#6C6F85"
|
||||
|
||||
[colors.search.focused_match]
|
||||
foreground = "#EFF1F5"
|
||||
background = "#40A02B"
|
||||
|
||||
[colors.footer_bar]
|
||||
foreground = "#EFF1F5"
|
||||
background = "#6C6F85"
|
||||
|
||||
[colors.hints.start]
|
||||
foreground = "#EFF1F5"
|
||||
background = "#DF8E1D"
|
||||
|
||||
[colors.hints.end]
|
||||
foreground = "#EFF1F5"
|
||||
background = "#6C6F85"
|
||||
|
||||
[colors.selection]
|
||||
text = "#EFF1F5"
|
||||
background = "#DC8A78"
|
||||
|
||||
[colors.normal]
|
||||
black = "#5C5F77"
|
||||
red = "#D20F39"
|
||||
green = "#40A02B"
|
||||
yellow = "#DF8E1D"
|
||||
blue = "#1E66F5"
|
||||
magenta = "#EA76CB"
|
||||
cyan = "#179299"
|
||||
white = "#ACB0BE"
|
||||
|
||||
[colors.bright]
|
||||
black = "#6C6F85"
|
||||
red = "#D20F39"
|
||||
green = "#40A02B"
|
||||
yellow = "#DF8E1D"
|
||||
blue = "#1E66F5"
|
||||
magenta = "#EA76CB"
|
||||
cyan = "#179299"
|
||||
white = "#BCC0CC"
|
||||
|
||||
[colors.dim]
|
||||
black = "#5C5F77"
|
||||
red = "#D20F39"
|
||||
green = "#40A02B"
|
||||
yellow = "#DF8E1D"
|
||||
blue = "#1E66F5"
|
||||
magenta = "#EA76CB"
|
||||
cyan = "#179299"
|
||||
white = "#ACB0BE"
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 16
|
||||
color = "#FE640B"
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 17
|
||||
color = "#DC8A78"
|
28
.config/alacritty/themes/gruvbox_material_dark.toml
Normal file
28
.config/alacritty/themes/gruvbox_material_dark.toml
Normal file
|
@ -0,0 +1,28 @@
|
|||
# Colors (Gruvbox Material Medium Dark)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#282828'
|
||||
foreground = '#d4be98'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#3c3836'
|
||||
red = '#ea6962'
|
||||
green = '#a9b665'
|
||||
yellow = '#d8a657'
|
||||
blue = '#7daea3'
|
||||
magenta = '#d3869b'
|
||||
cyan = '#89b482'
|
||||
white = '#d4be98'
|
||||
|
||||
# Bright colors (same as normal colors)
|
||||
[colors.bright]
|
||||
black = '#3c3836'
|
||||
red = '#ea6962'
|
||||
green = '#a9b665'
|
||||
yellow = '#d8a657'
|
||||
blue = '#7daea3'
|
||||
magenta = '#d3869b'
|
||||
cyan = '#89b482'
|
||||
white = '#d4be98'
|
28
.config/alacritty/themes/gruvbox_material_light.toml
Normal file
28
.config/alacritty/themes/gruvbox_material_light.toml
Normal file
|
@ -0,0 +1,28 @@
|
|||
# Colors (Gruvbox Material Medium Light)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#fbf1c7'
|
||||
foreground = '#654735'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#654735'
|
||||
red = '#c14a4a'
|
||||
green = '#6c782e'
|
||||
yellow = '#b47109'
|
||||
blue = '#45707a'
|
||||
magenta = '#945e80'
|
||||
cyan = '#4c7a5d'
|
||||
white = '#eee0b7'
|
||||
|
||||
# Bright colors (same as normal colors)
|
||||
[colors.bright]
|
||||
black = '#654735'
|
||||
red = '#c14a4a'
|
||||
green = '#6c782e'
|
||||
yellow = '#b47109'
|
||||
blue = '#45707a'
|
||||
magenta = '#945e80'
|
||||
cyan = '#4c7a5d'
|
||||
white = '#eee0b7'
|
Loading…
Add table
Add a link
Reference in a new issue