amotify 0.0.5 → 0.0.7

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 (157) hide show
  1. package/dist/@jsminAmotifyExtension/formCollect.js +1 -1
  2. package/dist/Atoms/Logo/parts.js +1 -1
  3. package/dist/Atoms/Various/parts.js +1 -1
  4. package/dist/Functions/Button/_.js +1 -1
  5. package/dist/Functions/Cropper/parts.js +4 -4
  6. package/dist/Functions/Effects/Fade.js +2 -2
  7. package/dist/Functions/Input/Chips/Selector.js +4 -4
  8. package/dist/Functions/Input/Chips/_.js +3 -3
  9. package/dist/Functions/Input/DigitCharacters.js +3 -3
  10. package/dist/Functions/Input/File/_.js +4 -4
  11. package/dist/Functions/Input/List/_.js +3 -3
  12. package/dist/Functions/Input/Segmented/_.js +1 -1
  13. package/dist/Functions/Input/Select/_.js +2 -2
  14. package/dist/Functions/Input/Slider/_.js +3 -3
  15. package/dist/Functions/Input/Switch/_.js +4 -4
  16. package/dist/Functions/Input/Text.js +2 -2
  17. package/dist/Functions/Input/TextArea.js +1 -1
  18. package/dist/Functions/Input/Time/Picker.js +4 -4
  19. package/dist/Functions/Input/Time/_.js +3 -3
  20. package/dist/Functions/Input/_.js +4 -4
  21. package/dist/Functions/Input/core.js +4 -4
  22. package/dist/Functions/Inputs/text.js +1 -1
  23. package/dist/Functions/Layout/PageNotFound.js +3 -3
  24. package/dist/Functions/Layout/PageRouter.js +2 -2
  25. package/dist/Functions/Layout/PageViewController/parts.js +2 -2
  26. package/dist/Functions/Layout/Plate.js +1 -1
  27. package/dist/Functions/Layout/RootViewController/parts.js +4 -4
  28. package/dist/Functions/Layout/SwipeView/parts.js +2 -2
  29. package/dist/Functions/Layout/TabBar.js +3 -3
  30. package/dist/Functions/Loader/corner.js +2 -2
  31. package/dist/Functions/Loader/mini.js +2 -2
  32. package/dist/Functions/Loader/parts.js +1 -1
  33. package/dist/Functions/Loader/top.js +2 -2
  34. package/dist/Functions/Sheet/parts.js +4 -4
  35. package/dist/Functions/SnackBar/parts.js +4 -4
  36. package/dist/Functions/Table/Data/parts.js +4 -4
  37. package/dist/Functions/Table/Drag/parts.js +3 -3
  38. package/dist/Functions/Table/_.js +2 -2
  39. package/dist/Functions/Tooltips/parts.js +2 -2
  40. package/dist/Molecules/@export.js +1 -1
  41. package/dist/Molecules/Accordion/parts.js +2 -2
  42. package/dist/Molecules/LinkifyText/parts.js +2 -2
  43. package/dist/Molecules/List.js +1 -1
  44. package/dist/Organisms/DisplayStyleInput/darkmode.js +4 -4
  45. package/dist/Organisms/DisplayStyleInput/themeColor.js +4 -4
  46. package/dist/Templates/PlayGround/parts.js +5 -5
  47. package/dist/launch.js +6 -6
  48. package/package.json +6 -5
  49. package/src/@jsminAmotifyExtension/_.tsx +4 -0
  50. package/src/@jsminAmotifyExtension/fetch.tsx +107 -0
  51. package/src/@jsminAmotifyExtension/formCollect.tsx +89 -0
  52. package/src/@jsminAmotifyExtension/spreadSheet.tsx +159 -0
  53. package/src/@jsminAmotifyExtension/variables.tsx +130 -0
  54. package/src/@styles/@app.scss +4 -0
  55. package/src/@styles/@variables/customProps.scss +109 -0
  56. package/src/@styles/@variables/styleSet.scss +38 -0
  57. package/src/@styles/@variables/themeColor.scss +71 -0
  58. package/src/@styles/@variables/var.scss +171 -0
  59. package/src/@styles/UniStyling.scss +996 -0
  60. package/src/@styles/init.scss +154 -0
  61. package/src/@types/_.tsx +6 -0
  62. package/src/@types/amot.tsx +323 -0
  63. package/src/@types/fn.tsx +1210 -0
  64. package/src/@types/index.tsx +74 -0
  65. package/src/@types/jsminAmotifyExtension.tsx +143 -0
  66. package/src/@types/module.tsx +2 -0
  67. package/src/@types/state.tsx +199 -0
  68. package/src/Atoms/@export.tsx +32 -0
  69. package/src/Atoms/FAIcon/parts.tsx +117 -0
  70. package/src/Atoms/FAIcon/style.module.scss +9 -0
  71. package/src/Atoms/Logo/parts.tsx +335 -0
  72. package/src/Atoms/Logo/style.module.scss +96 -0
  73. package/src/Atoms/Various/parts.tsx +157 -0
  74. package/src/Atoms/Various/style.module.scss +40 -0
  75. package/src/Functions/@export.tsx +29 -0
  76. package/src/Functions/Button/_.tsx +305 -0
  77. package/src/Functions/Button/style.module.scss +183 -0
  78. package/src/Functions/Cropper/parts.tsx +1061 -0
  79. package/src/Functions/Cropper/style.module.scss +62 -0
  80. package/src/Functions/Effects/Fade.tsx +81 -0
  81. package/src/Functions/Effects/Ripple.tsx +141 -0
  82. package/src/Functions/Effects/_.tsx +33 -0
  83. package/src/Functions/Effects/style.module.scss +83 -0
  84. package/src/Functions/Input/Chips/Selector.tsx +451 -0
  85. package/src/Functions/Input/Chips/_.tsx +286 -0
  86. package/src/Functions/Input/Chips/style.module.scss +6 -0
  87. package/src/Functions/Input/DigitCharacters.tsx +241 -0
  88. package/src/Functions/Input/File/_.tsx +596 -0
  89. package/src/Functions/Input/File/style.module.scss +34 -0
  90. package/src/Functions/Input/Hidden.tsx +18 -0
  91. package/src/Functions/Input/List/_.tsx +383 -0
  92. package/src/Functions/Input/List/style.module.scss +84 -0
  93. package/src/Functions/Input/Segmented/_.tsx +238 -0
  94. package/src/Functions/Input/Segmented/style.module.scss +81 -0
  95. package/src/Functions/Input/Select/_.tsx +225 -0
  96. package/src/Functions/Input/Select/style.module.scss +10 -0
  97. package/src/Functions/Input/Slider/_.tsx +519 -0
  98. package/src/Functions/Input/Slider/style.module.scss +67 -0
  99. package/src/Functions/Input/Switch/_.tsx +177 -0
  100. package/src/Functions/Input/Switch/style.module.scss +18 -0
  101. package/src/Functions/Input/Text.tsx +437 -0
  102. package/src/Functions/Input/TextArea.tsx +115 -0
  103. package/src/Functions/Input/Time/Picker.tsx +950 -0
  104. package/src/Functions/Input/Time/_.tsx +736 -0
  105. package/src/Functions/Input/Time/style.module.scss +72 -0
  106. package/src/Functions/Input/_.tsx +793 -0
  107. package/src/Functions/Input/core.tsx +461 -0
  108. package/src/Functions/Input/style.module.scss +43 -0
  109. package/src/Functions/Inputs/_.tsx +5 -0
  110. package/src/Functions/Inputs/style.module.scss +15 -0
  111. package/src/Functions/Inputs/text.tsx +67 -0
  112. package/src/Functions/Inputs/types.d.ts +1 -0
  113. package/src/Functions/Layout/PageNotFound.tsx +81 -0
  114. package/src/Functions/Layout/PageRouter.tsx +107 -0
  115. package/src/Functions/Layout/PageViewController/parts.tsx +32 -0
  116. package/src/Functions/Layout/Plate.tsx +30 -0
  117. package/src/Functions/Layout/RootViewController/parts.tsx +290 -0
  118. package/src/Functions/Layout/RootViewController/style.module.scss +24 -0
  119. package/src/Functions/Layout/SwipeView/parts.tsx +380 -0
  120. package/src/Functions/Layout/SwipeView/style.module.scss +19 -0
  121. package/src/Functions/Layout/TabBar.tsx +64 -0
  122. package/src/Functions/Layout/_.tsx +20 -0
  123. package/src/Functions/Loader/corner.tsx +78 -0
  124. package/src/Functions/Loader/mini.tsx +117 -0
  125. package/src/Functions/Loader/parts.tsx +105 -0
  126. package/src/Functions/Loader/style.module.scss +222 -0
  127. package/src/Functions/Loader/top.tsx +90 -0
  128. package/src/Functions/Sheet/parts.tsx +972 -0
  129. package/src/Functions/Sheet/style.module.scss +235 -0
  130. package/src/Functions/SnackBar/parts.tsx +215 -0
  131. package/src/Functions/SnackBar/style.module.scss +25 -0
  132. package/src/Functions/Table/Data/parts.tsx +955 -0
  133. package/src/Functions/Table/Drag/parts.tsx +448 -0
  134. package/src/Functions/Table/Normal/parts.tsx +123 -0
  135. package/src/Functions/Table/_.tsx +170 -0
  136. package/src/Functions/Table/style.module.scss +92 -0
  137. package/src/Functions/Tooltips/parts.tsx +52 -0
  138. package/src/Global/@export.tsx +138 -0
  139. package/src/Global/LaunchReactApplication.tsx +30 -0
  140. package/src/Global/exe.tsx +0 -0
  141. package/src/Global/styleConverter.tsx +435 -0
  142. package/src/Molecules/@export.tsx +95 -0
  143. package/src/Molecules/Accordion/parts.tsx +146 -0
  144. package/src/Molecules/Accordion/style.module.scss +13 -0
  145. package/src/Molecules/LinkifyText/parts.tsx +54 -0
  146. package/src/Molecules/List.tsx +30 -0
  147. package/src/Organisms/@export.tsx +5 -0
  148. package/src/Organisms/DisplayStyleInput/_.tsx +18 -0
  149. package/src/Organisms/DisplayStyleInput/darkmode.tsx +112 -0
  150. package/src/Organisms/DisplayStyleInput/themeColor.tsx +210 -0
  151. package/src/Templates/@export.tsx +7 -0
  152. package/src/Templates/PlayGround/parts.tsx +115 -0
  153. package/src/Templates/PlayGround/style.module.scss +38 -0
  154. package/src/config.tsx +132 -0
  155. package/src/launch.tsx +100 -0
  156. package/src/preload.tsx +49 -0
  157. package/webpack.config.js +114 -0
@@ -0,0 +1,38 @@
1
+ @use '@uniVar' as *;
2
+
3
+ @mixin OriginScrollBar {
4
+ overflow: auto;
5
+ &::-webkit-scrollbar,
6
+ &::-webkit-scrollbar-track {
7
+ width: $unit2_3 !important;
8
+ height: $unit2_3 !important;
9
+ background-color: $color-layer3;
10
+ }
11
+ &::-webkit-scrollbar-thumb {
12
+ width: $unit2_3 !important;
13
+ height: $unit2_3 !important;
14
+ background-color: cAlfa(.75) !important;
15
+ }
16
+ }
17
+ @mixin absoluteCovered {
18
+ position: absolute;
19
+ content: '';
20
+ top: 0;
21
+ left: 0;
22
+ right: 0;
23
+ bottom: 0;
24
+ }
25
+ @mixin textEllipsis {
26
+ white-space: nowrap;
27
+ text-overflow: ellipsis;
28
+ overflow: hidden;
29
+ }
30
+ @mixin pureTable {
31
+ min-width: 100%;
32
+ border-collapse: separate;
33
+ border-spacing: 0px;
34
+ }
35
+ @mixin DisableduserSelect {
36
+ user-select: none;
37
+ -webkit-user-select: none;
38
+ }
@@ -0,0 +1,71 @@
1
+ $ThemeColors: ( // ThemeColors
2
+ comun : (h:237, s:076%, l:058%, rgb:rgb(67, 75, 229)),
3
+ leaf : (h:159, s:078%, l:038%, rgb:rgb(21, 172, 120)),
4
+ heart : (h:002, s:081%, l:063%, rgb:rgb(237, 089, 084)),
5
+ droplet : (h:215, s:082%, l:051%, rgb:rgb(028, 113, 233)),
6
+ // Order
7
+ brick : (h:351, s:080%, l:039%, rgb:rgb(179, 020, 044)),
8
+ flower : (h:350, s:078%, l:075%, rgb:rgb(241, 142, 158)),
9
+ lip : (h:340, s:069%, l:049%, rgb:rgb(211, 39, 96)),
10
+ wine : (h:317, s:041%, l:030%, rgb:rgb(108, 045, 090)),
11
+ theater : (h:301, s:088%, l:049%, rgb:rgb(235, 15, 231)),
12
+ bat : (h:272, s:081%, l:021%, rgb:rgb(056, 010, 097)),
13
+ poizon : (h:268, s:058%, l:050%, rgb:rgb(123, 054, 201)),
14
+ eggplant : (h:264, s:100%, l:062%, rgb:rgb(139, 61, 255)),
15
+ ufo : (h:253, s:081%, l:058%, rgb:rgb(099, 061, 235)),
16
+ alien : (h:252, s:092%, l:057%, rgb:rgb(084, 043, 245)),
17
+ tombstone : (h:251, s:014%, l:070%, rgb:rgb(173, 169, 190)),
18
+ ninja : (h:242, s:100%, l:068%, rgb:rgb(97, 92, 255)),
19
+ moon : (h:240, s:016%, l:024%, rgb:rgb(051, 051, 071)),
20
+ rain : (h:240, s:032%, l:054%, rgb:rgb(100, 100, 175)),
21
+ unicorn : (h:238, s:070%, l:074%, rgb:rgb(142, 145, 235)),
22
+ axe : (h:226, s:022%, l:035%, rgb:rgb(070, 079, 109)),
23
+ gem : (h:221, s:085%, l:043%, rgb:rgb(016, 075, 203)),
24
+ soap : (h:217, s:085%, l:032%, rgb:rgb(012, 065, 151)),
25
+ drizzle : (h:213, s:033%, l:068%, rgb:rgb(146, 171, 200)),
26
+ building : (h:204, s:003%, l:072%, rgb:rgb(181, 184, 186)),
27
+ fish : (h:194, s:097%, l:034%, rgb:rgb(3, 132, 171)),
28
+ icicles : (h:191, s:061%, l:058%, rgb:rgb(083, 189, 213)),
29
+ water : (h:187, s:030%, l:054%, rgb:rgb(103, 165, 173)),
30
+ tree1 : (h:186, s:085%, l:023%, rgb:rgb(009, 099, 109)),
31
+ tree2 : (h:185, s:097%, l:034%, rgb:rgb(003, 157, 171)),
32
+ tree3 : (h:183, s:086%, l:019%, rgb:rgb(007, 086, 090)),
33
+ battery : (h:170, s:090%, l:039%, rgb:rgb(010, 189, 159)),
34
+ seedle : (h:145, s:094%, l:040%, rgb:rgb(006, 198, 086)),
35
+ greenTea : (h:144, s:043%, l:041%, rgb:rgb(060, 150, 096)),
36
+ oak : (h:101, s:024%, l:066%, rgb:rgb(161, 189, 147)),
37
+ salad : (h:068, s:090%, l:043%, rgb:rgb(182, 208, 011)),
38
+ cloudy : (h:060, s:005%, l:079%, rgb:rgb(204, 204, 199)),
39
+ lemon : (h:053, s:078%, l:070%, rgb:rgb(238, 224, 119)),
40
+ angel : (h:047, s:100%, l:050%, rgb:rgb(255, 200, 000)),
41
+ parasol : (h:042, s:086%, l:070%, rgb:rgb(244, 205, 113)),
42
+ pizza : (h:040, s:092%, l:052%, rgb:rgb(245, 170, 020)),
43
+ thunder : (h:040, s:070%, l:057%, rgb:rgb(222, 171, 069)),
44
+ latte : (h:033, s:051%, l:073%, rgb:rgb(221, 190, 151)),
45
+ island : (h:027, s:091%, l:055%, rgb:rgb(245, 130, 036)),
46
+ shovel : (h:019, s:029%, l:037%, rgb:rgb(122, 084, 067)),
47
+ coffee : (h:018, s:033%, l:024%, rgb:rgb(081, 053, 041)),
48
+ carrot : (h:014, s:084%, l:059%, rgb:rgb(238, 104, 063)),
49
+ cactus : (h:008, s:017%, l:062%, rgb:rgb(175, 146, 142)),
50
+ volcano : (h:006, s:084%, l:048%, rgb:rgb(225, 040, 020)),
51
+ choco : (h:002, s:055%, l:057%, rgb:rgb(206, 089, 085)),
52
+ industry : (h:000, s:000%, l:050%, rgb:rgb(128, 128, 128)),
53
+ gun : (h:000, s:000%, l:037%, rgb:rgb(094, 094, 094)),
54
+ galaxy : (h:000, s:000%, l:005%, rgb:rgb(013, 013, 013)),
55
+ // Brand Color
56
+ line:(h:120, s:100%, l:37%),
57
+ twitter:(h:203, s:89%, l:52%),
58
+ amazon:(h:36, s:100%, l:50%),
59
+ facebook:(h:220, s:46%, l:48%),
60
+ android:(h:101, s:47%, l:55%),
61
+ slackBlue:(h:194, s:86%, l:58%),
62
+ slackGreen:(h:155, s:60%, l:45%),
63
+ slackRed:(h:341, s:76%, l:50%),
64
+ slackYellow:(h:42, s:83%, l:55%),
65
+ slackBase:(h:299, s:56%, l:19%),
66
+ googleBlue:(h:217, s:89%, l:61%),
67
+ googleGreen:(h:151, s:83%, l:34%),
68
+ googleYellow:(h:44, s:100%, l:48%),
69
+ googleRed:(h:5, s:69%, l:54%),
70
+ );
71
+ $ThemeColorKeys: map-keys($ThemeColors );
@@ -0,0 +1,171 @@
1
+ @use './themeColor' as themeColor;
2
+ :root {
3
+ /* theme colors */
4
+ @each $key in themeColor.$ThemeColorKeys {
5
+ $obj: map-get(themeColor.$ThemeColors, $key );
6
+ $i : index(themeColor.$ThemeColorKeys, $key ) - 1;
7
+ $h : map-get($obj, h);
8
+ $s : map-get($obj, s);
9
+ $l : map-get($obj, l);
10
+ --cH_#{ $key } : #{ $h };
11
+ --cS_#{ $key } : #{ $s };
12
+ --cL_#{ $key } : #{ $l };
13
+ --color_#{ $key }-hsl : #{ $h }, #{ $s }, #{ $l };
14
+ }
15
+ --cH : 0;
16
+ --cS : 0%;
17
+ --cL : 0%;
18
+ --color-theme-hsl: 0, 0%, 0%;
19
+ --color-theme-opacity-high: .5;
20
+ --color-theme-opacity-middle: .25;
21
+ --color-theme-opacity-low: .15;
22
+ --color-theme-opacity-few: .085;
23
+ /* sub colors */
24
+ --color-positive-rgb: 54, 194, 124;
25
+ --color-negative-rgb: 246, 70, 93;
26
+ --color-warning-rgb: 248, 150, 0;
27
+ --color-dark-rgb: 69, 81, 92;
28
+ //
29
+ --color-positive: rgba(var(--color-positive-rgb), 1);
30
+ --color-negative: rgba(var(--color-negative-rgb), 1);
31
+ --color-warning: rgba(var(--color-warning-rgb), 1);
32
+ --color-dark: rgba(var(--color-dark-rgb), 1);
33
+ /* layer colors */
34
+ --color-layer1-hsl: var(--cH), 6%, 99%;
35
+ --color-layer2-hsl: var(--cH), 6%, 96%;
36
+ --color-layer3-hsl: var(--cH), 6%, 92%;
37
+ --color-layer4-hsl: var(--cH), 8%, 89%;
38
+ --color-layer5-hsl: var(--cH), 10%, 85%;
39
+ --color-layer6-hsl: var(--cH), 10%, 75%;
40
+ //
41
+ --color-base-rgb: 252, 252, 252;
42
+ --color-cloud-rgb: 241, 243, 248;
43
+ --color-monoPrime-rgb: 0, 0, 0;
44
+ --color-monoSecond-rgb: 255, 255, 255;
45
+ --font-color-logoTitle: hsl(218, 45%, 22%);
46
+ --sc: 60, 64, 67;
47
+ /* font colors */
48
+ --font-color1-rgb: 0, 0, 0;
49
+ --font-color2-rgb: 51, 51, 51;
50
+ --font-color3-rgb: 118, 125, 137;
51
+ --font-color4-rgb: 152, 158, 167;
52
+ --font-color5-rgb: 189, 194, 200;
53
+ --font-color6-rgb: 210, 210, 220;
54
+ /* font sizes */
55
+ --font-size0: 10px;
56
+ --font-size1: 12px;
57
+ --font-size2: 14px;
58
+ --font-size3: 16px;
59
+ --font-size4: 20px;
60
+ --font-size5: 24px;
61
+ --font-size6: 32px;
62
+ --font-size7: 44px;
63
+ --font-size8: 60px;
64
+ /* border colors */
65
+ --border-color-thin: hsl(220, 9%, 92%);
66
+ --border-color-normal: hsl(220, 9%, 87%);
67
+ /* border radius */
68
+ --border-radius1: 4px;
69
+ --border-radius2: 6px;
70
+ --border-radius3: 8px;
71
+ --border-radius4: 12px;
72
+ --border-radius5: 18px;
73
+ --border-radius6: 24px;
74
+ --border-radius7: 30px;
75
+ /* animation */
76
+ --animation-time1: .1s;
77
+ --animation-time2: .15s;
78
+ --animation-time3: .25s;
79
+ --animation-time4: .4s;
80
+
81
+ --animation-style1: cubic-bezier(.35, .46, 0, .99);
82
+ --animation-style2: cubic-bezier(.1, .85, .1, .85);
83
+ // safe area
84
+ --safe-area-top: env(safe-area-inset-top);
85
+ --safe-area-bottom: env(safe-area-inset-bottom);
86
+ /* unit size */
87
+ --grid-unit: 12px;
88
+ /* view height */
89
+ --viewHeight: 100vh;
90
+ @supports (-webkit-touch-callout: none) {
91
+ --viewHeight: -webkit-fill-available;
92
+ }
93
+ --sideNavHeight : 0px;
94
+ --topNavHeight : 0px;
95
+ --contentHeight : 0px;
96
+ --topBase : 0px;
97
+ }
98
+ @mixin DARK {
99
+ --color-theme-opacity-high: .45;
100
+ --color-theme-opacity-middle: .3;
101
+ --color-theme-opacity-low: .2;
102
+ --color-theme-opacity-few: .1;
103
+ //
104
+ --color-dark-rgb: 46, 51, 54;
105
+ --color-cloud-rgb: 43, 44, 45;
106
+ --color-base-rgb: 27, 28, 28;
107
+ --color-monoPrime-rgb: 255, 255, 255;
108
+ --color-monoSecond-rgb: 0, 0, 0;
109
+ //
110
+ --font-color1-rgb: 250, 251, 252;
111
+ --font-color2-rgb: 205, 210, 220;
112
+ --font-color3-rgb: 165, 170, 180;
113
+ --font-color4-rgb: 135, 140, 150;
114
+ --font-color5-rgb: 95, 100, 110;
115
+ --font-color6-rgb: 65, 70, 80;
116
+ --font-color-logoTitle: rgb(210, 220, 240);
117
+ --sc: 1, 2, 3;
118
+ //
119
+ --border-color-thin: hsl(180, 5%, 25%);
120
+ --border-color-normal: hsl(180, 5%, 38%);
121
+ }
122
+ @mixin DarkLayer {
123
+ --color-layer1-hsl: var(--cH), 5%, 10%;
124
+ --color-layer2-hsl: var(--cH), 5%, 13.3%;
125
+ --color-layer3-hsl: var(--cH), 5%, 16.6%;
126
+ --color-layer4-hsl: var(--cH), 5%, 20%;
127
+ --color-layer5-hsl: var(--cH), 5%, 25%;
128
+ --color-layer6-hsl: var(--cH), 5%, 30%;
129
+ }
130
+ @mixin DIMLayer {
131
+ --color-layer1-hsl: var(--cH), 8%, 20%;
132
+ --color-layer2-hsl: var(--cH), 8%, 23.3%;
133
+ --color-layer3-hsl: var(--cH), 8%, 26.6%;
134
+ --color-layer4-hsl: var(--cH), 8%, 30%;
135
+ --color-layer5-hsl: var(--cH), 8%, 35%;
136
+ --color-layer6-hsl: var(--cH), 8%, 40%;
137
+ }
138
+ .bds {
139
+ &TC {
140
+ @each $key in themeColor.$ThemeColorKeys {
141
+ &_#{ $key } {
142
+ --cH : var(--cH_#{ $key });
143
+ --cS : var(--cS_#{ $key });
144
+ --cL : var(--cL_#{ $key });
145
+ --color-theme-hsl : var(--color_#{ $key }-hsl);
146
+ }
147
+ }
148
+ }
149
+ &TN {
150
+ &flat {
151
+ --border-color-thin: hsl(220, 9%, 94%);
152
+ --border-color-normal: hsl(220, 9%, 90%);
153
+ }
154
+ }
155
+ &DM_ {
156
+ &dark {
157
+ @include DARK();
158
+ @include DarkLayer();
159
+ }
160
+ &dim {
161
+ @include DARK();
162
+ @include DIMLayer();
163
+ }
164
+ &auto {
165
+ @media (prefers-color-scheme: dark) {
166
+ @include DARK();
167
+ @include DarkLayer();
168
+ }
169
+ }
170
+ }
171
+ }