Color theme fix + linux terminal implementation

This commit is contained in:
Wryn Wagner 2020-09-30 15:49:07 -06:00
parent 03b90fbdd9
commit 70cecac8d2
2 changed files with 49 additions and 1 deletions

View File

@ -15,7 +15,7 @@ color5 #cd00ff
color13 #8a41d5 color13 #8a41d5
color6 #cc4ccc color6 #cc4ccc
color14 #0da4cd color14 #0da4cd
color7 #bdbdbd color5 #555555
color15 #4c4c4c color15 #4c4c4c
selection_background #200010 selection_background #200010
selection_foreground #DD00DD selection_foreground #DD00DD

View File

@ -0,0 +1,48 @@
#!/bin/sh
background='22002a';
foreground='ffffff';
red='5fff00';
brightred='3a3a3a';
green='e17000';
brightgreen='dd9210';
yellow='ff7a48';
brightyellow='ff8200';
blue='ff0000';
brightblue='edb877';
magenta='ff4e4e';
brightmagenta='aa005c';
cyan='8a41d5';
brightcyan='cc00ff';
gray='0da4cd';
brightgray='acacac';
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