blob: 72e4f078c29d055750991bf31b9e5960ada1bd82 (
plain)
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
|
# Default colors
[colors.primary]
background = '#111111'
foreground = '#EEEEEE'
# Cursor colors
[colors.cursor]
text = '#EBEBEB'
cursor = '#1f97ea'
# Normal colors
[colors.normal]
black = '#0d0d0d'
red = '#FF301B'
green = '#0ec248'
yellow = '#FFC620'
blue = '#3966ad'
magenta = '#8763B8'
cyan = '#21DEEF'
white = '#EBEBEB'
# Bright colors
[colors.bright]
black = '#6D7070'
red = '#FF4352'
green = '#B8E466'
yellow = '#FFD750'
blue = '#1BA6FA'
magenta = '#A578EA'
cyan = '#73FBF1'
white = '#FEFEF8'
[window]
opacity = 1
# Vi mode
[[keyboard.bindings]]
key = "Space"
mods = "Control|Alt"
action = "ToggleViMode"
[colors.vi_mode_cursor]
cursor = '#FF0000'
text = '#111111'
[colors.selection]
text = '#111111'
background = '#931b1b'
|