@symbo.ls/default-config 2.11.138 → 2.11.164
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 +3 -3
- package/src/color.js +11 -1
- package/src/index.js +1 -1
- package/src/theme.js +18 -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.164",
|
|
4
4
|
"source": "src/index.js",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@symbo.ls/
|
|
7
|
+
"@symbo.ls/default-icons": "latest"
|
|
8
8
|
},
|
|
9
9
|
"license": "MIT",
|
|
10
|
-
"gitHead": "
|
|
10
|
+
"gitHead": "943a48800e5959b8c1f15d5d8d49224565038c23"
|
|
11
11
|
}
|
package/src/color.js
CHANGED
|
@@ -13,10 +13,20 @@ export const COLOR = {
|
|
|
13
13
|
brown: '#7D6755',
|
|
14
14
|
pink: '#FD8ABF',
|
|
15
15
|
purple: '#7345AF',
|
|
16
|
-
white: 'white'
|
|
16
|
+
white: 'white',
|
|
17
|
+
|
|
18
|
+
green2: '#04F214',
|
|
19
|
+
blue2: '#0474F2',
|
|
20
|
+
gray2: '#A3A3A8',
|
|
21
|
+
gray3: '#1C1C1F',
|
|
22
|
+
gray4: '#BDBDC1'
|
|
17
23
|
}
|
|
18
24
|
|
|
19
25
|
export const GRADIENT = {
|
|
26
|
+
'gradient-blue': `linear-gradient(to right,
|
|
27
|
+
rgba(4, 116, 242, 1),
|
|
28
|
+
rgba(0, 48, 103, 1)
|
|
29
|
+
)`,
|
|
20
30
|
'gradient-dark': `linear-gradient(0deg,
|
|
21
31
|
rgba(0,0,0,0.06) 0%,
|
|
22
32
|
rgba(0,0,0,0.07) 100%
|
package/src/index.js
CHANGED
package/src/theme.js
CHANGED
|
@@ -7,13 +7,24 @@ const PRIORITIES = {
|
|
|
7
7
|
background: 'blue',
|
|
8
8
|
'.color-only': {
|
|
9
9
|
color: 'blue'
|
|
10
|
+
},
|
|
11
|
+
'.inactive': {
|
|
12
|
+
background: 'gray 1 +16'
|
|
13
|
+
},
|
|
14
|
+
'.gradient': {
|
|
15
|
+
color: 'white',
|
|
16
|
+
background: 'gradient-blue'
|
|
10
17
|
}
|
|
11
18
|
},
|
|
12
19
|
'@light': {
|
|
13
20
|
color: 'white',
|
|
14
|
-
background: 'gradient-
|
|
21
|
+
background: 'gradient-blue',
|
|
15
22
|
'.color-only': {
|
|
16
23
|
color: 'blue'
|
|
24
|
+
},
|
|
25
|
+
'.gradient': {
|
|
26
|
+
color: 'white',
|
|
27
|
+
background: 'gradient-colorful'
|
|
17
28
|
}
|
|
18
29
|
}
|
|
19
30
|
},
|
|
@@ -111,6 +122,12 @@ const PRIORITIES = {
|
|
|
111
122
|
color: 'black',
|
|
112
123
|
background: 'yellow'
|
|
113
124
|
}
|
|
125
|
+
},
|
|
126
|
+
|
|
127
|
+
success: {
|
|
128
|
+
background: 'transparent',
|
|
129
|
+
color: 'green2',
|
|
130
|
+
border: '2.8px solid #04F214'
|
|
114
131
|
}
|
|
115
132
|
}
|
|
116
133
|
|