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
96
97
98
99
100
101
102
103
104
105 | {
"$schema": "https:
"name": "walrs",
"author": "pywal",
"themes": [
{
"name": "walrs",
"appearance": "dark",
"style": {
"background": "{background}90",
"editor.background": "{background}90",
"editor.foreground": "{foreground}",
"text": "{foreground}",
"text.muted": "{foreground}70",
"text.ignored": "{foreground}40",
"text.placeholder": "{foreground}50",
"ignored": "{foreground}30",
"element.hover": "{foreground}30",
"ghost_element.hover": "{color1}30",
"ghost_element.selected": "{color1}30",
"ghost_element.active": "{color1}60",
"border": "{background}",
"editor.highlighted_line.background": "{color1}10",
"editor.active_line.background": "{color1}10",
"panel.background": "{background}90",
"title_bar.background": "{background}90",
"title_bar.inactive_background": "{background}90",
"status_bar.background": "{background}90",
"drop_target.background": "{background}90",
"elevated_surface.background": "{background}",
"toolbar.background": "{background}90",
"tab_bar.background": "{background}90",
"tab.inactive_background": "{background}90",
"tab.active_background": "{color1}30",
"scrollbar.track.background": "transparent",
"scrollbar.track.border": "{background}",
"scrollbar.thumb.background": "{color1}",
"editor.gutter.background": "{background}90",
"terminal.background": "{background}10",
"terminal.foreground": "{foreground}",
"terminal.dim_foreground": "{foreground}",
"terminal.bright_foreground": "{foreground}",
"terminal.ansi.black": "{color0}",
"terminal.ansi.red": "{color1}",
"terminal.ansi.green": "{color2}",
"terminal.ansi.yellow": "{color3}",
"terminal.ansi.blue": "{color4}",
"terminal.ansi.magenta": "{color5}",
"terminal.ansi.cyan": "{color6}",
"terminal.ansi.white": "{color7}",
"terminal.ansi.bright_black": "{color8}",
"terminal.ansi.bright_red": "{color9}",
"terminal.ansi.bright_green": "{color10}",
"terminal.ansi.bright_yellow": "{color11}",
"terminal.ansi.bright_blue": "{color12}",
"terminal.ansi.bright_magenta": "{color13}",
"terminal.ansi.bright_cyan": "{color14}",
"terminal.ansi.bright_white": "{color15}",
"modified": "{color1}",
"syntax": {
"attribute": {
"color": "{color1}"
},
"boolean": {
"color": "{color2}"
},
"comment": {
"color": "{color8}"
},
"comment.doc": {
"color": "{color8}"
},
"constant": {
"color": "{color10}"
},
"function": {
"color": "{color14}"
},
"keyword": {
"color": "{color4}"
},
"number": {
"color": "{color5}"
},
"operator": {
"color": "{color4}"
},
"string": {
"color": "{color1}"
},
"variable": {
"color": "{color2}"
}
},
"players": [
{
"cursor": "{color1}",
"background": "{background}",
"selection": "{color1}30"
}
]
}
}
]
}
|