@symbo.ls/default-config 3.2.3 → 3.2.8
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/blank/theme.js +13 -13
- package/default/theme.js +22 -22
- package/package.json +9 -2
package/blank/theme.js
CHANGED
|
@@ -26,10 +26,10 @@ const PRIORITIES = {
|
|
|
26
26
|
tertiary: {
|
|
27
27
|
'@dark': {
|
|
28
28
|
color: 'white',
|
|
29
|
-
background: 'gray
|
|
29
|
+
background: 'gray.92+8'
|
|
30
30
|
},
|
|
31
31
|
'@light': {
|
|
32
|
-
background: 'gray
|
|
32
|
+
background: 'gray.1'
|
|
33
33
|
}
|
|
34
34
|
},
|
|
35
35
|
|
|
@@ -46,7 +46,7 @@ const PRIORITIES = {
|
|
|
46
46
|
|
|
47
47
|
quinary: {
|
|
48
48
|
'@dark': {
|
|
49
|
-
color: 'gray
|
|
49
|
+
color: 'gray=90',
|
|
50
50
|
background: 'gradient-light'
|
|
51
51
|
},
|
|
52
52
|
|
|
@@ -84,37 +84,37 @@ const UI = {
|
|
|
84
84
|
field: {
|
|
85
85
|
'@light': {
|
|
86
86
|
color: 'black',
|
|
87
|
-
background: 'gray
|
|
88
|
-
borderColor: 'gray
|
|
89
|
-
'::placeholder': { color: 'gray
|
|
87
|
+
background: 'gray.975+144',
|
|
88
|
+
borderColor: 'gray.975+144',
|
|
89
|
+
'::placeholder': { color: 'gray-68' }
|
|
90
90
|
},
|
|
91
91
|
'@dark': {
|
|
92
92
|
color: 'white',
|
|
93
|
-
background: 'gray
|
|
94
|
-
borderColor: 'gray
|
|
95
|
-
'::placeholder': { color: 'gray
|
|
93
|
+
background: 'gray.975-52',
|
|
94
|
+
borderColor: 'gray.975-52',
|
|
95
|
+
'::placeholder': { color: 'gray+68' }
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
|
|
99
99
|
label: {
|
|
100
100
|
'@dark': {
|
|
101
101
|
color: 'white',
|
|
102
|
-
background: 'gray
|
|
102
|
+
background: 'gray.92+8'
|
|
103
103
|
},
|
|
104
104
|
|
|
105
105
|
'@light': {
|
|
106
|
-
background: 'gray
|
|
106
|
+
background: 'gray.1'
|
|
107
107
|
}
|
|
108
108
|
},
|
|
109
109
|
|
|
110
110
|
dialog: {
|
|
111
111
|
'@dark': {
|
|
112
112
|
color: 'white',
|
|
113
|
-
background: 'gray
|
|
113
|
+
background: 'gray.92'
|
|
114
114
|
},
|
|
115
115
|
'@light': {
|
|
116
116
|
color: 'currentColor',
|
|
117
|
-
background: 'gray
|
|
117
|
+
background: 'gray.1'
|
|
118
118
|
}
|
|
119
119
|
}
|
|
120
120
|
}
|
package/default/theme.js
CHANGED
|
@@ -9,7 +9,7 @@ const PRIORITIES = {
|
|
|
9
9
|
color: 'blue'
|
|
10
10
|
},
|
|
11
11
|
'.inactive': {
|
|
12
|
-
background: 'gray
|
|
12
|
+
background: 'gray+16'
|
|
13
13
|
},
|
|
14
14
|
'.gradient': {
|
|
15
15
|
color: 'white',
|
|
@@ -51,10 +51,10 @@ const PRIORITIES = {
|
|
|
51
51
|
tertiary: {
|
|
52
52
|
'@dark': {
|
|
53
53
|
color: 'white',
|
|
54
|
-
background: 'gray
|
|
54
|
+
background: 'gray.92+8'
|
|
55
55
|
},
|
|
56
56
|
'@light': {
|
|
57
|
-
background: 'gray
|
|
57
|
+
background: 'gray.1'
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
60
|
|
|
@@ -71,26 +71,26 @@ const PRIORITIES = {
|
|
|
71
71
|
|
|
72
72
|
quinary: {
|
|
73
73
|
'@dark': {
|
|
74
|
-
color: 'gray
|
|
74
|
+
color: 'gray=90',
|
|
75
75
|
background: 'gradient-light',
|
|
76
76
|
|
|
77
77
|
':hover': {
|
|
78
|
-
color: 'gray
|
|
78
|
+
color: 'gray=95',
|
|
79
79
|
background: 'gradient-light-active'
|
|
80
80
|
},
|
|
81
81
|
|
|
82
82
|
':focus': {
|
|
83
|
-
color: 'gray
|
|
83
|
+
color: 'gray=120',
|
|
84
84
|
background: 'gradient-light-active'
|
|
85
85
|
},
|
|
86
86
|
|
|
87
87
|
':active': {
|
|
88
|
-
color: 'gray
|
|
88
|
+
color: 'gray=120',
|
|
89
89
|
background: 'gradient-light-active'
|
|
90
90
|
},
|
|
91
91
|
|
|
92
92
|
'.active': {
|
|
93
|
-
color: 'gray
|
|
93
|
+
color: 'gray=120',
|
|
94
94
|
background: 'gradient-light-active'
|
|
95
95
|
}
|
|
96
96
|
},
|
|
@@ -144,26 +144,26 @@ const UI = {
|
|
|
144
144
|
field: {
|
|
145
145
|
'@light': {
|
|
146
146
|
color: 'black',
|
|
147
|
-
background: 'gray
|
|
148
|
-
borderColor: 'gray
|
|
149
|
-
'::placeholder': { color: 'gray
|
|
147
|
+
background: 'gray.975+144',
|
|
148
|
+
borderColor: 'gray.975+144',
|
|
149
|
+
'::placeholder': { color: 'gray-68' }
|
|
150
150
|
},
|
|
151
151
|
'@dark': {
|
|
152
152
|
color: 'white',
|
|
153
|
-
background: 'gray
|
|
154
|
-
borderColor: 'gray
|
|
155
|
-
'::placeholder': { color: 'gray
|
|
153
|
+
background: 'gray.975-52',
|
|
154
|
+
borderColor: 'gray.975-52',
|
|
155
|
+
'::placeholder': { color: 'gray+68' }
|
|
156
156
|
}
|
|
157
157
|
},
|
|
158
158
|
|
|
159
159
|
label: {
|
|
160
160
|
'@dark': {
|
|
161
161
|
color: 'white',
|
|
162
|
-
background: 'gray
|
|
162
|
+
background: 'gray.92+8'
|
|
163
163
|
},
|
|
164
164
|
|
|
165
165
|
'@light': {
|
|
166
|
-
background: 'gray
|
|
166
|
+
background: 'gray.1'
|
|
167
167
|
},
|
|
168
168
|
|
|
169
169
|
'.light': {
|
|
@@ -173,18 +173,18 @@ const UI = {
|
|
|
173
173
|
|
|
174
174
|
'.dark': {
|
|
175
175
|
color: 'white',
|
|
176
|
-
background: 'black
|
|
176
|
+
background: 'black.35'
|
|
177
177
|
}
|
|
178
178
|
},
|
|
179
179
|
|
|
180
180
|
card: {
|
|
181
181
|
'@light': {
|
|
182
|
-
background: 'gray
|
|
182
|
+
background: 'gray.975+150'
|
|
183
183
|
},
|
|
184
184
|
|
|
185
185
|
'@dark': {
|
|
186
186
|
color: 'white',
|
|
187
|
-
background: 'gray
|
|
187
|
+
background: 'gray.975-56'
|
|
188
188
|
},
|
|
189
189
|
|
|
190
190
|
'.child': {
|
|
@@ -198,7 +198,7 @@ const UI = {
|
|
|
198
198
|
|
|
199
199
|
'.child': {
|
|
200
200
|
color: 'white',
|
|
201
|
-
background: 'black
|
|
201
|
+
background: 'black.35'
|
|
202
202
|
}
|
|
203
203
|
}
|
|
204
204
|
},
|
|
@@ -206,7 +206,7 @@ const UI = {
|
|
|
206
206
|
dialog: {
|
|
207
207
|
'@dark': {
|
|
208
208
|
color: 'white',
|
|
209
|
-
background: 'gray
|
|
209
|
+
background: 'gray.92',
|
|
210
210
|
'.helper': {
|
|
211
211
|
color: 'white',
|
|
212
212
|
background: 'black'
|
|
@@ -214,7 +214,7 @@ const UI = {
|
|
|
214
214
|
},
|
|
215
215
|
'@light': {
|
|
216
216
|
color: 'currentColor',
|
|
217
|
-
background: 'gray
|
|
217
|
+
background: 'gray.1'
|
|
218
218
|
}
|
|
219
219
|
}
|
|
220
220
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@symbo.ls/default-config",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.8",
|
|
4
4
|
"source": "./blank/index.js",
|
|
5
5
|
"main": "./blank/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -8,5 +8,12 @@
|
|
|
8
8
|
"@symbo.ls/default-icons": "^3.2.3"
|
|
9
9
|
},
|
|
10
10
|
"license": "MIT",
|
|
11
|
-
"gitHead": "9fc1b79b41cdc725ca6b24aec64920a599634681"
|
|
11
|
+
"gitHead": "9fc1b79b41cdc725ca6b24aec64920a599634681",
|
|
12
|
+
"module": "./blank/index.js",
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"import": "./blank/index.js",
|
|
16
|
+
"default": "./blank/index.js"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
12
19
|
}
|