diff options
author | niliara-edu <nil.jimeno@estudiant.fjaverianas.com> | 2024-03-20 11:56:18 +0100 |
---|---|---|
committer | niliara-edu <nil.jimeno@estudiant.fjaverianas.com> | 2024-03-20 11:56:18 +0100 |
commit | 15663cf4d0666670ff1dffcac9d56aef87752c3f (patch) | |
tree | ef6de4c178d2d8ffaa257b5df2e040bccdd48df9 /st/themes |
a
Diffstat (limited to 'st/themes')
m--------- | st/themes/base16-st | 0 | ||||
-rw-r--r-- | st/themes/default.h | 35 | ||||
-rw-r--r-- | st/themes/wal-connect.h | 34 |
3 files changed, 69 insertions, 0 deletions
diff --git a/st/themes/base16-st b/st/themes/base16-st new file mode 160000 +Subproject b3d0d4fbdf86d9b3eda06f42a5bdf261b1f7d1d diff --git a/st/themes/default.h b/st/themes/default.h new file mode 100644 index 0000000..3f2ebf5 --- /dev/null +++ b/st/themes/default.h @@ -0,0 +1,35 @@ +static const char *colorname[] = { + /* 8 normal colors */ + "black", + "red3", + "green3", + "yellow3", + "blue2", + "magenta3", + "cyan3", + "gray90", + + /* 8 bright colors */ + "gray50", + "red", + "green", + "yellow", + "#5c5cff", + "magenta", + "cyan", + "white", + + [255] = 0, + + /* more colors can be added after 255 to use with DefaultXX */ + "#cccccc", + "#555555", + "gray90", /* default foreground colour */ + "black", /* default background colour */ +}; + + +unsigned int defaultfg = 258; +unsigned int defaultbg = 259; +unsigned int defaultcs = 256; +static unsigned int defaultrcs = 257; diff --git a/st/themes/wal-connect.h b/st/themes/wal-connect.h new file mode 100644 index 0000000..8bed6cb --- /dev/null +++ b/st/themes/wal-connect.h @@ -0,0 +1,34 @@ +const char *colorname[] = { + + /* 8 normal colors */ + [0] = "#000000", /* black */ + [1] = "#B76779", /* red */ + [2] = "#C16A7F", /* green */ + [3] = "#A9877A", /* yellow */ + [4] = "#BD7881", /* blue */ + [5] = "#D07289", /* magenta */ + [6] = "#BA9687", /* cyan */ + [7] = "#dcbdbd", /* white */ + + /* 8 bright colors */ + [8] = "#9a8484", /* black */ + [9] = "#B76779", /* red */ + [10] = "#C16A7F", /* green */ + [11] = "#A9877A", /* yellow */ + [12] = "#BD7881", /* blue */ + [13] = "#D07289", /* magenta */ + [14] = "#BA9687", /* cyan */ + [15] = "#dcbdbd", /* white */ + + /* special colors */ + [256] = "#000000", /* background */ + [257] = "#dcbdbd", /* foreground */ + [258] = "#dcbdbd", /* cursor */ +}; + +/* Default colors (colorname index) + * foreground, background, cursor */ + unsigned int defaultbg = 0; + unsigned int defaultfg = 257; + unsigned int defaultcs = 258; + unsigned int defaultrcs= 258; |