-
Notifications
You must be signed in to change notification settings - Fork 9
/
example.toml
executable file
·95 lines (81 loc) · 1.96 KB
/
example.toml
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# vim = set ft=toml:
# Default colors
# [colors.primary]
# background = '0x151718'
# foreground = '0xd6d6d6'
# Colors the cursor will use if `custom_cursor_colors` is true
# [colors.cursor]
# text = '0x151718'
# cursor = '0xd6d6d6'
# Normal colors
# [colors.normal]
# black = '0x151718'
# red = '0xcd3f45'
# green = '0x9fca56'
# yellow = '0xe6cd69'
# blue = '0x55b5db'
# magenta = '0xa074c4'
# cyan = '0x55dbbe'
# white = '0xd6d6d6'
# Bright colors
# [colors.bright]
# black = '0x41535b'
# red = '0xcd3f45'
# green = '0x9fca56'
# yellow = '0xe6cd69'
# blue = '0x55b5db'
# magenta = '0xa074c4'
# cyan = '0x55dbbe'
# white = '0xffffff'
# colors.indexed_colors = [
# { index = 16, color = '0xdb7b55' },
# { index = 17, color = '0x8a553f' },
# { index = 19, color = '0x282a2b' },
# { index = 19, color = '0x3b758c' },
# { index = 20, color = '0x43a5d5' },
# { index = 21, color = '0xeeeeee' }
# ]
# BEGIN WAL
[colors.primary]
background = '0x0e0400'
foreground = '0xf5e6c6'
[colors.cursor]
text = '0x0e0400'
cursor = '0xf5e6c6'
[colors.vi_mode_cursor]
text = '0x0e0400'
cursor = '0xf5e6c6'
[colors.search.matches]
foreground = '0x0e0400' # normal/black - color0
background = '0xf5e6c6' # bright/white - color15
[colors.search.focused_match]
foreground = 'CellBackground'
background = 'CellForeground'
[colors.line_indicator]
foreground = 'None'
background = 'None'
[colors.footer_bar]
foreground = '0xaba18a' # bright/black - color8
background = '0xf5e6c6' # normal/white - color7
[colors.selection]
text = 'CellBackground'
background = 'CellForeground'
[colors.normal]
black = '0x0e0400'
red = '0xBB6E37'
green = '0xAE8F38'
yellow = '0xC3913F'
blue = '0xDBAA4B'
magenta = '0xF7C95E'
cyan = '0xE3BB87'
white = '0xf5e6c6'
[colors.bright]
black = '0xaba18a'
red = '0xBB6E37'
green = '0xAE8F38'
yellow = '0xC3913F'
blue = '0xDBAA4B'
magenta = '0xF7C95E'
cyan = '0xE3BB87'
white = '0xf5e6c6'
# END WAL