diff options
Diffstat (limited to 'st/config.def.h')
-rwxr-xr-x | st/config.def.h | 70 |
1 files changed, 36 insertions, 34 deletions
diff --git a/st/config.def.h b/st/config.def.h index fc87e29..f86d587 100755 --- a/st/config.def.h +++ b/st/config.def.h @@ -1,4 +1,5 @@ /* See LICENSE file for copyright and license details. */ +#include "themes/default.h" /* * appearance @@ -94,48 +95,49 @@ char *termname = "st-256color"; unsigned int tabspaces = 8; /* bg opacity */ -float alpha = 0.85; +float alpha = 0.9; /* Terminal colors (16 first used in escape sequence) */ -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 */ -}; + +//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 */ +//}; /* * Default colors (colorname index) * foreground, background, cursor, reverse cursor */ -unsigned int defaultfg = 258; -unsigned int defaultbg = 259; -unsigned int defaultcs = 256; -static unsigned int defaultrcs = 257; +//unsigned int defaultfg = 258; +//unsigned int defaultbg = 259; +//unsigned int defaultcs = 256; +//static unsigned int defaultrcs = 257; /* * Default shape of cursor |