forked from harmtemolder/obsidian-solarized
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_style-settings.scss
184 lines (162 loc) · 3.59 KB
/
_style-settings.scss
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
// compileOnSave: false
/* NOTE Tried with @each, but that didn't work within comment */
/*! @settings
name: Solarized Theme Settings
id: solarized-theme-settings
settings:
- id: colors
title: Colors
type: heading
level: 2
- id: colors
title: Base Tones
type: heading
level: 3
- id: base03
title: base03
type: variable-color
format: rgb
default: rgb(#{map.get($colors, "base03")})
alt-format:
- id: base03-rgb
format: rgb-values
- id: base02
title: base02
type: variable-color
format: rgb
default: rgb(#{map.get($colors, "base02")})
alt-format:
- id: base02-rgb
format: rgb-values
- id: base01
title: base01
type: variable-color
format: rgb
default: rgb(#{map.get($colors, "base01")})
alt-format:
- id: base01-rgb
format: rgb-values
- id: base00
title: base00
type: variable-color
format: rgb
default: rgb(#{map.get($colors, "base00")})
alt-format:
- id: base00-rgb
format: rgb-values
- id: base0
title: base0
type: variable-color
format: rgb
default: rgb(#{map.get($colors, "base0")})
alt-format:
- id: base0-rgb
format: rgb-values
- id: base1
title: base1
type: variable-color
format: rgb
default: rgb(#{map.get($colors, "base1")})
alt-format:
- id: base1-rgb
format: rgb-values
- id: base2
title: base2
type: variable-color
format: rgb
default: rgb(#{map.get($colors, "base2")})
alt-format:
- id: base2-rgb
format: rgb-values
- id: base3
title: base3
type: variable-color
format: rgb
default: rgb(#{map.get($colors, "base3")})
alt-format:
- id: base3-rgb
format: rgb-values
- id: colors
title: Accent Colors
type: heading
level: 3
- id: yellow
title: yellow
type: variable-color
format: rgb
default: rgb(#{map.get($colors, "yellow")})
alt-format:
- id: yellow-rgb
format: rgb-values
- id: orange
title: orange
type: variable-color
format: rgb
default: rgb(#{map.get($colors, "orange")})
alt-format:
- id: orange-rgb
format: rgb-values
- id: red
title: red
type: variable-color
format: rgb
default: rgb(#{map.get($colors, "red")})
alt-format:
- id: red-rgb
format: rgb-values
- id: magenta
title: magenta
type: variable-color
format: rgb
default: rgb(#{map.get($colors, "magenta")})
alt-format:
- id: magenta-rgb
format: rgb-values
- id: violet
title: violet
type: variable-color
format: rgb
default: rgb(#{map.get($colors, "violet")})
alt-format:
- id: violet-rgb
format: rgb-values
- id: blue
title: blue
type: variable-color
format: rgb
default: rgb(#{map.get($colors, "blue")})
alt-format:
- id: blue-rgb
format: rgb-values
- id: cyan
title: cyan
type: variable-color
format: rgb
default: rgb(#{map.get($colors, "cyan")})
alt-format:
- id: cyan-rgb
format: rgb-values
- id: green
title: green
type: variable-color
format: rgb
default: rgb(#{map.get($colors, "green")})
alt-format:
- id: green-rgb
format: rgb-values
- id: misc
title: Miscellaneous
type: heading
level: 3
- id: color-accent
title: Application Accent color
type: variable-color
format: rgb
default: rgb(#{map.get$colors, "orange")})
- id: active-bg
title: Current line highlight
type: variable-color
opacity: true
format: rgb
default: rgb(#{map.get$colors, "orange")})
*/