summer colorschemes up

This commit is contained in:
Wryn Wagner 2021-06-28 13:09:37 -06:00
parent 2829e19899
commit 984f7f54d3
8 changed files with 51 additions and 54 deletions

View File

@ -0,0 +1,21 @@
background #050000
foreground #DDFFDD
cursor #A52000
selection_background #A52000
selection_foreground #000000
color0 #101313
color8 #3A4044
color1 #E60000
color9 #A61515
color2 #53AB00
color10 #5ED200
color3 #BCBA00
color11 #F0F674
color4 #2A8DAE
color12 #6187CF
color5 #AB0494
color13 #F04EC9
color6 #FF8800
color14 #D78E53
color7 #A0A9AA
color15 #787884

View File

@ -0,0 +1,28 @@
#!/bin/sh
GET_COLOR_FROM_KITTY_THEME() {
grep "$1" $DOTWRYN/config/kitty/theme.conf | awk '{print $2}' | sed 's/ //g; s/#//g' | tr '[:lower:]' '[:upper:]'
}
if [ "$TERM" = "linux" ]; then
/bin/echo -e "\
\e]P0$(GET_COLOR_FROM_KITTY_THEME '^background ')
\e]P1$(GET_COLOR_FROM_KITTY_THEME '^color1 ')
\e]P2$(GET_COLOR_FROM_KITTY_THEME '^color2 ')
\e]P3$(GET_COLOR_FROM_KITTY_THEME '^color3 ')
\e]P4$(GET_COLOR_FROM_KITTY_THEME '^color4 ')
\e]P5$(GET_COLOR_FROM_KITTY_THEME '^color5 ')
\e]P6$(GET_COLOR_FROM_KITTY_THEME '^color6 ')
\e]P7$(GET_COLOR_FROM_KITTY_THEME '^foreground ')
\e]P8$(GET_COLOR_FROM_KITTY_THEME '^color9 ')
\e]P9$(GET_COLOR_FROM_KITTY_THEME '^color10 ')
\e]PA$(GET_COLOR_FROM_KITTY_THEME '^color11 ')
\e]PB$(GET_COLOR_FROM_KITTY_THEME '^color12 ')
\e]PC$(GET_COLOR_FROM_KITTY_THEME '^color13 ')
\e]PD$(GET_COLOR_FROM_KITTY_THEME '^color14 ')
\e]PE$(GET_COLOR_FROM_KITTY_THEME '^color7 ')
\e]PF$(GET_COLOR_FROM_KITTY_THEME '^color15 ')
"
clear;
fi

View File

@ -1,52 +0,0 @@
#!/bin/sh
##############################
foreground='5CBC84'
background='051000'
red='AAAA00'
brightred='FFFF00'
green='FFFF00'
brightgreen='AAAA00'
yellow='78FF00'
brightyellow='008B20'
blue='00FF88'
brightblue='BFEA83'
magenta='00A000'
brightmagenta='005000'
cyan='07FF4F'
brightcyan='648800'
gray='00FF00'
brightgray='00AA00'
##############################
if [ "$TERM" = "linux" ]; then
/bin/echo -e "
\e]P0$background
\e]P1$red
\e]P2$green
\e]P3$yellow
\e]P4$blue
\e]P5$magenta
\e]P6$cyan
\e]P7$foreground
\e]P8$brightred
\e]P9$brightgreen
\e]PA$brightyellow
\e]PB$brightblue
\e]PC$brightmagenta
\e]PD$brightcyan
\e]PE$gray
\e]PF$brightgray
"
clear;
fi

View File

@ -1 +1 @@
/home/w0ryn/.wryn/config/colorschemes/kitty/WrynWinter.conf /home/w0ryn/.wryn/config/colorschemes/kitty/WrynAutumn.conf

View File

@ -1 +1 @@
/home/w0ryn/.wryn/config/colorschemes/kitty/WrynSpring.conf /home/w0ryn/.wryn/config/colorschemes/kitty/WrynSummer.conf