-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlight.h
More file actions
37 lines (34 loc) · 1.27 KB
/
light.h
File metadata and controls
37 lines (34 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
* themes/light.h - Light theme (mono default)
* White background, black text. Works on all systems.
*/
static const TerminalTheme theme_light = {
"Light", /* name */
0, /* is_color */
0, /* is_dark */
/* ANSI palette (standard xterm, cube-snapped) */
{
{ 0x00, 0x00, 0x00 }, /* 0: black */
{ 0xCC, 0x00, 0x00 }, /* 1: red */
{ 0x00, 0xCC, 0x00 }, /* 2: green */
{ 0xCC, 0xCC, 0x00 }, /* 3: yellow */
{ 0x00, 0x00, 0xCC }, /* 4: blue */
{ 0xCC, 0x00, 0xCC }, /* 5: magenta */
{ 0x00, 0xCC, 0xCC }, /* 6: cyan */
{ 0xCC, 0xCC, 0xCC }, /* 7: white */
{ 0x66, 0x66, 0x66 }, /* 8: bright black */
{ 0xFF, 0x33, 0x33 }, /* 9: bright red */
{ 0x33, 0xFF, 0x33 }, /* 10: bright green */
{ 0xFF, 0xFF, 0x33 }, /* 11: bright yellow */
{ 0x33, 0x33, 0xFF }, /* 12: bright blue */
{ 0xFF, 0x33, 0xFF }, /* 13: bright magenta */
{ 0x33, 0xFF, 0xFF }, /* 14: bright cyan */
{ 0xFF, 0xFF, 0xFF }, /* 15: bright white */
},
{ 0x00, 0x00, 0x00 }, /* default_fg: black */
{ 0xFF, 0xFF, 0xFF }, /* default_bg: white */
{ 0x00, 0x00, 0x00 }, /* cursor_color: black */
{ 0x33, 0x66, 0xCC }, /* sel_bg: blue */
{ 0xFF, 0xFF, 0xFF }, /* sel_fg: white */
{ 0x00, 0x00, 0x00 }, /* bold_color: unused */
};