@symbo.ls/default-config 2.11.269 → 2.11.271
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/color.js +2 -2
- package/src/theme.js +12 -8
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.271",
|
|
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": "a57eda1f271195de0c1da82ebe89541a2874e1ad"
|
|
11
11
|
}
|
package/src/color.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
export const COLOR = {
|
|
4
4
|
transparent: 'rgba(0, 0, 0, 0)',
|
|
5
5
|
black: 'black',
|
|
6
|
-
gray: '#
|
|
6
|
+
gray: '#4e4e50',
|
|
7
7
|
blue: '#0e80fd',
|
|
8
8
|
indigo: '#50E1FF',
|
|
9
9
|
green: '#59AC56',
|
|
@@ -23,7 +23,7 @@ export const COLOR = {
|
|
|
23
23
|
|
|
24
24
|
title: ['--black 1', '--white 1'],
|
|
25
25
|
caption: ['--gray 1 +16', '--gray4 1'],
|
|
26
|
-
paragraph: ['--
|
|
26
|
+
paragraph: ['--gray 1', '--gray 1 +65']
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
export const GRADIENT = {
|
package/src/theme.js
CHANGED
|
@@ -143,12 +143,16 @@ const STATES = {
|
|
|
143
143
|
const UI = {
|
|
144
144
|
field: {
|
|
145
145
|
'@light': {
|
|
146
|
-
color: '
|
|
147
|
-
background: '
|
|
146
|
+
color: 'black',
|
|
147
|
+
background: 'gray .975 +144',
|
|
148
|
+
borderColor: 'gray .975 +144',
|
|
149
|
+
'::placeholder': { color: 'gray 1 -68' }
|
|
148
150
|
},
|
|
149
151
|
'@dark': {
|
|
150
152
|
color: 'white',
|
|
151
|
-
background: '
|
|
153
|
+
background: 'gray .975 -52',
|
|
154
|
+
borderColor: 'gray .975 -52',
|
|
155
|
+
'::placeholder': { color: 'gray 1 +68' }
|
|
152
156
|
}
|
|
153
157
|
},
|
|
154
158
|
|
|
@@ -174,13 +178,13 @@ const UI = {
|
|
|
174
178
|
},
|
|
175
179
|
|
|
176
180
|
card: {
|
|
177
|
-
'@
|
|
178
|
-
|
|
179
|
-
background: 'gray .92 +8'
|
|
181
|
+
'@light': {
|
|
182
|
+
background: 'gray .975 +150'
|
|
180
183
|
},
|
|
181
184
|
|
|
182
|
-
'@
|
|
183
|
-
|
|
185
|
+
'@dark': {
|
|
186
|
+
color: 'white',
|
|
187
|
+
background: 'gray .975 -56'
|
|
184
188
|
},
|
|
185
189
|
|
|
186
190
|
'.child': {
|