@wot-ui/ui 2.0.8 → 2.2.0

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 (49) hide show
  1. package/README.md +11 -11
  2. package/attributes.json +1 -1
  3. package/changelog.md +40 -0
  4. package/components/wd-avatar/wd-avatar.vue +1 -1
  5. package/components/wd-button/index.scss +1 -0
  6. package/components/wd-button/types.ts +14 -11
  7. package/components/wd-button/wd-button.vue +26 -4
  8. package/components/wd-calendar-view/monthPanel/month-panel.vue +1 -0
  9. package/components/wd-calendar-view/yearPanel/year-panel.vue +1 -0
  10. package/components/wd-cell/index.scss +12 -1
  11. package/components/wd-config-provider/global-config.ts +50 -0
  12. package/components/wd-config-provider/theme-vars.ts +2073 -0
  13. package/components/wd-config-provider/types.ts +20 -2071
  14. package/components/wd-config-provider/wd-config-provider.vue +15 -4
  15. package/components/wd-dialog/wd-dialog.vue +1 -0
  16. package/components/wd-drop-menu/wd-drop-menu.vue +1 -0
  17. package/components/wd-form/wd-form.vue +32 -7
  18. package/components/wd-grid/wd-grid.vue +0 -2
  19. package/components/wd-icon/wd-icon.vue +2 -2
  20. package/components/wd-img/wd-img.vue +1 -0
  21. package/components/wd-index-anchor/index.scss +5 -5
  22. package/components/wd-index-bar/index.scss +14 -14
  23. package/components/wd-keyboard/key/index.vue +2 -0
  24. package/components/wd-notify/wd-notify.vue +1 -0
  25. package/components/wd-picker-view/useSelection.ts +3 -1
  26. package/components/wd-root-portal/wd-root-portal.vue +1 -1
  27. package/components/wd-select-picker/wd-select-picker.vue +1 -0
  28. package/components/wd-signature/wd-signature.vue +1 -0
  29. package/components/wd-slider/index.scss +45 -45
  30. package/components/wd-slider/wd-slider.vue +19 -3
  31. package/components/wd-switch/wd-switch.vue +2 -0
  32. package/components/wd-tabs/wd-tabs.vue +1 -0
  33. package/components/wd-tag/index.scss +8 -7
  34. package/components/wd-tag/types.ts +10 -7
  35. package/components/wd-tag/wd-tag.vue +23 -6
  36. package/components/wd-toast/index.scss +0 -1
  37. package/components/wd-toast/wd-toast.vue +4 -0
  38. package/components/wd-video-preview/index.scss +19 -1
  39. package/components/wd-video-preview/types.ts +21 -2
  40. package/components/wd-video-preview/wd-video-preview.vue +109 -30
  41. package/composables/index.ts +2 -0
  42. package/composables/useChildren.ts +0 -6
  43. package/composables/useConfigProvider.ts +27 -12
  44. package/composables/useGlobalConfig.ts +9 -0
  45. package/index.ts +1 -1
  46. package/package.json +1 -1
  47. package/styles/variable.scss +381 -381
  48. package/tags.json +1 -1
  49. package/web-types.json +1 -1
@@ -1,472 +1,472 @@
1
1
  /* 基础颜色 */
2
- $base-black: var(--wot-base-black, #000000FF) !default;
3
- $base-transparent: var(--wot-base-transparent, transparent) !default;
4
- $base-white: var(--wot-base-white, #FFFFFFFF) !default;
2
+ $base-black: var(--wot-base-black, #000000FF) !default; // 基础黑色
3
+ $base-transparent: var(--wot-base-transparent, transparent) !default; // 基础透明色
4
+ $base-white: var(--wot-base-white, #FFFFFFFF) !default; // 基础白色
5
5
 
6
6
  /* 蓝色系列 */
7
- $blue-1: var(--wot-blue-1, #F5F8FFFF) !default;
8
- $blue-2: var(--wot-blue-2, #E5EDFFFF) !default;
9
- $blue-3: var(--wot-blue-3, #B8CFFFFF) !default;
10
- $blue-4: var(--wot-blue-4, #7CA4FFFF) !default;
11
- $blue-5: var(--wot-blue-5, #4480FFFF) !default;
12
- $blue-6: var(--wot-blue-6, #1C64FDFF) !default;
13
- $blue-7: var(--wot-blue-7, #164ED1FF) !default;
14
- $blue-8: var(--wot-blue-8, #1341ADFF) !default;
15
- $blue-9: var(--wot-blue-9, #0F3285FF) !default;
16
- $blue-10: var(--wot-blue-10, #0A235CFF) !default;
17
- $blue-opac: var(--wot-blue-opac, #1C64FD14) !default;
7
+ $blue-1: var(--wot-blue-1, #F5F8FFFF) !default; // 蓝色色阶 1
8
+ $blue-2: var(--wot-blue-2, #E5EDFFFF) !default; // 蓝色色阶 2
9
+ $blue-3: var(--wot-blue-3, #B8CFFFFF) !default; // 蓝色色阶 3
10
+ $blue-4: var(--wot-blue-4, #7CA4FFFF) !default; // 蓝色色阶 4
11
+ $blue-5: var(--wot-blue-5, #4480FFFF) !default; // 蓝色色阶 5
12
+ $blue-6: var(--wot-blue-6, #1C64FDFF) !default; // 蓝色色阶 6
13
+ $blue-7: var(--wot-blue-7, #164ED1FF) !default; // 蓝色色阶 7
14
+ $blue-8: var(--wot-blue-8, #1341ADFF) !default; // 蓝色色阶 8
15
+ $blue-9: var(--wot-blue-9, #0F3285FF) !default; // 蓝色色阶 9
16
+ $blue-10: var(--wot-blue-10, #0A235CFF) !default; // 蓝色色阶 10
17
+ $blue-opac: var(--wot-blue-opac, #1C64FD14) !default; // 蓝色透明色
18
18
 
19
19
  /* 亮蓝系列 */
20
- $lightblue-1: var(--wot-lightblue-1, #E8FBFFFF) !default;
21
- $lightblue-2: var(--wot-lightblue-2, #BFF2FFFF) !default;
22
- $lightblue-3: var(--wot-lightblue-3, #96E7FFFF) !default;
23
- $lightblue-4: var(--wot-lightblue-4, #6ED8FFFF) !default;
24
- $lightblue-5: var(--wot-lightblue-5, #45C7FFFF) !default;
25
- $lightblue-6: var(--wot-lightblue-6, #1CB2FDFF) !default;
26
- $lightblue-7: var(--wot-lightblue-7, #0D8CD6FF) !default;
27
- $lightblue-8: var(--wot-lightblue-8, #026AB0FF) !default;
28
- $lightblue-9: var(--wot-lightblue-9, #004E8AFF) !default;
29
- $lightblue-10: var(--wot-lightblue-10, #003563FF) !default;
30
- $lightblue-opac: var(--wot-lightblue-opac, #1CB2FD14) !default;
20
+ $lightblue-1: var(--wot-lightblue-1, #E8FBFFFF) !default; // 亮蓝色色阶 1
21
+ $lightblue-2: var(--wot-lightblue-2, #BFF2FFFF) !default; // 亮蓝色色阶 2
22
+ $lightblue-3: var(--wot-lightblue-3, #96E7FFFF) !default; // 亮蓝色色阶 3
23
+ $lightblue-4: var(--wot-lightblue-4, #6ED8FFFF) !default; // 亮蓝色色阶 4
24
+ $lightblue-5: var(--wot-lightblue-5, #45C7FFFF) !default; // 亮蓝色色阶 5
25
+ $lightblue-6: var(--wot-lightblue-6, #1CB2FDFF) !default; // 亮蓝色色阶 6
26
+ $lightblue-7: var(--wot-lightblue-7, #0D8CD6FF) !default; // 亮蓝色色阶 7
27
+ $lightblue-8: var(--wot-lightblue-8, #026AB0FF) !default; // 亮蓝色色阶 8
28
+ $lightblue-9: var(--wot-lightblue-9, #004E8AFF) !default; // 亮蓝色色阶 9
29
+ $lightblue-10: var(--wot-lightblue-10, #003563FF) !default; // 亮蓝色色阶 10
30
+ $lightblue-opac: var(--wot-lightblue-opac, #1CB2FD14) !default; // 亮蓝色透明色
31
31
 
32
32
  /* 粉色系列 */
33
- $pink-1: var(--wot-pink-1, #FFF0F6FF) !default;
34
- $pink-2: var(--wot-pink-2, #FFDEEBFF) !default;
35
- $pink-3: var(--wot-pink-3, #FCC2D7FF) !default;
36
- $pink-4: var(--wot-pink-4, #FAA2C1FF) !default;
37
- $pink-5: var(--wot-pink-5, #F783ACFF) !default;
38
- $pink-6: var(--wot-pink-6, #FF357CFF) !default;
39
- $pink-7: var(--wot-pink-7, #FF0A60FF) !default;
40
- $pink-8: var(--wot-pink-8, #E0004FFF) !default;
41
- $pink-9: var(--wot-pink-9, #B80040FF) !default;
42
- $pink-10: var(--wot-pink-10, #8F0032FF) !default;
43
- $pink-opac: var(--wot-pink-opac, #FF357C14) !default;
33
+ $pink-1: var(--wot-pink-1, #FFF0F6FF) !default; // 粉色色阶 1
34
+ $pink-2: var(--wot-pink-2, #FFDEEBFF) !default; // 粉色色阶 2
35
+ $pink-3: var(--wot-pink-3, #FCC2D7FF) !default; // 粉色色阶 3
36
+ $pink-4: var(--wot-pink-4, #FAA2C1FF) !default; // 粉色色阶 4
37
+ $pink-5: var(--wot-pink-5, #F783ACFF) !default; // 粉色色阶 5
38
+ $pink-6: var(--wot-pink-6, #FF357CFF) !default; // 粉色色阶 6
39
+ $pink-7: var(--wot-pink-7, #FF0A60FF) !default; // 粉色色阶 7
40
+ $pink-8: var(--wot-pink-8, #E0004FFF) !default; // 粉色色阶 8
41
+ $pink-9: var(--wot-pink-9, #B80040FF) !default; // 粉色色阶 9
42
+ $pink-10: var(--wot-pink-10, #8F0032FF) !default; // 粉色色阶 10
43
+ $pink-opac: var(--wot-pink-opac, #FF357C14) !default; // 粉色透明色
44
44
 
45
45
  /* 红色系列 */
46
- $red-1: var(--wot-red-1, #FFF5F5FF) !default;
47
- $red-2: var(--wot-red-2, #FFE3E3FF) !default;
48
- $red-3: var(--wot-red-3, #FFC9C9FF) !default;
49
- $red-4: var(--wot-red-4, #FFA8A8FF) !default;
50
- $red-5: var(--wot-red-5, #FB7C7CFF) !default;
51
- $red-6: var(--wot-red-6, #F14646FF) !default;
52
- $red-7: var(--wot-red-7, #DC2C2CFF) !default;
53
- $red-8: var(--wot-red-8, #BC2626FF) !default;
54
- $red-9: var(--wot-red-9, #A01515FF) !default;
55
- $red-10: var(--wot-red-10, #790909FF) !default;
56
- $red-opac: var(--wot-red-opac, #F1464614) !default;
46
+ $red-1: var(--wot-red-1, #FFF5F5FF) !default; // 红色色阶 1
47
+ $red-2: var(--wot-red-2, #FFE3E3FF) !default; // 红色色阶 2
48
+ $red-3: var(--wot-red-3, #FFC9C9FF) !default; // 红色色阶 3
49
+ $red-4: var(--wot-red-4, #FFA8A8FF) !default; // 红色色阶 4
50
+ $red-5: var(--wot-red-5, #FB7C7CFF) !default; // 红色色阶 5
51
+ $red-6: var(--wot-red-6, #F14646FF) !default; // 红色色阶 6
52
+ $red-7: var(--wot-red-7, #DC2C2CFF) !default; // 红色色阶 7
53
+ $red-8: var(--wot-red-8, #BC2626FF) !default; // 红色色阶 8
54
+ $red-9: var(--wot-red-9, #A01515FF) !default; // 红色色阶 9
55
+ $red-10: var(--wot-red-10, #790909FF) !default; // 红色色阶 10
56
+ $red-opac: var(--wot-red-opac, #F1464614) !default; // 红色透明色
57
57
 
58
58
  /* 橘红色系列 */
59
- $volcano-1: var(--wot-volcano-1, #FFF2E8FF) !default;
60
- $volcano-2: var(--wot-volcano-2, #FFDABFFF) !default;
61
- $volcano-3: var(--wot-volcano-3, #FFBF96FF) !default;
62
- $volcano-4: var(--wot-volcano-4, #FFA16EFF) !default;
63
- $volcano-5: var(--wot-volcano-5, #FF8045FF) !default;
64
- $volcano-6: var(--wot-volcano-6, #FD5C1CFF) !default;
65
- $volcano-7: var(--wot-volcano-7, #D63F0DFF) !default;
66
- $volcano-8: var(--wot-volcano-8, #B02802FF) !default;
67
- $volcano-9: var(--wot-volcano-9, #8A1900FF) !default;
68
- $volcano-10: var(--wot-volcano-10, #630F00FF) !default;
69
- $volcano-opac: var(--wot-volcano-opac, #FD5C1C14) !default;
59
+ $volcano-1: var(--wot-volcano-1, #FFF2E8FF) !default; // 橘红色色阶 1
60
+ $volcano-2: var(--wot-volcano-2, #FFDABFFF) !default; // 橘红色色阶 2
61
+ $volcano-3: var(--wot-volcano-3, #FFBF96FF) !default; // 橘红色色阶 3
62
+ $volcano-4: var(--wot-volcano-4, #FFA16EFF) !default; // 橘红色色阶 4
63
+ $volcano-5: var(--wot-volcano-5, #FF8045FF) !default; // 橘红色色阶 5
64
+ $volcano-6: var(--wot-volcano-6, #FD5C1CFF) !default; // 橘红色色阶 6
65
+ $volcano-7: var(--wot-volcano-7, #D63F0DFF) !default; // 橘红色色阶 7
66
+ $volcano-8: var(--wot-volcano-8, #B02802FF) !default; // 橘红色色阶 8
67
+ $volcano-9: var(--wot-volcano-9, #8A1900FF) !default; // 橘红色色阶 9
68
+ $volcano-10: var(--wot-volcano-10, #630F00FF) !default; // 橘红色色阶 10
69
+ $volcano-opac: var(--wot-volcano-opac, #FD5C1C14) !default; // 橘红色透明色
70
70
 
71
71
  /* 橙色系列 */
72
- $orange-1: var(--wot-orange-1, #FFF6EBFF) !default;
73
- $orange-2: var(--wot-orange-2, #FFE8CCFF) !default;
74
- $orange-3: var(--wot-orange-3, #FFD8A8FF) !default;
75
- $orange-4: var(--wot-orange-4, #FFC078FF) !default;
76
- $orange-5: var(--wot-orange-5, #FFA94DFF) !default;
77
- $orange-6: var(--wot-orange-6, #F57F00FF) !default;
78
- $orange-7: var(--wot-orange-7, #D05706FF) !default;
79
- $orange-8: var(--wot-orange-8, #A94605FF) !default;
80
- $orange-9: var(--wot-orange-9, #813604FF) !default;
81
- $orange-10: var(--wot-orange-10, #592503FF) !default;
82
- $orange-opac: var(--wot-orange-opac, #F57F0014) !default;
72
+ $orange-1: var(--wot-orange-1, #FFF6EBFF) !default; // 橙色色阶 1
73
+ $orange-2: var(--wot-orange-2, #FFE8CCFF) !default; // 橙色色阶 2
74
+ $orange-3: var(--wot-orange-3, #FFD8A8FF) !default; // 橙色色阶 3
75
+ $orange-4: var(--wot-orange-4, #FFC078FF) !default; // 橙色色阶 4
76
+ $orange-5: var(--wot-orange-5, #FFA94DFF) !default; // 橙色色阶 5
77
+ $orange-6: var(--wot-orange-6, #F57F00FF) !default; // 橙色色阶 6
78
+ $orange-7: var(--wot-orange-7, #D05706FF) !default; // 橙色色阶 7
79
+ $orange-8: var(--wot-orange-8, #A94605FF) !default; // 橙色色阶 8
80
+ $orange-9: var(--wot-orange-9, #813604FF) !default; // 橙色色阶 9
81
+ $orange-10: var(--wot-orange-10, #592503FF) !default; // 橙色色阶 10
82
+ $orange-opac: var(--wot-orange-opac, #F57F0014) !default; // 橙色透明色
83
83
 
84
84
  /* 黄色系列 */
85
- $yellow-1: var(--wot-yellow-1, #FFFAF1FF) !default;
86
- $yellow-2: var(--wot-yellow-2, #FDE5B4FF) !default;
87
- $yellow-3: var(--wot-yellow-3, #FDD78CFF) !default;
88
- $yellow-4: var(--wot-yellow-4, #FCC964FF) !default;
89
- $yellow-5: var(--wot-yellow-5, #FBBB3CFF) !default;
90
- $yellow-6: var(--wot-yellow-6, #FAAD14FF) !default;
91
- $yellow-7: var(--wot-yellow-7, #E19705FF) !default;
92
- $yellow-8: var(--wot-yellow-8, #B97C04FF) !default;
93
- $yellow-9: var(--wot-yellow-9, #916103FF) !default;
94
- $yellow-10: var(--wot-yellow-10, #694702FF) !default;
95
- $yellow-opac: var(--wot-yellow-opac, #FAAD1414) !default;
85
+ $yellow-1: var(--wot-yellow-1, #FFFAF1FF) !default; // 黄色色阶 1
86
+ $yellow-2: var(--wot-yellow-2, #FDE5B4FF) !default; // 黄色色阶 2
87
+ $yellow-3: var(--wot-yellow-3, #FDD78CFF) !default; // 黄色色阶 3
88
+ $yellow-4: var(--wot-yellow-4, #FCC964FF) !default; // 黄色色阶 4
89
+ $yellow-5: var(--wot-yellow-5, #FBBB3CFF) !default; // 黄色色阶 5
90
+ $yellow-6: var(--wot-yellow-6, #FAAD14FF) !default; // 黄色色阶 6
91
+ $yellow-7: var(--wot-yellow-7, #E19705FF) !default; // 黄色色阶 7
92
+ $yellow-8: var(--wot-yellow-8, #B97C04FF) !default; // 黄色色阶 8
93
+ $yellow-9: var(--wot-yellow-9, #916103FF) !default; // 黄色色阶 9
94
+ $yellow-10: var(--wot-yellow-10, #694702FF) !default; // 黄色色阶 10
95
+ $yellow-opac: var(--wot-yellow-opac, #FAAD1414) !default; // 黄色透明色
96
96
 
97
97
  /* 绿色系列 */
98
- $green-1: var(--wot-green-1, #F3FBF9FF) !default;
99
- $green-2: var(--wot-green-2, #E7F8F3FF) !default;
100
- $green-3: var(--wot-green-3, #B8EADBFF) !default;
101
- $green-4: var(--wot-green-4, #88DBC3FF) !default;
102
- $green-5: var(--wot-green-5, #59CDAAFF) !default;
103
- $green-6: var(--wot-green-6, #12B886FF) !default;
104
- $green-7: var(--wot-green-7, #0F956CFF) !default;
105
- $green-8: var(--wot-green-8, #0B6F51FF) !default;
106
- $green-9: var(--wot-green-9, #074A36FF) !default;
107
- $green-10: var(--wot-green-10, #04251BFF) !default;
108
- $green-opac: var(--wot-green-opac, #12B88614) !default;
98
+ $green-1: var(--wot-green-1, #F3FBF9FF) !default; // 绿色色阶 1
99
+ $green-2: var(--wot-green-2, #E7F8F3FF) !default; // 绿色色阶 2
100
+ $green-3: var(--wot-green-3, #B8EADBFF) !default; // 绿色色阶 3
101
+ $green-4: var(--wot-green-4, #88DBC3FF) !default; // 绿色色阶 4
102
+ $green-5: var(--wot-green-5, #59CDAAFF) !default; // 绿色色阶 5
103
+ $green-6: var(--wot-green-6, #12B886FF) !default; // 绿色色阶 6
104
+ $green-7: var(--wot-green-7, #0F956CFF) !default; // 绿色色阶 7
105
+ $green-8: var(--wot-green-8, #0B6F51FF) !default; // 绿色色阶 8
106
+ $green-9: var(--wot-green-9, #074A36FF) !default; // 绿色色阶 9
107
+ $green-10: var(--wot-green-10, #04251BFF) !default; // 绿色色阶 10
108
+ $green-opac: var(--wot-green-opac, #12B88614) !default; // 绿色透明色
109
109
 
110
110
  /* 青色系列 */
111
- $cyan-1: var(--wot-cyan-1, #F4FBFDFF) !default;
112
- $cyan-2: var(--wot-cyan-2, #E9F8FAFF) !default;
113
- $cyan-3: var(--wot-cyan-3, #BDEAF1FF) !default;
114
- $cyan-4: var(--wot-cyan-4, #90DBE7FF) !default;
115
- $cyan-5: var(--wot-cyan-5, #64CDDDFF) !default;
116
- $cyan-6: var(--wot-cyan-6, #22B8CFFF) !default;
117
- $cyan-7: var(--wot-cyan-7, #1C98ABFF) !default;
118
- $cyan-8: var(--wot-cyan-8, #167988FF) !default;
119
- $cyan-9: var(--wot-cyan-9, #115A65FF) !default;
120
- $cyan-10: var(--wot-cyan-10, #0B3A42FF) !default;
121
- $cyan-opac: var(--wot-cyan-opac, #22B8CF14) !default;
111
+ $cyan-1: var(--wot-cyan-1, #F4FBFDFF) !default; // 青色色阶 1
112
+ $cyan-2: var(--wot-cyan-2, #E9F8FAFF) !default; // 青色色阶 2
113
+ $cyan-3: var(--wot-cyan-3, #BDEAF1FF) !default; // 青色色阶 3
114
+ $cyan-4: var(--wot-cyan-4, #90DBE7FF) !default; // 青色色阶 4
115
+ $cyan-5: var(--wot-cyan-5, #64CDDDFF) !default; // 青色色阶 5
116
+ $cyan-6: var(--wot-cyan-6, #22B8CFFF) !default; // 青色色阶 6
117
+ $cyan-7: var(--wot-cyan-7, #1C98ABFF) !default; // 青色色阶 7
118
+ $cyan-8: var(--wot-cyan-8, #167988FF) !default; // 青色色阶 8
119
+ $cyan-9: var(--wot-cyan-9, #115A65FF) !default; // 青色色阶 9
120
+ $cyan-10: var(--wot-cyan-10, #0B3A42FF) !default; // 青色色阶 10
121
+ $cyan-opac: var(--wot-cyan-opac, #22B8CF14) !default; // 青色透明色
122
122
 
123
123
  /* 紫色系列 */
124
- $purple-1: var(--wot-purple-1, #F9F8FFFF) !default;
125
- $purple-2: var(--wot-purple-2, #E5DBFFFF) !default;
126
- $purple-3: var(--wot-purple-3, #D0BFFFFF) !default;
127
- $purple-4: var(--wot-purple-4, #B197FCFF) !default;
128
- $purple-5: var(--wot-purple-5, #9775FAFF) !default;
129
- $purple-6: var(--wot-purple-6, #8059F3FF) !default;
130
- $purple-7: var(--wot-purple-7, #5B29EFFF) !default;
131
- $purple-8: var(--wot-purple-8, #4511DFFF) !default;
132
- $purple-9: var(--wot-purple-9, #390EB9FF) !default;
133
- $purple-10: var(--wot-purple-10, #2D0B93FF) !default;
134
- $purple-opac: var(--wot-purple-opac, #8059F314) !default;
124
+ $purple-1: var(--wot-purple-1, #F9F8FFFF) !default; // 紫色色阶 1
125
+ $purple-2: var(--wot-purple-2, #E5DBFFFF) !default; // 紫色色阶 2
126
+ $purple-3: var(--wot-purple-3, #D0BFFFFF) !default; // 紫色色阶 3
127
+ $purple-4: var(--wot-purple-4, #B197FCFF) !default; // 紫色色阶 4
128
+ $purple-5: var(--wot-purple-5, #9775FAFF) !default; // 紫色色阶 5
129
+ $purple-6: var(--wot-purple-6, #8059F3FF) !default; // 紫色色阶 6
130
+ $purple-7: var(--wot-purple-7, #5B29EFFF) !default; // 紫色色阶 7
131
+ $purple-8: var(--wot-purple-8, #4511DFFF) !default; // 紫色色阶 8
132
+ $purple-9: var(--wot-purple-9, #390EB9FF) !default; // 紫色色阶 9
133
+ $purple-10: var(--wot-purple-10, #2D0B93FF) !default; // 紫色色阶 10
134
+ $purple-opac: var(--wot-purple-opac, #8059F314) !default; // 紫色透明色
135
135
 
136
136
  /* 靛色系列 */
137
- $grape-1: var(--wot-grape-1, #FBF6FDFF) !default;
138
- $grape-2: var(--wot-grape-2, #F3D9FAFF) !default;
139
- $grape-3: var(--wot-grape-3, #EEBEFAFF) !default;
140
- $grape-4: var(--wot-grape-4, #E599F7FF) !default;
141
- $grape-5: var(--wot-grape-5, #DA77F2FF) !default;
142
- $grape-6: var(--wot-grape-6, #AE3EC9FF) !default;
143
- $grape-7: var(--wot-grape-7, #9731AFFF) !default;
144
- $grape-8: var(--wot-grape-8, #7B288FFF) !default;
145
- $grape-9: var(--wot-grape-9, #601F70FF) !default;
146
- $grape-10: var(--wot-grape-10, #451650FF) !default;
147
- $grape-opac: var(--wot-grape-opac, #AE3EC914) !default;
137
+ $grape-1: var(--wot-grape-1, #FBF6FDFF) !default; // 靛色色阶 1
138
+ $grape-2: var(--wot-grape-2, #F3D9FAFF) !default; // 靛色色阶 2
139
+ $grape-3: var(--wot-grape-3, #EEBEFAFF) !default; // 靛色色阶 3
140
+ $grape-4: var(--wot-grape-4, #E599F7FF) !default; // 靛色色阶 4
141
+ $grape-5: var(--wot-grape-5, #DA77F2FF) !default; // 靛色色阶 5
142
+ $grape-6: var(--wot-grape-6, #AE3EC9FF) !default; // 靛色色阶 6
143
+ $grape-7: var(--wot-grape-7, #9731AFFF) !default; // 靛色色阶 7
144
+ $grape-8: var(--wot-grape-8, #7B288FFF) !default; // 靛色色阶 8
145
+ $grape-9: var(--wot-grape-9, #601F70FF) !default; // 靛色色阶 9
146
+ $grape-10: var(--wot-grape-10, #451650FF) !default; // 靛色色阶 10
147
+ $grape-opac: var(--wot-grape-opac, #AE3EC914) !default; // 靛色透明色
148
148
 
149
149
  /* 冷灰系列 */
150
- $coolgrey-1: var(--wot-coolgrey-1, #F7F8FAFF) !default;
151
- $coolgrey-10: var(--wot-coolgrey-10, #1D1F29FF) !default;
152
- $coolgrey-2: var(--wot-coolgrey-2, #F2F3F5FF) !default;
153
- $coolgrey-3: var(--wot-coolgrey-3, #E5E6EBFF) !default;
154
- $coolgrey-4: var(--wot-coolgrey-4, #C9CBD4FF) !default;
155
- $coolgrey-5: var(--wot-coolgrey-5, #A9ACB8FF) !default;
156
- $coolgrey-6: var(--wot-coolgrey-6, #868A9CFF) !default;
157
- $coolgrey-7: var(--wot-coolgrey-7, #6B7085FF) !default;
158
- $coolgrey-8: var(--wot-coolgrey-8, #4E5369FF) !default;
159
- $coolgrey-9: var(--wot-coolgrey-9, #272B3BFF) !default;
150
+ $coolgrey-1: var(--wot-coolgrey-1, #F7F8FAFF) !default; // 冷灰色色阶 1
151
+ $coolgrey-10: var(--wot-coolgrey-10, #1D1F29FF) !default; // 冷灰色色阶 10
152
+ $coolgrey-2: var(--wot-coolgrey-2, #F2F3F5FF) !default; // 冷灰色色阶 2
153
+ $coolgrey-3: var(--wot-coolgrey-3, #E5E6EBFF) !default; // 冷灰色色阶 3
154
+ $coolgrey-4: var(--wot-coolgrey-4, #C9CBD4FF) !default; // 冷灰色色阶 4
155
+ $coolgrey-5: var(--wot-coolgrey-5, #A9ACB8FF) !default; // 冷灰色色阶 5
156
+ $coolgrey-6: var(--wot-coolgrey-6, #868A9CFF) !default; // 冷灰色色阶 6
157
+ $coolgrey-7: var(--wot-coolgrey-7, #6B7085FF) !default; // 冷灰色色阶 7
158
+ $coolgrey-8: var(--wot-coolgrey-8, #4E5369FF) !default; // 冷灰色色阶 8
159
+ $coolgrey-9: var(--wot-coolgrey-9, #272B3BFF) !default; // 冷灰色色阶 9
160
160
 
161
161
  /* 中性灰系列 */
162
- $neutralgrey-1: var(--wot-neutralgrey-1, #FAFAFAFF) !default;
163
- $neutralgrey-10: var(--wot-neutralgrey-10, #292929FF) !default;
164
- $neutralgrey-2: var(--wot-neutralgrey-2, #F5F5F5FF) !default;
165
- $neutralgrey-3: var(--wot-neutralgrey-3, #EBEBEBFF) !default;
166
- $neutralgrey-4: var(--wot-neutralgrey-4, #D4D4D4FF) !default;
167
- $neutralgrey-5: var(--wot-neutralgrey-5, #B8B8B8FF) !default;
168
- $neutralgrey-6: var(--wot-neutralgrey-6, #9C9C9CFF) !default;
169
- $neutralgrey-7: var(--wot-neutralgrey-7, #858585FF) !default;
170
- $neutralgrey-8: var(--wot-neutralgrey-8, #696969FF) !default;
171
- $neutralgrey-9: var(--wot-neutralgrey-9, #3D3D3DFF) !default;
162
+ $neutralgrey-1: var(--wot-neutralgrey-1, #FAFAFAFF) !default; // 中性灰色色阶 1
163
+ $neutralgrey-10: var(--wot-neutralgrey-10, #292929FF) !default; // 中性灰色色阶 10
164
+ $neutralgrey-2: var(--wot-neutralgrey-2, #F5F5F5FF) !default; // 中性灰色色阶 2
165
+ $neutralgrey-3: var(--wot-neutralgrey-3, #EBEBEBFF) !default; // 中性灰色色阶 3
166
+ $neutralgrey-4: var(--wot-neutralgrey-4, #D4D4D4FF) !default; // 中性灰色色阶 4
167
+ $neutralgrey-5: var(--wot-neutralgrey-5, #B8B8B8FF) !default; // 中性灰色色阶 5
168
+ $neutralgrey-6: var(--wot-neutralgrey-6, #9C9C9CFF) !default; // 中性灰色色阶 6
169
+ $neutralgrey-7: var(--wot-neutralgrey-7, #858585FF) !default; // 中性灰色色阶 7
170
+ $neutralgrey-8: var(--wot-neutralgrey-8, #696969FF) !default; // 中性灰色色阶 8
171
+ $neutralgrey-9: var(--wot-neutralgrey-9, #3D3D3DFF) !default; // 中性灰色色阶 9
172
172
 
173
173
  /* 暖灰系列 */
174
- $warmgrey-1: var(--wot-warmgrey-1, #FAF8F7FF) !default;
175
- $warmgrey-10: var(--wot-warmgrey-10, #292321FF) !default;
176
- $warmgrey-2: var(--wot-warmgrey-2, #F5F3F2FF) !default;
177
- $warmgrey-3: var(--wot-warmgrey-3, #EBE7E5FF) !default;
178
- $warmgrey-4: var(--wot-warmgrey-4, #D4CECCFF) !default;
179
- $warmgrey-5: var(--wot-warmgrey-5, #B8B0ADFF) !default;
180
- $warmgrey-6: var(--wot-warmgrey-6, #9C918CFF) !default;
181
- $warmgrey-7: var(--wot-warmgrey-7, #857A75FF) !default;
182
- $warmgrey-8: var(--wot-warmgrey-8, #695E5AFF) !default;
183
- $warmgrey-9: var(--wot-warmgrey-9, #3B332FFF) !default;
174
+ $warmgrey-1: var(--wot-warmgrey-1, #FAF8F7FF) !default; // 暖灰色色阶 1
175
+ $warmgrey-10: var(--wot-warmgrey-10, #292321FF) !default; // 暖灰色色阶 10
176
+ $warmgrey-2: var(--wot-warmgrey-2, #F5F3F2FF) !default; // 暖灰色色阶 2
177
+ $warmgrey-3: var(--wot-warmgrey-3, #EBE7E5FF) !default; // 暖灰色色阶 3
178
+ $warmgrey-4: var(--wot-warmgrey-4, #D4CECCFF) !default; // 暖灰色色阶 4
179
+ $warmgrey-5: var(--wot-warmgrey-5, #B8B0ADFF) !default; // 暖灰色色阶 5
180
+ $warmgrey-6: var(--wot-warmgrey-6, #9C918CFF) !default; // 暖灰色色阶 6
181
+ $warmgrey-7: var(--wot-warmgrey-7, #857A75FF) !default; // 暖灰色色阶 7
182
+ $warmgrey-8: var(--wot-warmgrey-8, #695E5AFF) !default; // 暖灰色色阶 8
183
+ $warmgrey-9: var(--wot-warmgrey-9, #3B332FFF) !default; // 暖灰色色阶 9
184
184
 
185
185
  /* 遮罩系列 */
186
- $opac-1_02: var(--wot-opac-1_02, #00000005) !default;
187
- $opac-2_04: var(--wot-opac-2_04, #0000000A) !default;
188
- $opac-3_08: var(--wot-opac-3_08, #00000014) !default;
189
- $opac-4_15: var(--wot-opac-4_15, #00000026) !default;
190
- $opac-5_20: var(--wot-opac-5_20, #00000033) !default;
191
- $opac-6_30: var(--wot-opac-6_30, #0000004D) !default;
192
- $opac-7_45: var(--wot-opac-7_45, #00000073) !default;
193
- $opac-7_55: var(--wot-opac-7_55, #0000008C) !default;
194
- $opac-8_65: var(--wot-opac-8_65, #000000A6) !default;
195
- $opac-9_75: var(--wot-opac-9_75, #000000BF) !default;
196
- $opac-10_85: var(--wot-opac-10_85, #000000D9) !default;
186
+ $opac-1_02: var(--wot-opac-1_02, #00000005) !default; // 黑色遮罩 02%
187
+ $opac-2_04: var(--wot-opac-2_04, #0000000A) !default; // 黑色遮罩 04%
188
+ $opac-3_08: var(--wot-opac-3_08, #00000014) !default; // 黑色遮罩 08%
189
+ $opac-4_15: var(--wot-opac-4_15, #00000026) !default; // 黑色遮罩 15%
190
+ $opac-5_20: var(--wot-opac-5_20, #00000033) !default; // 黑色遮罩 20%
191
+ $opac-6_30: var(--wot-opac-6_30, #0000004D) !default; // 黑色遮罩 30%
192
+ $opac-7_45: var(--wot-opac-7_45, #00000073) !default; // 黑色遮罩 45%
193
+ $opac-7_55: var(--wot-opac-7_55, #0000008C) !default; // 黑色遮罩 55%
194
+ $opac-8_65: var(--wot-opac-8_65, #000000A6) !default; // 黑色遮罩 65%
195
+ $opac-9_75: var(--wot-opac-9_75, #000000BF) !default; // 黑色遮罩 75%
196
+ $opac-10_85: var(--wot-opac-10_85, #000000D9) !default; // 黑色遮罩 85%
197
197
 
198
198
  /* 白遮罩系列 */
199
- $opacwhite-1_02: var(--wot-opacwhite-1_02, #FFFFFF05) !default;
200
- $opacwhite-2_04: var(--wot-opacwhite-2_04, #FFFFFF0A) !default;
201
- $opacwhite-3_08: var(--wot-opacwhite-3_08, #FFFFFF14) !default;
202
- $opacwhite-4_15: var(--wot-opacwhite-4_15, #FFFFFF26) !default;
203
- $opacwhite-5_20: var(--wot-opacwhite-5_20, #FFFFFF33) !default;
204
- $opacwhite-6_30: var(--wot-opacwhite-6_30, #FFFFFF4D) !default;
205
- $opacwhite-7_45: var(--wot-opacwhite-7_45, #FFFFFF73) !default;
206
- $opacwhite-7_55: var(--wot-opacwhite-7_55, #FFFFFF8C) !default;
207
- $opacwhite-8_65: var(--wot-opacwhite-8_65, #FFFFFFA6) !default;
208
- $opacwhite-9_75: var(--wot-opacwhite-9_75, #FFFFFFBF) !default;
209
- $opacwhite-10_85: var(--wot-opacwhite-10_85, #FFFFFFD9) !default;
199
+ $opacwhite-1_02: var(--wot-opacwhite-1_02, #FFFFFF05) !default; // 白色遮罩 02%
200
+ $opacwhite-2_04: var(--wot-opacwhite-2_04, #FFFFFF0A) !default; // 白色遮罩 04%
201
+ $opacwhite-3_08: var(--wot-opacwhite-3_08, #FFFFFF14) !default; // 白色遮罩 08%
202
+ $opacwhite-4_15: var(--wot-opacwhite-4_15, #FFFFFF26) !default; // 白色遮罩 15%
203
+ $opacwhite-5_20: var(--wot-opacwhite-5_20, #FFFFFF33) !default; // 白色遮罩 20%
204
+ $opacwhite-6_30: var(--wot-opacwhite-6_30, #FFFFFF4D) !default; // 白色遮罩 30%
205
+ $opacwhite-7_45: var(--wot-opacwhite-7_45, #FFFFFF73) !default; // 白色遮罩 45%
206
+ $opacwhite-7_55: var(--wot-opacwhite-7_55, #FFFFFF8C) !default; // 白色遮罩 55%
207
+ $opacwhite-8_65: var(--wot-opacwhite-8_65, #FFFFFFA6) !default; // 白色遮罩 65%
208
+ $opacwhite-9_75: var(--wot-opacwhite-9_75, #FFFFFFBF) !default; // 白色遮罩 75%
209
+ $opacwhite-10_85: var(--wot-opacwhite-10_85, #FFFFFFD9) !default; // 白色遮罩 85%
210
210
 
211
211
  /* 透明度系列 */
212
- $opacity-disabled: var(--wot-opacity-disabled, 0.4) !default;
213
- $opacity-dimmer: var(--wot-opacity-dimmer, 0.6) !default;
214
- $opacity-overlay: var(--wot-opacity-overlay, 0.75) !default;
215
- $opacity-backdrop: var(--wot-opacity-backdrop, 0.3) !default;
216
- $opacity-main: var(--wot-opacity-main, 1) !default;
212
+ $opacity-disabled: var(--wot-opacity-disabled, 0.4) !default; // 禁用态透明度
213
+ $opacity-dimmer: var(--wot-opacity-dimmer, 0.6) !default; // dimmer透明度
214
+ $opacity-overlay: var(--wot-opacity-overlay, 0.75) !default; // overlay透明度
215
+ $opacity-backdrop: var(--wot-opacity-backdrop, 0.3) !default; // backdrop透明度
216
+ $opacity-main: var(--wot-opacity-main, 1) !default; // 默认透明度
217
217
 
218
218
  /* 基础数字 */
219
- $n-0: var(--wot-n-0, 0px) !default;
220
- $n-1: var(--wot-n-1, 1px) !default;
221
- $n-2: var(--wot-n-2, 2px) !default;
222
- $n-3: var(--wot-n-3, 3px) !default;
223
- $n-4: var(--wot-n-4, 4px) !default;
224
- $n-05: var(--wot-n-05, 0.5px) !default;
225
- $n-5: var(--wot-n-5, 5px) !default;
226
- $n-6: var(--wot-n-6, 6px) !default;
227
- $n-8: var(--wot-n-8, 8px) !default;
228
- $n-9: var(--wot-n-9, 9px) !default;
229
- $n-10: var(--wot-n-10, 10px) !default;
230
- $n-11: var(--wot-n-11, 11px) !default;
231
- $n-12: var(--wot-n-12, 12px) !default;
232
- $n-14: var(--wot-n-14, 14px) !default;
233
- $n-15: var(--wot-n-15, 15px) !default;
234
- $n-16: var(--wot-n-16, 16px) !default;
235
- $n-17: var(--wot-n-17, 17px) !default;
236
- $n-18: var(--wot-n-18, 18px) !default;
237
- $n-20: var(--wot-n-20, 20px) !default;
238
- $n-22: var(--wot-n-22, 22px) !default;
239
- $n-24: var(--wot-n-24, 24px) !default;
240
- $n-26: var(--wot-n-26, 26px) !default;
241
- $n-28: var(--wot-n-28, 28px) !default;
242
- $n-32: var(--wot-n-32, 32px) !default;
243
- $n-34: var(--wot-n-34, 34px) !default;
244
- $n-36: var(--wot-n-36, 36px) !default;
245
- $n-40: var(--wot-n-40, 40px) !default;
246
- $n-44: var(--wot-n-44, 44px) !default;
247
- $n-48: var(--wot-n-48, 48px) !default;
248
- $n-50: var(--wot-n-50, 50px) !default;
249
- $n-52: var(--wot-n-52, 52px) !default;
250
- $n-56: var(--wot-n-56, 56px) !default;
251
- $n-60: var(--wot-n-60, 60px) !default;
252
- $n-64: var(--wot-n-64, 64px) !default;
253
- $n-88: var(--wot-n-88, 88px) !default;
254
- $n-98: var(--wot-n-98, 98px) !default;
255
- $n-248: var(--wot-n-248, 248px) !default;
256
- $n-375: var(--wot-n-375, 375px) !default;
257
- $n-full: var(--wot-n-full, 9999px) !default;
219
+ $n-0: var(--wot-n-0, 0px) !default; // 基础尺寸 0px
220
+ $n-1: var(--wot-n-1, 1px) !default; // 基础尺寸 1px
221
+ $n-2: var(--wot-n-2, 2px) !default; // 基础尺寸 2px
222
+ $n-3: var(--wot-n-3, 3px) !default; // 基础尺寸 3px
223
+ $n-4: var(--wot-n-4, 4px) !default; // 基础尺寸 4px
224
+ $n-05: var(--wot-n-05, 0.5px) !default; // 基础尺寸 0.5px
225
+ $n-5: var(--wot-n-5, 5px) !default; // 基础尺寸 5px
226
+ $n-6: var(--wot-n-6, 6px) !default; // 基础尺寸 6px
227
+ $n-8: var(--wot-n-8, 8px) !default; // 基础尺寸 8px
228
+ $n-9: var(--wot-n-9, 9px) !default; // 基础尺寸 9px
229
+ $n-10: var(--wot-n-10, 10px) !default; // 基础尺寸 10px
230
+ $n-11: var(--wot-n-11, 11px) !default; // 基础尺寸 11px
231
+ $n-12: var(--wot-n-12, 12px) !default; // 基础尺寸 12px
232
+ $n-14: var(--wot-n-14, 14px) !default; // 基础尺寸 14px
233
+ $n-15: var(--wot-n-15, 15px) !default; // 基础尺寸 15px
234
+ $n-16: var(--wot-n-16, 16px) !default; // 基础尺寸 16px
235
+ $n-17: var(--wot-n-17, 17px) !default; // 基础尺寸 17px
236
+ $n-18: var(--wot-n-18, 18px) !default; // 基础尺寸 18px
237
+ $n-20: var(--wot-n-20, 20px) !default; // 基础尺寸 20px
238
+ $n-22: var(--wot-n-22, 22px) !default; // 基础尺寸 22px
239
+ $n-24: var(--wot-n-24, 24px) !default; // 基础尺寸 24px
240
+ $n-26: var(--wot-n-26, 26px) !default; // 基础尺寸 26px
241
+ $n-28: var(--wot-n-28, 28px) !default; // 基础尺寸 28px
242
+ $n-32: var(--wot-n-32, 32px) !default; // 基础尺寸 32px
243
+ $n-34: var(--wot-n-34, 34px) !default; // 基础尺寸 34px
244
+ $n-36: var(--wot-n-36, 36px) !default; // 基础尺寸 36px
245
+ $n-40: var(--wot-n-40, 40px) !default; // 基础尺寸 40px
246
+ $n-44: var(--wot-n-44, 44px) !default; // 基础尺寸 44px
247
+ $n-48: var(--wot-n-48, 48px) !default; // 基础尺寸 48px
248
+ $n-50: var(--wot-n-50, 50px) !default; // 基础尺寸 50px
249
+ $n-52: var(--wot-n-52, 52px) !default; // 基础尺寸 52px
250
+ $n-56: var(--wot-n-56, 56px) !default; // 基础尺寸 56px
251
+ $n-60: var(--wot-n-60, 60px) !default; // 基础尺寸 60px
252
+ $n-64: var(--wot-n-64, 64px) !default; // 基础尺寸 64px
253
+ $n-88: var(--wot-n-88, 88px) !default; // 基础尺寸 88px
254
+ $n-98: var(--wot-n-98, 98px) !default; // 基础尺寸 98px
255
+ $n-248: var(--wot-n-248, 248px) !default; // 基础尺寸 248px
256
+ $n-375: var(--wot-n-375, 375px) !default; // 基础尺寸 375px
257
+ $n-full: var(--wot-n-full, 9999px) !default; // 全圆角尺寸
258
258
 
259
259
  /* 字重系列 */
260
- $font-weight-ultra-light: var(--wot-font-weight-ultra-light, 100) !default;
261
- $font-weight-thin: var(--wot-font-weight-thin, 200) !default;
262
- $font-weight-light: var(--wot-font-weight-light, 300) !default;
263
- $font-weight-regular: var(--wot-font-weight-regular, 400) !default;
264
- $font-weight-medium: var(--wot-font-weight-medium, 600) !default;
265
- $font-weight-semibold: var(--wot-font-weight-semibold, 700) !default;
266
- $font-weight-bold: var(--wot-font-weight-bold, 700) !default;
260
+ $font-weight-ultra-light: var(--wot-font-weight-ultra-light, 100) !default; // ultra-light字重
261
+ $font-weight-thin: var(--wot-font-weight-thin, 200) !default; // thin字重
262
+ $font-weight-light: var(--wot-font-weight-light, 300) !default; // 轻量字重
263
+ $font-weight-regular: var(--wot-font-weight-regular, 400) !default; // regular字重
264
+ $font-weight-medium: var(--wot-font-weight-medium, 600) !default; // medium字重
265
+ $font-weight-semibold: var(--wot-font-weight-semibold, 700) !default; // semibold字重
266
+ $font-weight-bold: var(--wot-font-weight-bold, 700) !default; // 加粗字重
267
267
 
268
268
 
269
269
  /* 排版系列 */
270
270
  /* label */
271
- $typography-label-font-family: var(--wot-typography-label-font-family, PingFang SC) !default;
272
- $typography-label-size-small: var(--wot-typography-label-size-small, $n-11) !default;
273
- $typography-label-size-main: var(--wot-typography-label-size-main, $n-12) !default;
274
- $typography-label-size-large: var(--wot-typography-label-size-large, $n-14) !default;
275
- $typography-label-font-weight-main: var(--wot-typography-label-font-weight-main, $font-weight-regular) !default;
276
- $typography-label-font-weight-strong: var(--wot-typography-label-font-weight-strong, $font-weight-medium) !default;
277
- $typography-label-line-height-size-extra-small: var(--wot-typography-label-line-height-size-extra-small, $n-16) !default;
278
- $typography-label-line-height-size-large: var(--wot-typography-label-line-height-size-large, $n-18) !default;
279
- $typography-label-line-height-size-main: var(--wot-typography-label-line-height-size-main, $n-18) !default;
280
- $typography-label-line-height-size-small: var(--wot-typography-label-line-height-size-small, $n-16) !default;
281
- $typography-label-line-height-size-super-small: var(--wot-typography-label-line-height-size-super-small, $n-14) !default;
282
- $typography-label-size-extra-small: var(--wot-typography-label-size-extra-small, $n-10) !default;
283
- $typography-label-size-super-small: var(--wot-typography-label-size-super-small, $n-9) !default;
271
+ $typography-label-font-family: var(--wot-typography-label-font-family, PingFang SC) !default; // 标签文本字体族
272
+ $typography-label-size-small: var(--wot-typography-label-size-small, $n-11) !default; // 标签文本小号字号
273
+ $typography-label-size-main: var(--wot-typography-label-size-main, $n-12) !default; // 标签文本默认字号
274
+ $typography-label-size-large: var(--wot-typography-label-size-large, $n-14) !default; // 标签文本大号字号
275
+ $typography-label-font-weight-main: var(--wot-typography-label-font-weight-main, $font-weight-regular) !default; // 标签文本默认字重
276
+ $typography-label-font-weight-strong: var(--wot-typography-label-font-weight-strong, $font-weight-medium) !default; // 标签文本强字重
277
+ $typography-label-line-height-size-extra-small: var(--wot-typography-label-line-height-size-extra-small, $n-16) !default; // 标签文本特小号行高
278
+ $typography-label-line-height-size-large: var(--wot-typography-label-line-height-size-large, $n-18) !default; // 标签文本大号行高
279
+ $typography-label-line-height-size-main: var(--wot-typography-label-line-height-size-main, $n-18) !default; // 标签文本默认行高
280
+ $typography-label-line-height-size-small: var(--wot-typography-label-line-height-size-small, $n-16) !default; // 标签文本小号行高
281
+ $typography-label-line-height-size-super-small: var(--wot-typography-label-line-height-size-super-small, $n-14) !default; // 标签文本超小号行高
282
+ $typography-label-size-extra-small: var(--wot-typography-label-size-extra-small, $n-10) !default; // 标签文本特小号字号
283
+ $typography-label-size-super-small: var(--wot-typography-label-size-super-small, $n-9) !default; // 标签文本超小号字号
284
284
 
285
285
  /* body */
286
- $typography-body-font-family: var(--wot-typography-body-font-family, PingFang SC) !default;
287
- $typography-body-size-main: var(--wot-typography-body-size-main, $n-14) !default;
288
- $typography-body-size-large: var(--wot-typography-body-size-large, $n-15) !default;
289
- $typography-body-font-weight-main: var(--wot-typography-body-font-weight-main, $font-weight-regular) !default;
290
- $typography-body-font-weight-strong: var(--wot-typography-body-font-weight-strong, $font-weight-medium) !default;
291
- $typography-body-font-weight-extra-strong: var(--wot-typography-body-font-weight-extra-strong, $font-weight-semibold) !default;
292
- $typography-body-line-height-size-extra-large: var(--wot-typography-body-line-height-size-extra-large, $n-24) !default;
293
- $typography-body-line-height-size-large: var(--wot-typography-body-line-height-size-large, $n-22) !default;
294
- $typography-body-line-height-size-main: var(--wot-typography-body-line-height-size-main, $n-20) !default;
295
- $typography-body-line-height-size-super-large: var(--wot-typography-body-line-height-size-super-large, $n-24) !default;
296
- $typography-body-line-height-size-ultra-large: var(--wot-typography-body-line-height-size-ultra-large, $n-26) !default;
297
- $typography-body-size-extra-large: var(--wot-typography-body-size-extra-large, $n-16) !default;
298
- $typography-body-size-super-large: var(--wot-typography-body-size-super-large, $n-17) !default;
299
- $typography-body-size-ultra-large: var(--wot-typography-body-size-ultra-large, $n-18) !default;
286
+ $typography-body-font-family: var(--wot-typography-body-font-family, PingFang SC) !default; // 正文文本字体族
287
+ $typography-body-size-main: var(--wot-typography-body-size-main, $n-14) !default; // 正文文本默认字号
288
+ $typography-body-size-large: var(--wot-typography-body-size-large, $n-15) !default; // 正文文本大号字号
289
+ $typography-body-font-weight-main: var(--wot-typography-body-font-weight-main, $font-weight-regular) !default; // 正文文本默认字重
290
+ $typography-body-font-weight-strong: var(--wot-typography-body-font-weight-strong, $font-weight-medium) !default; // 正文文本强字重
291
+ $typography-body-font-weight-extra-strong: var(--wot-typography-body-font-weight-extra-strong, $font-weight-semibold) !default; // 正文文本超强字重
292
+ $typography-body-line-height-size-extra-large: var(--wot-typography-body-line-height-size-extra-large, $n-24) !default; // 正文文本特大号行高
293
+ $typography-body-line-height-size-large: var(--wot-typography-body-line-height-size-large, $n-22) !default; // 正文文本大号行高
294
+ $typography-body-line-height-size-main: var(--wot-typography-body-line-height-size-main, $n-20) !default; // 正文文本默认行高
295
+ $typography-body-line-height-size-super-large: var(--wot-typography-body-line-height-size-super-large, $n-24) !default; // 正文文本超大号行高
296
+ $typography-body-line-height-size-ultra-large: var(--wot-typography-body-line-height-size-ultra-large, $n-26) !default; // 正文文本极大号行高
297
+ $typography-body-size-extra-large: var(--wot-typography-body-size-extra-large, $n-16) !default; // 正文文本特大号字号
298
+ $typography-body-size-super-large: var(--wot-typography-body-size-super-large, $n-17) !default; // 正文文本超大号字号
299
+ $typography-body-size-ultra-large: var(--wot-typography-body-size-ultra-large, $n-18) !default; // 正文文本极大号字号
300
300
 
301
301
  /* title */
302
- $typography-title-font-family: var(--wot-typography-title-font-family, PingFang SC) !default;
303
- $typography-title-size-main: var(--wot-typography-title-size-main, $n-18) !default;
304
- $typography-title-size-large: var(--wot-typography-title-size-large, $n-20) !default;
305
- $typography-title-size-extra-large: var(--wot-typography-title-size-extra-large, $n-24) !default;
306
- $typography-title-font-weight-light: var(--wot-typography-title-font-weight-light, $font-weight-regular) !default;
307
- $typography-title-font-weight-main: var(--wot-typography-title-font-weight-main, $font-weight-medium) !default;
308
- $typography-title-font-weight-strong: var(--wot-typography-title-font-weight-strong, $font-weight-semibold) !default;
309
- $typography-title-line-height-size-main: var(--wot-typography-title-line-height-size-main, $n-26) !default;
310
- $typography-title-line-height-size-large: var(--wot-typography-title-line-height-size-large, $n-28) !default;
311
- $typography-title-line-height-size-extra-large: var(--wot-typography-title-line-height-size-extra-large, $n-34) !default;
302
+ $typography-title-font-family: var(--wot-typography-title-font-family, PingFang SC) !default; // 标题文本字体族
303
+ $typography-title-size-main: var(--wot-typography-title-size-main, $n-18) !default; // 标题文本默认字号
304
+ $typography-title-size-large: var(--wot-typography-title-size-large, $n-20) !default; // 标题文本大号字号
305
+ $typography-title-size-extra-large: var(--wot-typography-title-size-extra-large, $n-24) !default; // 标题文本特大号字号
306
+ $typography-title-font-weight-light: var(--wot-typography-title-font-weight-light, $font-weight-regular) !default; // 标题文本轻量字重
307
+ $typography-title-font-weight-main: var(--wot-typography-title-font-weight-main, $font-weight-medium) !default; // 标题文本默认字重
308
+ $typography-title-font-weight-strong: var(--wot-typography-title-font-weight-strong, $font-weight-semibold) !default; // 标题文本强字重
309
+ $typography-title-line-height-size-main: var(--wot-typography-title-line-height-size-main, $n-26) !default; // 标题文本默认行高
310
+ $typography-title-line-height-size-large: var(--wot-typography-title-line-height-size-large, $n-28) !default; // 标题文本大号行高
311
+ $typography-title-line-height-size-extra-large: var(--wot-typography-title-line-height-size-extra-large, $n-34) !default; // 标题文本特大号行高
312
312
 
313
313
  /* 圆角系列 */
314
- $radius-zero: var(--wot-radius-zero, $n-0) !default;
315
- $radius-small: var(--wot-radius-small, $n-2) !default;
316
- $radius-main: var(--wot-radius-main, $n-4) !default;
317
- $radius-large: var(--wot-radius-large, $n-8) !default;
318
- $radius-extra-large: var(--wot-radius-extra-large, $n-12) !default;
319
- $radius-super-large: var(--wot-radius-super-large, $n-16) !default;
320
- $radius-ultra-large: var(--wot-radius-ultra-large, $n-20) !default;
321
- $radius-full: var(--wot-radius-full, $n-full) !default;
314
+ $radius-zero: var(--wot-radius-zero, $n-0) !default; // 零圆角
315
+ $radius-small: var(--wot-radius-small, $n-2) !default; // 小号圆角
316
+ $radius-main: var(--wot-radius-main, $n-4) !default; // 默认圆角
317
+ $radius-large: var(--wot-radius-large, $n-8) !default; // 大号圆角
318
+ $radius-extra-large: var(--wot-radius-extra-large, $n-12) !default; // 特大号圆角
319
+ $radius-super-large: var(--wot-radius-super-large, $n-16) !default; // 超大号圆角
320
+ $radius-ultra-large: var(--wot-radius-ultra-large, $n-20) !default; // 极大号圆角
321
+ $radius-full: var(--wot-radius-full, $n-full) !default; // 全量圆角
322
322
 
323
323
  /* 内边距系列 */
324
- $padding-zero: var(--wot-padding-zero, $n-0) !default;
325
- $padding-ultra-tight: var(--wot-padding-ultra-tight, $n-2) !default;
326
- $padding-super-tight: var(--wot-padding-super-tight, $n-4) !default;
327
- $padding-extra-tight: var(--wot-padding-extra-tight, $n-6) !default;
328
- $padding-tight: var(--wot-padding-tight, $n-8) !default;
329
- $padding-main: var(--wot-padding-main, $n-10) !default;
330
- $padding-loose: var(--wot-padding-loose, $n-12) !default;
331
- $padding-extra-loose: var(--wot-padding-extra-loose, $n-16) !default;
332
- $padding-super-loose: var(--wot-padding-super-loose, $n-20) !default;
333
- $padding-ultra-loose: var(--wot-padding-ultra-loose, $n-24) !default;
334
- $padding-spacious: var(--wot-padding-spacious, $n-28) !default;
335
- $padding-extra-spacious: var(--wot-padding-extra-spacious, $n-32) !default;
336
- $padding-super-spacious: var(--wot-padding-super-spacious, $n-40) !default;
337
- $padding-ultra-spacious: var(--wot-padding-ultra-spacious, $n-48) !default;
324
+ $padding-zero: var(--wot-padding-zero, $n-0) !default; // 零内边距
325
+ $padding-ultra-tight: var(--wot-padding-ultra-tight, $n-2) !default; // 极紧凑内边距
326
+ $padding-super-tight: var(--wot-padding-super-tight, $n-4) !default; // 超紧凑内边距
327
+ $padding-extra-tight: var(--wot-padding-extra-tight, $n-6) !default; // 较紧凑内边距
328
+ $padding-tight: var(--wot-padding-tight, $n-8) !default; // 紧凑内边距
329
+ $padding-main: var(--wot-padding-main, $n-10) !default; // 默认内边距
330
+ $padding-loose: var(--wot-padding-loose, $n-12) !default; // 宽松内边距
331
+ $padding-extra-loose: var(--wot-padding-extra-loose, $n-16) !default; // 较宽松内边距
332
+ $padding-super-loose: var(--wot-padding-super-loose, $n-20) !default; // 超宽松内边距
333
+ $padding-ultra-loose: var(--wot-padding-ultra-loose, $n-24) !default; // 极宽松内边距
334
+ $padding-spacious: var(--wot-padding-spacious, $n-28) !default; // 舒展内边距
335
+ $padding-extra-spacious: var(--wot-padding-extra-spacious, $n-32) !default; // 较舒展内边距
336
+ $padding-super-spacious: var(--wot-padding-super-spacious, $n-40) !default; // 超舒展内边距
337
+ $padding-ultra-spacious: var(--wot-padding-ultra-spacious, $n-48) !default; // 极舒展内边距
338
338
 
339
339
  /* 间距系列 */
340
- $spacing-zero: var(--wot-spacing-zero, $n-0) !default;
341
- $spacing-ultra-tight: var(--wot-spacing-ultra-tight, $n-2) !default;
342
- $spacing-super-tight: var(--wot-spacing-super-tight, $n-4) !default;
343
- $spacing-extra-tight: var(--wot-spacing-extra-tight, $n-6) !default;
344
- $spacing-tight: var(--wot-spacing-tight, $n-8) !default;
345
- $spacing-main: var(--wot-spacing-main, $n-10) !default;
346
- $spacing-loose: var(--wot-spacing-loose, $n-12) !default;
347
- $spacing-extra-loose: var(--wot-spacing-extra-loose, $n-16) !default;
348
- $spacing-super-loose: var(--wot-spacing-super-loose, $n-20) !default;
349
- $spacing-ultra-loose: var(--wot-spacing-ultra-loose, $n-24) !default;
350
- $spacing-spacious: var(--wot-spacing-spacious, $n-28) !default;
351
- $spacing-extra-spacious: var(--wot-spacing-extra-spacious, $n-32) !default;
352
- $spacing-super-spacious: var(--wot-spacing-super-spacious, $n-40) !default;
353
- $spacing-ultra-spacious: var(--wot-spacing-ultra-spacious, $n-48) !default;
340
+ $spacing-zero: var(--wot-spacing-zero, $n-0) !default; // 零间距
341
+ $spacing-ultra-tight: var(--wot-spacing-ultra-tight, $n-2) !default; // 极紧凑间距
342
+ $spacing-super-tight: var(--wot-spacing-super-tight, $n-4) !default; // 超紧凑间距
343
+ $spacing-extra-tight: var(--wot-spacing-extra-tight, $n-6) !default; // 较紧凑间距
344
+ $spacing-tight: var(--wot-spacing-tight, $n-8) !default; // 紧凑间距
345
+ $spacing-main: var(--wot-spacing-main, $n-10) !default; // 默认间距
346
+ $spacing-loose: var(--wot-spacing-loose, $n-12) !default; // 宽松间距
347
+ $spacing-extra-loose: var(--wot-spacing-extra-loose, $n-16) !default; // 较宽松间距
348
+ $spacing-super-loose: var(--wot-spacing-super-loose, $n-20) !default; // 超宽松间距
349
+ $spacing-ultra-loose: var(--wot-spacing-ultra-loose, $n-24) !default; // 极宽松间距
350
+ $spacing-spacious: var(--wot-spacing-spacious, $n-28) !default; // 舒展间距
351
+ $spacing-extra-spacious: var(--wot-spacing-extra-spacious, $n-32) !default; // 较舒展间距
352
+ $spacing-super-spacious: var(--wot-spacing-super-spacious, $n-40) !default; // 超舒展间距
353
+ $spacing-ultra-spacious: var(--wot-spacing-ultra-spacious, $n-48) !default; // 极舒展间距
354
354
 
355
355
  /* 边框线系列 */
356
- $stroke-zero: var(--wot-stroke-zero, $n-0) !default;
357
- $stroke-light: var(--wot-stroke-light, $n-05) !default;
358
- $stroke-main: var(--wot-stroke-main, $n-1) !default;
359
- $stroke-bold: var(--wot-stroke-bold, $n-2) !default;
356
+ $stroke-zero: var(--wot-stroke-zero, $n-0) !default; // 零边框线宽
357
+ $stroke-light: var(--wot-stroke-light, $n-05) !default; // 轻量边框线宽
358
+ $stroke-main: var(--wot-stroke-main, $n-1) !default; // 默认边框线宽
359
+ $stroke-bold: var(--wot-stroke-bold, $n-2) !default; // 加粗边框线宽
360
360
 
361
361
 
362
362
  /* 语义变量(light) */
363
363
  /* 主色系列 */
364
- $primary-1: var(--wot-primary-1, $blue-1) !default;
365
- $primary-2: var(--wot-primary-2, $blue-2) !default;
366
- $primary-3: var(--wot-primary-3, $blue-3) !default;
367
- $primary-4: var(--wot-primary-4, $blue-4) !default;
368
- $primary-5: var(--wot-primary-5, $blue-5) !default;
369
- $primary-6: var(--wot-primary-6, $blue-6) !default;
370
- $primary-7: var(--wot-primary-7, $blue-7) !default;
371
- $primary-8: var(--wot-primary-8, $blue-8) !default;
372
- $primary-9: var(--wot-primary-9, $blue-9) !default;
373
- $primary-10: var(--wot-primary-10, $blue-10) !default;
364
+ $primary-1: var(--wot-primary-1, $blue-1) !default; // 主色色阶 1
365
+ $primary-2: var(--wot-primary-2, $blue-2) !default; // 主色色阶 2
366
+ $primary-3: var(--wot-primary-3, $blue-3) !default; // 主色色阶 3
367
+ $primary-4: var(--wot-primary-4, $blue-4) !default; // 主色色阶 4
368
+ $primary-5: var(--wot-primary-5, $blue-5) !default; // 主色色阶 5
369
+ $primary-6: var(--wot-primary-6, $blue-6) !default; // 主色色阶 6
370
+ $primary-7: var(--wot-primary-7, $blue-7) !default; // 主色色阶 7
371
+ $primary-8: var(--wot-primary-8, $blue-8) !default; // 主色色阶 8
372
+ $primary-9: var(--wot-primary-9, $blue-9) !default; // 主色色阶 9
373
+ $primary-10: var(--wot-primary-10, $blue-10) !default; // 主色色阶 10
374
374
 
375
375
  /* 危险色系列 */
376
- $danger-clicked: var(--wot-danger-clicked, $red-7) !default;
377
- $danger-disabled: var(--wot-danger-disabled, $red-3) !default;
378
- $danger-hover: var(--wot-danger-hover, $red-5) !default;
379
- $danger-main: var(--wot-danger-main, $red-6) !default;
380
- $danger-particular: var(--wot-danger-particular, $red-2) !default;
381
- $danger-surface: var(--wot-danger-surface, $red-1) !default;
376
+ $danger-clicked: var(--wot-danger-clicked, $red-7) !default; // 危险色点击态
377
+ $danger-disabled: var(--wot-danger-disabled, $red-3) !default; // 危险色禁用态
378
+ $danger-hover: var(--wot-danger-hover, $red-5) !default; // 危险色悬浮态
379
+ $danger-main: var(--wot-danger-main, $red-6) !default; // 危险色默认
380
+ $danger-particular: var(--wot-danger-particular, $red-2) !default; // 危险色强调
381
+ $danger-surface: var(--wot-danger-surface, $red-1) !default; // 危险色表层
382
382
 
383
383
  /* 成功色系列 */
384
- $success-clicked: var(--wot-success-clicked, $green-7) !default;
385
- $success-disabled: var(--wot-success-disabled, $green-3) !default;
386
- $success-hover: var(--wot-success-hover, $green-5) !default;
387
- $success-main: var(--wot-success-main, $green-6) !default;
388
- $success-particular: var(--wot-success-particular, $green-2) !default;
389
- $success-surface: var(--wot-success-surface, $green-1) !default;
384
+ $success-clicked: var(--wot-success-clicked, $green-7) !default; // 成功色点击态
385
+ $success-disabled: var(--wot-success-disabled, $green-3) !default; // 成功色禁用态
386
+ $success-hover: var(--wot-success-hover, $green-5) !default; // 成功色悬浮态
387
+ $success-main: var(--wot-success-main, $green-6) !default; // 成功色默认
388
+ $success-particular: var(--wot-success-particular, $green-2) !default; // 成功色强调
389
+ $success-surface: var(--wot-success-surface, $green-1) !default; // 成功色表层
390
390
 
391
391
  /* 警告色系列 */
392
- $warning-clicked: var(--wot-warning-clicked, $orange-7) !default;
393
- $warning-disabled: var(--wot-warning-disabled, $orange-3) !default;
394
- $warning-hover: var(--wot-warning-hover, $orange-5) !default;
395
- $warning-main: var(--wot-warning-main, $orange-6) !default;
396
- $warning-particular: var(--wot-warning-particular, $orange-2) !default;
397
- $warning-surface: var(--wot-warning-surface, $orange-1) !default;
392
+ $warning-clicked: var(--wot-warning-clicked, $orange-7) !default; // 警告色点击态
393
+ $warning-disabled: var(--wot-warning-disabled, $orange-3) !default; // 警告色禁用态
394
+ $warning-hover: var(--wot-warning-hover, $orange-5) !default; // 警告色悬浮态
395
+ $warning-main: var(--wot-warning-main, $orange-6) !default; // 警告色默认
396
+ $warning-particular: var(--wot-warning-particular, $orange-2) !default; // 警告色强调
397
+ $warning-surface: var(--wot-warning-surface, $orange-1) !default; // 警告色表层
398
398
 
399
399
  /* 文字色系列 */
400
- $text-main: var(--wot-text-main, $coolgrey-10) !default;
401
- $text-secondary: var(--wot-text-secondary, $coolgrey-8) !default;
402
- $text-auxiliary: var(--wot-text-auxiliary, $coolgrey-6) !default;
403
- $text-disabled: var(--wot-text-disabled, $coolgrey-4) !default;
404
- $text-placeholder: var(--wot-text-placeholder, $coolgrey-5) !default;
405
- $text-white: var(--wot-text-white, $base-white) !default;
400
+ $text-main: var(--wot-text-main, $coolgrey-10) !default; // 主要文字颜色
401
+ $text-secondary: var(--wot-text-secondary, $coolgrey-8) !default; // 次要文字颜色
402
+ $text-auxiliary: var(--wot-text-auxiliary, $coolgrey-6) !default; // 辅助文字颜色
403
+ $text-disabled: var(--wot-text-disabled, $coolgrey-4) !default; // 禁用文字颜色
404
+ $text-placeholder: var(--wot-text-placeholder, $coolgrey-5) !default; // 占位文字颜色
405
+ $text-white: var(--wot-text-white, $base-white) !default; // 白色文字颜色
406
406
 
407
407
  /* 图标色系列 */
408
408
  /* 图标 */
409
- $icon-main: var(--wot-icon-main, $coolgrey-10) !default;
410
- $icon-secondary: var(--wot-icon-secondary, $coolgrey-8) !default;
411
- $icon-auxiliary: var(--wot-icon-auxiliary, $coolgrey-6) !default;
412
- $icon-disabled: var(--wot-icon-disabled, $coolgrey-4) !default;
413
- $icon-placeholder: var(--wot-icon-placeholder, $coolgrey-5) !default;
414
- $icon-white: var(--wot-icon-white, $base-white) !default;
409
+ $icon-main: var(--wot-icon-main, $coolgrey-10) !default; // 主要图标颜色
410
+ $icon-secondary: var(--wot-icon-secondary, $coolgrey-8) !default; // 次要图标颜色
411
+ $icon-auxiliary: var(--wot-icon-auxiliary, $coolgrey-6) !default; // 辅助图标颜色
412
+ $icon-disabled: var(--wot-icon-disabled, $coolgrey-4) !default; // 禁用图标颜色
413
+ $icon-placeholder: var(--wot-icon-placeholder, $coolgrey-5) !default; // 占位图标颜色
414
+ $icon-white: var(--wot-icon-white, $base-white) !default; // 白色图标颜色
415
415
 
416
416
  /* 边框色系列 */
417
- $border-extra-strong: var(--wot-border-extra-strong, $coolgrey-6) !default;
418
- $border-strong: var(--wot-border-strong, $coolgrey-4) !default;
419
- $border-main: var(--wot-border-main, $coolgrey-3) !default;
420
- $border-light: var(--wot-border-light, $coolgrey-2) !default;
421
- $border-white: var(--wot-border-white, $base-white) !default;
422
- $border-zero: var(--wot-border-zero, $base-transparent) !default;
417
+ $border-extra-strong: var(--wot-border-extra-strong, $coolgrey-6) !default; // 超强边框色
418
+ $border-strong: var(--wot-border-strong, $coolgrey-4) !default; // 强边框色
419
+ $border-main: var(--wot-border-main, $coolgrey-3) !default; // 默认边框色
420
+ $border-light: var(--wot-border-light, $coolgrey-2) !default; // 轻量边框色
421
+ $border-white: var(--wot-border-white, $base-white) !default; // 白色边框色
422
+ $border-zero: var(--wot-border-zero, $base-transparent) !default; // 零边框色
423
423
 
424
424
  /* 填充色系列 */
425
- $filled-extra-strong: var(--wot-filled-extra-strong, $coolgrey-4) !default;
426
- $filled-strong: var(--wot-filled-strong, $coolgrey-3) !default;
427
- $filled-content: var(--wot-filled-content, $coolgrey-2) !default;
428
- $filled-bottom: var(--wot-filled-bottom, $coolgrey-1) !default;
429
- $filled-oppo: var(--wot-filled-oppo, $base-white) !default;
430
- $filled-zero: var(--wot-filled-zero, $base-transparent) !default;
425
+ $filled-extra-strong: var(--wot-filled-extra-strong, $coolgrey-4) !default; // 超强填充色
426
+ $filled-strong: var(--wot-filled-strong, $coolgrey-3) !default; // 强填充色
427
+ $filled-content: var(--wot-filled-content, $coolgrey-2) !default; // 内容填充色
428
+ $filled-bottom: var(--wot-filled-bottom, $coolgrey-1) !default; // 底层填充色
429
+ $filled-oppo: var(--wot-filled-oppo, $base-white) !default; // 反向填充色
430
+ $filled-zero: var(--wot-filled-zero, $base-transparent) !default; // 零填充色
431
431
 
432
432
  /* 分割线系列 */
433
- $divider-main: var(--wot-divider-main, $opac-3_08) !default;
434
- $divider-light: var(--wot-divider-light, $opac-2_04) !default;
435
- $divider-strong: var(--wot-divider-strong, $opac-4_15) !default;
436
- $divider-white: var(--wot-divider-white, $base-white) !default;
433
+ $divider-main: var(--wot-divider-main, $opac-3_08) !default; // 默认分割线颜色
434
+ $divider-light: var(--wot-divider-light, $opac-2_04) !default; // 轻量分割线颜色
435
+ $divider-strong: var(--wot-divider-strong, $opac-4_15) !default; // 强分割线颜色
436
+ $divider-white: var(--wot-divider-white, $base-white) !default; // 白色分割线颜色
437
437
 
438
438
  /* 反馈色系列 */
439
- $feedback-accent: var(--wot-feedback-accent, $blue-opac) !default;
440
- $feedback-active: var(--wot-feedback-active, $opac-3_08) !default;
441
- $feedback-hover: var(--wot-feedback-hover, $opac-2_04) !default;
439
+ $feedback-accent: var(--wot-feedback-accent, $blue-opac) !default; // 反馈强调颜色
440
+ $feedback-active: var(--wot-feedback-active, $opac-3_08) !default; // 反馈激活态颜色
441
+ $feedback-hover: var(--wot-feedback-hover, $opac-2_04) !default; // 反馈悬浮态颜色
442
442
 
443
443
  /* 透明度填充 */
444
- $opacfilled-light-cover: var(--wot-opacfilled-light-cover, $opac-6_30) !default;
445
- $opacfilled-main-cover: var(--wot-opacfilled-main-cover, $opac-7_55) !default;
446
- $opacfilled-tooltip-toast-cover: var(--wot-opacfilled-tooltip-toast-cover, $opac-9_75) !default;
444
+ $opacfilled-light-cover: var(--wot-opacfilled-light-cover, $opac-6_30) !default; // 轻量透明填充遮罩
445
+ $opacfilled-main-cover: var(--wot-opacfilled-main-cover, $opac-7_55) !default; // 默认透明填充遮罩
446
+ $opacfilled-tooltip-toast-cover: var(--wot-opacfilled-tooltip-toast-cover, $opac-9_75) !default; // tooltip-toast透明填充遮罩
447
447
 
448
448
  /* 分类色系列 */
449
449
  /* 黄色 */
450
- $classifyapplication-yellow-background: var(--wot-classifyapplication-yellow-background, $yellow-1) !default;
451
- $classifyapplication-yellow-border: var(--wot-classifyapplication-yellow-border, $yellow-3) !default;
452
- $classifyapplication-yellow-content: var(--wot-classifyapplication-yellow-content, $yellow-6) !default;
450
+ $classifyapplication-yellow-background: var(--wot-classifyapplication-yellow-background, $yellow-1) !default; // 分类应用黄色背景色
451
+ $classifyapplication-yellow-border: var(--wot-classifyapplication-yellow-border, $yellow-3) !default; // 分类应用黄色边框色
452
+ $classifyapplication-yellow-content: var(--wot-classifyapplication-yellow-content, $yellow-6) !default; // 分类应用黄色内容色
453
453
 
454
454
  /* 蓝色 */
455
- $classifyapplication-cyan-background: var(--wot-classifyapplication-cyan-background, $cyan-1) !default;
456
- $classifyapplication-cyan-border: var(--wot-classifyapplication-cyan-border, $cyan-3) !default;
457
- $classifyapplication-cyan-content: var(--wot-classifyapplication-cyan-content, $cyan-6) !default;
455
+ $classifyapplication-cyan-background: var(--wot-classifyapplication-cyan-background, $cyan-1) !default; // 分类应用青色背景色
456
+ $classifyapplication-cyan-border: var(--wot-classifyapplication-cyan-border, $cyan-3) !default; // 分类应用青色边框色
457
+ $classifyapplication-cyan-content: var(--wot-classifyapplication-cyan-content, $cyan-6) !default; // 分类应用青色内容色
458
458
 
459
459
  /* 紫色 */
460
- $classifyapplication-purple-background: var(--wot-classifyapplication-purple-background, $purple-1) !default;
461
- $classifyapplication-purple-border: var(--wot-classifyapplication-purple-border, $purple-3) !default;
462
- $classifyapplication-purple-content: var(--wot-classifyapplication-purple-content, $purple-6) !default;
460
+ $classifyapplication-purple-background: var(--wot-classifyapplication-purple-background, $purple-1) !default; // 分类应用紫色背景色
461
+ $classifyapplication-purple-border: var(--wot-classifyapplication-purple-border, $purple-3) !default; // 分类应用紫色边框色
462
+ $classifyapplication-purple-content: var(--wot-classifyapplication-purple-content, $purple-6) !default; // 分类应用紫色内容色
463
463
 
464
464
  /* 靛色 */
465
- $classifyapplication-grape-background: var(--wot-classifyapplication-grape-background, $grape-1) !default;
466
- $classifyapplication-grape-border: var(--wot-classifyapplication-grape-border, $grape-3) !default;
467
- $classifyapplication-grape-content: var(--wot-classifyapplication-grape-content, $grape-6) !default;
465
+ $classifyapplication-grape-background: var(--wot-classifyapplication-grape-background, $grape-1) !default; // 分类应用靛色背景色
466
+ $classifyapplication-grape-border: var(--wot-classifyapplication-grape-border, $grape-3) !default; // 分类应用靛色边框色
467
+ $classifyapplication-grape-content: var(--wot-classifyapplication-grape-content, $grape-6) !default; // 分类应用靛色内容色
468
468
 
469
469
  /* 粉色 */
470
- $classifyapplication-pink-background: var(--wot-classifyapplication-pink-background, $pink-1) !default;
471
- $classifyapplication-pink-border: var(--wot-classifyapplication-pink-border, $pink-3) !default;
472
- $classifyapplication-pink-content: var(--wot-classifyapplication-pink-content, $pink-6) !default;
470
+ $classifyapplication-pink-background: var(--wot-classifyapplication-pink-background, $pink-1) !default; // 分类应用粉色背景色
471
+ $classifyapplication-pink-border: var(--wot-classifyapplication-pink-border, $pink-3) !default; // 分类应用粉色边框色
472
+ $classifyapplication-pink-content: var(--wot-classifyapplication-pink-content, $pink-6) !default; // 分类应用粉色内容色