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
38
39
40
41
42
43
44
45
46
47
48
|
return {
foreground = C.fg(),
background = C.bg(),
cursor_bg = C.fg(),
cursor_fg = C.bg(),
cursor_border = C.bg(),
selection_bg = C.bg.high,
selection_fg = C.fg(),
visual_bell = C.fg(),
ansi = {
C.bg.lowest,
C.red(),
C.green(),
C.yellow(),
C.blue(),
C.pink(),
C.cyan(),
C.fg(),
},
brights = {
C.bg.low,
C.red.bright,
C.green.bright,
C.yellow.bright,
C.blue.bright,
C.pink.bright,
C.cyan.bright,
C.fg.high,
},
tab_bar = {
background = C.bg(),
active_tab = {
bg_color = C.bg.high,
fg_color = C.fg(),
},
inactive_tab = {
bg_color = C.bg(),
fg_color = C.fg.low,
},
},
}
|