@symbo.ls/default-config 2.11.198 → 2.11.210
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/theme.js +20 -1
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@symbo.ls/default-config",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.210",
|
|
4
4
|
"source": "src/index.js",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@symbo.ls/default-icons": "latest"
|
|
8
8
|
},
|
|
9
9
|
"license": "MIT",
|
|
10
|
-
"gitHead": "
|
|
10
|
+
"gitHead": "45ec4a9a2ab3233c83b705202980d45b0c3cb91e"
|
|
11
11
|
}
|
package/src/theme.js
CHANGED
|
@@ -131,6 +131,23 @@ const PRIORITIES = {
|
|
|
131
131
|
}
|
|
132
132
|
}
|
|
133
133
|
|
|
134
|
+
const UI = {
|
|
135
|
+
field: '--tertiary',
|
|
136
|
+
|
|
137
|
+
dialog: {
|
|
138
|
+
'@dark': {
|
|
139
|
+
background: 'gray .92',
|
|
140
|
+
'.helper': {
|
|
141
|
+
color: 'white',
|
|
142
|
+
background: 'black'
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
'@light': {
|
|
146
|
+
background: 'gray .1'
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
|
|
134
151
|
export const THEME = {
|
|
135
152
|
document: {
|
|
136
153
|
'@light': {
|
|
@@ -145,13 +162,15 @@ export const THEME = {
|
|
|
145
162
|
|
|
146
163
|
...PRIORITIES,
|
|
147
164
|
|
|
165
|
+
...UI,
|
|
166
|
+
|
|
148
167
|
none: {
|
|
149
168
|
color: 'none',
|
|
150
169
|
background: 'none'
|
|
151
170
|
},
|
|
152
171
|
|
|
153
172
|
transparent: {
|
|
154
|
-
color: '
|
|
173
|
+
color: 'currentColor',
|
|
155
174
|
background: 'transparent'
|
|
156
175
|
}
|
|
157
176
|
}
|