mirror of
https://github.com/vale981/dotfiles
synced 2025-03-05 17:41:42 -05:00
41 lines
692 B
Bash
41 lines
692 B
Bash
# Colort Palette
|
|
|
|
S_base3=#002b36
|
|
S_base2=#073642
|
|
S_base1=#586e75
|
|
S_base0=#657b83
|
|
S_base00=#839496
|
|
S_base01=#93a1a1
|
|
S_base02=#eee8d5
|
|
S_base03=#fdf6e3
|
|
|
|
S_yellow=#b58900
|
|
S_orange=#cb4b16
|
|
S_red=#dc322f
|
|
S_magenta=#d33682
|
|
S_violet=#6c71c4
|
|
S_blue=#268bd2
|
|
S_cyan=#2aa198
|
|
S_green=#859900
|
|
|
|
# Swap to Dark if you have to.
|
|
function setColors {
|
|
if [ $1 == "dark" ]; then
|
|
S_base03=#002b36
|
|
S_base02=#073642
|
|
S_base01=#586e75
|
|
S_base00=#657b83
|
|
S_base0=#839496
|
|
S_base1=#93a1a1
|
|
S_base2=#eee8d5
|
|
S_base3=#fdf6e3
|
|
fi
|
|
}
|
|
|
|
function generateGtk {
|
|
OOMOXCONF="/opt/oomox/colors/xresources/xresources"
|
|
|
|
# make the theme
|
|
# oomox-cli $OOMOXCONF
|
|
OOMOXTHEME="oomox-xresources"
|
|
}
|