@symbo.ls/default-config 2.11.90 → 2.11.101
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 +36 -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.101",
|
|
4
4
|
"source": "src/index.js",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@symbo.ls/feather-icons": "latest"
|
|
9
9
|
},
|
|
10
|
-
"gitHead": "
|
|
10
|
+
"gitHead": "e6e99cfe2412652932a3c0eb2f580b427e6b8096"
|
|
11
11
|
}
|
package/src/theme.js
CHANGED
|
@@ -11,7 +11,10 @@ const PRIORITIES = {
|
|
|
11
11
|
},
|
|
12
12
|
'@light': {
|
|
13
13
|
color: 'white',
|
|
14
|
-
background: 'gradient-colorful'
|
|
14
|
+
background: 'gradient-colorful',
|
|
15
|
+
'.color-only': {
|
|
16
|
+
color: 'blue'
|
|
17
|
+
}
|
|
15
18
|
}
|
|
16
19
|
},
|
|
17
20
|
|
|
@@ -31,7 +34,7 @@ const PRIORITIES = {
|
|
|
31
34
|
tertiary: {
|
|
32
35
|
'@dark': {
|
|
33
36
|
color: 'white',
|
|
34
|
-
background: 'gray .
|
|
37
|
+
background: 'gray .92 +8'
|
|
35
38
|
},
|
|
36
39
|
'@light': {
|
|
37
40
|
background: 'gray .1'
|
|
@@ -51,16 +54,26 @@ const PRIORITIES = {
|
|
|
51
54
|
|
|
52
55
|
quinary: {
|
|
53
56
|
'@dark': {
|
|
54
|
-
color: '
|
|
57
|
+
color: 'gray 1 90',
|
|
55
58
|
background: 'gradient-light',
|
|
56
59
|
|
|
57
|
-
':hover
|
|
58
|
-
color: '
|
|
60
|
+
':hover': {
|
|
61
|
+
color: 'gray 1 95',
|
|
62
|
+
background: 'gradient-light-active'
|
|
63
|
+
},
|
|
64
|
+
|
|
65
|
+
':focus': {
|
|
66
|
+
color: 'gray 1 120',
|
|
67
|
+
background: 'gradient-light-active'
|
|
68
|
+
},
|
|
69
|
+
|
|
70
|
+
':active': {
|
|
71
|
+
color: 'gray 1 120',
|
|
59
72
|
background: 'gradient-light-active'
|
|
60
73
|
},
|
|
61
74
|
|
|
62
75
|
'.active': {
|
|
63
|
-
color: '
|
|
76
|
+
color: 'gray 1 120',
|
|
64
77
|
background: 'gradient-light-active'
|
|
65
78
|
}
|
|
66
79
|
},
|
|
@@ -69,7 +82,12 @@ const PRIORITIES = {
|
|
|
69
82
|
color: 'gray3',
|
|
70
83
|
background: 'gradient-dark',
|
|
71
84
|
|
|
72
|
-
':hover
|
|
85
|
+
':hover': {
|
|
86
|
+
color: 'gray1',
|
|
87
|
+
background: 'gradient-dark-active'
|
|
88
|
+
},
|
|
89
|
+
|
|
90
|
+
':active': {
|
|
73
91
|
color: 'gray1',
|
|
74
92
|
background: 'gradient-dark-active'
|
|
75
93
|
},
|
|
@@ -108,5 +126,15 @@ export const THEME = {
|
|
|
108
126
|
}
|
|
109
127
|
},
|
|
110
128
|
|
|
111
|
-
...PRIORITIES
|
|
129
|
+
...PRIORITIES,
|
|
130
|
+
|
|
131
|
+
none: {
|
|
132
|
+
color: 'none',
|
|
133
|
+
background: 'none'
|
|
134
|
+
},
|
|
135
|
+
|
|
136
|
+
transparent: {
|
|
137
|
+
color: 'transparent',
|
|
138
|
+
background: 'transparent'
|
|
139
|
+
}
|
|
112
140
|
}
|