-
Notifications
You must be signed in to change notification settings - Fork 431
/
Spacegray Oceanic.sublime-theme
executable file
·82 lines (72 loc) · 1.41 KB
/
Spacegray Oceanic.sublime-theme
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
{
"extends": "Spacegray.sublime-theme",
"variables":
{
// additional variations
"base-00": "rgb(15, 30, 40)",
"base-01": "rgb(22, 35, 42)",
// base16 color palette
"base00": "rgb(27, 43, 52)",
"base01": "rgb(52, 61, 70)",
"base02": "rgb(79, 91, 102)",
"base03": "rgb(101, 115, 126)",
"base04": "rgb(167, 173, 186)",
"base05": "rgb(192, 197, 206)",
"base06": "rgb(205, 211, 222)",
"base07": "rgb(216, 222, 233)",
"base08": "rgb(236, 95, 103)",
"base09": "rgb(249, 145, 87)",
"base0A": "rgb(250, 200, 99)",
"base0B": "rgb(153, 199, 148)",
"base0C": "rgb(95, 179, 179)",
"base0D": "rgb(102, 153, 204)",
"base0E": "rgb(197, 148, 197)",
"base0F": "rgb(171, 121, 103)"
},
"rules":
[
//
// PANEL BACKGROUNDS
//
{
"class": "overlay_control",
"layer1.tint": "var(base-00)",
},
//
// QUICK PANEL
//
{
"class": "quick_panel",
"layer0.tint": "var(base-00)",
},
// Quick panel rows
{
"class": "quick_panel_row",
"layer0.tint": "var(base-00)",
},
{
"class": "quick_panel_row",
"attributes": ["selected"],
"layer0.tint": "var(base01)"
},
//
// MINI QUICK PANEL
//
{
"class": "mini_quick_panel_row",
"layer0.tint": "var(base-00)",
},
{
"class": "mini_quick_panel_row",
"attributes": ["selected"],
"layer0.tint": "var(base01)"
},
//
// POPUPS
//
{
"class": "popup_control",
"layer0.tint": "var(base-00)"
},
]
}