@syncfusion/ej2-base 24.2.7 → 25.1.35-579988

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 (163) hide show
  1. package/.eslintrc.json +2 -1
  2. package/CHANGELOG.md +641 -677
  3. package/{README.md → ReadMe.md} +100 -100
  4. package/dist/ej2-base.umd.min.js +1 -10
  5. package/dist/ej2-base.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-base.es2015.js +178 -1025
  7. package/dist/es6/ej2-base.es2015.js.map +1 -1
  8. package/dist/es6/ej2-base.es5.js +226 -934
  9. package/dist/es6/ej2-base.es5.js.map +1 -1
  10. package/dist/global/ej2-base.min.js +1 -10
  11. package/dist/global/ej2-base.min.js.map +1 -1
  12. package/dist/global/index.d.ts +0 -9
  13. package/dist/ts/ajax.ts +236 -0
  14. package/dist/ts/animation.ts +544 -0
  15. package/dist/ts/base.ts +357 -0
  16. package/dist/ts/browser.ts +387 -0
  17. package/dist/ts/child-property.ts +192 -0
  18. package/dist/ts/component.ts +519 -0
  19. package/dist/ts/dom.ts +488 -0
  20. package/dist/ts/draggable.ts +1155 -0
  21. package/dist/ts/droppable.ts +172 -0
  22. package/dist/ts/event-handler.ts +169 -0
  23. package/dist/ts/internationalization.ts +369 -0
  24. package/dist/ts/intl/date-formatter.ts +317 -0
  25. package/dist/ts/intl/date-parser.ts +426 -0
  26. package/dist/ts/intl/intl-base.ts +1104 -0
  27. package/dist/ts/intl/number-formatter.ts +411 -0
  28. package/dist/ts/intl/number-parser.ts +158 -0
  29. package/dist/ts/intl/parser-base.ts +394 -0
  30. package/dist/ts/keyboard.ts +238 -0
  31. package/dist/ts/l10n.ts +94 -0
  32. package/dist/ts/module-loader.ts +149 -0
  33. package/dist/ts/notify-property-change.ts +726 -0
  34. package/dist/ts/observer.ts +236 -0
  35. package/dist/ts/sanitize-helper.ts +224 -0
  36. package/dist/ts/template-engine.ts +191 -0
  37. package/dist/ts/template.ts +329 -0
  38. package/dist/ts/touch.ts +544 -0
  39. package/dist/ts/util.ts +523 -0
  40. package/dist/ts/validate-lic.ts +0 -0
  41. package/e2e/crypto.js +16 -16
  42. package/e2e/m.protractor.config.js +286 -286
  43. package/e2e/modified-protractor/protractor.config.js +316 -316
  44. package/e2e/protractor.config.js +389 -332
  45. package/helpers/e2e/index.js +3 -3
  46. package/license +10 -10
  47. package/package.json +225 -174
  48. package/src/ajax.d.ts +1 -1
  49. package/src/ajax.js +3 -8
  50. package/src/animation-model.d.ts +41 -41
  51. package/src/animation.d.ts +6 -6
  52. package/src/animation.js +25 -25
  53. package/src/base.d.ts +2 -1
  54. package/src/base.js +9 -7
  55. package/src/component-model.d.ts +16 -16
  56. package/src/component.d.ts +9 -3
  57. package/src/component.js +50 -38
  58. package/src/draggable-model.d.ts +113 -113
  59. package/src/draggable.d.ts +2 -0
  60. package/src/draggable.js +45 -29
  61. package/src/droppable-model.d.ts +23 -23
  62. package/src/droppable.js +19 -19
  63. package/src/event-handler.js +2 -1
  64. package/src/index.d.ts +0 -3
  65. package/src/index.js +0 -3
  66. package/src/intl/date-formatter.js +2 -6
  67. package/src/intl/date-parser.js +1 -20
  68. package/src/intl/intl-base.js +1 -164
  69. package/src/intl/number-formatter.d.ts +3 -0
  70. package/src/intl/number-formatter.js +7 -7
  71. package/src/intl/number-parser.js +1 -0
  72. package/src/keyboard-model.d.ts +16 -16
  73. package/src/keyboard.js +19 -19
  74. package/src/module-loader.d.ts +12 -0
  75. package/src/module-loader.js +11 -0
  76. package/src/notify-property-change.js +3 -2
  77. package/src/observer.js +2 -0
  78. package/src/sanitize-helper.js +5 -0
  79. package/src/template-engine.js +1 -0
  80. package/src/template.js +3 -2
  81. package/src/touch-model.d.ts +39 -39
  82. package/src/touch.js +19 -19
  83. package/src/validate-lic.d.ts +0 -11
  84. package/src/validate-lic.js +1 -259
  85. package/styles/_all.scss +2 -2
  86. package/styles/_bds-dark-definition.scss +15 -0
  87. package/styles/_bds-definition.scss +15 -0
  88. package/styles/_bootstrap-dark-definition.scss +42 -42
  89. package/styles/_bootstrap-definition.scss +42 -42
  90. package/styles/_bootstrap4-definition.scss +11 -11
  91. package/styles/_bootstrap5-dark-definition.scss +9 -9
  92. package/styles/_bootstrap5-definition.scss +8 -8
  93. package/styles/_fabric-dark-definition.scss +42 -42
  94. package/styles/_fabric-definition.scss +42 -42
  95. package/styles/_fluent-dark-definition.scss +9 -9
  96. package/styles/_fluent-definition.scss +9 -9
  97. package/styles/_fluent2-definition.scss +9 -0
  98. package/styles/_fusionnew-dark-definition.scss +8 -8
  99. package/styles/_fusionnew-definition.scss +8 -8
  100. package/styles/_highcontrast-definition.scss +42 -42
  101. package/styles/_highcontrast-light-definition.scss +42 -42
  102. package/styles/_material-dark-definition.scss +48 -48
  103. package/styles/_material-definition.scss +49 -49
  104. package/styles/_material3-dark-definition.scss +14 -14
  105. package/styles/_material3-definition.scss +15 -15
  106. package/styles/_tailwind-dark-definition.scss +15 -15
  107. package/styles/_tailwind-definition.scss +15 -15
  108. package/styles/animation/_all.scss +560 -560
  109. package/styles/bootstrap-dark.css +10 -1
  110. package/styles/bootstrap.css +10 -1
  111. package/styles/bootstrap4.css +10 -1
  112. package/styles/bootstrap5-dark.css +10 -1
  113. package/styles/bootstrap5.css +10 -1
  114. package/styles/common/_all.scss +2 -2
  115. package/styles/common/_core.scss +117 -117
  116. package/styles/common/_mixin.scss +9 -9
  117. package/styles/definition/_bds-dark.scss +1179 -0
  118. package/styles/definition/_bds.scss +1474 -0
  119. package/styles/definition/_bootstrap-dark.scss +219 -219
  120. package/styles/definition/_bootstrap.scss +215 -215
  121. package/styles/definition/_bootstrap4.scss +167 -167
  122. package/styles/definition/_bootstrap5-dark.scss +493 -493
  123. package/styles/definition/_bootstrap5.scss +494 -494
  124. package/styles/definition/_fabric-dark.scss +200 -200
  125. package/styles/definition/_fabric.scss +198 -198
  126. package/styles/definition/_fluent-dark.scss +557 -557
  127. package/styles/definition/_fluent.scss +558 -558
  128. package/styles/definition/_fluent2.scss +2198 -0
  129. package/styles/definition/_fusionnew-dark.scss +362 -362
  130. package/styles/definition/_fusionnew.scss +363 -363
  131. package/styles/definition/_highcontrast-light.scss +193 -193
  132. package/styles/definition/_highcontrast.scss +195 -195
  133. package/styles/definition/_material-dark.scss +198 -198
  134. package/styles/definition/_material.scss +192 -192
  135. package/styles/definition/_material3-dark.scss +710 -710
  136. package/styles/definition/_material3.scss +792 -792
  137. package/styles/definition/_tailwind-dark.scss +488 -488
  138. package/styles/definition/_tailwind.scss +485 -485
  139. package/styles/fabric-dark.css +10 -1
  140. package/styles/fabric.css +10 -1
  141. package/styles/fluent-dark.css +10 -1
  142. package/styles/fluent.css +10 -1
  143. package/styles/highcontrast-light.css +10 -1
  144. package/styles/highcontrast.css +10 -1
  145. package/styles/material-dark.css +10 -1
  146. package/styles/material.css +10 -1
  147. package/styles/material3-dark.css +10 -1
  148. package/styles/material3.css +10 -1
  149. package/styles/offline-theme/material-dark.css +10 -1
  150. package/styles/offline-theme/material.css +10 -1
  151. package/styles/offline-theme/tailwind-dark.css +10 -1
  152. package/styles/offline-theme/tailwind.css +10 -1
  153. package/styles/tailwind-dark.css +10 -1
  154. package/styles/tailwind.css +10 -1
  155. package/.github/PULL_REQUEST_TEMPLATE/Bug.md +0 -60
  156. package/.github/PULL_REQUEST_TEMPLATE/feature.md +0 -42
  157. package/bin/syncfusion-license.js +0 -2
  158. package/dist/ej2-base.min.js +0 -10
  159. package/e2e/index.d.ts +0 -27
  160. package/src/fetch.d.ts +0 -114
  161. package/src/fetch.js +0 -116
  162. package/src/hijri-parser.d.ts +0 -19
  163. package/src/hijri-parser.js +0 -204
@@ -0,0 +1,1474 @@
1
+ @import '../common/mixin.scss';
2
+
3
+ @function mapcolorvariable($pallete-name){
4
+ @return var(#{'--color-sf-'+ $pallete-name});
5
+ }
6
+
7
+ :root{
8
+
9
+ //bds color system
10
+ --color-sf-base-white: #fff;
11
+ --color-sf-base-black: #000;
12
+
13
+ //Transparent
14
+ --color-sf-base-transparent: transparent;
15
+
16
+ //branding
17
+ --color-sf-brand-primary: #{#7e56d8};
18
+ --color-sf-brand-primary-d10: #{darken(#7e56d8, 5%)};
19
+ --color-sf-on-brand-solid-primary: #{#fff};
20
+ --color-sf-brand-solid-primary: #{#7e56d8};
21
+ --color-sf-brand-solid-primary-hover: #{#6840c6};
22
+ --color-sf-brand-solid-primary-pressed: #{#52379e};
23
+ --color-sf-brand-solid-shadow: #{rgba(157, 118, 237, .24)};
24
+
25
+ //Text
26
+ --color-sf-text-primary: #{#101828};
27
+ --color-sf-text-primary-on-brand: #{#fff};
28
+ --color-sf-text-secondary: #{#344054};
29
+ --color-sf-text-secondary-hover: #{#18212f};
30
+ --color-sf-text-secondary-on-brand: #{#eaecf0};
31
+ --color-sf-text-tertiary: #{#475467};
32
+ --color-sf-text-tertiary-hover: #{#344054};
33
+ --color-sf-text-tertiary-on-brand: #{#eaecf0};
34
+ --color-sf-text-quarterary: #{#101828};
35
+ --color-sf-text-quarterary-on-brand: #{#101828};
36
+ --color-sf-text-white: #{#fff};
37
+ --color-sf-text-disabled: #{#667085};
38
+ --color-sf-text-placeholder: #{#667085};
39
+ --color-sf-text-placeholder-subtle: #{#d0d5dd};
40
+ --color-sf-text-brand-primary: #{#7e56d8};
41
+ --color-sf-text-brand-secondary: #{#6840c6};
42
+ --color-sf-text-brand-tertiary: #{#7e56d8};
43
+ --color-sf-text-brand-tertiary-alt: #{#7e56d8};
44
+ --color-sf-text-error-primary: #{#d92c20};
45
+ --color-sf-text-warning-primary: #{#db6803};
46
+ --color-sf-text-success-primary: #{#069454};
47
+
48
+ //background
49
+ --color-sf-bg-primary: #{#fff};
50
+ --color-sf-bg-primary-alt: #{#fff};
51
+ --color-sf-bg-primary-hover: #{#f9fafb};
52
+ --color-sf-bg-primary-solid: #{#0c111d};
53
+ --color-sf-bg-secondary: #{#f9fafb};
54
+ --color-sf-bg-secondary-alt: #{#f9fafb};
55
+ --color-sf-bg-secondary-hover: #{#f2f4f7};
56
+ --color-sf-bg-secondary-subtle: #{#fcfcfd};
57
+ --color-sf-bg-secondary-solid: #{#475467};
58
+ --color-sf-bg-tertiary: #{#f2f4f7};
59
+ --color-sf-bg-quaternary: #{#eaecf0};
60
+ --color-sf-bg-active: #{#f9fafb};
61
+ --color-sf-bg-disabled: #{#f2f4f7};
62
+ --color-sf-bg-disabled-subtle: #{#f9fafb};
63
+ --color-sf-bg-overlay: rgba(16, 24, 40, 1);
64
+ --color-sf-bg-brand-primary: #{#f9f5ff};
65
+ --color-sf-bg-brand-primary-alt: #{#f9f5ff};
66
+ --color-sf-bg-brand-secondary: #{#f4ebff};
67
+ --color-sf-bg-brand-solid: #{#7e56d8};
68
+ --color-sf-bg-brand-solid-hover: #{#6840c6};
69
+ --color-sf-bg-brand-section: #{#52379e};
70
+ --color-sf-bg-brand-section-subtle: #{#6840c6};
71
+ --color-sf-bg-error-primary: #{#fef2f1};
72
+ --color-sf-bg-error-secondary: #{#fee3e1};
73
+ --color-sf-bg-error-solid: #{#d92c20};
74
+ --color-sf-bg-warning-primary: #{#fff9eb};
75
+ --color-sf-bg-warning-secondary: #{#feefc6};
76
+ --color-sf-bg-warning-solid: #{#db6803};
77
+ --color-sf-bg-success-primary: #{#ecfcf2};
78
+ --color-sf-bg-success-secondary: #{#dbf9e6};
79
+ --color-sf-bg-success-solid: #{#069454};
80
+
81
+ //border
82
+ --color-sf-border-primary: #{#d0d5dd};
83
+ --color-sf-border-primary-alt: #{#98a1b2};
84
+ --color-sf-border-secondary: #{#eaecf0};
85
+ --color-sf-border-tertiary: #{#f2f4f7};
86
+ --color-sf-border-disabled: #{#d0d5dd};
87
+ --color-sf-border-disabled-subtle: #{#eaecf0};
88
+ --color-sf-border-brand: #{#d6bbfb};
89
+ --color-sf-border-brand-solid: #{#7e56d8};
90
+ --color-sf-border-brand-solid-alt: #{#7e56d8};
91
+ --color-sf-border-error: #{#fca19b};
92
+ --color-sf-border-error-solid: #{#d92c20};
93
+ --color-sf-border-success: #{#47cd89};
94
+ --color-sf-border-warning: #{#fec84a};
95
+
96
+ //foreground
97
+ --color-sf-fg-primary: #{#101828};
98
+ --color-sf-fg-secondary: #{#344054};
99
+ --color-sf-fg-secondary-hover: #{#18212f};
100
+ --color-sf-fg-tertiary: #{#475467};
101
+ --color-sf-fg-tertiary-hover: #{#344054};
102
+ --color-sf-fg-quarterary: #{#667085};
103
+ --color-sf-fg-quarterary-hover: #{#475467};
104
+ --color-sf-fg-quinary: #{#98a1b2};
105
+ --color-sf-fg-quinary-hover: #{#667085};
106
+ --color-sf-fg-senary: #{#d0d5dd};
107
+ --color-sf-fg-white: #{#fff};
108
+ --color-sf-fg-disabled: #{#98a1b2};
109
+ --color-sf-fg-disabled-subtle: #{#d0d5dd};
110
+ --color-sf-fg-brand-primary: #{#7e56d8};
111
+ --color-sf-fg-brand-primary-alt: #{#7e56d8};
112
+ --color-sf-fg-brand-secondary: #{#9d76ed};
113
+ --color-sf-fg-error-primary: #{#d92c20};
114
+ --color-sf-fg-error-secondary: #{#f04437};
115
+ --color-sf-fg-warning-primary: #{#db6803};
116
+ --color-sf-fg-warning-secondary: #{#f78f08};
117
+ --color-sf-fg-success-primary: #{#069454};
118
+ --color-sf-fg-success-secondary: #{#17b169};
119
+
120
+ //utility
121
+ --color-sf-utility-tooltip-bg: #{#0c111d};
122
+ --color-sf-utility-tooltip-text: #{#fff};
123
+
124
+ //utility helper
125
+ --color-sf-utility-success: #{#069454};
126
+ --color-sf-utility-info: #{#065986};
127
+ --color-sf-utility-warning: #{#db6803};
128
+ --color-sf-utility-danger: #{#d92c20};
129
+ --color-sf-utility-success-light: #{#ecfcf2};
130
+ --color-sf-utility-info-light: #{#f0f9ff};
131
+ --color-sf-utility-warning-light: #{#fff9eb};
132
+ --color-sf-utility-danger-light: #{#fef2f1};
133
+ --color-sf-utility-primary-light: #{#d6bbfb}; //brand color
134
+ --color-sf-utility-primary-alt: #{#7e56d8}; //brand color
135
+ --color-sf-utility-primary-lighter: #{#f9f5ff};
136
+ --color-sf-utility-success-lighter: #{#aaefc6};
137
+ --color-sf-utility-info-lighter: #{#b9e6fe};
138
+ --color-sf-utility-warning-lighter: #{#fede88};
139
+ --color-sf-utility-danger-lighter: #{#fecdc9};
140
+
141
+ //utility btn
142
+ --color-sf-utility-info-border-color: #{#d6bbfb}; //brand color
143
+ --color-sf-utility-info-bg-color-hover: #{#f4ebff}; //brand color
144
+ --color-sf-utility-info-bg-color-pressed: #{#e9d7fe}; //brand color
145
+ --color-sf-utility-info-text: #{#6840c6};
146
+ --color-sf-utility-info-text-hover: #{#52379e};
147
+
148
+ //secondary btn
149
+ --color-sf-utility-secondary-border-color: #{#d0d5dd};
150
+ --color-sf-utility-secondary-bg-color: #{#fff};
151
+ --color-sf-utility-secondary-text-color: #{#344054};
152
+ --color-sf-utility-secondary-bg-color-hover: #{#f2f4f7};
153
+ --color-sf-utility-secondary-text-color-hover: #{#344054};
154
+ --color-sf-utility-secondary-bg-color-pressed: #{#eaecf0};
155
+ --color-sf-utility-secondary-text-color-pressed: #{#18212f};
156
+
157
+ //selected bg
158
+ --color-sf-utility-content-bg-color-selected: #{#eaecf0};
159
+
160
+ //Message default
161
+ --color-sf-utility-msg-color: #{#344054};
162
+ --color-sf-utility-msg-bg-color: #{#f9fafb};
163
+ --color-sf-utility-msg-border-color: #{#d0d5dd};
164
+ --color-sf-utility-msg-color-alt1: #{#344054};
165
+ --color-sf-utility-msg-bg-color-alt1: #{#00000000};
166
+ --color-sf-utility-msg-border-color-alt1: #{#98a1b2};
167
+ --color-sf-utility-msg-color-alt2: #{#fff};
168
+ --color-sf-utility-msg-bg-color-alt2: #{#475467};
169
+ --color-sf-utility-msg-border-color-alt2: #{#475467};
170
+
171
+ //msg
172
+ --color-sf-utility-msg-icon-color: #{#475467};
173
+ --color-sf-utility-msg-icon-color-alt1: #{#475467};
174
+ --color-sf-utility-msg-icon-color-alt2: #{#fff};
175
+
176
+ //msg
177
+ --color-sf-utility-msg-close-icon-color: #{#344054};
178
+ --color-sf-utility-msg-close-icon-color-alt1: #{#344054};
179
+ --color-sf-utility-msg-close-icon-color-alt2: #{#fff};
180
+
181
+ //Message danger
182
+ --color-sf-utility-msg-danger-color: #{#b32218};
183
+ --color-sf-utility-msg-danger-bg-color: #{#fef2f1};
184
+ --color-sf-utility-msg-danger-border-color: #{#fecdc9};
185
+ --color-sf-utility-msg-danger-color-alt1: #{#d92c20};
186
+ --color-sf-utility-msg-danger-bg-color-alt1: #{#00000000};
187
+ --color-sf-utility-msg-danger-border-color-alt1: #{#f97066};
188
+ --color-sf-utility-msg-danger-color-alt2: #{#fff};
189
+ --color-sf-utility-msg-danger-bg-color-alt2: #{#d92c20};
190
+ --color-sf-utility-msg-danger-border-color-alt2: #{#d92c20};
191
+
192
+ //msg
193
+ --color-sf-utility-msg-danger-icon-color: #{#d92c20};
194
+ --color-sf-utility-msg-danger-icon-color-alt1: #{#d92c20};
195
+ --color-sf-utility-msg-danger-icon-color-alt2: #{#d0d5dd};
196
+
197
+ //msg
198
+ --color-sf-utility-msg-danger-close-icon-color: #{#344054};
199
+ --color-sf-utility-msg-danger-close-icon-color-alt1: #{#344054};
200
+ --color-sf-utility-msg-danger-close-icon-color-alt2: #{#fff};
201
+
202
+ //Message success
203
+ --color-sf-utility-msg-success-color: #{#057647};
204
+ --color-sf-utility-msg-success-bg-color: #{#ecfcf2};
205
+ --color-sf-utility-msg-success-border-color: #{#aaefc6};
206
+ --color-sf-utility-msg-success-color-alt1: #{#057647};
207
+ --color-sf-utility-msg-success-bg-color-alt1: #{#00000000};
208
+ --color-sf-utility-msg-success-border-color-alt1: #{#47cd89};
209
+ --color-sf-utility-msg-success-color-alt2: #{#fff};
210
+ --color-sf-utility-msg-success-bg-color-alt2: #{#069454};
211
+ --color-sf-utility-msg-success-border-color-alt2: #{#069454};
212
+
213
+ //msg
214
+ --color-sf-utility-msg-success-icon-color: #{#069454};
215
+ --color-sf-utility-msg-success-icon-color-alt1: #{#069454};
216
+ --color-sf-utility-msg-success-icon-color-alt2: #{#d0d5dd};
217
+ //msg
218
+ --color-sf-utility-msg-success-close-icon-color: #{#344054};
219
+ --color-sf-utility-msg-success-close-icon-color-alt1: #{#344054};
220
+ --color-sf-utility-msg-success-close-icon-color-alt2: #{#fff};
221
+
222
+ //Message warning
223
+ --color-sf-utility-msg-warning-color: #{#b54707};
224
+ --color-sf-utility-msg-warning-bg-color: #{#fffcf4};
225
+ --color-sf-utility-msg-warning-border-color: #{#fede88};
226
+ --color-sf-utility-msg-warning-color-alt1: #{#b54707};
227
+ --color-sf-utility-msg-warning-bg-color-alt1: #{#00000000};
228
+ --color-sf-utility-msg-warning-border-color-alt1: #{#fcb022};
229
+ --color-sf-utility-msg-warning-color-alt2: #{#fff};
230
+ --color-sf-utility-msg-warning-bg-color-alt2: #{#db6803};
231
+ --color-sf-utility-msg-warning-border-color-alt2: #{#db6803};
232
+
233
+ //msg
234
+ --color-sf-utility-msg-warning-icon-color: #{#db6803};
235
+ --color-sf-utility-msg-warning-icon-color-alt1: #{#db6803};
236
+ --color-sf-utility-msg-warning-icon-color-alt2: #{#d0d5dd};
237
+
238
+ //msg
239
+ --color-sf-utility-msg-warning-close-icon-color: #{#344054};
240
+ --color-sf-utility-msg-warning-close-icon-color-alt1: #{#344054};
241
+ --color-sf-utility-msg-warning-close-icon-color-alt2: #{#fff};
242
+
243
+ //Message Info
244
+ --color-sf-utility-msg-info-color: #{#026aa2};
245
+ --color-sf-utility-msg-info-bg-color: #{#f0f9ff};
246
+ --color-sf-utility-msg-info-border-color: #{#7cd4fd};
247
+ --color-sf-utility-msg-info-color-alt1: #{#026aa2};
248
+ --color-sf-utility-msg-info-bg-color-alt1: #{#00000000};
249
+ --color-sf-utility-msg-info-border-color-alt1: #{#36bffa};
250
+ --color-sf-utility-msg-info-color-alt2: #{#fff};
251
+ --color-sf-utility-msg-info-bg-color-alt2: #{#0086c9};
252
+ --color-sf-utility-msg-info-border-color-alt2: #{#0086c9};
253
+
254
+ //msg
255
+ --color-sf-utility-msg-info-icon-color: #{#0086c9};
256
+ --color-sf-utility-msg-info-icon-color-alt1: #{#0086c9};
257
+ --color-sf-utility-msg-info-icon-color-alt2: #{#fff};
258
+
259
+ //msg
260
+ --color-sf-utility-msg-info-close-icon-color: #{#344054};
261
+ --color-sf-utility-msg-info-close-icon-color-alt1: #{#344054};
262
+ --color-sf-utility-msg-info-close-icon-color-alt2: #{#fff};
263
+
264
+ //appbar
265
+ //Light
266
+ --color-sf-utility-appbar-bg-color-alt1: #{#fff};
267
+ --color-sf-utility-appbar-color-alt1: #{#101828};
268
+ --color-sf-utility-appbar-border-color-alt1: #{#eaecf0};
269
+ --color-sf-utility-appbar-hover-bg-color-alt1: rgba(16, 24, 40, .056);
270
+
271
+ //dark
272
+ --color-sf-utility-appbar-bg-color-alt2: #{#101828};
273
+ --color-sf-utility-appbar-color-alt2: #{#fff};
274
+ --color-sf-utility-appbar-border-color-alt2: #{#18212f};
275
+ --color-sf-utility-appbar-hover-bg-color-alt2: rgba(255, 255, 255, .08);
276
+
277
+ //rating
278
+ --color-sf-utility-rating-selected-color: #{#fcb022};
279
+ --color-sf-utility-rating-unrated-color: #{#eaecf0};
280
+ --color-sf-utility-rating-selected-disabled-color: #{#fede88};
281
+ --color-sf-utility-rating-unrated-disabled-color: #{#f2f4f7};
282
+ --color-sf-utility-rating-selected-hover-color: #{#f78f08};
283
+ --color-sf-utility-rating-unrated-hover-color: #{#fec84a};
284
+ --color-sf-utility-rating-pressed-color: #{#f78f08};
285
+
286
+ //avatar
287
+ --color-sf-utility-avatar-border-color: rgba(0, 0, 0, .075);
288
+
289
+ //overlay
290
+ --color-sf-utility-overlay-bg-color: rgba(71, 84, 103, .7);
291
+ }
292
+
293
+ //gray
294
+ $gray-25: #fcfcfd;
295
+ $gray-50: #f9fafb;
296
+ $gray-100: #f2f4f7;
297
+ $gray-200: #eaecf0;
298
+ $gray-300: #d0d5dd;
299
+ $gray-400: #98a1b2;
300
+ $gray-500: #667085;
301
+ $gray-600: #475467;
302
+ $gray-700: #344054;
303
+ $gray-800: #18212f;
304
+ $gray-900: #101828;
305
+ $gray-950: #0c111d;
306
+
307
+ //brand
308
+ $brand-25: #fcfaff;
309
+ $brand-50: #f9f5ff;
310
+ $brand-100: #f4ebff;
311
+ $brand-200: #e9d7fe;
312
+ $brand-300: #d6bbfb;
313
+ $brand-400: #b692f6;
314
+ $brand-500: #9d76ed;
315
+ $brand-600: #7e56d8;
316
+ $brand-700: #6840c6;
317
+ $brand-800: #52379e;
318
+ $brand-900: #422f7d;
319
+ $brand-950: #2b1b5e;
320
+
321
+ //error
322
+ $error-25: #fefafa;
323
+ $error-50: #fef2f1;
324
+ $error-100: #fee3e1;
325
+ $error-200: #fecdc9;
326
+ $error-300: #fca19b;
327
+ $error-400: #f97066;
328
+ $error-500: #f04437;
329
+ $error-600: #d92c20;
330
+ $error-700: #b32218;
331
+ $error-800: #901f17;
332
+ $error-900: #7a2619;
333
+ $error-950: #54150c;
334
+
335
+ //Warning
336
+ $warning-25: #fffcf4;
337
+ $warning-50: #fff9eb;
338
+ $warning-100: #feefc6;
339
+ $warning-200: #fede88;
340
+ $warning-300: #fec84a;
341
+ $warning-400: #fcb022;
342
+ $warning-500: #f78f08;
343
+ $warning-600: #db6803;
344
+ $warning-700: #b54707;
345
+ $warning-800: #93370c;
346
+ $warning-900: #792d0d;
347
+ $warning-950: #4e1d08;
348
+
349
+ //Success
350
+ $success-25: #f5fdf9;
351
+ $success-50: #ecfcf2;
352
+ $success-100: #dbf9e6;
353
+ $success-200: #aaefc6;
354
+ $success-300: #75dfa6;
355
+ $success-400: #47cd89;
356
+ $success-500: #17b169;
357
+ $success-600: #069454;
358
+ $success-700: #057647;
359
+ $success-800: #075d39;
360
+ $success-900: #074c30;
361
+ $success-950: #043320;
362
+
363
+ //cyan-color-variables
364
+ $cyan-25: #f5feff !default;
365
+ $cyan-50: #ecfdff !default;
366
+ $cyan-100: #cff9fe !default;
367
+ $cyan-200: #a5f0fc !default;
368
+ $cyan-300: #67e3f9 !default;
369
+ $cyan-400: #22ccee !default;
370
+ $cyan-500: #06aeda !default;
371
+ $cyan-600: #088ab2 !default;
372
+ $cyan-700: #0e7090 !default;
373
+ $cyan-800: #155b75 !default;
374
+ $cyan-900: #164c63 !default;
375
+ $cyan-950: #0d2d3a !default;
376
+
377
+ //collection: 1. color modes with mode: light mode
378
+
379
+ //bds color system
380
+ $base-white: mapcolorvariable('base-white');
381
+ $base-black: mapcolorvariable('base-black');
382
+
383
+ //Transparent
384
+ $base-transparent: mapcolorvariable('base-transparent');
385
+
386
+ //brand primary
387
+ $brand-primary: mapcolorvariable('brand-primary');
388
+ $brand-primary-d10: mapcolorvariable('brand-primary-d10');
389
+ $on-brand-solid-primary: mapcolorvariable('on-brand-solid-primary');
390
+ $brand-solid-primary: mapcolorvariable('brand-solid-primary');
391
+ $brand-solid-primary-hover: mapcolorvariable('brand-solid-primary-hover');
392
+ $brand-solid-primary-pressed: mapcolorvariable('brand-solid-primary-pressed');
393
+ $brand-solid-shadow: mapcolorvariable('brand-solid-shadow');
394
+
395
+ //Text
396
+ $text-primary: mapcolorvariable('text-primary');
397
+ $text-primary-on-brand: mapcolorvariable('text-primary-on-brand');
398
+ $text-secondary: mapcolorvariable('text-secondary');
399
+ $text-secondary-hover: mapcolorvariable('text-secondary-hover');
400
+ $text-secondary-on-brand: mapcolorvariable('text-secondary-on-brand');
401
+ $text-tertiary: mapcolorvariable('text-tertiary');
402
+ $text-tertiary-hover: mapcolorvariable('text-tertiary-hover');
403
+ $text-tertiary-on-brand: mapcolorvariable('text-tertiary-on-brand');
404
+ $text-quarterary: mapcolorvariable('text-quarterary');
405
+ $text-quarterary-on-brand: mapcolorvariable('text-quarterary-on-brand');
406
+ $text-white: mapcolorvariable('text-white');
407
+ $text-disabled: mapcolorvariable('text-disabled');
408
+ $text-placeholder: mapcolorvariable('text-placeholder');
409
+ $text-placeholder-subtle: mapcolorvariable('text-placeholder-subtle');
410
+ $text-brand-primary: mapcolorvariable('text-brand-primary');
411
+ $text-brand-secondary: mapcolorvariable('text-brand-secondary');
412
+ $text-brand-tertiary: mapcolorvariable('text-brand-tertiary');
413
+ $text-brand-tertiary-alt: mapcolorvariable('text-brand-tertiary-alt');
414
+ $text-error-primary: mapcolorvariable('text-error-primary');
415
+ $text-warning-primary: mapcolorvariable('text-warning-primary');
416
+ $text-success-primary: mapcolorvariable('text-success-primary ');
417
+
418
+ //background
419
+ $bg-primary: mapcolorvariable('bg-primary');
420
+ $bg-primary-alt: mapcolorvariable('bg-primary-alt');
421
+ $bg-primary-hover: mapcolorvariable('bg-primary-hover');
422
+ $bg-primary-solid: mapcolorvariable('bg-primary-solid');
423
+ $bg-secondary: mapcolorvariable('bg-secondary');
424
+ $bg-secondary-alt: mapcolorvariable('bg-secondary-alt');
425
+ $bg-secondary-hover: mapcolorvariable('bg-secondary-hover');
426
+ $bg-secondary-subtle: mapcolorvariable('bg-secondary-subtl');
427
+ $bg-secondary-solid: mapcolorvariable('bg-secondary-solid');
428
+ $bg-tertiary: mapcolorvariable('bg-tertiary');
429
+ $bg-quaternary: mapcolorvariable('bg-quaternary');
430
+ $bg-active: mapcolorvariable('bg-active');
431
+ $bg-disabled: mapcolorvariable('bg-disabled');
432
+ $bg-disabled-subtle: mapcolorvariable('bg-disabled-subtle');
433
+ $bg-overlay: mapcolorvariable('bg-overlay');
434
+ $bg-brand-primary: mapcolorvariable('bg-brand-primary');
435
+ $bg-brand-primary-alt: mapcolorvariable('bg-brand-primary-alt');
436
+ $bg-brand-secondary: mapcolorvariable('bg-brand-secondary');
437
+ $bg-brand-solid: mapcolorvariable('bg-brand-solid');
438
+ $bg-brand-solid-hover: mapcolorvariable('bg-brand-solid-hover');
439
+ $bg-brand-section: mapcolorvariable('bg-brand-section');
440
+ $bg-brand-section-subtle: mapcolorvariable('bg-brand-section-subtle');
441
+ $bg-error-primary: mapcolorvariable('bg-error-primary');
442
+ $bg-error-secondary: mapcolorvariable('bg-error-secondary');
443
+ $bg-error-solid: mapcolorvariable('bg-error-solid');
444
+ $bg-warning-primary: mapcolorvariable('bg-warning-primary');
445
+ $bg-warning-secondary: mapcolorvariable('bg-warning-secondary');
446
+ $bg-warning-solid: mapcolorvariable('bg-warning-solid');
447
+ $bg-success-primary: mapcolorvariable('bg-success-primary');
448
+ $bg-success-secondary: mapcolorvariable('bg-success-secondary');
449
+ $bg-success-solid: mapcolorvariable('bg-success-solid');
450
+
451
+ //border
452
+ $border-primary: mapcolorvariable('border-primary');
453
+ $border-primary-alt: mapcolorvariable('border-primary-alt');
454
+ $border-secondary: mapcolorvariable('border-secondary');
455
+ $border-tertiary: mapcolorvariable('border-tertiary');
456
+ $border-disabled: mapcolorvariable('border-disabled');
457
+ $border-disabled-subtle: mapcolorvariable('border-disabled-subtle');
458
+ $border-brand: mapcolorvariable('border-brand');
459
+ $border-brand-solid: mapcolorvariable('border-brand-solid');
460
+ $border-brand-solid-alt: mapcolorvariable('border-brand-solid-alt');
461
+ $border-error: mapcolorvariable('border-error');
462
+ $border-error-solid: mapcolorvariable('border-error-solid');
463
+ $border-success: mapcolorvariable('border-success');
464
+ $border-warning: mapcolorvariable('border-warning');
465
+
466
+ //foreground
467
+ $fg-primary: mapcolorvariable('fg-primary');
468
+ $fg-secondary: mapcolorvariable('fg-secondary');
469
+ $fg-secondary-hover: mapcolorvariable('fg-secondary-hover');
470
+ $fg-tertiary: mapcolorvariable('fg-tertiary');
471
+ $fg-tertiary-hover: mapcolorvariable('fg-tertiary-hover');
472
+ $fg-quarterary: mapcolorvariable('fg-quarterary');
473
+ $fg-quarterary-hover: mapcolorvariable('fg-quarterary-hover');
474
+ $fg-quinary: mapcolorvariable('fg-quinary');
475
+ $fg-quinary-hover: mapcolorvariable('fg-quinary-hover');
476
+ $fg-senary: mapcolorvariable('fg-senary');
477
+ $fg-white: mapcolorvariable('fg-white');
478
+ $fg-disabled: mapcolorvariable('fg-disabled');
479
+ $fg-disabled-subtle: mapcolorvariable('fg-disabled-subtle');
480
+ $fg-brand-primary: mapcolorvariable('fg-brand-primary');
481
+ $fg-brand-primary-alt: mapcolorvariable('fg-brand-primary-alt');
482
+ $fg-brand-secondary: mapcolorvariable('fg-brand-secondary');
483
+ $fg-error-primary: mapcolorvariable('fg-error-primary');
484
+ $fg-error-secondary: mapcolorvariable('fg-error-secondary');
485
+ $fg-warning-primary: mapcolorvariable('fg-warning-primary');
486
+ $fg-warning-secondary: mapcolorvariable('fg-warning-secondary');
487
+ $fg-success-primary: mapcolorvariable('fg-success-primary');
488
+ $fg-success-secondary: mapcolorvariable('fg-success-secondary');
489
+
490
+ $utility-tooltip-bg: mapcolorvariable('utility-tooltip-bg');
491
+ $utility-tooltip-text: mapcolorvariable('utility-tooltip-text');
492
+
493
+ //utility helper
494
+ $utility-success: mapcolorvariable('utility-success');
495
+ $utility-info: mapcolorvariable('utility-info');
496
+ $utility-warning: mapcolorvariable('utility-warning');
497
+ $utility-danger: mapcolorvariable('utility-danger');
498
+ $utility-success-light: mapcolorvariable('utility-success-light');
499
+ $utility-info-light: mapcolorvariable('utility-info-light');
500
+ $utility-warning-light: mapcolorvariable('utility-warning-light');
501
+ $utility-danger-light: mapcolorvariable('utility-danger-light');
502
+ $utility-primary-light: mapcolorvariable('utility-primary-light');
503
+ $utility-primary-alt: mapcolorvariable('utility-primary-alt');
504
+ $utility-primary-lighter: mapcolorvariable('utility-primary-lighter');
505
+ $utility-success-lighter: mapcolorvariable('utility-success-lighter');
506
+ $utility-info-lighter: mapcolorvariable('utility-info-lighter');
507
+ $utility-warning-lighter: mapcolorvariable('utility-warning-lighter');
508
+ $utility-danger-lighter: mapcolorvariable('utility-danger-lighter');
509
+
510
+ //utility btn
511
+ $utility-info-border-color: mapcolorvariable('utility-info-border-color');
512
+ $utility-info-bg-color-hover: mapcolorvariable('utility-info-bg-color-hover');
513
+ $utility-info-bg-color-pressed: mapcolorvariable('utility-info-bg-color-pressed');
514
+ $utility-info-text: mapcolorvariable('utility-info-text');
515
+ $utility-info-text-hover: mapcolorvariable('utility-info-text-hover');
516
+
517
+ $utility-secondary-border-color: mapcolorvariable('utility-secondary-border-color');
518
+ $utility-secondary-bg-color: mapcolorvariable('utility-secondary-bg-color');
519
+ $utility-secondary-text-color: mapcolorvariable('utility-secondary-text-color');
520
+ $utility-secondary-bg-color-hover: mapcolorvariable('utility-secondary-bg-color-hover');
521
+ $utility-secondary-text-color-hover: mapcolorvariable('utility-secondary-text-color-hover');
522
+ $utility-secondary-bg-color-pressed: mapcolorvariable('utility-secondary-bg-color-pressed');
523
+ $utility-secondary-text-color-pressed: mapcolorvariable('utility-secondary-text-color-pressed');
524
+
525
+ //utility states
526
+ $utility-content-bg-color-selected: mapcolorvariable('utility-content-bg-color-selected');
527
+
528
+ //Message default
529
+ $utility-msg-color: mapcolorvariable('utility-msg-color');
530
+ $utility-msg-bg-color: mapcolorvariable('utility-msg-bg-color');
531
+ $utility-msg-border-color: mapcolorvariable('utility-msg-border-color');
532
+ $utility-msg-color-alt1: mapcolorvariable('utility-msg-color-alt1');
533
+ $utility-msg-bg-color-alt1: mapcolorvariable('utility-msg-bg-color-alt1');
534
+ $utility-msg-border-color-alt1: mapcolorvariable('utility-msg-border-color-alt1');
535
+ $utility-msg-color-alt2: mapcolorvariable('utility-msg-color-alt2');
536
+ $utility-msg-bg-color-alt2: mapcolorvariable('utility-msg-bg-color-alt2');
537
+ $utility-msg-border-color-alt2: mapcolorvariable('utility-msg-border-color-alt2');
538
+
539
+ $utility-msg-icon-color: mapcolorvariable('utility-msg-icon-color');
540
+ $utility-msg-icon-color-alt1: mapcolorvariable('utility-msg-icon-color-alt1');
541
+ $utility-msg-icon-color-alt2: mapcolorvariable('utility-msg-icon-color-alt2');
542
+
543
+ $utility-msg-close-icon-color: mapcolorvariable('utility-msg-close-icon-color');
544
+ $utility-msg-close-icon-color-alt1: mapcolorvariable('utility-msg-close-icon-color-alt1');
545
+ $utility-msg-close-icon-color-alt2: mapcolorvariable('utility-msg-close-icon-color-alt2');
546
+
547
+ //Message danger
548
+ $utility-msg-danger-color: mapcolorvariable('utility-msg-danger-color');
549
+ $utility-msg-danger-bg-color: mapcolorvariable('utility-msg-danger-bg-color');
550
+ $utility-msg-danger-border-color: mapcolorvariable('utility-msg-danger-border-color');
551
+ $utility-msg-danger-color-alt1: mapcolorvariable('utility-msg-danger-color-alt1');
552
+ $utility-msg-danger-bg-color-alt1: mapcolorvariable('utility-msg-danger-bg-color-alt1');
553
+ $utility-msg-danger-border-color-alt1: mapcolorvariable('utility-msg-danger-border-color-alt1');
554
+ $utility-msg-danger-color-alt2: mapcolorvariable('utility-msg-danger-color-alt2');
555
+ $utility-msg-danger-bg-color-alt2: mapcolorvariable('utility-msg-danger-bg-color-alt2');
556
+ $utility-msg-danger-border-color-alt2: mapcolorvariable('utility-msg-danger-border-color-alt2');
557
+
558
+ $utility-msg-danger-icon-color: mapcolorvariable('utility-msg-danger-icon-color');
559
+ $utility-msg-danger-icon-color-alt1: mapcolorvariable('utility-msg-danger-icon-color-alt1');
560
+ $utility-msg-danger-icon-color-alt2: mapcolorvariable('utility-msg-danger-icon-color-alt2');
561
+
562
+ $utility-msg-danger-close-icon-color: mapcolorvariable('utility-msg-danger-close-icon-color');
563
+ $utility-msg-danger-close-icon-color-alt1: mapcolorvariable('utility-msg-danger-close-icon-color-alt1');
564
+ $utility-msg-danger-close-icon-color-alt2: mapcolorvariable('utility-msg-danger-close-icon-color-alt2');
565
+
566
+ //Message success
567
+ $utility-msg-success-color: mapcolorvariable('utility-msg-success-color');
568
+ $utility-msg-success-bg-color: mapcolorvariable('utility-msg-success-bg-color');
569
+ $utility-msg-success-border-color: mapcolorvariable('utility-msg-success-border-color');
570
+ $utility-msg-success-color-alt1: mapcolorvariable('utility-msg-success-color-alt1');
571
+ $utility-msg-success-bg-color-alt1: mapcolorvariable('utility-msg-success-bg-color-alt1');
572
+ $utility-msg-success-border-color-alt1: mapcolorvariable('utility-msg-success-border-color-alt1');
573
+ $utility-msg-success-color-alt2: mapcolorvariable('utility-msg-success-color-alt2');
574
+ $utility-msg-success-bg-color-alt2: mapcolorvariable('utility-msg-success-bg-color-alt2');
575
+ $utility-msg-success-border-color-alt2: mapcolorvariable('utility-msg-success-border-color-alt2');
576
+
577
+ $utility-msg-success-icon-color: mapcolorvariable('utility-msg-success-icon-color');
578
+ $utility-msg-success-icon-color-alt1: mapcolorvariable('utility-msg-success-icon-color-alt1');
579
+ $utility-msg-success-icon-color-alt2: mapcolorvariable('utility-msg-success-icon-color-alt2');
580
+
581
+ $utility-msg-success-close-icon-color: mapcolorvariable('utility-msg-success-close-icon-color');
582
+ $utility-msg-success-close-icon-color-alt1: mapcolorvariable('utility-msg-success-close-icon-color-alt1');
583
+ $utility-msg-success-close-icon-color-alt2: mapcolorvariable('utility-msg-success-close-icon-color-alt2');
584
+
585
+ //Message warning
586
+ $utility-msg-warning-color: mapcolorvariable('utility-msg-warning-color');
587
+ $utility-msg-warning-bg-color: mapcolorvariable('utility-msg-warning-bg-color');
588
+ $utility-msg-warning-border-color: mapcolorvariable('utility-msg-warning-border-color');
589
+ $utility-msg-warning-color-alt1: mapcolorvariable('utility-msg-warning-color-alt1');
590
+ $utility-msg-warning-bg-color-alt1: mapcolorvariable('utility-msg-warning-bg-color-alt1');
591
+ $utility-msg-warning-border-color-alt1: mapcolorvariable('utility-msg-warning-border-color-alt1');
592
+ $utility-msg-warning-color-alt2: mapcolorvariable('utility-msg-warning-color-alt2');
593
+ $utility-msg-warning-bg-color-alt2: mapcolorvariable('utility-msg-warning-bg-color-alt2');
594
+ $utility-msg-warning-border-color-alt2: mapcolorvariable('utility-msg-warning-border-color-alt2');
595
+
596
+ $utility-msg-warning-icon-color: mapcolorvariable('utility-msg-warning-icon-color');
597
+ $utility-msg-warning-icon-color-alt1: mapcolorvariable('utility-msg-warning-icon-color-alt1');
598
+ $utility-msg-warning-icon-color-alt2: mapcolorvariable('utility-msg-warning-icon-color-alt2');
599
+
600
+ $utility-msg-warning-close-icon-color: mapcolorvariable('utility-msg-warning-close-icon-color');
601
+ $utility-msg-warning-close-icon-color-alt1: mapcolorvariable('utility-msg-warning-close-icon-color-alt1');
602
+ $utility-msg-warning-close-icon-color-alt2: mapcolorvariable('utility-msg-warning-close-icon-color-alt2');
603
+
604
+ //Message Info
605
+ $utility-msg-info-color: mapcolorvariable('utility-msg-info-color');
606
+ $utility-msg-info-bg-color: mapcolorvariable('utility-msg-info-bg-color');
607
+ $utility-msg-info-border-color: mapcolorvariable('utility-msg-info-border-color');
608
+ $utility-msg-info-color-alt1: mapcolorvariable('utility-msg-info-color-alt1');
609
+ $utility-msg-info-bg-color-alt1: mapcolorvariable('utility-msg-info-bg-color-alt1');
610
+ $utility-msg-info-border-color-alt1: mapcolorvariable('utility-msg-info-border-color-alt1');
611
+ $utility-msg-info-color-alt2: mapcolorvariable('utility-msg-info-color-alt2');
612
+ $utility-msg-info-bg-color-alt2: mapcolorvariable('utility-msg-info-bg-color-alt2');
613
+ $utility-msg-info-border-color-alt2: mapcolorvariable('utility-msg-info-border-color-alt2');
614
+
615
+ $utility-msg-info-icon-color: mapcolorvariable('utility-msg-info-icon-color');
616
+ $utility-msg-info-icon-color-alt1: mapcolorvariable('utility-msg-info-icon-color-alt1');
617
+ $utility-msg-info-icon-color-alt2: mapcolorvariable('utility-msg-info-icon-color-alt2');
618
+
619
+ $utility-msg-info-close-icon-color: mapcolorvariable('utility-msg-info-close-icon-color');
620
+ $utility-msg-info-close-icon-color-alt1: mapcolorvariable('utility-msg-info-close-icon-color-alt1');
621
+ $utility-msg-info-close-icon-color-alt2: mapcolorvariable('utility-msg-info-close-icon-color-alt2');
622
+
623
+ //app bar
624
+ //Light
625
+ $utility-appbar-bg-color-alt1: mapcolorvariable('utility-appbar-bg-color-alt1');
626
+ $utility-appbar-color-alt1: mapcolorvariable('utility-appbar-color-alt1');
627
+ $utility-appbar-border-color-alt1: mapcolorvariable('utility-appbar-border-color-alt1');
628
+ $utility-appbar-hover-bg-color-alt1: mapcolorvariable('utility-appbar-border-color-alt2');
629
+
630
+ //dark
631
+ $utility-appbar-bg-color-alt2: mapcolorvariable('utility-appbar-bg-color-alt2');
632
+ $utility-appbar-color-alt2: mapcolorvariable('utility-appbar-color-alt2');
633
+ $utility-appbar-border-color-alt2: mapcolorvariable('utility-appbar-border-color-alt2');
634
+ $utility-appbar-hover-bg-color-alt2: mapcolorvariable('utility-appbar-hover-bg-color-alt2');
635
+
636
+ //rating
637
+ $utility-rating-selected-color: mapcolorvariable('utility-rating-selected-color');
638
+ $utility-rating-unrated-color: mapcolorvariable('utility-rating-unrated-color');
639
+ $utility-rating-selected-disabled-color: mapcolorvariable('utility-rating-selected-disabled-color');
640
+ $utility-rating-unrated-disabled-color: mapcolorvariable('utility-rating-unrated-disabled-color');
641
+ $utility-rating-selected-hover-color: mapcolorvariable('utility-rating-selected-hover-color');
642
+ $utility-rating-unrated-hover-color: mapcolorvariable('utility-rating-unrated-hover-color');
643
+ $utility-rating-pressed-color: mapcolorvariable('utility-rating-pressed-color');
644
+
645
+ //avatar
646
+ $utility-avatar-border-color: mapcolorvariable('utility-avatar-border-color');
647
+
648
+ //overlaybg
649
+ $utility-overlay-bg-color: mapcolorvariable('utility-overlay-bg-color');
650
+
651
+ //sf base variable
652
+
653
+ //black
654
+ $black:$base-black;
655
+
656
+ //White
657
+ $white: $base-white;
658
+
659
+ //Transparent
660
+ $transparent: $base-transparent;
661
+
662
+ //cool-gray-color-variables
663
+ $cool-gray-25: $gray-25 !default;
664
+ $cool-gray-50: $gray-50 !default;
665
+ $cool-gray-100: $gray-100 !default;
666
+ $cool-gray-200: $gray-200 !default;
667
+ $cool-gray-300: $gray-300 !default;
668
+ $cool-gray-400: $gray-400 !default;
669
+ $cool-gray-500: $gray-500 !default;
670
+ $cool-gray-600: $gray-600 !default;
671
+ $cool-gray-700: $gray-700 !default;
672
+ $cool-gray-800: $gray-800 !default;
673
+ $cool-gray-900: $gray-900 !default;
674
+
675
+ //red-color-variables updated
676
+ $red-25: $error-25 !default;
677
+ $red-50: $error-50 !default;
678
+ $red-100: $error-100 !default;
679
+ $red-200: $error-200 !default;
680
+ $red-300: $error-300 !default;
681
+ $red-400: $error-400 !default;
682
+ $red-500: $error-500 !default;
683
+ $red-600: $error-600 !default;
684
+ $red-700: $error-700 !default;
685
+ $red-800: $error-800 !default;
686
+ $red-900: $error-900 !default;
687
+
688
+ //green-color-variables
689
+ $green-25: $success-25 !default;
690
+ $green-50: $success-50 !default;
691
+ $green-100: $success-100 !default;
692
+ $green-200: $success-200 !default;
693
+ $green-300: $success-300 !default;
694
+ $green-400: $success-400 !default;
695
+ $green-500: $success-500 !default;
696
+ $green-600: $success-600 !default;
697
+ $green-700: $success-700 !default;
698
+ $green-800: $success-800 !default;
699
+ $green-900: $success-900 !default;
700
+
701
+ //orange-color-variables
702
+ $orange-25: $warning-25 !default;
703
+ $orange-50: $warning-50 !default;
704
+ $orange-100: $warning-100 !default;
705
+ $orange-200: $warning-200 !default;
706
+ $orange-300: $warning-300 !default;
707
+ $orange-400: $warning-400 !default;
708
+ $orange-500: $warning-500 !default;
709
+ $orange-600: $warning-600 !default;
710
+ $orange-700: $warning-700 !default;
711
+ $orange-800: $warning-800 !default;
712
+ $orange-900: $warning-900 !default;
713
+
714
+ //cyan-color-variables
715
+ $cyan-25: #f5fbff !default;
716
+ $cyan-50: #f0f9ff !default;
717
+ $cyan-100: #e0f2fe !default;
718
+ $cyan-200: #b9e6fe !default;
719
+ $cyan-300: #7cd4fd !default;
720
+ $cyan-400: #36bffa !default;
721
+ $cyan-500: #0ba5ec !default;
722
+ $cyan-600: #0086c9 !default;
723
+ $cyan-700: #026aa2 !default;
724
+ $cyan-800: #065986 !default;
725
+ $cyan-900: #0b4a6f !default;
726
+
727
+ //indigo-color-variables
728
+ $indigo-25: #fcfaff !default;
729
+ $indigo-50: #f9f5ff !default;
730
+ $indigo-100: #f4ebff !default;
731
+ $indigo-200: #e9d7fe !default;
732
+ $indigo-300: #d6bbfb !default;
733
+ $indigo-400: #b692f6 !default;
734
+ $indigo-500: #9e77ed !default;
735
+ $indigo-600: #7f56d9 !default;
736
+ $indigo-700: #6941c6 !default;
737
+ $indigo-800: #53389e !default;
738
+ $indigo-900: #42307d !default;
739
+
740
+ $primary: $brand-primary !default;
741
+ $primary-text-color: $on-brand-solid-primary !default;
742
+ $primary-brand-alt: $brand-primary !default;
743
+ $success: $utility-success !default;
744
+ $info: $utility-info !default;
745
+ $warning: $utility-warning !default;
746
+ $danger: $utility-danger !default;
747
+ $success-light: $utility-success-light !default;
748
+ $info-light: $utility-info-light !default;
749
+ $warning-light: $utility-warning-light !default;
750
+ $danger-light: $utility-danger-light !default;
751
+ $primary-light: $utility-primary-light !default;
752
+ $primary-alt: $utility-primary-alt !default;
753
+ $primary-lighter: $utility-primary-lighter !default;
754
+ $success-lighter: $utility-success-lighter !default;
755
+ $info-lighter: $utility-info-lighter !default;
756
+ $warning-lighter: $utility-warning-lighter !default;
757
+ $danger-lighter: $utility-danger-lighter !default;
758
+
759
+ //backgroundcolor
760
+ $content-bg-color: $bg-primary !default;
761
+ $content-bg-color-alt1: $bg-primary-alt !default;
762
+ $content-bg-color-alt2: $bg-secondary !default;
763
+ $content-bg-color-alt3: $bg-tertiary !default;
764
+ $content-bg-color-alt4: $bg-quaternary !default;
765
+ $content-bg-color-alt5: $bg-secondary-alt !default;
766
+ $content-bg-color-hover: $bg-secondary-hover !default;
767
+ $content-bg-color-pressed: $bg-quaternary !default;
768
+ $content-bg-color-focus: $bg-tertiary !default;
769
+ $content-bg-color-selected: $utility-content-bg-color-selected !default;
770
+ $content-bg-color-dragged: $bg-quaternary !default;
771
+ $content-bg-color-disabled: $content-bg-color !default;
772
+ $flyout-bg-color: $bg-primary-alt !default;
773
+ $flyout-bg-color-hover: $bg-secondary-hover !default;
774
+ $flyout-bg-color-selected: $bg-secondary-subtle !default;
775
+ $overlay-bg-color: $utility-overlay-bg-color;
776
+ $table-bg-color-hover: $bg-secondary !default;
777
+ $table-bg-color-pressed: $bg-quaternary !default;
778
+ $table-bg-color-selected: $bg-tertiary !default;
779
+
780
+ //text-color
781
+ $content-text-color: $text-primary !default;
782
+ $content-text-color-alt1: $text-secondary !default;
783
+ $content-text-color-alt2: $text-tertiary !default;
784
+ $content-text-color-alt3: $text-quarterary !default;
785
+ $content-text-color-alt4: $text-primary !default;
786
+ $content-text-color-hover: $text-secondary-hover !default;
787
+ $content-text-color-pressed: $text-primary !default;
788
+ $content-text-color-focus: $text-primary !default;
789
+ $content-text-color-selected: $text-primary !default;
790
+ $content-text-color-dragged: $text-primary !default;
791
+ $content-text-color-disabled: $text-disabled !default;
792
+ $placeholder-text-color: $text-placeholder !default;
793
+ $table-text-color-hover: $text-secondary-hover !default;
794
+ $table-text-color-pressed: $text-primary !default;
795
+ $table-text-color-selected: $text-primary !default;
796
+
797
+ //icon-color
798
+ $icon-color:$fg-secondary !default;
799
+ $icon-color-hover: $fg-secondary-hover !default;
800
+ $icon-color-pressed:$fg-primary !default;
801
+ $icon-color-disabled:$fg-disabled !default;
802
+
803
+ //border-color
804
+ $border-light: $border-secondary !default;
805
+ $border: $border-primary !default;
806
+ $border-dark: $border-primary-alt !default;
807
+ $border-hover: $border-primary !default;
808
+ $border-pressed: $border-primary !default;
809
+ $border-focus: $border-primary !default;
810
+ $border-selected: $border-secondary !default;
811
+ $border-dragged: $border-secondary !default;
812
+ $border-disabled: $border-secondary !default;
813
+ $border-warning: $border-warning !default;
814
+ $border-error: $border-error !default;
815
+ $border-success: $border-success !default;
816
+
817
+ //Tooltip
818
+ $tooltip-bg-color: $utility-tooltip-bg !default;
819
+ $tooltip-border: $utility-tooltip-bg !default;
820
+ $toooltip-text-color: $utility-tooltip-text !default;
821
+
822
+ //shadow
823
+ $shadow-xs: 0 1px 2px 0 rgba($gray-900, .05);
824
+ $shadow: 0 1px 3px 0 rgba($gray-900, .1), 0 1px 2px 0 rgba($gray-900, .06);
825
+ $shadow-sm:0 1px 2px 0 rgba($gray-900, .05);
826
+ $shadow-md: 0 4px 8px -2px rgba($gray-900, .1), 0 2px 4px -2px rgba($gray-800, .06);
827
+ $shadow-lg: 0 12px 16px -4px rgba($gray-900, .08), 0 4px 6px -2px rgba($gray-900, .05);
828
+ $shadow-xl: 0 20px 25px -4px rgba($gray-900, .08), 0 8px 8px -4px rgba($gray-900, .03);
829
+ $shadow-2xl: 0 24px 48px -12px rgba($gray-900, .25);
830
+ $shadow-3xl: 0 32px 64px -12px rgba($gray-900, .14);
831
+ $shadow-inner: inset 0 2px 4px 0 rgba($black, .06);
832
+ $shadow-none: 0 0 rgba($black, 0);
833
+ $shadow-focus-ring1: 0 0 0 1px rgba($primary, 1);
834
+ $shadow-focus-ring2: 0 1px 2px 0 rgba($gray-900, .05), 0 0 0 4px $brand-solid-shadow;
835
+ $primary-shadow-focus: 0 1px 2px 0 rgba($gray-900, .05), 0 0 0 4px $brand-solid-shadow;
836
+ $secondary-shadow-focus: 0 1px 2px 0 rgba($gray-900, .05), 0 0 0 4px rgba($gray-500, .24);
837
+ $success-shadow-focus: 0 1px 2px 0 rgba($gray-900, .05), 0 0 0 4px rgba($success-500, .24);
838
+ $danger-shadow-focus: 0 1px 2px 0 rgba($gray-900, .05), 0 0 0 4px rgba($error-500, .24);
839
+ $info-shadow-focus: 0 1px 2px 0 rgba($gray-900, .05), 0 0 0 4px $brand-solid-shadow;
840
+ $warning-shadow-focus: 0 1px 2px 0 rgba($gray-900, .05), 0 0 0 4px rgba($warning-500, .24);
841
+
842
+ //shadow
843
+ $appbar-bottom-shadow: $shadow-none !default;
844
+ $appbar-top-shadow: $shadow-none !default;
845
+
846
+ //fontfamily
847
+ $font-family: 'Inter' !default;
848
+
849
+ //default font Size
850
+ $text-xxs: 10px !default;
851
+ $text-xs: 12px !default;
852
+ $text-sm: 14px !default;
853
+ $text-base: 16px !default;
854
+ $text-md: 16px !default;
855
+ $text-lg: 18px !default;
856
+ $text-xl: 20px !default;
857
+ $text-2xl: 24px !default;
858
+ $text-3xl: 30px !default;
859
+ $text-4xl: 36px !default;
860
+ $text-5xl: 48px !default;
861
+ $text-6xl: 60px !default;
862
+ $text-7xl: 72px !default;
863
+ $text-8xl: 96px !default;
864
+ $text-9xl: 128px !default;
865
+
866
+ //display
867
+ $display-xs:24px !default;
868
+ $display-sm:30px !default;
869
+ $display-md:26px !default;
870
+ $display-lg:48px !default;
871
+ $display-xl:60px !default;
872
+ $display-2xl:72px !default;
873
+
874
+ //Line height
875
+ $leading-none: 1 !default;
876
+ $leading-tight: 1.25 !default;
877
+ $leading-snug: 1.375 !default;
878
+ $leading-normal: 1.5 !default;
879
+ $leading-relaxed: 1.625 !default;
880
+ $leading-loose: 2 !default;
881
+
882
+ //font Weight
883
+ $font-weight-lighter: lighter !default;
884
+ $font-weight-light: 300 !default;
885
+ $font-weight-normal: 400 !default;
886
+ $font-weight-medium: 500 !default;
887
+ $font-weight-semibold: 600 !default;
888
+ $font-weight-bold: 700 !default;
889
+ $font-weight-bolder: bolder !default;
890
+
891
+ //Secondary-button
892
+
893
+ $secondary-bg-color: $utility-secondary-bg-color !default;
894
+ $secondary-border-color: $utility-secondary-border-color !default;
895
+ $secondary-text-color: $utility-secondary-text-color !default;
896
+ $secondary-bg-color-hover: $utility-secondary-bg-color-hover !default;
897
+ $secondary-border-color-hover: $secondary-border-color !default;
898
+ $secondary-text-color-hover: $utility-secondary-text-color-hover !default;
899
+ $secondary-bg-color-pressed: $utility-secondary-bg-color-pressed !default;
900
+ $secondary-border-color-pressed: $secondary-border-color !default;
901
+ $secondary-text-color-pressed: $utility-secondary-text-color-pressed !default;
902
+ $secondary-bg-color-focus: $secondary-bg-color-hover !default;
903
+ $secondary-border-color-focus: $secondary-border-color-hover !default;
904
+ $secondary-text-color-focus: $secondary-text-color-hover !default;
905
+ $secondary-bg-color-disabled: $bg-disabled !default;
906
+ $secondary-border-color-disabled: $border-disabled-subtle !default;
907
+ $secondary-text-color-disabled: $fg-disabled !default;
908
+
909
+ //Primary-button
910
+
911
+ $primary-bg-color: $brand-solid-primary !default;
912
+ $primary-border-color: $brand-solid-primary !default;
913
+ $primary-text: $on-brand-solid-primary !default;
914
+ $primary-bg-color-hover: $brand-solid-primary-hover !default;
915
+ $primary-border-color-hover: $primary-bg-color-hover !default;
916
+ $primary-text-hover: $primary-text !default;
917
+ $primary-bg-color-pressed: $brand-solid-primary-pressed !default;
918
+ $primary-border-color-pressed: $primary-bg-color-pressed !default;
919
+ $primary-text-pressed: $primary-text !default;
920
+ $primary-bg-color-focus: $primary-bg-color-hover !default;
921
+ $primary-border-color-focus: $primary-bg-color-hover !default;
922
+ $primary-text-focus: $primary-text !default;
923
+ $primary-bg-color-disabled: $bg-disabled !default;
924
+ $primary-border-color-disabled: $primary-bg-color-disabled !default;
925
+ $primary-text-disabled: $fg-disabled !default;
926
+
927
+ //Success-button
928
+
929
+ $success-bg-color: $success-700 !default;
930
+ $success-border-color: $success-bg-color !default;
931
+ $success-text: $white !default;
932
+ $success-bg-color-hover: $success-800 !default;
933
+ $success-border-color-hover: $success-bg-color-hover !default;
934
+ $success-text-hover: $success-text !default;
935
+ $success-bg-color-pressed: $success-900 !default;
936
+ $success-border-color-pressed: $success-bg-color-pressed !default;
937
+ $success-text-pressed: $success-text !default;
938
+ $success-bg-color-focus: $success-bg-color-hover !default;
939
+ $success-border-color-focus: $success-border-color-hover !default;
940
+ $success-text-focus: $success-text !default;
941
+ $success-bg-color-disabled: $bg-disabled !default;
942
+ $success-border-color-disabled: $success-bg-color-disabled !default;
943
+ $success-text-disabled: $fg-disabled !default;
944
+
945
+ //Warning-button
946
+ $warning-bg-color: $warning-700 !default;
947
+ $warning-border-color: $warning-bg-color !default;
948
+ $warning-text: $white !default;
949
+ $warning-bg-color-hover: $warning-800 !default;
950
+ $warning-border-color-hover: $warning-bg-color-hover !default;
951
+ $warning-text-hover: $warning-text !default;
952
+ $warning-bg-color-pressed: $warning-900 !default;
953
+ $warning-border-color-pressed: $warning-bg-color-pressed !default;
954
+ $warning-text-pressed: $warning-text !default;
955
+ $warning-bg-color-focus: $warning-bg-color-hover !default;
956
+ $warning-border-color-focus: $warning-border-color-hover !default;
957
+ $warning-text-focus: $warning-text !default;
958
+ $warning-bg-color-disabled: $bg-disabled !default;
959
+ $warning-border-color-disabled: $warning-bg-color-disabled !default;
960
+ $warning-text-disabled: $fg-disabled !default;
961
+
962
+ //danger-button
963
+ $danger-bg-color: $error-600 !default;
964
+ $danger-border-color: $danger-bg-color !default;
965
+ $danger-text: $white !default;
966
+ $danger-bg-color-hover: $error-700 !default;
967
+ $danger-border-color-hover: $danger-bg-color-hover !default;
968
+ $danger-text-hover: $danger-text !default;
969
+ $danger-bg-color-pressed: $error-800 !default;
970
+ $danger-border-color-pressed: $danger-bg-color-pressed !default;
971
+ $danger-text-pressed: $danger-text !default;
972
+ $danger-bg-color-focus: $danger-bg-color-hover !default;
973
+ $danger-border-color-focus: $danger-border-color-hover !default;
974
+ $danger-text-focus: $danger-text !default;
975
+ $danger-bg-color-disabled: $bg-disabled !default;
976
+ $danger-border-color-disabled: $danger-bg-color-disabled !default;
977
+ $danger-text-disabled: $fg-disabled !default;
978
+
979
+ //Info-button
980
+ $info-bg-color: $content-bg-color !default;
981
+ $info-border-color: $utility-info-border-color !default;
982
+ $info-text: $utility-info-text !default;
983
+ $info-bg-color-hover: $utility-info-bg-color-hover !default;
984
+ $info-border-color-hover: $info-border-color !default;
985
+ $info-text-hover: $utility-info-text-hover !default;
986
+ $info-bg-color-pressed: $utility-info-bg-color-pressed !default;
987
+ $info-border-color-pressed: $info-border-color !default;
988
+ $info-text-pressed: $info-text-hover !default;
989
+ $info-bg-color-focus: $info-bg-color-hover !default;
990
+ $info-border-color-focus: $info-border-color !default;
991
+ $info-text-focus: $info-text-hover !default;
992
+ $info-bg-color-disabled: $bg-disabled !default;
993
+ $info-border-color-disabled: $info-bg-color-disabled !default;
994
+ $info-text-disabled: $fg-disabled !default;
995
+
996
+ //chart series
997
+
998
+ $series-1: $gray-200;
999
+ $series-2: $gray-300;
1000
+ $series-3: $gray-400;
1001
+ $series-4: $gray-800;
1002
+ $series-5: #5a61f6;
1003
+ $series-6: #91bd34;
1004
+ $series-7: #267dda;
1005
+ $series-8: #01a8b5;
1006
+ $series-9: #de4383;
1007
+ $series-10: #107c10;
1008
+ $series-11: #d83b01;
1009
+ $series-12: #ffb900;
1010
+ $skin-name: 'tailwind' !default;
1011
+ $theme-name: 'tailwind' !default;
1012
+ $colorpicker-gradient-1: #f00 !default;
1013
+ $colorpicker-gradient-2: #ff0 !default;
1014
+ $ccolorpicker-gradient-3: #0f0 !default;
1015
+ $colorpicker-gradient-4: #0ff !default;
1016
+ $colorpicker-gradient-5: #00f !default;
1017
+ $colorpicker-gradient-6: #f0f !default;
1018
+ $colorpicker-gradient-7: #ff0004 !default;
1019
+ $spreadsheet-selection-1: #673ab8;
1020
+ $spreadsheet-selection-2: #9c27b0;
1021
+ $spreadsheet-selection-3: #029688;
1022
+ $spreadsheet-selection-4: #4caf51;
1023
+ $spreadsheet-selection-5: #fe9800;
1024
+ $spreadsheet-selection-6: #3f52b5;
1025
+
1026
+ //diagram Palette color
1027
+ $diagram-palette-background: $base-white !default;
1028
+ $diagram-palette-hover-background: $content-bg-color-hover !default;
1029
+
1030
+ //Message component
1031
+
1032
+ //Message default
1033
+ $msg-color: $utility-msg-color !default;
1034
+ $msg-bg-color: $utility-msg-bg-color !default;
1035
+ $msg-border-color: $utility-msg-border-color !default;
1036
+ $msg-color-alt1: $utility-msg-color-alt1 !default;
1037
+ $msg-bg-color-alt1: $utility-msg-bg-color-alt1 !default;
1038
+ $msg-border-color-alt1: $utility-msg-border-color-alt1 !default;
1039
+ $msg-color-alt2: $utility-msg-color-alt2 !default;
1040
+ $msg-bg-color-alt2: $utility-msg-bg-color-alt2 !default;
1041
+ $msg-border-color-alt2: $utility-msg-border-color-alt2 !default;
1042
+
1043
+ $msg-icon-color: $utility-msg-icon-color !default;
1044
+ $msg-icon-color-alt1: $utility-msg-icon-color-alt1 !default;
1045
+ $msg-icon-color-alt2: $utility-msg-icon-color-alt2 !default;
1046
+
1047
+ $msg-close-icon-color: $utility-msg-close-icon-color !default;
1048
+ $msg-close-icon-color-alt1: $utility-msg-close-icon-color-alt1 !default;
1049
+ $msg-close-icon-color-alt2: $utility-msg-close-icon-color-alt2 !default;
1050
+
1051
+ //Message danger
1052
+ $msg-danger-color: $utility-msg-danger-color !default;
1053
+ $msg-danger-bg-color: $utility-msg-danger-bg-color !default;
1054
+ $msg-danger-border-color: $utility-msg-danger-border-color !default;
1055
+ $msg-danger-color-alt1: $utility-msg-danger-color-alt1 !default;
1056
+ $msg-danger-bg-color-alt1: $utility-msg-danger-bg-color-alt1 !default;
1057
+ $msg-danger-border-color-alt1: $utility-msg-danger-border-color-alt1 !default;
1058
+ $msg-danger-color-alt2: $utility-msg-danger-color-alt2 !default;
1059
+ $msg-danger-bg-color-alt2: $utility-msg-danger-bg-color-alt2 !default;
1060
+ $msg-danger-border-color-alt2: $utility-msg-danger-border-color-alt2 !default;
1061
+
1062
+ $msg-danger-icon-color: $utility-msg-danger-icon-color !default;
1063
+ $msg-danger-icon-color-alt1: $utility-msg-danger-icon-color-alt1 !default;
1064
+ $msg-danger-icon-color-alt2: $utility-msg-danger-icon-color-alt2 !default;
1065
+
1066
+ $msg-danger-close-icon-color: $utility-msg-danger-close-icon-color !default;
1067
+ $msg-danger-close-icon-color-alt1: $utility-msg-danger-close-icon-color-alt1 !default;
1068
+ $msg-danger-close-icon-color-alt2: $utility-msg-danger-close-icon-color-alt2 !default;
1069
+
1070
+ //Message success
1071
+ $msg-success-color: $utility-msg-success-color !default;
1072
+ $msg-success-bg-color: $utility-msg-success-bg-color !default;
1073
+ $msg-success-border-color: $utility-msg-success-border-color !default;
1074
+ $msg-success-color-alt1: $utility-msg-success-color-alt1 !default;
1075
+ $msg-success-bg-color-alt1: $utility-msg-success-bg-color-alt1 !default;
1076
+ $msg-success-border-color-alt1: $utility-msg-success-border-color-alt1 !default;
1077
+ $msg-success-color-alt2: $utility-msg-success-color-alt2 !default;
1078
+ $msg-success-bg-color-alt2: $utility-msg-success-bg-color-alt2 !default;
1079
+ $msg-success-border-color-alt2: $utility-msg-success-border-color-alt2 !default;
1080
+
1081
+ $msg-success-icon-color: $utility-msg-success-icon-color !default;
1082
+ $msg-success-icon-color-alt1: $utility-msg-success-icon-color-alt1 !default;
1083
+ $msg-success-icon-color-alt2: $utility-msg-success-icon-color-alt2 !default;
1084
+
1085
+ $msg-success-close-icon-color: $utility-msg-success-close-icon-color !default;
1086
+ $msg-success-close-icon-color-alt1: $utility-msg-success-close-icon-color-alt1 !default;
1087
+ $msg-success-close-icon-color-alt2: $utility-msg-success-close-icon-color-alt2 !default;
1088
+
1089
+ //Message warning
1090
+ $msg-warning-color: $utility-msg-warning-color !default;
1091
+ $msg-warning-bg-color: $utility-msg-warning-bg-color !default;
1092
+ $msg-warning-border-color: $utility-msg-warning-border-color !default;
1093
+ $msg-warning-color-alt1: $utility-msg-warning-color-alt1 !default;
1094
+ $msg-warning-bg-color-alt1: $utility-msg-warning-bg-color-alt1 !default;
1095
+ $msg-warning-border-color-alt1: $utility-msg-warning-border-color-alt1 !default;
1096
+ $msg-warning-color-alt2: $utility-msg-warning-color-alt2 !default;
1097
+ $msg-warning-bg-color-alt2: $utility-msg-warning-bg-color-alt2 !default;
1098
+ $msg-warning-border-color-alt2: $utility-msg-warning-border-color-alt2 !default;
1099
+
1100
+ $msg-warning-icon-color: $utility-msg-warning-icon-color !default;
1101
+ $msg-warning-icon-color-alt1: $utility-msg-warning-icon-color-alt1 !default;
1102
+ $msg-warning-icon-color-alt2: $utility-msg-warning-icon-color-alt2 !default;
1103
+
1104
+ $msg-warning-close-icon-color: $utility-msg-warning-close-icon-color !default;
1105
+ $msg-warning-close-icon-color-alt1: $utility-msg-warning-close-icon-color-alt1 !default;
1106
+ $msg-warning-close-icon-color-alt2: $utility-msg-warning-close-icon-color-alt2 !default;
1107
+
1108
+ //Message Info
1109
+ $msg-info-color: $utility-msg-info-color !default;
1110
+ $msg-info-bg-color: $utility-msg-info-bg-color !default;
1111
+ $msg-info-border-color: $utility-msg-info-border-color !default;
1112
+ $msg-info-color-alt1: $utility-msg-info-color-alt1 !default;
1113
+ $msg-info-bg-color-alt1: $utility-msg-info-bg-color-alt1 !default;
1114
+ $msg-info-border-color-alt1: $utility-msg-info-border-color-alt1 !default;
1115
+ $msg-info-color-alt2: $utility-msg-info-color-alt2 !default;
1116
+ $msg-info-bg-color-alt2: $utility-msg-info-bg-color-alt2 !default;
1117
+ $msg-info-border-color-alt2: $utility-msg-info-border-color-alt2 !default;
1118
+
1119
+ $msg-info-icon-color: $utility-msg-info-icon-color !default;
1120
+ $msg-info-icon-color-alt1: $utility-msg-info-icon-color-alt1 !default;
1121
+ $msg-info-icon-color-alt2: $utility-msg-info-icon-color-alt2 !default;
1122
+
1123
+ $msg-info-close-icon-color: $utility-msg-info-close-icon-color !default;
1124
+ $msg-info-close-icon-color-alt1: $utility-msg-info-close-icon-color-alt1 !default;
1125
+ $msg-info-close-icon-color-alt2: $utility-msg-info-close-icon-color-alt2 !default;
1126
+
1127
+ //app bar
1128
+ //Light
1129
+ $appbar-bg-color-alt1: $utility-appbar-bg-color-alt1 !default;
1130
+ $appbar-color-alt1: $utility-appbar-color-alt1 !default;
1131
+ $appbar-border-color-alt1: $utility-appbar-border-color-alt1 !default;
1132
+ $appbar-hover-bg-color-alt1: $utility-appbar-hover-bg-color-alt1 !default;
1133
+
1134
+ //dark
1135
+ $appbar-bg-color-alt2: $utility-appbar-bg-color-alt2 !default;
1136
+ $appbar-color-alt2: $utility-appbar-color-alt2 !default;
1137
+ $appbar-border-color-alt2: $utility-appbar-border-color-alt2 !default;
1138
+ $appbar-hover-bg-color-alt2: $utility-appbar-hover-bg-color-alt2 !default;
1139
+
1140
+ //rating
1141
+ $rating-selected-color: $utility-rating-selected-color !default;
1142
+ $rating-unrated-color: $utility-rating-unrated-color !default;
1143
+ $rating-selected-disabled-color: $utility-rating-selected-disabled-color !default;
1144
+ $rating-unrated-disabled-color: $utility-rating-unrated-disabled-color !default;
1145
+ $rating-selected-hover-color: $utility-rating-selected-hover-color !default;
1146
+ $rating-unrated-hover-color: $utility-rating-unrated-hover-color !default;
1147
+ $rating-pressed-color: $utility-rating-pressed-color !default;
1148
+
1149
+ //font-icons
1150
+ $font-icon-8: 8px !default;
1151
+ $font-icon-9: 9px !default;
1152
+ $font-icon-10: 10px !default;
1153
+ $font-icon-12: 12px !default;
1154
+ $font-icon-13: 13px !default;
1155
+ $font-icon-14: 14px !default;
1156
+ $font-icon-15: 15px !default;
1157
+ $font-icon-16: 16px !default;
1158
+ $font-icon-17: 17px !default;
1159
+ $font-icon-18: 18px !default;
1160
+ $font-icon-20: 20px !default;
1161
+ $font-icon-22: 22px !default;
1162
+ $font-icon-24: 24px !default;
1163
+ $font-icon-26: 26px !default;
1164
+ $font-icon-28: 28px !default;
1165
+ $font-icon-32: 32px !default;
1166
+
1167
+ //avatar
1168
+ $avatar-border-color: $utility-avatar-border-color;
1169
+
1170
+ //badge
1171
+ $badge-primary-ghost-border-color:$brand-primary !default;
1172
+ $badge-primary-ghost-text-color: $brand-primary !default;
1173
+ $badge-success-ghost-border-color:$success-lighter !default;
1174
+ $badge-success-ghost-text-color: $success !default;
1175
+ $badge-danger-ghost-border-color:$danger-lighter !default;
1176
+ $badge-danger-ghost-text-color: $danger !default;
1177
+ $badge-warning-ghost-border-color:$warning-lighter !default;
1178
+ $badge-warning-ghost-text-color: $warning !default;
1179
+ $badge-info-ghost-border-color:$info-lighter !default;
1180
+ $badge-info-ghost-text-color: $info !default;
1181
+
1182
+ //Switch
1183
+ $switch-off-handle-bg-color:$fg-white !default;
1184
+
1185
+ //chip
1186
+ $chip-secondary-active-bg-color: $fg-senary !default;
1187
+ $chip-secondary-active-border-color: $fg-senary !default;
1188
+
1189
+ $gantt-connected-task-color: $brand-primary-d10 !default;
1190
+ $gantt-active-parent-task-color: $brand-primary-d10 !default;
1191
+
1192
+ .e-dark-mode {
1193
+
1194
+ //bds color system
1195
+ --color-sf-base-white: #fff;
1196
+ --color-sf-base-black: #000;
1197
+
1198
+ //Transparent
1199
+ --color-sf-base-transparent: transparent;
1200
+
1201
+ //branding
1202
+ --color-sf-brand-primary: #{#9d76ed};
1203
+ --color-sf-brand-primary-d10: #{darken(#9d76ed, 5%)};
1204
+ --color-sf-on-brand-solid-primary: #{#fff};
1205
+ --color-sf-brand-solid-primary: #{#7e56d8};
1206
+
1207
+ //Text
1208
+ --color-sf-text-primary: #{#f5f5f6};
1209
+ --color-sf-text-primary-on-brand: #{#f5f5f6};
1210
+ --color-sf-text-secondary: #{#cecfd2};
1211
+ --color-sf-text-secondary-hover: #{#ececed};
1212
+ --color-sf-text-secondary-on-brand: #{#cecfd2};
1213
+ --color-sf-text-tertiary: #{#94969c};
1214
+ --color-sf-text-tertiary-hover: #{#cecfd2};
1215
+ --color-sf-text-tertiary-on-brand: #{#94969c};
1216
+ --color-sf-text-quarterary: #{#94969c};
1217
+ --color-sf-text-quarterary-on-brand: #{#94969c};
1218
+ --color-sf-text-white: #{#fff};
1219
+ --color-sf-text-disabled: #{#85888e};
1220
+ --color-sf-text-placeholder: #{#85888e};
1221
+ --color-sf-text-placeholder-subtle: #{#333741};
1222
+ --color-sf-text-brand-primary: #{#f5f5f6};
1223
+ --color-sf-text-brand-secondary: #{#cecfd2};
1224
+ --color-sf-text-brand-tertiary: #{#94969c};
1225
+ --color-sf-text-brand-tertiary-alt: #{#f5f5f6};
1226
+ --color-sf-text-error-primary: #{#f97066};
1227
+ --color-sf-text-warning-primary: #{#fcb022};
1228
+ --color-sf-text-success-primary: #{#47cd89};
1229
+
1230
+ //background
1231
+ --color-sf-bg-primary: #{#0c111d};
1232
+ --color-sf-bg-secondary: #{#161b26};
1233
+ --color-sf-bg-primary-alt: #{#161b26};
1234
+ --color-sf-bg-primary-hover: #{#1f242f};
1235
+ --color-sf-bg-primary-solid: #{#161b26};
1236
+ --color-sf-bg-secondary-alt: #{#0c111d};
1237
+ --color-sf-bg-secondary-hover: #{#1f242f};
1238
+ --color-sf-bg-secondary-subtle: #{#161b26};
1239
+ --color-sf-bg-secondary-solid: #{#61646c};
1240
+ --color-sf-bg-tertiary: #{#1f242f};
1241
+ --color-sf-bg-quaternary: #{#333741};
1242
+ --color-sf-bg-active: #{#1f242f};
1243
+ --color-sf-bg-disabled: #{#1f242f};
1244
+ --color-sf-bg-disabled-subtle: #{#161b26};
1245
+ --color-sf-bg-overlay: #{#1f242f};
1246
+ --color-sf-bg-brand-primary: #{#9d76ed};
1247
+ --color-sf-bg-brand-primary-alt: mapcolorvariable('bg-secondary');
1248
+ --color-sf-bg-brand-secondary: #{#7e56d8};
1249
+ --color-sf-bg-brand-solid: #{#7e56d8};
1250
+ --color-sf-bg-brand-solid-hover: #{#9d76ed};
1251
+ --color-sf-bg-brand-section: mapcolorvariable('bg-secondary');
1252
+ --color-sf-bg-brand-section-subtle: mapcolorvariable('bg-primary');
1253
+ --color-sf-bg-error-primary: #{#f04437};
1254
+ --color-sf-bg-error-secondary: #{#d92c20};
1255
+ --color-sf-bg-error-solid: #{#d92c20};
1256
+ --color-sf-bg-warning-primary: #{#f78f08};
1257
+ --color-sf-bg-warning-secondary: #{#db6803};
1258
+ --color-sf-bg-warning-solid: #{#db6803};
1259
+ --color-sf-bg-success-primary: #{#17b169};
1260
+ --color-sf-bg-success-secondary: #{#069454};
1261
+ --color-sf-bg-success-solid: #{#069454};
1262
+
1263
+ //border
1264
+ --color-sf-border-primary: #{#333741};
1265
+ --color-sf-border-primary-alt: #{#61646c};
1266
+ --color-sf-border-secondary: #{#1f242f};
1267
+ --color-sf-border-tertiary: #{#1f242f};
1268
+ --color-sf-border-disabled: #{#333741};
1269
+ --color-sf-border-disabled-subtle: #{#1f242f};
1270
+ --color-sf-border-brand: #{#b692f6};
1271
+ --color-sf-border-brand-solid: #{#9d76ed};
1272
+ --color-sf-border-brand-solid-alt: #{#6840c6};
1273
+ --color-sf-border-error: #{#f97066};
1274
+ --color-sf-border-error-solid: #{#f04437};
1275
+ --color-sf-border-success: #{#47cd89};
1276
+ --color-sf-border-warning: #{#fcb022};
1277
+
1278
+ //foreground
1279
+ --color-sf-fg-primary: #{#fff};
1280
+ --color-sf-fg-secondary: #{#cecfd2};
1281
+ --color-sf-fg-secondary-hover: #{#ececed};
1282
+ --color-sf-fg-tertiary: #{#94969c};
1283
+ --color-sf-fg-tertiary-hover: #{#cecfd2};
1284
+ --color-sf-fg-quarterary: #{#94969c};
1285
+ --color-sf-fg-quarterary-hover: #{#cecfd2};
1286
+ --color-sf-fg-quinary: #{#85888e};
1287
+ --color-sf-fg-quinary-hover: #{#94969c};
1288
+ --color-sf-fg-senary: #{#61646c};
1289
+ --color-sf-fg-white: #{#fff};
1290
+ --color-sf-fg-disabled: #{#85888e};
1291
+ --color-sf-fg-disabled-subtle: #{#61646c};
1292
+ --color-sf-fg-brand-primary: #{#9d76ed};
1293
+ --color-sf-fg-brand-primary-alt: #{#cecfd2};
1294
+ --color-sf-fg-brand-secondary: #{#9d76ed};
1295
+ --color-sf-fg-error-primary: #{#f04437};
1296
+ --color-sf-fg-error-secondary: #{#f97066};
1297
+ --color-sf-fg-warning-primary: #{#f78f08};
1298
+ --color-sf-fg-warning-secondary: #{#fcb022};
1299
+ --color-sf-fg-success-primary: #{#17b169};
1300
+ --color-sf-fg-success-secondary: #{#47cd89};
1301
+
1302
+ //tooltip
1303
+ --color-sf-utility-tooltip-bg: #{#ececed};
1304
+ --color-sf-utility-tooltip-text: #{#0c111d};
1305
+
1306
+ //utility helper
1307
+ --color-sf-utility-success: #{#47cd89};
1308
+ --color-sf-utility-info: #{#36bffa};
1309
+ --color-sf-utility-warning: #{#fcb022};
1310
+ --color-sf-utility-danger: #{#f97066};
1311
+ --color-sf-utility-success-light: #{#043320};
1312
+ --color-sf-utility-info-light: #{#0b4a6f};
1313
+ --color-sf-utility-warning-light: #{#4e1d08};
1314
+ --color-sf-utility-danger-light: #{#54150c};
1315
+ --color-sf-utility-primary-light: #{#52379e};
1316
+ --color-sf-utility-primary-alt: #{#d6bbfb};
1317
+ --color-sf-utility-primary-lighter: #{#2b1b5e};
1318
+ --color-sf-utility-success-lighter: #{#075d39};
1319
+ --color-sf-utility-info-lighter: #{#026aa2};
1320
+ --color-sf-utility-warning-lighter: #{#93370c};
1321
+ --color-sf-utility-danger-lighter: #{#901f17};
1322
+
1323
+ //utility btn
1324
+ --color-sf-utility-info-border-color: #{#52379e}; //brand color
1325
+ --color-sf-utility-info-bg-color-hover: #{#2b1b5e}; //brand color
1326
+ --color-sf-utility-info-bg-color-pressed: #{#52379e}; //brand color
1327
+ --color-sf-utility-info-text: #{#9d76ed};
1328
+ --color-sf-utility-info-text-hover: #{#b692f6};
1329
+
1330
+ //secondary btn
1331
+ --color-sf-utility-secondary-border-color: #{#333741};
1332
+ --color-sf-utility-secondary-bg-color: #{#161b26};
1333
+ --color-sf-utility-secondary-text-color: #{#cecfd2};
1334
+ --color-sf-utility-secondary-bg-color-hover: #{#1f242f};
1335
+ --color-sf-utility-secondary-text-color-hover: #{#f0f1f1};
1336
+ --color-sf-utility-secondary-bg-color-pressed: #{#333741};
1337
+ --color-sf-utility-secondary-text-color-pressed: #{#cecfd2};
1338
+
1339
+ //selected bg
1340
+ --color-sf-utility-content-bg-color-selected: #{#1f242f};
1341
+
1342
+ //Message default
1343
+ --color-sf-utility-msg-color: #{#cecfd2};
1344
+ --color-sf-utility-msg-bg-color: #{#161b26};
1345
+ --color-sf-utility-msg-border-color: #{#333741};
1346
+ --color-sf-utility-msg-color-alt1: #{#ececed};
1347
+ --color-sf-utility-msg-bg-color-alt1: #{#00000000};
1348
+ --color-sf-utility-msg-border-color-alt1: #{#61646c};
1349
+ --color-sf-utility-msg-color-alt2: #{#333741};
1350
+ --color-sf-utility-msg-bg-color-alt2: #{#ececed};
1351
+ --color-sf-utility-msg-border-color-alt2: #{#94969c};
1352
+
1353
+ //Message icon
1354
+ --color-sf-utility-msg-icon-color: #{#94969c};
1355
+ --color-sf-utility-msg-icon-color-alt1: #{#cecfd2};
1356
+ --color-sf-utility-msg-icon-color-alt2: #{#333741};
1357
+
1358
+ //Message close icon
1359
+ --color-sf-utility-msg-close-icon-color: #{#cecfd2};
1360
+ --color-sf-utility-msg-close-icon-color-alt1: #{#cecfd2};
1361
+ --color-sf-utility-msg-close-icon-color-alt2: #{#333741};
1362
+
1363
+ //Message danger
1364
+ --color-sf-utility-msg-danger-color: #{#fca19b};
1365
+ --color-sf-utility-msg-danger-bg-color: #{#54150c};
1366
+ --color-sf-utility-msg-danger-border-color: #{#901f17};
1367
+ --color-sf-utility-msg-danger-color-alt1: #{#fecdc9};
1368
+ --color-sf-utility-msg-danger-bg-color-alt1: #{#00000000};
1369
+ --color-sf-utility-msg-danger-border-color-alt1: #{#901f17};
1370
+ --color-sf-utility-msg-danger-color-alt2: #{#7a2619};
1371
+ --color-sf-utility-msg-danger-bg-color-alt2: #{#fecdc9};
1372
+ --color-sf-utility-msg-danger-border-color-alt2: #{#fca19b};
1373
+
1374
+ //Message icon
1375
+ --color-sf-utility-msg-danger-icon-color: #{#fca19b};
1376
+ --color-sf-utility-msg-danger-icon-color-alt1: #{#fca19b};
1377
+ --color-sf-utility-msg-danger-icon-color-alt2: #{#333741};
1378
+
1379
+ //Message close icon
1380
+ --color-sf-utility-msg-danger-close-icon-color: #{#fca19b};
1381
+ --color-sf-utility-msg-danger-close-icon-color-alt1: #{#fca19b};
1382
+ --color-sf-utility-msg-danger-close-icon-color-alt2: #{#161b26};
1383
+
1384
+ //Message success
1385
+ --color-sf-utility-msg-success-color: #{#75dfa6};
1386
+ --color-sf-utility-msg-success-bg-color: #{#043320};
1387
+ --color-sf-utility-msg-success-border-color: #{#075d39};
1388
+ --color-sf-utility-msg-success-color-alt1: #{#aaefc6};
1389
+ --color-sf-utility-msg-success-bg-color-alt1: #{#00000000};
1390
+ --color-sf-utility-msg-success-border-color-alt1: #{#075d39};
1391
+ --color-sf-utility-msg-success-color-alt2: #{#161b26};
1392
+ --color-sf-utility-msg-success-bg-color-alt2: #{#aaefc6};
1393
+ --color-sf-utility-msg-success-border-color-alt2: #{#75dfa6};
1394
+
1395
+ //Message icon
1396
+ --color-sf-utility-msg-success-icon-color: #{#47cd89};
1397
+ --color-sf-utility-msg-success-icon-color-alt1: #{#75dfa6};
1398
+ --color-sf-utility-msg-success-icon-color-alt2: #{#333741};
1399
+
1400
+ //Message close icon
1401
+ --color-sf-utility-msg-success-close-icon-color: #{#75dfa6};
1402
+ --color-sf-utility-msg-success-close-icon-color-alt1: #{#75dfa6};
1403
+ --color-sf-utility-msg-success-close-icon-color-alt2: #{#161b26};
1404
+
1405
+ //Message warning
1406
+ --color-sf-utility-msg-warning-color: #{#fec84a};
1407
+ --color-sf-utility-msg-warning-bg-color: #{#4e1d08};
1408
+ --color-sf-utility-msg-warning-border-color: #{#93370c};
1409
+ --color-sf-utility-msg-warning-color-alt1: #{#fede88};
1410
+ --color-sf-utility-msg-warning-bg-color-alt1: #{#00000000};
1411
+ --color-sf-utility-msg-warning-border-color-alt1: #{#93370c};
1412
+ --color-sf-utility-msg-warning-color-alt2: #{#161b26};
1413
+ --color-sf-utility-msg-warning-bg-color-alt2: #{#fede88};
1414
+ --color-sf-utility-msg-warning-border-color-alt2: #{#fec84a};
1415
+
1416
+ //Message icon
1417
+ --color-sf-utility-msg-warning-icon-color: #{#f78f08};
1418
+ --color-sf-utility-msg-warning-icon-color-alt1: #{#f78f08};
1419
+ --color-sf-utility-msg-warning-icon-color-alt2: #{#333741};
1420
+
1421
+ //Message close icon
1422
+ --color-sf-utility-msg-warning-close-icon-color: #{#fec84a};
1423
+ --color-sf-utility-msg-warning-close-icon-color-alt1: #{#fec84a};
1424
+ --color-sf-utility-msg-warning-close-icon-color-alt2: #{#161b26};
1425
+
1426
+ //Message Info
1427
+ --color-sf-utility-msg-info-color: #{#7cd4fd};
1428
+ --color-sf-utility-msg-info-bg-color: #{#0b4a6f};
1429
+ --color-sf-utility-msg-info-border-color: #{#065986};
1430
+ --color-sf-utility-msg-info-color-alt1: #{#b9e6fe};
1431
+ --color-sf-utility-msg-info-bg-color-alt1: #{#00000000};
1432
+ --color-sf-utility-msg-info-border-color-alt1: #{#065986};
1433
+ --color-sf-utility-msg-info-color-alt2: #{#065986};
1434
+ --color-sf-utility-msg-info-bg-color-alt2: #{#d0d5dd};
1435
+ --color-sf-utility-msg-info-border-color-alt2: #{#d0d5dd};
1436
+
1437
+ //Message icon
1438
+ --color-sf-utility-msg-info-icon-color: #{#0ba5ec};
1439
+ --color-sf-utility-msg-info-icon-color-alt1: #{#0ba5ec};
1440
+ --color-sf-utility-msg-info-icon-color-alt2: #{#d0d5dd};
1441
+
1442
+ //Message close icon
1443
+ --color-sf-utility-msg-info-close-icon-color: #{#7cd4fd};
1444
+ --color-sf-utility-msg-info-close-icon-color-alt1: #{#7cd4fd};
1445
+ --color-sf-utility-msg-info-close-icon-color-alt2: #{#161b26};
1446
+
1447
+ //app bar
1448
+ //Light
1449
+ --color-sf-utility-appbar-bg-color-alt1: #{#0c111d};
1450
+ --color-sf-utility-appbar-color-alt1: #{#f5f5f6};
1451
+ --color-sf-utility-appbar-border-color-alt1: #{#1f242f};
1452
+ --color-sf-utility-appbar-hover-bg-color-alt1: rgba(245, 245, 246, .06);
1453
+
1454
+ //dark
1455
+ --color-sf-utility-appbar-bg-color-alt2: #{#f0f1f1};
1456
+ --color-sf-utility-appbar-color-alt2: #{#161b26};
1457
+ --color-sf-utility-appbar-border-color-alt2: #{#ececed};
1458
+ --color-sf-utility-appbar-hover-bg-color-alt2: rgba(22, 27, 38, .08);
1459
+
1460
+ //rating
1461
+ --color-sf-utility-rating-selected-color: #{#fcb022};
1462
+ --color-sf-utility-rating-unrated-color: #{#333741};
1463
+ --color-sf-utility-rating-selected-disabled-color: #{#93370c};
1464
+ --color-sf-utility-rating-unrated-disabled-color: #{#1f242f};
1465
+ --color-sf-utility-rating-selected-hover-color: #{#f78f08};
1466
+ --color-sf-utility-rating-unrated-hover-color: #{#fec84a};
1467
+ --color-sf-utility-rating-pressed-color: #{#f78f08};
1468
+
1469
+ //avatar
1470
+ --color-sf-utility-avatar-border-color: rgba(255, 255, 255, .075);
1471
+
1472
+ //overlay
1473
+ --color-sf-utility-overlay-bg-color: rgba(97, 100, 108, .5);
1474
+ }