@particle-network/ui-react 0.5.1-beta.4 → 0.5.1-beta.6
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/dist/components/ProgressWrapper/index.d.ts +2 -2
- package/dist/components/UXButton/button.js +1 -1
- package/dist/components/UXChip/chip.extend.d.ts +2 -1
- package/dist/components/UXChip/index.d.ts +1 -1
- package/dist/components/UXColorPicker/color-picker.js +1 -1
- package/dist/components/UXColorPicker/types.d.ts +1 -1
- package/dist/components/UXInput/index.d.ts +4 -4
- package/dist/components/UXInput/input.extend.d.ts +4 -4
- package/dist/components/UXSpinner/spinner.d.ts +1 -5
- package/dist/components/UXSpinner/spinner.js +2 -3
- package/dist/components/UXSwitch/index.d.ts +2 -2
- package/dist/components/UXSwitch/switch.extend.d.ts +2 -2
- package/dist/components/UXTable/index.d.ts +2 -2
- package/dist/components/UXTable/table.extend.d.ts +2 -2
- package/dist/components/UXThemeSwitch/constants.d.ts +9 -0
- package/dist/components/UXThemeSwitch/constants.js +3 -0
- package/dist/components/UXThemeSwitch/custom-theme-config.js +52 -15
- package/dist/components/UXThemeSwitch/theme-item.js +47 -11
- package/dist/components/UXThemeSwitch/theme-switch.js +6 -5
- package/dist/components/UXThemeSwitch/use-theme-color.d.ts +1 -22
- package/dist/components/UXThemeSwitch/use-theme-color.js +1 -9
- package/dist/components/UXThemeSwitch/use-theme-store.d.ts +5 -0
- package/dist/components/UXThemeSwitch/use-theme-store.js +9 -4
- package/dist/components/UXThemeSwitch/use-theme.d.ts +2 -0
- package/dist/components/UXThemeSwitch/use-theme.js +5 -76
- package/dist/components/UXThemeSwitch/utils.d.ts +28 -0
- package/dist/components/UXThemeSwitch/utils.js +202 -0
- package/dist/components/layout/Box/box-theme.d.ts +1808 -0
- package/dist/components/layout/Box/box-theme.js +328 -0
- package/dist/components/layout/Box/box.d.ts +14 -0
- package/dist/components/layout/Box/box.js +90 -0
- package/dist/components/layout/Circle.js +2 -3
- package/dist/components/layout/Flex.d.ts +3 -27
- package/dist/components/layout/Flex.js +6 -19
- package/dist/components/layout/HStack.d.ts +1 -1
- package/dist/components/layout/Square.js +5 -3
- package/dist/components/layout/VStack.d.ts +1 -1
- package/dist/components/layout/VStack.js +2 -2
- package/dist/components/layout/index.d.ts +1 -0
- package/dist/components/layout/index.js +1 -0
- package/dist/components/typography/Text.js +21 -6
- package/dist/components/typography/Text.type.d.ts +3 -26
- package/dist/components/typography/Text.type.js +0 -47
- package/dist/components/typography/text-theme.d.ts +178 -0
- package/dist/components/typography/text-theme.js +79 -0
- package/dist/heroui/constants.d.ts +18 -0
- package/dist/heroui/constants.js +98 -0
- package/dist/heroui/types.d.ts +91 -0
- package/dist/heroui/types.js +0 -0
- package/dist/heroui/utils/colors.d.ts +34 -0
- package/dist/heroui/utils/colors.js +121 -0
- package/dist/heroui/utils/object.d.ts +1 -0
- package/dist/heroui/utils/object.js +17 -0
- package/dist/hooks/useI18n.d.ts +54 -38
- package/dist/hooks/useI18n.js +54 -38
- package/package.json +4 -3
- package/tailwind-preset.js +22 -69
package/dist/hooks/useI18n.d.ts
CHANGED
|
@@ -26,33 +26,41 @@ export declare const useI18n: () => {
|
|
|
26
26
|
readonly custom: {
|
|
27
27
|
readonly title: "Custom Theme";
|
|
28
28
|
readonly preset: "Theme Preset";
|
|
29
|
+
readonly swapUpDown: "Swap Up/Down Color";
|
|
29
30
|
readonly categories: {
|
|
30
31
|
readonly basic: "Basic";
|
|
31
32
|
readonly background: "Background";
|
|
32
33
|
readonly text: "Text";
|
|
34
|
+
readonly candle: "Candle";
|
|
33
35
|
readonly signal: "Signal";
|
|
34
36
|
};
|
|
35
|
-
readonly colors: {
|
|
36
|
-
readonly primary: "Primary";
|
|
37
|
-
readonly bullish: "Positive";
|
|
38
|
-
readonly bearish: "Negative";
|
|
39
|
-
readonly 'bg-default': "Background";
|
|
40
|
-
readonly 'bg-200': "Background Quaternary";
|
|
41
|
-
readonly 'bg-300': "Background Tertiary";
|
|
42
|
-
readonly 'bg-400': "Background Secondary";
|
|
43
|
-
readonly overlay: "Overlay";
|
|
44
|
-
readonly default: "Default";
|
|
45
|
-
readonly foreground: "Text Primary";
|
|
46
|
-
readonly secondary: "Text Secondary";
|
|
47
|
-
readonly tertiary: "Text Tertiary";
|
|
48
|
-
readonly divider: "Divider";
|
|
49
|
-
readonly success: "Signal Green";
|
|
50
|
-
readonly danger: "Signal Red";
|
|
51
|
-
readonly alert: "Signal Orange";
|
|
52
|
-
readonly gold: "Signal Yellow";
|
|
53
|
-
};
|
|
54
37
|
};
|
|
55
38
|
};
|
|
39
|
+
readonly colors: {
|
|
40
|
+
readonly primary: "Primary";
|
|
41
|
+
readonly bullish: "Positive";
|
|
42
|
+
readonly bearish: "Negative";
|
|
43
|
+
readonly 'bg-default': "Background";
|
|
44
|
+
readonly 'bg-200': "Background Quaternary";
|
|
45
|
+
readonly 'bg-300': "Background Tertiary";
|
|
46
|
+
readonly 'bg-400': "Background Secondary";
|
|
47
|
+
readonly overlay: "Overlay";
|
|
48
|
+
readonly default: "Default";
|
|
49
|
+
readonly foreground: "Text Primary";
|
|
50
|
+
readonly secondary: "Text Secondary";
|
|
51
|
+
readonly tertiary: "Text Tertiary";
|
|
52
|
+
readonly divider: "Divider";
|
|
53
|
+
readonly success: "Signal Green";
|
|
54
|
+
readonly danger: "Signal Red";
|
|
55
|
+
readonly warning: "Signal Yellow";
|
|
56
|
+
readonly alert: "Signal Orange";
|
|
57
|
+
readonly candleUp: "Body (up)";
|
|
58
|
+
readonly candleDown: "Body (down)";
|
|
59
|
+
readonly candleWickUp: "Wick (up)";
|
|
60
|
+
readonly candleWickDown: "Wick (down)";
|
|
61
|
+
readonly candleBorderUp: "Border (up)";
|
|
62
|
+
readonly candleBorderDown: "Border (down)";
|
|
63
|
+
};
|
|
56
64
|
readonly switch: {
|
|
57
65
|
readonly on: "On";
|
|
58
66
|
readonly off: "Off";
|
|
@@ -85,33 +93,41 @@ export declare const useI18n: () => {
|
|
|
85
93
|
readonly custom: {
|
|
86
94
|
readonly title: "自定义主题";
|
|
87
95
|
readonly preset: "主题预设";
|
|
96
|
+
readonly swapUpDown: "涨跌色互换";
|
|
88
97
|
readonly categories: {
|
|
89
98
|
readonly basic: "基础";
|
|
90
99
|
readonly background: "背景";
|
|
91
100
|
readonly text: "文字";
|
|
101
|
+
readonly candle: "K线";
|
|
92
102
|
readonly signal: "信号";
|
|
93
103
|
};
|
|
94
|
-
readonly colors: {
|
|
95
|
-
readonly primary: "主要色";
|
|
96
|
-
readonly bullish: "上涨色";
|
|
97
|
-
readonly bearish: "下跌色";
|
|
98
|
-
readonly 'bg-default': "一级背景色";
|
|
99
|
-
readonly 'bg-200': "四级背景色";
|
|
100
|
-
readonly 'bg-300': "三级背景色";
|
|
101
|
-
readonly 'bg-400': "二级背景色";
|
|
102
|
-
readonly overlay: "浮窗色";
|
|
103
|
-
readonly default: "默认";
|
|
104
|
-
readonly foreground: "一级文字色";
|
|
105
|
-
readonly secondary: "二级文字色";
|
|
106
|
-
readonly tertiary: "三级文字色";
|
|
107
|
-
readonly divider: "分割线";
|
|
108
|
-
readonly success: "绿色信号";
|
|
109
|
-
readonly danger: "红色信号";
|
|
110
|
-
readonly alert: "橙色信号";
|
|
111
|
-
readonly gold: "黄色信号";
|
|
112
|
-
};
|
|
113
104
|
};
|
|
114
105
|
};
|
|
106
|
+
readonly colors: {
|
|
107
|
+
readonly primary: "主要色";
|
|
108
|
+
readonly bullish: "上涨色";
|
|
109
|
+
readonly bearish: "下跌色";
|
|
110
|
+
readonly 'bg-default': "一级背景色";
|
|
111
|
+
readonly 'bg-200': "四级背景色";
|
|
112
|
+
readonly 'bg-300': "三级背景色";
|
|
113
|
+
readonly 'bg-400': "二级背景色";
|
|
114
|
+
readonly overlay: "浮窗色";
|
|
115
|
+
readonly default: "默认";
|
|
116
|
+
readonly foreground: "一级文字色";
|
|
117
|
+
readonly secondary: "二级文字色";
|
|
118
|
+
readonly tertiary: "三级文字色";
|
|
119
|
+
readonly divider: "分割线";
|
|
120
|
+
readonly success: "绿色信号";
|
|
121
|
+
readonly danger: "红色信号";
|
|
122
|
+
readonly warning: "黄色信号";
|
|
123
|
+
readonly alert: "橙色信号";
|
|
124
|
+
readonly candleUp: "主体色 (上涨)";
|
|
125
|
+
readonly candleDown: "主体色 (下跌)";
|
|
126
|
+
readonly candleWickUp: "影线 (上涨)";
|
|
127
|
+
readonly candleWickDown: "影线 (下跌)";
|
|
128
|
+
readonly candleBorderUp: "边框 (上涨)";
|
|
129
|
+
readonly candleBorderDown: "边框 (下跌)";
|
|
130
|
+
};
|
|
115
131
|
readonly switch: {
|
|
116
132
|
readonly on: "开";
|
|
117
133
|
readonly off: "关";
|
package/dist/hooks/useI18n.js
CHANGED
|
@@ -28,33 +28,41 @@ const en = {
|
|
|
28
28
|
custom: {
|
|
29
29
|
title: 'Custom Theme',
|
|
30
30
|
preset: 'Theme Preset',
|
|
31
|
+
swapUpDown: 'Swap Up/Down Color',
|
|
31
32
|
categories: {
|
|
32
33
|
basic: 'Basic',
|
|
33
34
|
background: 'Background',
|
|
34
35
|
text: 'Text',
|
|
36
|
+
candle: 'Candle',
|
|
35
37
|
signal: 'Signal'
|
|
36
|
-
},
|
|
37
|
-
colors: {
|
|
38
|
-
primary: 'Primary',
|
|
39
|
-
bullish: 'Positive',
|
|
40
|
-
bearish: 'Negative',
|
|
41
|
-
'bg-default': 'Background',
|
|
42
|
-
'bg-200': 'Background Quaternary',
|
|
43
|
-
'bg-300': 'Background Tertiary',
|
|
44
|
-
'bg-400': 'Background Secondary',
|
|
45
|
-
overlay: 'Overlay',
|
|
46
|
-
default: 'Default',
|
|
47
|
-
foreground: 'Text Primary',
|
|
48
|
-
secondary: 'Text Secondary',
|
|
49
|
-
tertiary: 'Text Tertiary',
|
|
50
|
-
divider: 'Divider',
|
|
51
|
-
success: 'Signal Green',
|
|
52
|
-
danger: 'Signal Red',
|
|
53
|
-
alert: 'Signal Orange',
|
|
54
|
-
gold: 'Signal Yellow'
|
|
55
38
|
}
|
|
56
39
|
}
|
|
57
40
|
},
|
|
41
|
+
colors: {
|
|
42
|
+
primary: 'Primary',
|
|
43
|
+
bullish: 'Positive',
|
|
44
|
+
bearish: 'Negative',
|
|
45
|
+
'bg-default': 'Background',
|
|
46
|
+
'bg-200': 'Background Quaternary',
|
|
47
|
+
'bg-300': 'Background Tertiary',
|
|
48
|
+
'bg-400': 'Background Secondary',
|
|
49
|
+
overlay: 'Overlay',
|
|
50
|
+
default: 'Default',
|
|
51
|
+
foreground: 'Text Primary',
|
|
52
|
+
secondary: 'Text Secondary',
|
|
53
|
+
tertiary: 'Text Tertiary',
|
|
54
|
+
divider: 'Divider',
|
|
55
|
+
success: 'Signal Green',
|
|
56
|
+
danger: 'Signal Red',
|
|
57
|
+
warning: 'Signal Yellow',
|
|
58
|
+
alert: 'Signal Orange',
|
|
59
|
+
candleUp: 'Body (up)',
|
|
60
|
+
candleDown: 'Body (down)',
|
|
61
|
+
candleWickUp: 'Wick (up)',
|
|
62
|
+
candleWickDown: 'Wick (down)',
|
|
63
|
+
candleBorderUp: 'Border (up)',
|
|
64
|
+
candleBorderDown: 'Border (down)'
|
|
65
|
+
},
|
|
58
66
|
switch: {
|
|
59
67
|
on: 'On',
|
|
60
68
|
off: 'Off'
|
|
@@ -88,33 +96,41 @@ const zh = {
|
|
|
88
96
|
custom: {
|
|
89
97
|
title: '自定义主题',
|
|
90
98
|
preset: '主题预设',
|
|
99
|
+
swapUpDown: '涨跌色互换',
|
|
91
100
|
categories: {
|
|
92
101
|
basic: '基础',
|
|
93
102
|
background: '背景',
|
|
94
103
|
text: '文字',
|
|
104
|
+
candle: 'K线',
|
|
95
105
|
signal: '信号'
|
|
96
|
-
},
|
|
97
|
-
colors: {
|
|
98
|
-
primary: '主要色',
|
|
99
|
-
bullish: '上涨色',
|
|
100
|
-
bearish: '下跌色',
|
|
101
|
-
'bg-default': '一级背景色',
|
|
102
|
-
'bg-200': '四级背景色',
|
|
103
|
-
'bg-300': '三级背景色',
|
|
104
|
-
'bg-400': '二级背景色',
|
|
105
|
-
overlay: '浮窗色',
|
|
106
|
-
default: '默认',
|
|
107
|
-
foreground: '一级文字色',
|
|
108
|
-
secondary: '二级文字色',
|
|
109
|
-
tertiary: '三级文字色',
|
|
110
|
-
divider: '分割线',
|
|
111
|
-
success: '绿色信号',
|
|
112
|
-
danger: '红色信号',
|
|
113
|
-
alert: '橙色信号',
|
|
114
|
-
gold: '黄色信号'
|
|
115
106
|
}
|
|
116
107
|
}
|
|
117
108
|
},
|
|
109
|
+
colors: {
|
|
110
|
+
primary: '主要色',
|
|
111
|
+
bullish: '上涨色',
|
|
112
|
+
bearish: '下跌色',
|
|
113
|
+
'bg-default': '一级背景色',
|
|
114
|
+
'bg-200': '四级背景色',
|
|
115
|
+
'bg-300': '三级背景色',
|
|
116
|
+
'bg-400': '二级背景色',
|
|
117
|
+
overlay: '浮窗色',
|
|
118
|
+
default: '默认',
|
|
119
|
+
foreground: '一级文字色',
|
|
120
|
+
secondary: '二级文字色',
|
|
121
|
+
tertiary: '三级文字色',
|
|
122
|
+
divider: '分割线',
|
|
123
|
+
success: '绿色信号',
|
|
124
|
+
danger: '红色信号',
|
|
125
|
+
warning: '黄色信号',
|
|
126
|
+
alert: '橙色信号',
|
|
127
|
+
candleUp: '主体色 (上涨)',
|
|
128
|
+
candleDown: '主体色 (下跌)',
|
|
129
|
+
candleWickUp: '影线 (上涨)',
|
|
130
|
+
candleWickDown: '影线 (下跌)',
|
|
131
|
+
candleBorderUp: '边框 (上涨)',
|
|
132
|
+
candleBorderDown: '边框 (下跌)'
|
|
133
|
+
},
|
|
118
134
|
switch: {
|
|
119
135
|
on: '开',
|
|
120
136
|
off: '关'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@particle-network/ui-react",
|
|
3
|
-
"version": "0.5.1-beta.
|
|
3
|
+
"version": "0.5.1-beta.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -50,9 +50,10 @@
|
|
|
50
50
|
"copy-to-clipboard": "^3.3.3",
|
|
51
51
|
"immer": "^11.1.3",
|
|
52
52
|
"react-aria-components": "^1.14.0",
|
|
53
|
+
"values.js": "^2.1.1",
|
|
53
54
|
"zustand": "^5.0.8",
|
|
54
|
-
"@particle-network/
|
|
55
|
-
"@particle-network/
|
|
55
|
+
"@particle-network/icons": "0.5.1-beta.3",
|
|
56
|
+
"@particle-network/ui-shared": "0.4.1-beta.2"
|
|
56
57
|
},
|
|
57
58
|
"scripts": {
|
|
58
59
|
"build": "rslib build",
|
package/tailwind-preset.js
CHANGED
|
@@ -8,6 +8,7 @@ module.exports = {
|
|
|
8
8
|
extend: {
|
|
9
9
|
colors: {
|
|
10
10
|
brand: '#D745FF',
|
|
11
|
+
'background-pure': 'var(--background-pure)',
|
|
11
12
|
},
|
|
12
13
|
gap: {
|
|
13
14
|
xs: '0.125rem', // 2px
|
|
@@ -79,8 +80,8 @@ module.exports = {
|
|
|
79
80
|
plugins: [
|
|
80
81
|
heroui({
|
|
81
82
|
addCommonColors: true,
|
|
82
|
-
defaultTheme: 'ux-
|
|
83
|
-
defaultExtendTheme: 'ux-
|
|
83
|
+
defaultTheme: 'ux-classic-dark',
|
|
84
|
+
defaultExtendTheme: 'ux-classic-dark',
|
|
84
85
|
layout: {
|
|
85
86
|
radius: {
|
|
86
87
|
small: '6px', // rounded-small
|
|
@@ -98,7 +99,7 @@ module.exports = {
|
|
|
98
99
|
hoverOpacity: 0.7,
|
|
99
100
|
},
|
|
100
101
|
themes: {
|
|
101
|
-
'ux-
|
|
102
|
+
'ux-classic-dark': {
|
|
102
103
|
extend: 'dark',
|
|
103
104
|
colors: {
|
|
104
105
|
content1: {
|
|
@@ -156,7 +157,7 @@ module.exports = {
|
|
|
156
157
|
foreground: '#FFFFFF',
|
|
157
158
|
},
|
|
158
159
|
warning: {
|
|
159
|
-
DEFAULT: '#
|
|
160
|
+
DEFAULT: '#FFB800',
|
|
160
161
|
foreground: '#FFFFFF',
|
|
161
162
|
},
|
|
162
163
|
divider: {
|
|
@@ -167,10 +168,6 @@ module.exports = {
|
|
|
167
168
|
DEFAULT: '#F57733',
|
|
168
169
|
foreground: '#FFFFFF',
|
|
169
170
|
},
|
|
170
|
-
gold: {
|
|
171
|
-
DEFAULT: '#FFB800',
|
|
172
|
-
foreground: '#FFFFFF',
|
|
173
|
-
},
|
|
174
171
|
bullish: {
|
|
175
172
|
DEFAULT: '#D745FF',
|
|
176
173
|
foreground: '#FFFFFF',
|
|
@@ -181,7 +178,7 @@ module.exports = {
|
|
|
181
178
|
},
|
|
182
179
|
},
|
|
183
180
|
},
|
|
184
|
-
'ux-
|
|
181
|
+
'ux-classic-light': {
|
|
185
182
|
extend: 'light',
|
|
186
183
|
colors: {
|
|
187
184
|
content1: {
|
|
@@ -239,7 +236,7 @@ module.exports = {
|
|
|
239
236
|
foreground: '#FFFFFF',
|
|
240
237
|
},
|
|
241
238
|
warning: {
|
|
242
|
-
DEFAULT: '#
|
|
239
|
+
DEFAULT: '#F38300',
|
|
243
240
|
foreground: '#FFFFFF',
|
|
244
241
|
},
|
|
245
242
|
divider: {
|
|
@@ -250,10 +247,6 @@ module.exports = {
|
|
|
250
247
|
DEFAULT: '#E65E16',
|
|
251
248
|
foreground: '#FFFFFF',
|
|
252
249
|
},
|
|
253
|
-
gold: {
|
|
254
|
-
DEFAULT: '#F38300',
|
|
255
|
-
foreground: '#FFFFFF',
|
|
256
|
-
},
|
|
257
250
|
bullish: {
|
|
258
251
|
DEFAULT: '#D745FF',
|
|
259
252
|
foreground: '#FFFFFF',
|
|
@@ -322,7 +315,7 @@ module.exports = {
|
|
|
322
315
|
foreground: '#FFFFFF',
|
|
323
316
|
},
|
|
324
317
|
warning: {
|
|
325
|
-
DEFAULT: '#
|
|
318
|
+
DEFAULT: '#FFB800',
|
|
326
319
|
foreground: '#FFFFFF',
|
|
327
320
|
},
|
|
328
321
|
divider: {
|
|
@@ -333,10 +326,6 @@ module.exports = {
|
|
|
333
326
|
DEFAULT: '#F57733',
|
|
334
327
|
foreground: '#FFFFFF',
|
|
335
328
|
},
|
|
336
|
-
gold: {
|
|
337
|
-
DEFAULT: '#FFB800',
|
|
338
|
-
foreground: '#FFFFFF',
|
|
339
|
-
},
|
|
340
329
|
bullish: {
|
|
341
330
|
DEFAULT: '#45B167',
|
|
342
331
|
foreground: '#FFFFFF',
|
|
@@ -367,7 +356,7 @@ module.exports = {
|
|
|
367
356
|
},
|
|
368
357
|
foreground: {
|
|
369
358
|
100: '#D8D8DE',
|
|
370
|
-
300: '#
|
|
359
|
+
300: '#61656B',
|
|
371
360
|
500: '#000000',
|
|
372
361
|
DEFAULT: '#000000',
|
|
373
362
|
},
|
|
@@ -389,7 +378,7 @@ module.exports = {
|
|
|
389
378
|
foreground: '#FFFFFF',
|
|
390
379
|
},
|
|
391
380
|
secondary: {
|
|
392
|
-
DEFAULT: '#
|
|
381
|
+
DEFAULT: '#61656B',
|
|
393
382
|
foreground: '#FFFFFF',
|
|
394
383
|
},
|
|
395
384
|
tertiary: {
|
|
@@ -405,7 +394,7 @@ module.exports = {
|
|
|
405
394
|
foreground: '#FFFFFF',
|
|
406
395
|
},
|
|
407
396
|
warning: {
|
|
408
|
-
DEFAULT: '#
|
|
397
|
+
DEFAULT: '#F38300',
|
|
409
398
|
foreground: '#FFFFFF',
|
|
410
399
|
},
|
|
411
400
|
divider: {
|
|
@@ -416,10 +405,6 @@ module.exports = {
|
|
|
416
405
|
DEFAULT: '#E65E16',
|
|
417
406
|
foreground: '#FFFFFF',
|
|
418
407
|
},
|
|
419
|
-
gold: {
|
|
420
|
-
DEFAULT: '#F38300',
|
|
421
|
-
foreground: '#FFFFFF',
|
|
422
|
-
},
|
|
423
408
|
bullish: {
|
|
424
409
|
DEFAULT: '#2E9F4A',
|
|
425
410
|
foreground: '#FFFFFF',
|
|
@@ -430,7 +415,7 @@ module.exports = {
|
|
|
430
415
|
},
|
|
431
416
|
},
|
|
432
417
|
},
|
|
433
|
-
'ux-
|
|
418
|
+
'ux-dark': {
|
|
434
419
|
extend: 'dark',
|
|
435
420
|
colors: {
|
|
436
421
|
content1: {
|
|
@@ -442,9 +427,9 @@ module.exports = {
|
|
|
442
427
|
foreground: '#FFFFFF',
|
|
443
428
|
},
|
|
444
429
|
background: {
|
|
445
|
-
200: '#
|
|
430
|
+
200: '#282930',
|
|
446
431
|
300: '#1F2025',
|
|
447
|
-
400: '#
|
|
432
|
+
400: '#151517',
|
|
448
433
|
500: '#100E11',
|
|
449
434
|
DEFAULT: '#100E11',
|
|
450
435
|
},
|
|
@@ -488,7 +473,7 @@ module.exports = {
|
|
|
488
473
|
foreground: '#FFFFFF',
|
|
489
474
|
},
|
|
490
475
|
warning: {
|
|
491
|
-
DEFAULT: '#
|
|
476
|
+
DEFAULT: '#FFB800',
|
|
492
477
|
foreground: '#FFFFFF',
|
|
493
478
|
},
|
|
494
479
|
divider: {
|
|
@@ -499,10 +484,6 @@ module.exports = {
|
|
|
499
484
|
DEFAULT: '#F37A39',
|
|
500
485
|
foreground: '#FFFFFF',
|
|
501
486
|
},
|
|
502
|
-
gold: {
|
|
503
|
-
DEFAULT: '#FFB800',
|
|
504
|
-
foreground: '#FFFFFF',
|
|
505
|
-
},
|
|
506
487
|
bullish: {
|
|
507
488
|
DEFAULT: '#19AB5E',
|
|
508
489
|
foreground: '#FFFFFF',
|
|
@@ -513,7 +494,7 @@ module.exports = {
|
|
|
513
494
|
},
|
|
514
495
|
},
|
|
515
496
|
},
|
|
516
|
-
'ux-
|
|
497
|
+
'ux-light': {
|
|
517
498
|
extend: 'light',
|
|
518
499
|
colors: {
|
|
519
500
|
content1: {
|
|
@@ -525,7 +506,7 @@ module.exports = {
|
|
|
525
506
|
foreground: '#000000',
|
|
526
507
|
},
|
|
527
508
|
background: {
|
|
528
|
-
200: '#
|
|
509
|
+
200: '#EFEDF5',
|
|
529
510
|
300: '#F6F6F6',
|
|
530
511
|
400: '#FFFFFF',
|
|
531
512
|
500: '#F6F6F6',
|
|
@@ -571,7 +552,7 @@ module.exports = {
|
|
|
571
552
|
foreground: '#FFFFFF',
|
|
572
553
|
},
|
|
573
554
|
warning: {
|
|
574
|
-
DEFAULT: '#
|
|
555
|
+
DEFAULT: '#F38300',
|
|
575
556
|
foreground: '#FFFFFF',
|
|
576
557
|
},
|
|
577
558
|
divider: {
|
|
@@ -579,11 +560,7 @@ module.exports = {
|
|
|
579
560
|
foreground: '#000000',
|
|
580
561
|
},
|
|
581
562
|
alert: {
|
|
582
|
-
DEFAULT: '#
|
|
583
|
-
foreground: '#FFFFFF',
|
|
584
|
-
},
|
|
585
|
-
gold: {
|
|
586
|
-
DEFAULT: '#FFB800',
|
|
563
|
+
DEFAULT: '#E65E16',
|
|
587
564
|
foreground: '#FFFFFF',
|
|
588
565
|
},
|
|
589
566
|
bullish: {
|
|
@@ -654,7 +631,7 @@ module.exports = {
|
|
|
654
631
|
foreground: '#000000',
|
|
655
632
|
},
|
|
656
633
|
warning: {
|
|
657
|
-
DEFAULT: '#
|
|
634
|
+
DEFAULT: '#F5DA54',
|
|
658
635
|
foreground: '#000000',
|
|
659
636
|
},
|
|
660
637
|
divider: {
|
|
@@ -665,10 +642,6 @@ module.exports = {
|
|
|
665
642
|
DEFAULT: '#F55832',
|
|
666
643
|
foreground: '#000000',
|
|
667
644
|
},
|
|
668
|
-
gold: {
|
|
669
|
-
DEFAULT: '#F5DA54',
|
|
670
|
-
foreground: '#000000',
|
|
671
|
-
},
|
|
672
645
|
bullish: {
|
|
673
646
|
DEFAULT: '#86D99F',
|
|
674
647
|
foreground: '#000000',
|
|
@@ -748,10 +721,6 @@ module.exports = {
|
|
|
748
721
|
DEFAULT: '#F57733',
|
|
749
722
|
foreground: '#000000',
|
|
750
723
|
},
|
|
751
|
-
gold: {
|
|
752
|
-
DEFAULT: '#F7931A',
|
|
753
|
-
foreground: '#000000',
|
|
754
|
-
},
|
|
755
724
|
bullish: {
|
|
756
725
|
DEFAULT: '#2FE3AC',
|
|
757
726
|
foreground: '#000000',
|
|
@@ -831,10 +800,6 @@ module.exports = {
|
|
|
831
800
|
DEFAULT: '#EF8F50',
|
|
832
801
|
foreground: '#000000',
|
|
833
802
|
},
|
|
834
|
-
gold: {
|
|
835
|
-
DEFAULT: '#FFB648',
|
|
836
|
-
foreground: '#000000',
|
|
837
|
-
},
|
|
838
803
|
bullish: {
|
|
839
804
|
DEFAULT: '#50D2C1',
|
|
840
805
|
foreground: '#000000',
|
|
@@ -903,7 +868,7 @@ module.exports = {
|
|
|
903
868
|
foreground: '#000000',
|
|
904
869
|
},
|
|
905
870
|
warning: {
|
|
906
|
-
DEFAULT: '#
|
|
871
|
+
DEFAULT: '#FFD13F',
|
|
907
872
|
foreground: '#000000',
|
|
908
873
|
},
|
|
909
874
|
divider: {
|
|
@@ -914,10 +879,6 @@ module.exports = {
|
|
|
914
879
|
DEFAULT: '#FF9C3F',
|
|
915
880
|
foreground: '#000000',
|
|
916
881
|
},
|
|
917
|
-
gold: {
|
|
918
|
-
DEFAULT: '#FFD13F',
|
|
919
|
-
foreground: '#000000',
|
|
920
|
-
},
|
|
921
882
|
bullish: {
|
|
922
883
|
DEFAULT: '#2EC08B',
|
|
923
884
|
foreground: '#000000',
|
|
@@ -997,10 +958,6 @@ module.exports = {
|
|
|
997
958
|
DEFAULT: '#FF693D',
|
|
998
959
|
foreground: '#000000',
|
|
999
960
|
},
|
|
1000
|
-
gold: {
|
|
1001
|
-
DEFAULT: '#2DBD85',
|
|
1002
|
-
foreground: '#000000',
|
|
1003
|
-
},
|
|
1004
961
|
bullish: {
|
|
1005
962
|
DEFAULT: '#2EBD85',
|
|
1006
963
|
foreground: '#000000',
|
|
@@ -1069,7 +1026,7 @@ module.exports = {
|
|
|
1069
1026
|
foreground: '#FFFFFF',
|
|
1070
1027
|
},
|
|
1071
1028
|
warning: {
|
|
1072
|
-
DEFAULT: '#
|
|
1029
|
+
DEFAULT: '#E9BF52',
|
|
1073
1030
|
foreground: '#000000',
|
|
1074
1031
|
},
|
|
1075
1032
|
divider: {
|
|
@@ -1080,10 +1037,6 @@ module.exports = {
|
|
|
1080
1037
|
DEFAULT: '#E9BF52',
|
|
1081
1038
|
foreground: '#000000',
|
|
1082
1039
|
},
|
|
1083
|
-
gold: {
|
|
1084
|
-
DEFAULT: '#E9BF52',
|
|
1085
|
-
foreground: '#000000',
|
|
1086
|
-
},
|
|
1087
1040
|
bullish: {
|
|
1088
1041
|
DEFAULT: '#459C6E',
|
|
1089
1042
|
foreground: '#FFFFFF',
|