-
Notifications
You must be signed in to change notification settings - Fork 2
/
SSH-Panel.hidden-color-scheme
66 lines (66 loc) · 1.42 KB
/
SSH-Panel.hidden-color-scheme
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
{
// copy from "Sublime Widgets"
"name": "SSH-Panel",
"globals": {
"foreground": "var(dark_grey)",
"background": "var(white)",
"caret": "color(var(dark_grey) a(0.8))",
"invisibles": "color(var(dark_grey) a(0.5))",
"selection": "color(var(dark_grey) a(0.2))",
"selection_border": "color(var(dark_grey) a(0.1))",
"inactive_selection": "color(var(dark_grey) a(0.15))",
"inactive_selection_border": "transparent",
"bracket_contents_options": "stippled_underline",
},
"variables": {
"white": "#ffffff",
"dark_grey": "#222222",
"medium_grey": "#888888",
"orange": "hsl(32, 95%, 50%)",
"green": "hsl(95, 50%, 45%)",
"blue": "hsl(210, 40%, 45%)",
"red": "hsl(350, 60%, 45%)",
"purple": "hsl(275, 50%, 45%)"
},
"rules":
[
{
"name": "Comment",
"scope": "comment",
"foreground": "var(medium_grey)",
"font_style": "italic"
},
{
"name": "Keyword",
"scope": "keyword, storage",
"foreground": "var(blue)"
},
{
"name": "Support",
"scope": "support.constant",
"foreground": "var(blue)",
"font_style": "italic"
},
{
"name": "Keyword",
"scope": "keyword.operator",
"foreground": "var(red)"
},
{
"scope": "constant",
"foreground": "var(orange)"
},
{
"scope": "string",
"foreground": "var(green)"
},
{
"scope": "constant.character.escape",
"foreground": "var(purple)"
},
{
"scope": "punctuation",
"foreground": "var(medium_grey)"
}
]
}