csi: move 256-color table into the terminal struct

This commit is contained in:
Daniel Eklöf 2019-08-21 17:56:21 +02:00
parent 3efc30c6a1
commit d7aaeaedee
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
4 changed files with 30 additions and 27 deletions

View file

@ -287,12 +287,14 @@ struct terminal {
uint32_t bg;
uint32_t regular[8];
uint32_t bright[8];
uint32_t colors256[256];
double alpha;
uint32_t default_fg;
uint32_t default_bg;
uint32_t default_regular[8];
uint32_t default_bright[8];
uint32_t default_colors256[256];
} colors;
struct {