diff options
| author | Raheman Vaiya <r.vaiya@gmail.com> | 2021-12-26 18:57:04 +0100 | 
|---|---|---|
| committer | Romain Gonçalves <me@rgoncalves.se> | 2024-05-12 21:20:50 +0200 | 
| commit | 5dceed2bfa9c57c9e230b86e3834f7cba89bb0d1 (patch) | |
| tree | f90baa6a48e28db70ef9e41bde7220a73efaf8f5 /config.def.h | |
| parent | 7ad409ac2e8d4e9f9cae5f6984f7121cae292b14 (diff) | |
| download | st-5dceed2bfa9c57c9e230b86e3834f7cba89bb0d1.tar.gz | |
Add support for OSC color sequences
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 8 | 
1 files changed, 5 insertions, 3 deletions
diff --git a/config.def.h b/config.def.h index e86bbb4..717b2f0 100644 --- a/config.def.h +++ b/config.def.h @@ -126,6 +126,8 @@ static const char *colorname[] = {  	/* more colors can be added after 255 to use with DefaultXX */  	"#cccccc",  	"#555555", +	"gray90", /* default foreground colour */ +	"black", /* default background colour */  }; @@ -133,9 +135,9 @@ static const char *colorname[] = {   * Default colors (colorname index)   * foreground, background, cursor, reverse cursor   */ -unsigned int defaultfg = 7; -unsigned int defaultbg = 0; -static unsigned int defaultcs = 256; +unsigned int defaultfg = 258; +unsigned int defaultbg = 259; +unsigned int defaultcs = 256;  static unsigned int defaultrcs = 257;  /*  |