@orderly.network/ui 2.10.1 → 2.10.2
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/index.css +214 -242
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +372 -178
- package/dist/index.d.ts +372 -178
- package/dist/index.js +1004 -616
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1002 -617
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +3 -3
- package/src/tailwind/index.ts +1 -1
- package/src/tailwind/theme/darkTheme.ts +109 -0
- package/src/tailwind/theme/index.ts +2 -0
- package/src/tailwind/theme/lightTheme.ts +108 -0
- package/tailwind.config.js +31 -11
- package/src/tailwind/theme.ts +0 -102
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orderly.network/ui",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"react-error-boundary": "^4.0.13",
|
|
43
43
|
"react-hot-toast": "^2.4.1",
|
|
44
44
|
"tailwind-variants": "^0.2.1",
|
|
45
|
-
"@orderly.network/utils": "2.10.
|
|
45
|
+
"@orderly.network/utils": "2.10.2"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@types/node": "^22.15.21",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"tailwindcss-animate": "^1.0.6",
|
|
56
56
|
"tsup": "^8.5.1",
|
|
57
57
|
"typescript": "^5.1.6",
|
|
58
|
-
"tsconfig": "0.13.
|
|
58
|
+
"tsconfig": "0.13.2"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|
|
61
61
|
"react": ">=18",
|
package/src/tailwind/index.ts
CHANGED
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import plugin from "tailwindcss/plugin";
|
|
2
|
+
|
|
3
|
+
export const DARK_THEME_CSS_VARS = {
|
|
4
|
+
"--oui-font-family":
|
|
5
|
+
'"Manrope","PingFang SC", "Noto Sans CJK SC", "Noto Sans", sans-serif',
|
|
6
|
+
|
|
7
|
+
/* colors */
|
|
8
|
+
"--oui-color-primary": "176 132 233",
|
|
9
|
+
"--oui-color-primary-light": "213 190 244",
|
|
10
|
+
"--oui-color-primary-darken": "137 76 209",
|
|
11
|
+
"--oui-color-primary-contrast": "255 255 255",
|
|
12
|
+
|
|
13
|
+
"--oui-color-link": "189 107 237",
|
|
14
|
+
"--oui-color-link-light": "217 152 250",
|
|
15
|
+
|
|
16
|
+
"--oui-color-secondary": "255 255 255",
|
|
17
|
+
"--oui-color-tertiary": "218 218 218",
|
|
18
|
+
"--oui-color-quaternary": "218 218 218",
|
|
19
|
+
|
|
20
|
+
"--oui-color-danger": "245 97 139",
|
|
21
|
+
"--oui-color-danger-light": "250 167 188",
|
|
22
|
+
"--oui-color-danger-darken": "237 72 122",
|
|
23
|
+
"--oui-color-danger-contrast": "255 255 255",
|
|
24
|
+
|
|
25
|
+
"--oui-color-success": "41 233 169",
|
|
26
|
+
"--oui-color-success-light": "101 240 194",
|
|
27
|
+
"--oui-color-success-darken": "0 161 120",
|
|
28
|
+
"--oui-color-success-contrast": "255 255 255",
|
|
29
|
+
|
|
30
|
+
"--oui-color-warning": "255 209 70",
|
|
31
|
+
"--oui-color-warning-light": "255 229 133",
|
|
32
|
+
"--oui-color-warning-darken": "255 152 0",
|
|
33
|
+
"--oui-color-warning-contrast": "255 255 255",
|
|
34
|
+
|
|
35
|
+
"--oui-color-fill": "36 32 47",
|
|
36
|
+
"--oui-color-fill-active": "40 46 58",
|
|
37
|
+
|
|
38
|
+
"--oui-color-base-1": "93 83 123",
|
|
39
|
+
"--oui-color-base-2": "81 72 107",
|
|
40
|
+
"--oui-color-base-3": "68 61 69",
|
|
41
|
+
"--oui-color-base-4": "57 52 74",
|
|
42
|
+
"--oui-color-base-5": "51 46 66",
|
|
43
|
+
"--oui-color-base-6": "43 38 56",
|
|
44
|
+
"--oui-color-base-7": "36 32 47",
|
|
45
|
+
"--oui-color-base-8": "29 26 38",
|
|
46
|
+
"--oui-color-base-9": "22 20 28",
|
|
47
|
+
"--oui-color-base-10": "14 13 18",
|
|
48
|
+
|
|
49
|
+
"--oui-color-base-foreground": "255 255 255",
|
|
50
|
+
"--oui-color-line": "255 255 255",
|
|
51
|
+
|
|
52
|
+
"--oui-color-base-static": "255 255 255",
|
|
53
|
+
"--oui-color-base-static-contrast": "0 0 0",
|
|
54
|
+
|
|
55
|
+
"--oui-color-trading-loss": "245 97 139",
|
|
56
|
+
"--oui-color-trading-loss-contrast": "255 255 255",
|
|
57
|
+
"--oui-color-trading-profit": "41 233 169",
|
|
58
|
+
"--oui-color-trading-profit-contrast": "255 255 255",
|
|
59
|
+
|
|
60
|
+
/* gradients */
|
|
61
|
+
"--oui-gradient-primary-start": "40 0 97",
|
|
62
|
+
"--oui-gradient-primary-end": "189 107 237",
|
|
63
|
+
|
|
64
|
+
"--oui-gradient-secondary-start": "81 42 121",
|
|
65
|
+
"--oui-gradient-secondary-end": "176 132 233",
|
|
66
|
+
|
|
67
|
+
"--oui-gradient-success-start": "1 83 68",
|
|
68
|
+
"--oui-gradient-success-end": "41 223 169",
|
|
69
|
+
|
|
70
|
+
"--oui-gradient-danger-start": "153 24 76",
|
|
71
|
+
"--oui-gradient-danger-end": "245 97 139",
|
|
72
|
+
|
|
73
|
+
"--oui-gradient-brand-start": "231 219 249",
|
|
74
|
+
"--oui-gradient-brand-end": "159 107 225",
|
|
75
|
+
"--oui-gradient-brand-stop-start": "6.62%",
|
|
76
|
+
"--oui-gradient-brand-stop-end": "86.5%",
|
|
77
|
+
"--oui-gradient-brand-angle": "17.44deg",
|
|
78
|
+
|
|
79
|
+
"--oui-gradient-warning-start": "152 58 8",
|
|
80
|
+
"--oui-gradient-warning-end": "255 209 70",
|
|
81
|
+
|
|
82
|
+
"--oui-gradient-neutral-start": "27 29 24",
|
|
83
|
+
"--oui-gradient-neutral-end": "38 41 46",
|
|
84
|
+
|
|
85
|
+
/* rounded */
|
|
86
|
+
"--oui-rounded-sm": "2px",
|
|
87
|
+
"--oui-rounded": "4px",
|
|
88
|
+
"--oui-rounded-md": "6px",
|
|
89
|
+
"--oui-rounded-lg": "8px",
|
|
90
|
+
"--oui-rounded-xl": "12px",
|
|
91
|
+
"--oui-rounded-2xl": "16px",
|
|
92
|
+
"--oui-rounded-full": "9999px",
|
|
93
|
+
|
|
94
|
+
/* spacing */
|
|
95
|
+
"--oui-spacing-xs": "20rem",
|
|
96
|
+
"--oui-spacing-sm": "22.5rem",
|
|
97
|
+
"--oui-spacing-md": "26.25rem",
|
|
98
|
+
"--oui-spacing-lg": "30rem",
|
|
99
|
+
"--oui-spacing-xl": "33.75rem",
|
|
100
|
+
};
|
|
101
|
+
|
|
102
|
+
export type ThemeCssVars = typeof DARK_THEME_CSS_VARS;
|
|
103
|
+
|
|
104
|
+
export const darkThemePlugin = () =>
|
|
105
|
+
plugin(function ({ addBase }) {
|
|
106
|
+
addBase({
|
|
107
|
+
":root": DARK_THEME_CSS_VARS,
|
|
108
|
+
});
|
|
109
|
+
});
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import plugin from "tailwindcss/plugin";
|
|
2
|
+
|
|
3
|
+
export const LIGHT_THEME_CSS_VARS = {
|
|
4
|
+
"--oui-font-family":
|
|
5
|
+
'"Manrope", "PingFang SC", "Noto Sans CJK SC", "Noto Sans", sans-serif',
|
|
6
|
+
|
|
7
|
+
/* colors */
|
|
8
|
+
"--oui-color-primary": "240 185 11",
|
|
9
|
+
"--oui-color-primary-light": "240 185 11",
|
|
10
|
+
"--oui-color-primary-darken": "240 185 11",
|
|
11
|
+
"--oui-color-primary-contrast": "12 14 18",
|
|
12
|
+
|
|
13
|
+
"--oui-color-link": "230 175 0",
|
|
14
|
+
"--oui-color-link-light": "252 213 53",
|
|
15
|
+
|
|
16
|
+
"--oui-color-secondary": "255 255 255",
|
|
17
|
+
"--oui-color-tertiary": "234 236 239",
|
|
18
|
+
"--oui-color-quaternary": "218 218 218",
|
|
19
|
+
|
|
20
|
+
"--oui-color-danger": "246 70 93",
|
|
21
|
+
"--oui-color-danger-light": "255 120 140",
|
|
22
|
+
"--oui-color-danger-darken": "220 50 75",
|
|
23
|
+
"--oui-color-danger-contrast": "0 0 0",
|
|
24
|
+
|
|
25
|
+
"--oui-color-success": "14 203 129",
|
|
26
|
+
"--oui-color-success-light": "50 220 160",
|
|
27
|
+
"--oui-color-success-darken": "46 189 133",
|
|
28
|
+
"--oui-color-success-contrast": "0 0 0",
|
|
29
|
+
|
|
30
|
+
"--oui-color-warning": "255 182 93",
|
|
31
|
+
"--oui-color-warning-light": "255 207 139",
|
|
32
|
+
"--oui-color-warning-darken": "255 125 0",
|
|
33
|
+
"--oui-color-warning-contrast": "0 0 0",
|
|
34
|
+
|
|
35
|
+
"--oui-color-fill": "245 245 245",
|
|
36
|
+
"--oui-color-fill-active": "238 238 238",
|
|
37
|
+
|
|
38
|
+
"--oui-color-base-1": "160 160 160",
|
|
39
|
+
"--oui-color-base-2": "210 210 210",
|
|
40
|
+
"--oui-color-base-3": "180 180 180",
|
|
41
|
+
"--oui-color-base-4": "200 202 205",
|
|
42
|
+
"--oui-color-base-5": "230 230 230",
|
|
43
|
+
"--oui-color-base-6": "245 245 245",
|
|
44
|
+
"--oui-color-base-7": "234 236 239",
|
|
45
|
+
"--oui-color-base-8": "255 255 255",
|
|
46
|
+
"--oui-color-base-9": "255 255 255",
|
|
47
|
+
"--oui-color-base-10": "245 245 245",
|
|
48
|
+
|
|
49
|
+
"--oui-color-base-foreground": "0 0 0",
|
|
50
|
+
"--oui-color-line": "0 0 0",
|
|
51
|
+
|
|
52
|
+
"--oui-color-base-static": "255 255 255",
|
|
53
|
+
"--oui-color-base-static-contrast": "0 0 0",
|
|
54
|
+
|
|
55
|
+
"--oui-color-trading-loss": "246 70 93",
|
|
56
|
+
"--oui-color-trading-loss-contrast": "255 255 255",
|
|
57
|
+
"--oui-color-trading-profit": "14 203 129",
|
|
58
|
+
"--oui-color-trading-profit-contrast": "255 255 255",
|
|
59
|
+
|
|
60
|
+
/* gradients */
|
|
61
|
+
"--oui-gradient-primary-start": "240 185 11",
|
|
62
|
+
"--oui-gradient-primary-end": "240 185 11",
|
|
63
|
+
|
|
64
|
+
"--oui-gradient-secondary-start": "252 213 53",
|
|
65
|
+
"--oui-gradient-secondary-end": "210 160 0",
|
|
66
|
+
|
|
67
|
+
"--oui-gradient-success-start": "14 203 129",
|
|
68
|
+
"--oui-gradient-success-end": "14 203 129",
|
|
69
|
+
|
|
70
|
+
"--oui-gradient-danger-start": "2246 70 93",
|
|
71
|
+
"--oui-gradient-danger-end": "246 70 93",
|
|
72
|
+
|
|
73
|
+
"--oui-gradient-warning-start": "255 182 93",
|
|
74
|
+
"--oui-gradient-warning-end": "255 182 93",
|
|
75
|
+
|
|
76
|
+
"--oui-gradient-neutral-start": "245 245 245",
|
|
77
|
+
"--oui-gradient-neutral-end": "245 245 245",
|
|
78
|
+
|
|
79
|
+
"--oui-gradient-brand-stop-start": "6.62%",
|
|
80
|
+
"--oui-gradient-brand-stop-end": "86.5%",
|
|
81
|
+
"--oui-gradient-brand-angle": "17.44deg",
|
|
82
|
+
|
|
83
|
+
"--oui-gradient-brand-start": "240 185 11",
|
|
84
|
+
"--oui-gradient-brand-end": "240 185 11",
|
|
85
|
+
|
|
86
|
+
/* rounded */
|
|
87
|
+
"--oui-rounded-sm": "2px",
|
|
88
|
+
"--oui-rounded": "4px",
|
|
89
|
+
"--oui-rounded-md": "6px",
|
|
90
|
+
"--oui-rounded-lg": "8px",
|
|
91
|
+
"--oui-rounded-xl": "12px",
|
|
92
|
+
"--oui-rounded-2xl": "16px",
|
|
93
|
+
"--oui-rounded-full": "9999px",
|
|
94
|
+
|
|
95
|
+
/* spacing */
|
|
96
|
+
"--oui-spacing-xs": "20rem",
|
|
97
|
+
"--oui-spacing-sm": "22.5rem",
|
|
98
|
+
"--oui-spacing-md": "26.25rem",
|
|
99
|
+
"--oui-spacing-lg": "30rem",
|
|
100
|
+
"--oui-spacing-xl": "33.75rem",
|
|
101
|
+
};
|
|
102
|
+
|
|
103
|
+
export const lightThemePlugin = () =>
|
|
104
|
+
plugin(function ({ addBase }) {
|
|
105
|
+
addBase({
|
|
106
|
+
'[data-oui-theme="light"]': LIGHT_THEME_CSS_VARS,
|
|
107
|
+
});
|
|
108
|
+
});
|
package/tailwind.config.js
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
import { withTV } from "tailwind-variants/transformer";
|
|
2
|
+
import {
|
|
3
|
+
darkThemePlugin,
|
|
4
|
+
basePlugin,
|
|
5
|
+
sizePlugin,
|
|
6
|
+
chartPlugin,
|
|
7
|
+
gradientPlugin,
|
|
8
|
+
positionPlugin,
|
|
9
|
+
componentsPlugin,
|
|
10
|
+
scrollBarPlugin,
|
|
11
|
+
} from "./src/tailwind";
|
|
11
12
|
|
|
12
13
|
/** @type {import('tailwindcss').Config} */
|
|
13
14
|
module.exports = withTV({
|
|
@@ -156,16 +157,35 @@ module.exports = withTV({
|
|
|
156
157
|
80: "rgb(var(--oui-color-base-foreground) / 0.80)",
|
|
157
158
|
54: "rgb(var(--oui-color-base-foreground) / 0.54)",
|
|
158
159
|
36: "rgb(var(--oui-color-base-foreground) / 0.36)",
|
|
160
|
+
30: "rgb(var(--oui-color-base-foreground) / 0.30)",
|
|
159
161
|
20: "rgb(var(--oui-color-base-foreground) / 0.2)",
|
|
160
162
|
16: "rgb(var(--oui-color-base-foreground) / 0.16)",
|
|
161
163
|
12: "rgb(var(--oui-color-base-foreground) / 0.12)",
|
|
164
|
+
10: "rgb(var(--oui-color-base-foreground) / 0.10)",
|
|
165
|
+
8: "rgb(var(--oui-color-base-foreground) / 0.08)",
|
|
166
|
+
6: "rgb(var(--oui-color-base-foreground) / 0.06)",
|
|
162
167
|
4: "rgb(var(--oui-color-base-foreground) / 0.04)",
|
|
163
168
|
},
|
|
169
|
+
static: {
|
|
170
|
+
DEFAULT: "rgb(var(--oui-color-base-static) / 0.98)",
|
|
171
|
+
80: "rgb(var(--oui-color-base-static) / 0.80)",
|
|
172
|
+
54: "rgb(var(--oui-color-base-static) / 0.54)",
|
|
173
|
+
36: "rgb(var(--oui-color-base-static) / 0.36)",
|
|
174
|
+
20: "rgb(var(--oui-color-base-static) / 0.2)",
|
|
175
|
+
contrast: {
|
|
176
|
+
DEFAULT: "rgb(var(--oui-color-base-static-contrast) / 0.98)",
|
|
177
|
+
80: "rgb(var(--oui-color-base-static-contrast) / 0.80)",
|
|
178
|
+
54: "rgb(var(--oui-color-base-static-contrast) / 0.54)",
|
|
179
|
+
36: "rgb(var(--oui-color-base-static-contrast) / 0.36)",
|
|
180
|
+
20: "rgb(var(--oui-color-base-static-contrast) / 0.2)",
|
|
181
|
+
},
|
|
182
|
+
},
|
|
164
183
|
},
|
|
165
184
|
line: {
|
|
166
185
|
4: "rgb(var(--oui-color-line, 255 255 255) / 0.04)",
|
|
167
186
|
6: "rgb(var(--oui-color-line, 255 255 255) / 0.06)",
|
|
168
187
|
DEFAULT: "rgb(var(--oui-color-line, 255 255 255) / 0.08)",
|
|
188
|
+
10: "rgb(var(--oui-color-line, 255 255 255) / 0.10)",
|
|
169
189
|
12: "rgb(var(--oui-color-line, 255 255 255) / 0.12)",
|
|
170
190
|
16: "rgb(var(--oui-color-line, 255 255 255) / 0.16)",
|
|
171
191
|
},
|
|
@@ -240,7 +260,7 @@ module.exports = withTV({
|
|
|
240
260
|
},
|
|
241
261
|
},
|
|
242
262
|
plugins: [
|
|
243
|
-
|
|
263
|
+
darkThemePlugin(),
|
|
244
264
|
basePlugin(),
|
|
245
265
|
sizePlugin(),
|
|
246
266
|
chartPlugin(),
|
package/src/tailwind/theme.ts
DELETED
|
@@ -1,102 +0,0 @@
|
|
|
1
|
-
import plugin from "tailwindcss/plugin";
|
|
2
|
-
|
|
3
|
-
export const themePlugin = () =>
|
|
4
|
-
plugin(function ({ addBase }) {
|
|
5
|
-
addBase({
|
|
6
|
-
":root": {
|
|
7
|
-
"--oui-font-family":
|
|
8
|
-
'"Manrope","PingFang SC", "Noto Sans CJK SC", "Noto Sans", sans-serif',
|
|
9
|
-
|
|
10
|
-
/* colors */
|
|
11
|
-
"--oui-color-primary": "176 132 233",
|
|
12
|
-
"--oui-color-primary-light": "213 190 244",
|
|
13
|
-
"--oui-color-primary-darken": "137 76 209",
|
|
14
|
-
"--oui-color-primary-contrast": "255 255 255",
|
|
15
|
-
|
|
16
|
-
"--oui-color-link": "189 107 237",
|
|
17
|
-
"--oui-color-link-light": "217 152 250",
|
|
18
|
-
|
|
19
|
-
"--oui-color-secondary": "255 255 255",
|
|
20
|
-
"--oui-color-tertiary": "218 218 218",
|
|
21
|
-
"--oui-color-quaternary": "218 218 218",
|
|
22
|
-
|
|
23
|
-
"--oui-color-danger": "245 97 139",
|
|
24
|
-
"--oui-color-danger-light": "250 167 188",
|
|
25
|
-
"--oui-color-danger-darken": "237 72 122",
|
|
26
|
-
"--oui-color-danger-contrast": "255 255 255",
|
|
27
|
-
|
|
28
|
-
"--oui-color-success": "41 233 169",
|
|
29
|
-
"--oui-color-success-light": "101 240 194",
|
|
30
|
-
"--oui-color-success-darken": "0 161 120",
|
|
31
|
-
"--oui-color-success-contrast": "255 255 255",
|
|
32
|
-
|
|
33
|
-
"--oui-color-warning": "255 209 70",
|
|
34
|
-
"--oui-color-warning-light": "255 229 133",
|
|
35
|
-
"--oui-color-warning-darken": "255 152 0",
|
|
36
|
-
"--oui-color-warning-contrast": "255 255 255",
|
|
37
|
-
|
|
38
|
-
"--oui-color-fill": "36 32 47",
|
|
39
|
-
"--oui-color-fill-active": "40 46 58",
|
|
40
|
-
|
|
41
|
-
"--oui-color-base-1": "93 83 123",
|
|
42
|
-
"--oui-color-base-2": "81 72 107",
|
|
43
|
-
"--oui-color-base-3": "68 61 69",
|
|
44
|
-
"--oui-color-base-4": "57 52 74",
|
|
45
|
-
"--oui-color-base-5": "51 46 66",
|
|
46
|
-
"--oui-color-base-6": "43 38 56",
|
|
47
|
-
"--oui-color-base-7": "36 32 47",
|
|
48
|
-
"--oui-color-base-8": "29 26 38",
|
|
49
|
-
"--oui-color-base-9": "22 20 28",
|
|
50
|
-
"--oui-color-base-10": "14 13 18",
|
|
51
|
-
|
|
52
|
-
"--oui-color-base-foreground": "255 255 255",
|
|
53
|
-
"--oui-color-line": "255 255 255",
|
|
54
|
-
|
|
55
|
-
"--oui-color-trading-loss": "245 97 139",
|
|
56
|
-
"--oui-color-trading-loss-contrast": "255 255 255",
|
|
57
|
-
"--oui-color-trading-profit": "41 233 169",
|
|
58
|
-
"--oui-color-trading-profit-contrast": "255 255 255",
|
|
59
|
-
|
|
60
|
-
/* gradients */
|
|
61
|
-
"--oui-gradient-primary-start": "40 0 97",
|
|
62
|
-
"--oui-gradient-primary-end": "189 107 237",
|
|
63
|
-
|
|
64
|
-
"--oui-gradient-secondary-start": "81 42 121",
|
|
65
|
-
"--oui-gradient-secondary-end": "176 132 233",
|
|
66
|
-
|
|
67
|
-
"--oui-gradient-success-start": "1 83 68",
|
|
68
|
-
"--oui-gradient-success-end": "41 223 169",
|
|
69
|
-
|
|
70
|
-
"--oui-gradient-danger-start": "153 24 76",
|
|
71
|
-
"--oui-gradient-danger-end": "245 97 139",
|
|
72
|
-
|
|
73
|
-
"--oui-gradient-brand-start": "231 219 249",
|
|
74
|
-
"--oui-gradient-brand-end": "159 107 225",
|
|
75
|
-
"--oui-gradient-brand-stop-start": "6.62%",
|
|
76
|
-
"--oui-gradient-brand-stop-end": "86.5%",
|
|
77
|
-
"--oui-gradient-brand-angle": "17.44deg",
|
|
78
|
-
|
|
79
|
-
"--oui-gradient-warning-start": "152 58 8",
|
|
80
|
-
"--oui-gradient-warning-end": "255 209 70",
|
|
81
|
-
|
|
82
|
-
"--oui-gradient-neutral-start": "27 29 24",
|
|
83
|
-
"--oui-gradient-neutral-end": "38 41 46",
|
|
84
|
-
|
|
85
|
-
/* rounded */
|
|
86
|
-
"--oui-rounded-sm": "2px",
|
|
87
|
-
"--oui-rounded": "4px",
|
|
88
|
-
"--oui-rounded-md": "6px",
|
|
89
|
-
"--oui-rounded-lg": "8px",
|
|
90
|
-
"--oui-rounded-xl": " 12px",
|
|
91
|
-
"--oui-rounded-2xl": "16px",
|
|
92
|
-
"--oui-rounded-full": "9999px",
|
|
93
|
-
|
|
94
|
-
/* spacing */
|
|
95
|
-
"--oui-spacing-xs": "20rem",
|
|
96
|
-
"--oui-spacing-sm": "22.5rem",
|
|
97
|
-
"--oui-spacing-md": "26.25rem",
|
|
98
|
-
"--oui-spacing-lg": "30rem",
|
|
99
|
-
"--oui-spacing-xl": "33.75rem",
|
|
100
|
-
},
|
|
101
|
-
});
|
|
102
|
-
});
|