blob: 7db43ce5c054c64a57fb3b2863efcbdbed02b764 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# vim: filetype=yaml
---
meta:
description: 'Slate theme by Jody Ribton <jody@ribton.me>'
colors:
# focused
slate: '#586e75' # main color
cream: '#fdf6e3' # focused text color
sky_blue: '#268bd2' # focused indicator color
# inactive and unfocused
dark_teal: '#073642' # inactive windoww border
darker_teal: '#002b36' # unfocused window border
white_teal: '#93a1a1' # inactive text
grey: '#aea79f' # statusline
# urgent
red: '#dc322f' # urgent window border
white: '#ffffff' # workspace text
purple: '#77216f' # urgent workspace color
window_colors:
focused:
border: 'slate'
background: 'slate'
text: 'cream'
indicator: 'sky_blue'
focused_inactive:
border: 'dark_teal'
background: 'dark_teal'
text: 'white_teal'
indicator: 'darker_teal'
unfocused:
border: 'darker_teal'
background: 'darker_teal'
text: 'slate'
indicator: 'darker_teal'
urgent:
border: 'red'
background: 'red'
text: 'cream'
indicator: 'red'
bar_colors:
separator: 'slate'
background: 'darker_teal'
statusline: 'grey'
focused_workspace:
border: 'slate'
background: 'slate'
text: 'white'
active_workspace:
border: 'dark_teal'
background: 'dark_teal'
text: 'white'
inactive_workspace:
border: 'darker_teal'
background: 'darker_teal'
text: 'grey'
urgent_workspace:
border: 'purple'
background: 'purple'
text: 'white'
|