@trionesdev/antd-mobile-base-react 0.0.2-beta.0 → 0.0.2-beta.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.
Files changed (71) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +23 -23
  3. package/dist/ActionSheet/style.scss +51 -51
  4. package/dist/Alert/style.scss +69 -69
  5. package/dist/Avatar/style.scss +16 -16
  6. package/dist/Badge/style.scss +100 -100
  7. package/dist/Card/style.scss +35 -35
  8. package/dist/CascaderPicker/cascader-picker.js +1 -1
  9. package/dist/CascaderPicker/style.scss +42 -42
  10. package/dist/CascaderView/cascader-view.js +1 -1
  11. package/dist/CascaderView/style.scss +22 -22
  12. package/dist/Cell/styles.scss +52 -52
  13. package/dist/Checkbox/index.scss +151 -151
  14. package/dist/DemoBlock/index.scss +20 -20
  15. package/dist/DemoDescription/index.scss +3 -3
  16. package/dist/Descriptions/style.scss +65 -65
  17. package/dist/Divider/style.scss +62 -62
  18. package/dist/Ellipsis/style.scss +13 -13
  19. package/dist/Empty/style.scss +29 -29
  20. package/dist/ErrorBlock/demo/base.js +2 -2
  21. package/dist/ErrorBlock/style.scss +62 -62
  22. package/dist/Footer/style.scss +55 -55
  23. package/dist/Form/FormItem/form-item-input.js +1 -1
  24. package/dist/Form/FormItem/form-item-label.js +1 -1
  25. package/dist/Form/style.scss +45 -45
  26. package/dist/Grid/style.scss +17 -17
  27. package/dist/Icon/demo/base.js +3 -3
  28. package/dist/Input/index.scss +173 -173
  29. package/dist/InputNumber/style.scss +43 -43
  30. package/dist/Mask/style.scss +20 -20
  31. package/dist/NavBar/style.scss +61 -61
  32. package/dist/NoticeBar/style.scss +130 -130
  33. package/dist/PageIndicator/style.scss +59 -59
  34. package/dist/Picker/picker.js +1 -1
  35. package/dist/Picker/style.scss +41 -41
  36. package/dist/PickerView/picker-view-column.js +1 -1
  37. package/dist/PickerView/picker-view.js +1 -1
  38. package/dist/PickerView/style.scss +72 -72
  39. package/dist/Popup/style.scss +53 -53
  40. package/dist/Radio/style.scss +138 -138
  41. package/dist/Rate/style.scss +37 -37
  42. package/dist/Result/demo/base.js +2 -2
  43. package/dist/Result/style.scss +73 -73
  44. package/dist/SafeArea/style.scss +18 -18
  45. package/dist/Scaffold/style.scss +16 -16
  46. package/dist/ScrollView/style.scss +19 -19
  47. package/dist/SideBar/side-bar.js +6 -6
  48. package/dist/SideBar/style.scss +85 -85
  49. package/dist/Space/style.scss +77 -77
  50. package/dist/SpinLoading/spin-loading.scss +40 -40
  51. package/dist/Steps/style.scss +146 -146
  52. package/dist/Switch/style.scss +128 -128
  53. package/dist/TabBar/demo/base.js +2 -2
  54. package/dist/TabBar/index.scss +36 -36
  55. package/dist/TabBar/tab-bar.d.ts +1 -1
  56. package/dist/TabBar/tab-bar.js +3 -2
  57. package/dist/Tabs/style.scss +108 -108
  58. package/dist/Tabs/tabs.js +1 -1
  59. package/dist/Tag/demo/base.js +2 -2
  60. package/dist/Tag/demo/style.scss +8 -8
  61. package/dist/Tag/style.scss +86 -86
  62. package/dist/Toast/style.scss +63 -63
  63. package/dist/VerificationCodeInput/style.scss +20 -20
  64. package/dist/WaterMark/style.scss +17 -17
  65. package/dist/style/style.scss +52 -52
  66. package/dist/style/theme-dark.scss +24 -24
  67. package/dist/style/theme-default.scss +54 -54
  68. package/dist/style/variable.scss +168 -168
  69. package/dist/utils/type.js +36 -36
  70. package/dist/utils/with-default-props.js +4 -4
  71. package/package.json +5 -6
@@ -1,52 +1,52 @@
1
- @import './theme-default.scss';
2
- @import './theme-dark.scss';
3
-
4
- :root {
5
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
6
- }
7
-
8
- html {
9
- background-color: var(--triones-antm-color-background-body);
10
- }
11
-
12
- body {
13
- color: var(--triones-antm-color-text);
14
- font-size: 14Px;
15
- font-family: var(--triones-antm-font-family);
16
- }
17
-
18
- a,
19
- button {
20
- cursor: pointer;
21
- }
22
-
23
- a {
24
- color: var(--triones-antm-color-primary);
25
- transition: opacity ease-in-out 0.2s;
26
- &:active {
27
- opacity: 0.8;
28
- }
29
- }
30
-
31
- .adm-plain-anchor {
32
- color: unset;
33
- transition: none;
34
- &:active {
35
- opacity: unset;
36
- }
37
- }
38
-
39
- body.triones-antm-overflow-hidden {
40
- overflow: hidden !important;
41
- }
42
-
43
- div.triones-antm-px-tester {
44
- --size: 1;
45
- height: calc(var(--size) / 2 * 2Px);
46
- width: 0;
47
- position: fixed;
48
- left: -100vw;
49
- top: -100vh;
50
- user-select: none;
51
- pointer-events: none;
52
- }
1
+ @use './theme-default.scss' as *;
2
+ @use './theme-dark.scss' as *;
3
+
4
+ :root {
5
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
6
+ }
7
+
8
+ html {
9
+ background-color: var(--triones-antm-color-background-body);
10
+ }
11
+
12
+ body {
13
+ color: var(--triones-antm-color-text);
14
+ font-size: 14Px;
15
+ font-family: var(--triones-antm-font-family);
16
+ }
17
+
18
+ a,
19
+ button {
20
+ cursor: pointer;
21
+ }
22
+
23
+ a {
24
+ color: var(--triones-antm-color-primary);
25
+ transition: opacity ease-in-out 0.2s;
26
+ &:active {
27
+ opacity: 0.8;
28
+ }
29
+ }
30
+
31
+ .adm-plain-anchor {
32
+ color: unset;
33
+ transition: none;
34
+ &:active {
35
+ opacity: unset;
36
+ }
37
+ }
38
+
39
+ body.triones-antm-overflow-hidden {
40
+ overflow: hidden !important;
41
+ }
42
+
43
+ div.triones-antm-px-tester {
44
+ --size: 1;
45
+ height: calc(var(--size) / 2 * 2Px);
46
+ width: 0;
47
+ position: fixed;
48
+ left: -100vw;
49
+ top: -100vh;
50
+ user-select: none;
51
+ pointer-events: none;
52
+ }
@@ -1,24 +1,24 @@
1
- html[data-prefers-color-scheme='dark'] {
2
- // variables should be exposed to users:
3
- --triones-antm-color-primary: #3086ff;
4
- --triones-antm-color-success: #34b368;
5
- --triones-antm-color-warning: #ffa930;
6
- --triones-antm-color-danger: #ff4a58;
7
-
8
- --triones-antm-color-yellow: #ffa930;
9
- --triones-antm-color-orange: #e65a2b;
10
- --triones-antm-color-wathet: #0d2543;
11
-
12
- --triones-antm-color-text: #e6e6e6;
13
- --triones-antm-color-text-secondary: #b3b3b3;
14
- --triones-antm-color-weak: #808080;
15
- --triones-antm-color-light: #4d4d4d;
16
- --triones-antm-color-border: #2b2b2b;
17
- --triones-antm-color-box: #0a0a0a;
18
- --triones-antm-color-background: #1a1a1a;
19
-
20
- --triones-antm-color-background-body: var(--triones-antm-color-background);
21
-
22
- // The variables below are deprecated and only exist for backward compatibility:
23
- --triones-antm-border-color: var(--triones-antm-color-border);
24
- }
1
+ html[data-prefers-color-scheme='dark'] {
2
+ // variables should be exposed to users:
3
+ --triones-antm-color-primary: #3086ff;
4
+ --triones-antm-color-success: #34b368;
5
+ --triones-antm-color-warning: #ffa930;
6
+ --triones-antm-color-danger: #ff4a58;
7
+
8
+ --triones-antm-color-yellow: #ffa930;
9
+ --triones-antm-color-orange: #e65a2b;
10
+ --triones-antm-color-wathet: #0d2543;
11
+
12
+ --triones-antm-color-text: #e6e6e6;
13
+ --triones-antm-color-text-secondary: #b3b3b3;
14
+ --triones-antm-color-weak: #808080;
15
+ --triones-antm-color-light: #4d4d4d;
16
+ --triones-antm-color-border: #2b2b2b;
17
+ --triones-antm-color-box: #0a0a0a;
18
+ --triones-antm-color-background: #1a1a1a;
19
+
20
+ --triones-antm-color-background-body: var(--triones-antm-color-background);
21
+
22
+ // The variables below are deprecated and only exist for backward compatibility:
23
+ --triones-antm-border-color: var(--triones-antm-color-border);
24
+ }
@@ -1,54 +1,54 @@
1
- :root {
2
- // Currently internal variables:
3
- --triones-antm-radius-s: 4Px;
4
- --triones-antm-radius-m: 8Px;
5
- --triones-antm-radius-l: 12Px;
6
-
7
- --triones-antm-font-size-1: 9Px;
8
- --triones-antm-font-size-2: 10Px;
9
- --triones-antm-font-size-3: 11Px;
10
- --triones-antm-font-size-4: 12Px;
11
- --triones-antm-font-size-5: 13Px;
12
- --triones-antm-font-size-6: 14Px;
13
- --triones-antm-font-size-7: 15Px;
14
- --triones-antm-font-size-8: 16Px;
15
- --triones-antm-font-size-9: 17Px;
16
- --triones-antm-font-size-10: 18Px;
17
-
18
- // variables should be exposed to users:
19
- --triones-antm-color-primary: #1677ff;
20
- --triones-antm-color-success: #00b578;
21
- --triones-antm-color-warning: #ff8f1f;
22
- --triones-antm-color-danger: #ff3141;
23
-
24
- --triones-antm-color-yellow: #ff9f18;
25
- --triones-antm-color-orange: #ff6430;
26
- --triones-antm-color-wathet: #e7f1ff;
27
-
28
- --triones-antm-color-text: #333333;
29
- --triones-antm-color-text-secondary: #666666;
30
- --triones-antm-color-weak: #999999;
31
- --triones-antm-color-light: #cccccc;
32
- --triones-antm-color-border: #eeeeee;
33
- --triones-antm-color-background: #ffffff;
34
-
35
- --triones-antm-color-highlight: var(--triones-antm-color-danger);
36
-
37
- // Deprecated. We use `--triones-antm-color-text-light-solid` in code
38
- // but keep here for compatible
39
- --triones-antm-color-white: #ffffff;
40
- --triones-antm-color-box: #f5f5f5;
41
-
42
- --triones-antm-color-text-light-solid: var(--triones-antm-color-white);
43
- --triones-antm-color-text-dark-solid: #000000;
44
- --triones-antm-color-fill-content: var(--triones-antm-color-box);
45
-
46
- --triones-antm-font-size-main: var(--triones-antm-font-size-5);
47
-
48
- --triones-antm-font-family: -apple-system, blinkmacsystemfont,
49
- 'Helvetica Neue', helvetica, segoe ui, arial, roboto, 'PingFang SC', 'miui',
50
- 'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
51
-
52
- // The variables below are deprecated and only exist for backward compatibility:
53
- --triones-antm-border-color: var(--triones-antm-color-border);
54
- }
1
+ :root {
2
+ // Currently internal variables:
3
+ --triones-antm-radius-s: 4Px;
4
+ --triones-antm-radius-m: 8Px;
5
+ --triones-antm-radius-l: 12Px;
6
+
7
+ --triones-antm-font-size-1: 9Px;
8
+ --triones-antm-font-size-2: 10Px;
9
+ --triones-antm-font-size-3: 11Px;
10
+ --triones-antm-font-size-4: 12Px;
11
+ --triones-antm-font-size-5: 13Px;
12
+ --triones-antm-font-size-6: 14Px;
13
+ --triones-antm-font-size-7: 15Px;
14
+ --triones-antm-font-size-8: 16Px;
15
+ --triones-antm-font-size-9: 17Px;
16
+ --triones-antm-font-size-10: 18Px;
17
+
18
+ // variables should be exposed to users:
19
+ --triones-antm-color-primary: #1677ff;
20
+ --triones-antm-color-success: #00b578;
21
+ --triones-antm-color-warning: #ff8f1f;
22
+ --triones-antm-color-danger: #ff3141;
23
+
24
+ --triones-antm-color-yellow: #ff9f18;
25
+ --triones-antm-color-orange: #ff6430;
26
+ --triones-antm-color-wathet: #e7f1ff;
27
+
28
+ --triones-antm-color-text: #333333;
29
+ --triones-antm-color-text-secondary: #666666;
30
+ --triones-antm-color-weak: #999999;
31
+ --triones-antm-color-light: #cccccc;
32
+ --triones-antm-color-border: #eeeeee;
33
+ --triones-antm-color-background: #ffffff;
34
+
35
+ --triones-antm-color-highlight: var(--triones-antm-color-danger);
36
+
37
+ // Deprecated. We use `--triones-antm-color-text-light-solid` in code
38
+ // but keep here for compatible
39
+ --triones-antm-color-white: #ffffff;
40
+ --triones-antm-color-box: #f5f5f5;
41
+
42
+ --triones-antm-color-text-light-solid: var(--triones-antm-color-white);
43
+ --triones-antm-color-text-dark-solid: #000000;
44
+ --triones-antm-color-fill-content: var(--triones-antm-color-box);
45
+
46
+ --triones-antm-font-size-main: var(--triones-antm-font-size-5);
47
+
48
+ --triones-antm-font-family: -apple-system, blinkmacsystemfont,
49
+ 'Helvetica Neue', helvetica, segoe ui, arial, roboto, 'PingFang SC', 'miui',
50
+ 'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
51
+
52
+ // The variables below are deprecated and only exist for backward compatibility:
53
+ --triones-antm-border-color: var(--triones-antm-color-border);
54
+ }
@@ -1,168 +1,168 @@
1
- $trionesBlue: #1677FF !default;
2
- $trionesPurple: #722ED1 !default;
3
-
4
- $trionesColorBgContainerDisabled: rgba(0, 0, 0, 0.04) !default;
5
- $trionesColorBorderBg: #ffffff !default;
6
- $trionesColorBorderSplit: rgba(5, 5, 5, 0.06) !default;
7
-
8
-
9
- $trionesColorText: rgba(0, 0, 0, 0.88) !default;
10
- $trionesColorText: #333333 !default;
11
- $trionesColorTextBase: #000 !default;
12
- $trionesColorTextSecondary: rgba(0, 0, 0, 0.65) !default;
13
- $trionesColorTextTertiary: rgba(0, 0, 0, 0.45) !default;
14
- $trionesColorTextQuaternary: rgba(0, 0, 0, 0.25) !default;
15
- $trionesColorTextPlaceholder: rgba(0, 0, 0, 0.25) !default;
16
- $trionesColorTextDisabled: rgba(0, 0, 0, 0.25) !default;
17
- $trionesColorTextHeading: rgba(0, 0, 0, 0.88) !default;
18
- $trionesColorTextLabel: rgba(0, 0, 0, 0.65) !default;
19
- $trionesColorTextDescription: rgba(0, 0, 0, 0.45) !default;
20
- $trionesColorTextLightSolid: #fff !default;
21
-
22
-
23
- $trionesColorHighlight: #ff4d4f !default;
24
- $trionesColorBgTextHover: rgba(0, 0, 0, 0.06) !default;
25
- $trionesColorBgTextActive: rgba(0, 0, 0, 0.15) !default;
26
-
27
-
28
- $trionesColorFill: rgba(0, 0, 0, 0.15) !default;
29
- $trionesColorFillSecondary: rgba(0, 0, 0, 0.06) !default;
30
- $trionesColorFillTertiary: rgba(0, 0, 0, 0.04) !default;
31
- $trionesColorFillQuaternary: rgba(0, 0, 0, 0.02) !default;
32
- $trionesColorFillContent: rgba(0, 0, 0, 0.06) !default;
33
- $trionesColorFillContentHover: rgba(0, 0, 0, 0.15) !default;
34
- $trionesColorFillContentAlter: rgba(0, 0, 0, 0.02) !default;
35
-
36
-
37
- $trionesColorPrimary: #1777FF !default;
38
- $trionesColorPrimaryBg: #e6f4ff !default;
39
- $trionesColorPrimaryBgHover: #bae0ff !default;
40
- $trionesColorPrimaryBorder: #91caff !default;
41
- $trionesColorPrimaryBorderHover: #69b1ff !default;
42
- $trionesColorPrimaryActive: #0958d9 !default;
43
- $trionesColorPrimaryTextHover: #4096ff !default;
44
- $trionesColorPrimaryText: #1677ff !default;
45
- $trionesColorPrimaryActive: #0958d9 !default;
46
-
47
- $trionesColorSuccess: #00b578 !default;
48
- $trionesColorSuccessBg: #f6ffed !default;
49
- $trionesColorSuccessBgHover: #d9f7be !default;
50
- $trionesColorSuccessBorder: #b7eb8f !default;
51
- $trionesColorSuccessBorderHover: #95de64 !default;
52
- $trionesColorSuccessHover: #95de64 !default;
53
- $trionesColorSuccessActive: #389e0d !default;
54
- $trionesColorSuccessText: #52c41a !default;
55
- $trionesColorSuccessTextActive: #389e0d !default;
56
-
57
-
58
- $trionesColorError: #ff4d4f !default;
59
- $trionesColorErrorBg: #fff2f0 !default;
60
- $trionesColorErrorBgHover: #fff1f0 !default;
61
- $trionesColorErrorBgFilledHover: #ffdfdc !default;
62
- $trionesColorErrorBgActive: #ffccc7 !default;
63
- $trionesColorErrorBorder: #ffccc7 !default;
64
- $trionesColorErrorBorderHover: #ffa39e !default;
65
- $trionesColorErrorHover: #ff7875 !default;
66
- $trionesColorErrorActive: #d9363e !default;
67
- $trionesColorErrorTextHover: #ff7875 !default;
68
- $trionesColorErrorText: #ff4d4f !default;
69
- $trionesColorErrorTextActive: #d9363e !default;
70
-
71
-
72
- $trionesColorWarning: #ff8f1f !default;
73
- $trionesColorWarningBg: #fffbe6 !default;
74
- $trionesColorWarningBgHover: #fff1b8 !default;
75
- $trionesColorWarningBgActive: #d48806 !default;
76
- $trionesColorWarningBorder: #ffe58f !default;
77
- $trionesColorWarningBorderHover: #ffd666 !default;
78
- $trionesColorWarningHover: #ffd666 !default;
79
- $trionesColorWarningActive: #d48806 !default;
80
- $trionesColorWarningTextHover: #ffc53d !default;
81
- $trionesColorWarningText: #faad14 !default;
82
- $trionesColorWarningTextActive: #d48806 !default;
83
-
84
- $trionesColorInfo: #1677ff !default;
85
- $trionesColorInfoBg: #e6f4ff !default;
86
- $trionesColorInfoBgHover: #bae0ff !default;
87
- $trionesColorInfoBgActive: #bae0ff !default;
88
- $trionesColorInfoBorder: #91caff !default;
89
- $trionesColorInfoBorderHover: #69b1ff !default;
90
- $trionesColorInfoHover: #69b1ff !default;
91
- $trionesColorInfoActive: #0958d9 !default;
92
- $trionesColorInfoTextHover: #4096ff !default;
93
- $trionesColorInfoText: #1677ff !default;
94
- $trionesColorInfoTextActive: #0958d9 !default;
95
-
96
-
97
- $trionesColorLink: #1677ff !default;
98
- $trionesColorLinkHover: #69b1ff !default;
99
- $trionesColorLinkActive: #0958d9 !default;
100
-
101
- $trionesColorDanger: #ff4d4f !default;
102
-
103
-
104
- $trionesColorBgBase: #fff !default;
105
-
106
- $trionesBorderRadius: 6Px !default;
107
- $trionesBorderRadiusXs: 2Px !default;
108
- $trionesBorderRadiusSm: 4Px !default;
109
- $trionesBorderRadiusLg: 8Px !default;
110
- $trionesBorderRadiusOuter: 4Px !default;
111
- $trionesBorderColor: #d9d9d9 !default;
112
- $trionesBorderColorSecondary: #f0f0f0 !default;
113
-
114
-
115
- $trionesColorBgMask: rgba(0, 0, 0, 0.45) !default;
116
-
117
- $trionesLineHeight: 1.5714285714285714 !default;
118
- $trionesLineHeightLg: 1.5 !default;
119
- $trionesLineHeightSm: 1.6666666666666667 !default;
120
-
121
- $trionesPaddingXxs: 4Px !default;
122
- $trionesPaddingXs: 8Px !default;
123
- $trionesPaddingSm: 12Px !default;
124
- $trionesPadding: 16Px !default;
125
- $trionesPaddingMd: 20Px !default;
126
- $trionesPaddingLg: 24Px !default;
127
- $trionesPaddingXl: 32Px !default;
128
- $trionesPaddingContentHorizontalLg: 24Px !default;
129
- $trionesPaddingContentVerticalLg: 16Px !default;
130
- $trionesPaddingContentHorizontal: 16Px !default;
131
- $trionesPaddingContentVertical: 12Px !default;
132
- $trionesPaddingContentHorizontalSm: 16Px !default;
133
- $trionesPaddingContentVerticalSm: 8Px !default;
134
-
135
-
136
- $trionesInputPaddingBlock: 4Px !default;
137
- $trionesInputPaddingSm: 0Px !default;
138
- $trionesInputPaddingLg: 7Px !default;
139
- $trionesInputPaddingInline: 11Px !default;
140
- $trionesInputPaddingInlineSm: 7Px !default;
141
- $trionesInputPaddingInlineLg: 11Px !default;
142
- $trionesInputAddonBg: rgba(0, 0, 0, 0.02) !default;
143
- $trionesInputActiveBorderColor: #1677ff !default;
144
- $trionesInputHoverBorderColor: #4096ff !default;
145
- $trionesInputActiveShadow: 0 0 0 2px rgba(5, 145, 255, 0.1) !default;
146
- $trionesInputErrorActiveShadow: 0 0 0 2px rgba(255, 38, 5, 0.06) !default;
147
- $trionesInputWarringActiveShadow: 0 0 0 2px rgba(255, 215, 5, 0.1) !default;
148
- $trionesInputHoverBg: #fffff !default;
149
- $trionesInputActiveBg: #fffff !default;
150
- $trionesInputInputFontSize: 14Px !default;
151
- $trionesInputInputFontSizeLg: 16Px !default;
152
- $trionesInputInputFontSizeSm: 14Px !default;
153
-
154
-
155
- $trionesFontSizeSm: 12Px !default;
156
- $trionesFontSize: 14Px !default;
157
- $trionesFontSizeLg: 16Px !default;
158
- $trionesFontSizeXl: 20Px !default;
159
-
160
- $trionesColorIcon: rgba(0, 0, 0, 0.45) !default;
161
- $trionesColorIconHover: rgba(0, 0, 0, 0.88) !default;
162
-
163
- $trionesFontSizeIcon: 12Px !default;
164
-
165
- /**
166
- * @description 安全区倍数
167
- */
168
- $trionesSafeAreaMultiple:1!default;
1
+ $trionesBlue: #1677FF !default;
2
+ $trionesPurple: #722ED1 !default;
3
+
4
+ $trionesColorBgContainerDisabled: rgba(0, 0, 0, 0.04) !default;
5
+ $trionesColorBorderBg: #ffffff !default;
6
+ $trionesColorBorderSplit: rgba(5, 5, 5, 0.06) !default;
7
+
8
+
9
+ $trionesColorText: rgba(0, 0, 0, 0.88) !default;
10
+ $trionesColorText: #333333 !default;
11
+ $trionesColorTextBase: #000 !default;
12
+ $trionesColorTextSecondary: rgba(0, 0, 0, 0.65) !default;
13
+ $trionesColorTextTertiary: rgba(0, 0, 0, 0.45) !default;
14
+ $trionesColorTextQuaternary: rgba(0, 0, 0, 0.25) !default;
15
+ $trionesColorTextPlaceholder: rgba(0, 0, 0, 0.25) !default;
16
+ $trionesColorTextDisabled: rgba(0, 0, 0, 0.25) !default;
17
+ $trionesColorTextHeading: rgba(0, 0, 0, 0.88) !default;
18
+ $trionesColorTextLabel: rgba(0, 0, 0, 0.65) !default;
19
+ $trionesColorTextDescription: rgba(0, 0, 0, 0.45) !default;
20
+ $trionesColorTextLightSolid: #fff !default;
21
+
22
+
23
+ $trionesColorHighlight: #ff4d4f !default;
24
+ $trionesColorBgTextHover: rgba(0, 0, 0, 0.06) !default;
25
+ $trionesColorBgTextActive: rgba(0, 0, 0, 0.15) !default;
26
+
27
+
28
+ $trionesColorFill: rgba(0, 0, 0, 0.15) !default;
29
+ $trionesColorFillSecondary: rgba(0, 0, 0, 0.06) !default;
30
+ $trionesColorFillTertiary: rgba(0, 0, 0, 0.04) !default;
31
+ $trionesColorFillQuaternary: rgba(0, 0, 0, 0.02) !default;
32
+ $trionesColorFillContent: rgba(0, 0, 0, 0.06) !default;
33
+ $trionesColorFillContentHover: rgba(0, 0, 0, 0.15) !default;
34
+ $trionesColorFillContentAlter: rgba(0, 0, 0, 0.02) !default;
35
+
36
+
37
+ $trionesColorPrimary: #1777FF !default;
38
+ $trionesColorPrimaryBg: #e6f4ff !default;
39
+ $trionesColorPrimaryBgHover: #bae0ff !default;
40
+ $trionesColorPrimaryBorder: #91caff !default;
41
+ $trionesColorPrimaryBorderHover: #69b1ff !default;
42
+ $trionesColorPrimaryActive: #0958d9 !default;
43
+ $trionesColorPrimaryTextHover: #4096ff !default;
44
+ $trionesColorPrimaryText: #1677ff !default;
45
+ $trionesColorPrimaryActive: #0958d9 !default;
46
+
47
+ $trionesColorSuccess: #00b578 !default;
48
+ $trionesColorSuccessBg: #f6ffed !default;
49
+ $trionesColorSuccessBgHover: #d9f7be !default;
50
+ $trionesColorSuccessBorder: #b7eb8f !default;
51
+ $trionesColorSuccessBorderHover: #95de64 !default;
52
+ $trionesColorSuccessHover: #95de64 !default;
53
+ $trionesColorSuccessActive: #389e0d !default;
54
+ $trionesColorSuccessText: #52c41a !default;
55
+ $trionesColorSuccessTextActive: #389e0d !default;
56
+
57
+
58
+ $trionesColorError: #ff4d4f !default;
59
+ $trionesColorErrorBg: #fff2f0 !default;
60
+ $trionesColorErrorBgHover: #fff1f0 !default;
61
+ $trionesColorErrorBgFilledHover: #ffdfdc !default;
62
+ $trionesColorErrorBgActive: #ffccc7 !default;
63
+ $trionesColorErrorBorder: #ffccc7 !default;
64
+ $trionesColorErrorBorderHover: #ffa39e !default;
65
+ $trionesColorErrorHover: #ff7875 !default;
66
+ $trionesColorErrorActive: #d9363e !default;
67
+ $trionesColorErrorTextHover: #ff7875 !default;
68
+ $trionesColorErrorText: #ff4d4f !default;
69
+ $trionesColorErrorTextActive: #d9363e !default;
70
+
71
+
72
+ $trionesColorWarning: #ff8f1f !default;
73
+ $trionesColorWarningBg: #fffbe6 !default;
74
+ $trionesColorWarningBgHover: #fff1b8 !default;
75
+ $trionesColorWarningBgActive: #d48806 !default;
76
+ $trionesColorWarningBorder: #ffe58f !default;
77
+ $trionesColorWarningBorderHover: #ffd666 !default;
78
+ $trionesColorWarningHover: #ffd666 !default;
79
+ $trionesColorWarningActive: #d48806 !default;
80
+ $trionesColorWarningTextHover: #ffc53d !default;
81
+ $trionesColorWarningText: #faad14 !default;
82
+ $trionesColorWarningTextActive: #d48806 !default;
83
+
84
+ $trionesColorInfo: #1677ff !default;
85
+ $trionesColorInfoBg: #e6f4ff !default;
86
+ $trionesColorInfoBgHover: #bae0ff !default;
87
+ $trionesColorInfoBgActive: #bae0ff !default;
88
+ $trionesColorInfoBorder: #91caff !default;
89
+ $trionesColorInfoBorderHover: #69b1ff !default;
90
+ $trionesColorInfoHover: #69b1ff !default;
91
+ $trionesColorInfoActive: #0958d9 !default;
92
+ $trionesColorInfoTextHover: #4096ff !default;
93
+ $trionesColorInfoText: #1677ff !default;
94
+ $trionesColorInfoTextActive: #0958d9 !default;
95
+
96
+
97
+ $trionesColorLink: #1677ff !default;
98
+ $trionesColorLinkHover: #69b1ff !default;
99
+ $trionesColorLinkActive: #0958d9 !default;
100
+
101
+ $trionesColorDanger: #ff4d4f !default;
102
+
103
+
104
+ $trionesColorBgBase: #fff !default;
105
+
106
+ $trionesBorderRadius: 6Px !default;
107
+ $trionesBorderRadiusXs: 2Px !default;
108
+ $trionesBorderRadiusSm: 4Px !default;
109
+ $trionesBorderRadiusLg: 8Px !default;
110
+ $trionesBorderRadiusOuter: 4Px !default;
111
+ $trionesBorderColor: #d9d9d9 !default;
112
+ $trionesBorderColorSecondary: #f0f0f0 !default;
113
+
114
+
115
+ $trionesColorBgMask: rgba(0, 0, 0, 0.45) !default;
116
+
117
+ $trionesLineHeight: 1.5714285714285714 !default;
118
+ $trionesLineHeightLg: 1.5 !default;
119
+ $trionesLineHeightSm: 1.6666666666666667 !default;
120
+
121
+ $trionesPaddingXxs: 4Px !default;
122
+ $trionesPaddingXs: 8Px !default;
123
+ $trionesPaddingSm: 12Px !default;
124
+ $trionesPadding: 16Px !default;
125
+ $trionesPaddingMd: 20Px !default;
126
+ $trionesPaddingLg: 24Px !default;
127
+ $trionesPaddingXl: 32Px !default;
128
+ $trionesPaddingContentHorizontalLg: 24Px !default;
129
+ $trionesPaddingContentVerticalLg: 16Px !default;
130
+ $trionesPaddingContentHorizontal: 16Px !default;
131
+ $trionesPaddingContentVertical: 12Px !default;
132
+ $trionesPaddingContentHorizontalSm: 16Px !default;
133
+ $trionesPaddingContentVerticalSm: 8Px !default;
134
+
135
+
136
+ $trionesInputPaddingBlock: 4Px !default;
137
+ $trionesInputPaddingSm: 0Px !default;
138
+ $trionesInputPaddingLg: 7Px !default;
139
+ $trionesInputPaddingInline: 11Px !default;
140
+ $trionesInputPaddingInlineSm: 7Px !default;
141
+ $trionesInputPaddingInlineLg: 11Px !default;
142
+ $trionesInputAddonBg: rgba(0, 0, 0, 0.02) !default;
143
+ $trionesInputActiveBorderColor: #1677ff !default;
144
+ $trionesInputHoverBorderColor: #4096ff !default;
145
+ $trionesInputActiveShadow: 0 0 0 2px rgba(5, 145, 255, 0.1) !default;
146
+ $trionesInputErrorActiveShadow: 0 0 0 2px rgba(255, 38, 5, 0.06) !default;
147
+ $trionesInputWarringActiveShadow: 0 0 0 2px rgba(255, 215, 5, 0.1) !default;
148
+ $trionesInputHoverBg: #fffff !default;
149
+ $trionesInputActiveBg: #fffff !default;
150
+ $trionesInputInputFontSize: 14Px !default;
151
+ $trionesInputInputFontSizeLg: 16Px !default;
152
+ $trionesInputInputFontSizeSm: 14Px !default;
153
+
154
+
155
+ $trionesFontSizeSm: 12Px !default;
156
+ $trionesFontSize: 14Px !default;
157
+ $trionesFontSizeLg: 16Px !default;
158
+ $trionesFontSizeXl: 20Px !default;
159
+
160
+ $trionesColorIcon: rgba(0, 0, 0, 0.45) !default;
161
+ $trionesColorIconHover: rgba(0, 0, 0, 0.88) !default;
162
+
163
+ $trionesFontSizeIcon: 12Px !default;
164
+
165
+ /**
166
+ * @description 安全区倍数
167
+ */
168
+ $trionesSafeAreaMultiple:1!default;