@adcops/autocore-react 3.3.9 → 3.3.10

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 (215) hide show
  1. package/LICENSE +58 -58
  2. package/additional-docs/AutoCoreTagContext.md +441 -441
  3. package/additional-docs/ButtonApiSpecs.md +48 -48
  4. package/additional-docs/GlobalEventEmitter.md +243 -243
  5. package/additional-docs/general_recommendations.md +22 -22
  6. package/additional-docs/react_performance_notes.md +94 -94
  7. package/dist/assets/svg/blockly_logo.svg +82 -82
  8. package/dist/assets/svg/distance.svg +40 -40
  9. package/dist/assets/svg/python_logo.svg +246 -246
  10. package/dist/assets/svg/rotation_ccw.svg +50 -50
  11. package/dist/assets/svg/rotation_ccw_a.svg +57 -57
  12. package/dist/assets/svg/rotation_ccw_b.svg +57 -57
  13. package/dist/assets/svg/rotation_ccw_c.svg +57 -57
  14. package/dist/assets/svg/rotation_cw.svg +49 -49
  15. package/dist/assets/svg/rotation_cw_a.svg +30 -30
  16. package/dist/assets/svg/rotation_cw_b.svg +30 -30
  17. package/dist/assets/svg/rotation_cw_c.svg +30 -30
  18. package/dist/assets/svg/speed.svg +39 -39
  19. package/dist/components/BlocklyEditor.css +93 -93
  20. package/dist/components/JogPanel.css +41 -41
  21. package/dist/components/ProgressBarWithValue.css +27 -27
  22. package/dist/components/ValueIndicator.css +31 -31
  23. package/dist/components/osk.css +123 -123
  24. package/dist/core/AutoCoreTagContext.d.ts.map +1 -1
  25. package/dist/core/AutoCoreTagContext.js +1 -1
  26. package/dist/hub/HubBase.d.ts +3 -3
  27. package/dist/hub/HubBase.d.ts.map +1 -1
  28. package/dist/hub/HubBase.js +1 -1
  29. package/package.json +104 -104
  30. package/readme.md +343 -343
  31. package/src/assets/BlocklyLogo.tsx +27 -27
  32. package/src/assets/Distance.tsx +18 -18
  33. package/src/assets/JogLong.tsx +13 -13
  34. package/src/assets/JogMedium.tsx +13 -13
  35. package/src/assets/JogShort.tsx +13 -13
  36. package/src/assets/PythonLogo.tsx +83 -83
  37. package/src/assets/Rotation3D.tsx +13 -13
  38. package/src/assets/RotationCcw.tsx +33 -33
  39. package/src/assets/RotationCcwA.tsx +45 -45
  40. package/src/assets/RotationCcwB.tsx +45 -45
  41. package/src/assets/RotationCcwC.tsx +45 -45
  42. package/src/assets/RotationCw.tsx +31 -31
  43. package/src/assets/RotationCwA.tsx +42 -42
  44. package/src/assets/RotationCwB.tsx +42 -42
  45. package/src/assets/RotationCwC.tsx +42 -42
  46. package/src/assets/Run.tsx +13 -13
  47. package/src/assets/Speed.tsx +18 -18
  48. package/src/assets/SpeedFast.tsx +13 -13
  49. package/src/assets/SpeedMedium.tsx +13 -13
  50. package/src/assets/SpeedNone.tsx +13 -13
  51. package/src/assets/SpeedSlow.tsx +13 -13
  52. package/src/assets/Walk.tsx +13 -13
  53. package/src/assets/index.ts +22 -22
  54. package/src/assets/svg/blockly_logo.svg +82 -82
  55. package/src/assets/svg/distance.svg +40 -40
  56. package/src/assets/svg/python_logo.svg +246 -246
  57. package/src/assets/svg/rotation_ccw.svg +50 -50
  58. package/src/assets/svg/rotation_ccw_a.svg +57 -57
  59. package/src/assets/svg/rotation_ccw_b.svg +57 -57
  60. package/src/assets/svg/rotation_ccw_c.svg +57 -57
  61. package/src/assets/svg/rotation_cw.svg +49 -49
  62. package/src/assets/svg/rotation_cw_a.svg +30 -30
  63. package/src/assets/svg/rotation_cw_b.svg +30 -30
  64. package/src/assets/svg/rotation_cw_c.svg +30 -30
  65. package/src/assets/svg/speed.svg +39 -39
  66. package/src/components/AutoCoreDevPanel.tsx +414 -414
  67. package/src/components/BlocklyEditor.css +93 -93
  68. package/src/components/BlocklyEditor.tsx +609 -609
  69. package/src/components/CodeEditor.tsx +155 -155
  70. package/src/components/FileList.tsx +390 -390
  71. package/src/components/FileSelect.tsx +128 -128
  72. package/src/components/FitText.tsx +35 -35
  73. package/src/components/Indicator.tsx +188 -188
  74. package/src/components/IndicatorButton.tsx +214 -214
  75. package/src/components/IndicatorRect.tsx +172 -172
  76. package/src/components/JogPanel.css +41 -41
  77. package/src/components/JogPanel.tsx +461 -461
  78. package/src/components/Lamp.tsx +243 -243
  79. package/src/components/Osk.tsx +192 -192
  80. package/src/components/OskDialog.tsx +164 -164
  81. package/src/components/ProgressBarWithValue.css +27 -27
  82. package/src/components/ProgressBarWithValue.tsx +48 -48
  83. package/src/components/TextInput.tsx +195 -195
  84. package/src/components/ToggleGroup.tsx +322 -322
  85. package/src/components/ValueDisplay.tsx +236 -236
  86. package/src/components/ValueIndicator.css +31 -31
  87. package/src/components/ValueIndicator.tsx +135 -135
  88. package/src/components/ValueInput.tsx +368 -368
  89. package/src/components/osk.css +123 -123
  90. package/src/core/ActionMode.ts +19 -19
  91. package/src/core/AutoCoreTagContext.tsx +625 -614
  92. package/src/core/AutoCoreTagTypes.ts +334 -334
  93. package/src/core/CoreStreamTypes.ts +512 -512
  94. package/src/core/EventEmitterContext.tsx +434 -434
  95. package/src/core/IndicatorButtonState.ts +34 -34
  96. package/src/core/IndicatorColor.ts +35 -35
  97. package/src/core/MaskPatterns.ts +87 -87
  98. package/src/core/NumerableTypes.ts +80 -80
  99. package/src/core/PositionContext.ts +59 -59
  100. package/src/core/UniqueId.ts +41 -41
  101. package/src/core/ValueSimulator.ts +166 -166
  102. package/src/core/hoc.tsx +65 -65
  103. package/src/hooks/adsHooks.tsx +287 -287
  104. package/src/hooks/commandHooks.tsx +300 -300
  105. package/src/hooks/index.ts +12 -12
  106. package/src/hooks/useAutoCoreTag.ts +103 -103
  107. package/src/hooks/useScaledValue.tsx +99 -99
  108. package/src/hub/CommandMessage.ts +89 -89
  109. package/src/hub/DebugPanel.ts +307 -307
  110. package/src/hub/HubBase.ts +249 -236
  111. package/src/hub/HubSimulate.ts +124 -124
  112. package/src/hub/HubTauri.ts +140 -140
  113. package/src/hub/HubWebSocket.ts +250 -250
  114. package/src/hub/debug.ts +211 -211
  115. package/src/hub/index.ts +81 -81
  116. package/src/themes/adc-dark/_extensions.scss +166 -166
  117. package/src/themes/adc-dark/_variables.scss +913 -913
  118. package/src/themes/adc-dark/blue/_fonts.scss +23 -23
  119. package/src/themes/adc-dark/blue/adc_theme.scss +31 -31
  120. package/src/themes/adc-dark/blue/theme.scss +14 -14
  121. package/src/themes/theme-base/_colors.scss +17 -17
  122. package/src/themes/theme-base/_common.scss +74 -74
  123. package/src/themes/theme-base/_components.scss +111 -111
  124. package/src/themes/theme-base/_mixins.scss +243 -243
  125. package/src/themes/theme-base/components/button/_button.scss +644 -644
  126. package/src/themes/theme-base/components/button/_speeddial.scss +91 -91
  127. package/src/themes/theme-base/components/button/_splitbutton.scss +358 -358
  128. package/src/themes/theme-base/components/data/_carousel.scss +39 -39
  129. package/src/themes/theme-base/components/data/_datascroller.scss +47 -47
  130. package/src/themes/theme-base/components/data/_datatable.scss +388 -388
  131. package/src/themes/theme-base/components/data/_dataview.scss +47 -47
  132. package/src/themes/theme-base/components/data/_filter.scss +137 -137
  133. package/src/themes/theme-base/components/data/_orderlist.scss +86 -86
  134. package/src/themes/theme-base/components/data/_organizationchart.scss +50 -50
  135. package/src/themes/theme-base/components/data/_paginator.scss +91 -91
  136. package/src/themes/theme-base/components/data/_picklist.scss +73 -73
  137. package/src/themes/theme-base/components/data/_timeline.scss +38 -38
  138. package/src/themes/theme-base/components/data/_tree.scss +184 -184
  139. package/src/themes/theme-base/components/data/_treetable.scss +431 -431
  140. package/src/themes/theme-base/components/file/_fileupload.scss +41 -41
  141. package/src/themes/theme-base/components/input/_autocomplete.scss +94 -94
  142. package/src/themes/theme-base/components/input/_calendar.scss +251 -251
  143. package/src/themes/theme-base/components/input/_cascadeselect.scss +107 -107
  144. package/src/themes/theme-base/components/input/_checkbox.scss +181 -181
  145. package/src/themes/theme-base/components/input/_chips.scss +102 -102
  146. package/src/themes/theme-base/components/input/_colorpicker.scss +17 -17
  147. package/src/themes/theme-base/components/input/_dropdown.scss +252 -252
  148. package/src/themes/theme-base/components/input/_editor.scss +122 -122
  149. package/src/themes/theme-base/components/input/_iconfield.scss +9 -9
  150. package/src/themes/theme-base/components/input/_inputgroup.scss +74 -74
  151. package/src/themes/theme-base/components/input/_inputicon.scss +14 -14
  152. package/src/themes/theme-base/components/input/_inputnumber.scss +4 -4
  153. package/src/themes/theme-base/components/input/_inputotp.scss +10 -10
  154. package/src/themes/theme-base/components/input/_inputswitch.scss +99 -99
  155. package/src/themes/theme-base/components/input/_inputtext.scss +101 -101
  156. package/src/themes/theme-base/components/input/_listbox.scss +138 -138
  157. package/src/themes/theme-base/components/input/_mention.scss +30 -30
  158. package/src/themes/theme-base/components/input/_multiselect.scss +278 -278
  159. package/src/themes/theme-base/components/input/_password.scss +32 -32
  160. package/src/themes/theme-base/components/input/_radiobutton.scss +169 -169
  161. package/src/themes/theme-base/components/input/_rating.scss +80 -80
  162. package/src/themes/theme-base/components/input/_selectbutton.scss +49 -49
  163. package/src/themes/theme-base/components/input/_slider.scss +49 -49
  164. package/src/themes/theme-base/components/input/_togglebutton.scss +99 -99
  165. package/src/themes/theme-base/components/input/_treeselect.scss +151 -151
  166. package/src/themes/theme-base/components/input/_tristatecheckbox.scss +46 -46
  167. package/src/themes/theme-base/components/menu/_breadcrumb.scss +42 -42
  168. package/src/themes/theme-base/components/menu/_contextmenu.scss +39 -39
  169. package/src/themes/theme-base/components/menu/_dock.scss +109 -109
  170. package/src/themes/theme-base/components/menu/_megamenu.scss +141 -141
  171. package/src/themes/theme-base/components/menu/_menu.scss +33 -33
  172. package/src/themes/theme-base/components/menu/_menubar.scss +216 -216
  173. package/src/themes/theme-base/components/menu/_panelmenu.scss +153 -153
  174. package/src/themes/theme-base/components/menu/_slidemenu.scss +60 -60
  175. package/src/themes/theme-base/components/menu/_steps.scss +57 -57
  176. package/src/themes/theme-base/components/menu/_tabmenu.scss +50 -50
  177. package/src/themes/theme-base/components/menu/_tieredmenu.scss +43 -43
  178. package/src/themes/theme-base/components/messages/_inlinemessage.scss +69 -69
  179. package/src/themes/theme-base/components/messages/_message.scss +107 -107
  180. package/src/themes/theme-base/components/messages/_toast.scss +100 -100
  181. package/src/themes/theme-base/components/misc/_avatar.scss +33 -33
  182. package/src/themes/theme-base/components/misc/_badge.scss +76 -76
  183. package/src/themes/theme-base/components/misc/_chip.scss +38 -38
  184. package/src/themes/theme-base/components/misc/_inplace.scss +17 -17
  185. package/src/themes/theme-base/components/misc/_metergroup.scss +80 -80
  186. package/src/themes/theme-base/components/misc/_progressbar.scss +17 -17
  187. package/src/themes/theme-base/components/misc/_scrolltop.scss +24 -24
  188. package/src/themes/theme-base/components/misc/_skeleton.scss +7 -7
  189. package/src/themes/theme-base/components/misc/_tag.scss +39 -39
  190. package/src/themes/theme-base/components/misc/_terminal.scss +12 -12
  191. package/src/themes/theme-base/components/multimedia/_galleria.scss +153 -153
  192. package/src/themes/theme-base/components/multimedia/_image.scss +53 -53
  193. package/src/themes/theme-base/components/overlay/_confirmpopup.scss +72 -72
  194. package/src/themes/theme-base/components/overlay/_dialog.scss +78 -78
  195. package/src/themes/theme-base/components/overlay/_overlaypanel.scss +64 -64
  196. package/src/themes/theme-base/components/overlay/_sidebar.scss +23 -23
  197. package/src/themes/theme-base/components/overlay/_tooltip.scss +33 -33
  198. package/src/themes/theme-base/components/panel/_accordion.scss +118 -118
  199. package/src/themes/theme-base/components/panel/_card.scss +30 -30
  200. package/src/themes/theme-base/components/panel/_divider.scss +30 -30
  201. package/src/themes/theme-base/components/panel/_fieldset.scss +47 -47
  202. package/src/themes/theme-base/components/panel/_panel.scss +47 -47
  203. package/src/themes/theme-base/components/panel/_scrollpanel.scss +10 -10
  204. package/src/themes/theme-base/components/panel/_splitter.scss +23 -23
  205. package/src/themes/theme-base/components/panel/_stepper.scss +136 -136
  206. package/src/themes/theme-base/components/panel/_tabview.scss +147 -147
  207. package/src/themes/theme-base/components/panel/_toolbar.scss +11 -11
  208. package/terser.config.cjs +25 -25
  209. package/todo.md +18 -18
  210. package/tools/build-themes.cjs +65 -65
  211. package/tools/copy-distribution-files.cjs +77 -77
  212. package/tools/minify.cjs +55 -55
  213. package/tsconfig.json +48 -48
  214. package/typedoc.json +12 -12
  215. package/.claude/settings.local.json +0 -7
@@ -1,913 +1,913 @@
1
- $colors: (
2
- "blue": #3b82f6,
3
- "green": #22c55e,
4
- "yellow": #eab308,
5
- "cyan": #06b6d4,
6
- "pink": #ec4899,
7
- "indigo": #6366f1,
8
- "teal": #14b8a6,
9
- "orange": #f97316,
10
- "bluegray": #64748b,
11
- "purple": #a855f7,
12
- "red": #ff3d32,
13
- "primary": $primaryColor
14
- );
15
-
16
- //shades
17
- $shade000: rgba(255, 255, 255, 0.87) !default; //text color
18
- $shade100: rgba(255, 255, 255, 0.6) !default; //text secondary color
19
- $shade500: #6b7280 !default;
20
- $shade600: #424b57 !default; //input bg, border, divider
21
- $shade700: #374151 !default; //menu bg
22
- $shade800: #1f2937 !default; //elevated surface
23
- $shade900: #111827 !default; //ground surface
24
-
25
- $hoverBg: rgba(255, 255, 255, 0.03) !default;
26
-
27
- //global
28
- /* $fontFamily: "Inter var", sans-serif !default; */
29
- $fontFamily: "HyperlegibleNext var", sans-serif !default;
30
- $fontSize: 1rem !default;
31
- $fontWeight: normal !default;
32
- $textColor: $shade000 !default;
33
- $textSecondaryColor: $shade100 !default;
34
- $borderRadius: 6px !default;
35
- $transitionDuration: 0.2s !default;
36
- $formElementTransition: background-color $transitionDuration,
37
- color $transitionDuration, border-color $transitionDuration,
38
- box-shadow $transitionDuration !default;
39
- $actionIconTransition: background-color $transitionDuration,
40
- color $transitionDuration, box-shadow $transitionDuration !default;
41
- $listItemTransition: box-shadow $transitionDuration !default;
42
- $primeIconFontSize: 1rem !default;
43
- $divider: 1px solid $shade600 !default;
44
- $inlineSpacing: 0.5rem !default; //spacing between inline elements
45
- $disabledOpacity: 0.4 !default; //opacity of a disabled item
46
- $maskBg: rgba(0, 0, 0, 0.4) !default; //modal mask bg color
47
- $loadingIconFontSize: 2rem !default;
48
- $errorColor: #fca5a5 !default;
49
-
50
- //scale
51
- $scaleSM: 0.875 !default;
52
- $scaleLG: 1.25 !default;
53
-
54
- //focus
55
- $focusOutlineColor: $primaryLightestColor !default;
56
- $focusOutline: 0 none !default;
57
- $focusOutlineOffset: 0 !default;
58
- $focusShadow: 0 0 0 0.2rem $focusOutlineColor !default;
59
-
60
- //action icons
61
- $actionIconWidth: 2rem !default;
62
- $actionIconHeight: 2rem !default;
63
- $actionIconBg: transparent !default;
64
- $actionIconBorder: 0 none !default;
65
- $actionIconColor: $shade100 !default;
66
- $actionIconHoverBg: $hoverBg !default;
67
- $actionIconHoverBorderColor: transparent !default;
68
- $actionIconHoverColor: $shade000 !default;
69
- $actionIconBorderRadius: 50% !default;
70
-
71
- //input field (e.g. inputtext, spinner, inputmask)
72
- $inputPadding: 0.75rem 0.75rem !default;
73
- $inputTextFontSize: 1rem !default;
74
- $inputBg: $shade900 !default;
75
- $inputTextColor: $shade000 !default;
76
- $inputIconColor: $shade100 !default;
77
- $inputBorder: 1px solid $shade600 !default;
78
- $inputHoverBorderColor: $primaryColor !default;
79
- $inputFocusBorderColor: $primaryColor !default;
80
- $inputErrorBorderColor: $errorColor !default;
81
- $inputPlaceholderTextColor: $shade100 !default;
82
- $inputFilledBg: $shade600 !default;
83
- $inputFilledHoverBg: $inputFilledBg !default;
84
- $inputFilledFocusBg: $inputFilledBg !default;
85
-
86
- //input groups
87
- $inputGroupBg: $shade800 !default;
88
- $inputGroupTextColor: $shade100 !default;
89
- $inputGroupAddOnMinWidth: 3rem !default;
90
-
91
- //input lists (e.g. dropdown, autocomplete, multiselect, orderlist)
92
- $inputListBg: $shade800 !default;
93
- $inputListTextColor: $shade000 !default;
94
- $inputListBorder: $inputBorder !default;
95
- $inputListPadding: 0.75rem 0 !default;
96
- $inputListItemPadding: 0.75rem 1.25rem !default;
97
- $inputListItemBg: transparent !default;
98
- $inputListItemTextColor: $shade000 !default;
99
- $inputListItemHoverBg: $hoverBg !default;
100
- $inputListItemTextHoverColor: $shade000 !default;
101
- $inputListItemTextFocusColor: $shade000 !default;
102
- $inputListItemFocusBg: $shade600 !default;
103
- $inputListItemBorder: 0 none !default;
104
- $inputListItemBorderRadius: 0 !default;
105
- $inputListItemMargin: 0 !default;
106
- $inputListItemFocusShadow: inset 0 0 0 0.15rem $focusOutlineColor !default;
107
- $inputListHeaderPadding: 0.75rem 1.25rem !default;
108
- $inputListHeaderMargin: 0 !default;
109
- $inputListHeaderBg: $shade800 !default;
110
- $inputListHeaderTextColor: $shade000 !default;
111
- $inputListHeaderBorder: 1px solid $shade600 !default;
112
-
113
- //inputs with overlays (e.g. autocomplete, dropdown, multiselect)
114
- $inputOverlayBg: $inputListBg !default;
115
- $inputOverlayHeaderBg: $inputListHeaderBg !default;
116
- $inputOverlayBorder: 1px solid $shade600 !default;
117
- $inputOverlayShadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2),
118
- 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12) !default;
119
-
120
- //password
121
- $passwordMeterBg: $shade600 !default;
122
- $passwordWeakBg: #eb9a9c !default;
123
- $passwordMediumBg: #ffcf91 !default;
124
- $passwordStrongBg: #93deac !default;
125
-
126
- //button
127
- $buttonPadding: 0.75rem 1.25rem !default;
128
- $buttonIconOnlyWidth: 3rem !default;
129
- $buttonIconOnlyPadding: 0.75rem 0 !default;
130
- $buttonBg: $primaryColor !default;
131
- $buttonTextColor: $primaryTextColor !default;
132
- $buttonBorder: 1px solid $primaryColor !default;
133
- $buttonHoverBg: $primaryLightColor !default;
134
- $buttonTextHoverColor: $primaryTextColor !default;
135
- $buttonHoverBorderColor: $primaryLightColor !default;
136
- $buttonActiveBg: $primaryLighterColor !default;
137
- $buttonTextActiveColor: $primaryTextColor !default;
138
- $buttonActiveBorderColor: $primaryLighterColor !default;
139
- $raisedButtonShadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
140
- 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12) !default;
141
- $roundedButtonBorderRadius: 2rem !default;
142
-
143
- $textButtonHoverBgOpacity: 0.04 !default;
144
- $textButtonActiveBgOpacity: 0.16 !default;
145
- $outlinedButtonBorder: 1px solid !default;
146
- $plainButtonTextColor: $textSecondaryColor !default;
147
- $plainButtonHoverBgColor: $hoverBg !default;
148
- $plainButtonActiveBgColor: rgba(255, 255, 255, 0.16) !default;
149
-
150
- $secondaryButtonBg: #94a3b8 !default;
151
- $secondaryButtonTextColor: #020617 !default;
152
- $secondaryButtonBorder: 1px solid #94a3b8 !default;
153
- $secondaryButtonHoverBg: #cbd5e1 !default;
154
- $secondaryButtonTextHoverColor: $secondaryButtonTextColor !default;
155
- $secondaryButtonHoverBorderColor: #cbd5e1 !default;
156
- $secondaryButtonActiveBg: #e2e8f0 !default;
157
- $secondaryButtonTextActiveColor: $secondaryButtonTextColor !default;
158
- $secondaryButtonActiveBorderColor: #e2e8f0 !default;
159
- $secondaryButtonFocusShadow: 0 0 0 1px
160
- scale-color($secondaryButtonBg, $lightness: 30%) !default;
161
-
162
- $infoButtonBg: #38bdf8 !default;
163
- $infoButtonTextColor: #082f49 !default;
164
- $infoButtonBorder: 1px solid #38bdf8 !default;
165
- $infoButtonHoverBg: #7dd3fc !default;
166
- $infoButtonTextHoverColor: $infoButtonTextColor !default;
167
- $infoButtonHoverBorderColor: #7dd3fc !default;
168
- $infoButtonActiveBg: #bae6fd !default;
169
- $infoButtonTextActiveColor: $infoButtonTextColor !default;
170
- $infoButtonActiveBorderColor: #bae6fd !default;
171
- $infoButtonFocusShadow: 0 0 0 1px scale-color($infoButtonBg, $lightness: 30%) !default;
172
-
173
- $successButtonBg: #4ade80 !default;
174
- $successButtonTextColor: #052e16 !default;
175
- $successButtonBorder: 1px solid #4ade80 !default;
176
- $successButtonHoverBg: #86efac !default;
177
- $successButtonTextHoverColor: $successButtonTextColor !default;
178
- $successButtonHoverBorderColor: #86efac !default;
179
- $successButtonActiveBg: #bbf7d0 !default;
180
- $successButtonTextActiveColor: $successButtonTextColor !default;
181
- $successButtonActiveBorderColor: #bbf7d0 !default;
182
- $successButtonFocusShadow: 0 0 0 1px
183
- scale-color($successButtonBg, $lightness: 30%) !default;
184
-
185
- $warningButtonBg: #fb923c !default;
186
- $warningButtonTextColor: #431407 !default;
187
- $warningButtonBorder: 1px solid #fb923c !default;
188
- $warningButtonHoverBg: #fdba74 !default;
189
- $warningButtonTextHoverColor: $warningButtonTextColor !default;
190
- $warningButtonHoverBorderColor: #fdba74 !default;
191
- $warningButtonActiveBg: #fed7aa !default;
192
- $warningButtonTextActiveColor: $warningButtonTextColor !default;
193
- $warningButtonActiveBorderColor: #fed7aa !default;
194
- $warningButtonFocusShadow: 0 0 0 1px
195
- scale-color($warningButtonBg, $lightness: 30%) !default;
196
-
197
- $helpButtonBg: #c084fc !default;
198
- $helpButtonTextColor: #3b0764 !default;
199
- $helpButtonBorder: 1px solid #c084fc !default;
200
- $helpButtonHoverBg: #d8b4fe !default;
201
- $helpButtonTextHoverColor: $helpButtonTextColor !default;
202
- $helpButtonHoverBorderColor: #d8b4fe !default;
203
- $helpButtonActiveBg: #e9d5ff !default;
204
- $helpButtonTextActiveColor: $helpButtonTextColor !default;
205
- $helpButtonActiveBorderColor: #e9d5ff !default;
206
- $helpButtonFocusShadow: 0 0 0 1px scale-color($helpButtonBg, $lightness: 30%) !default;
207
-
208
- $dangerButtonBg: #f87171 !default;
209
- $dangerButtonTextColor: #450a0a !default;
210
- $dangerButtonBorder: 1px solid #f87171 !default;
211
- $dangerButtonHoverBg: #fca5a5 !default;
212
- $dangerButtonTextHoverColor: $dangerButtonTextColor !default;
213
- $dangerButtonHoverBorderColor: #fca5a5 !default;
214
- $dangerButtonActiveBg: #fecaca !default;
215
- $dangerButtonTextActiveColor: $dangerButtonTextColor !default;
216
- $dangerButtonActiveBorderColor: #fecaca !default;
217
- $dangerButtonFocusShadow: 0 0 0 1px
218
- scale-color($dangerButtonBg, $lightness: 30%) !default;
219
-
220
- $contrastButtonBg: #ffffff !default;
221
- $contrastButtonTextColor: $shade900 !default;
222
- $contrastButtonBorder: 1px solid $contrastButtonBg !default;
223
- $contrastButtonHoverBg: #f3f4f6 !default;
224
- $contrastButtonTextHoverColor: $contrastButtonTextColor !default;
225
- $contrastButtonHoverBorderColor: #f3f4f6 !default;
226
- $contrastButtonActiveBg: #e5e7eb !default;
227
- $contrastButtonTextActiveColor: $contrastButtonTextColor !default;
228
- $contrastButtonActiveBorderColor: #e5e7eb !default;
229
- $contrastButtonFocusShadow: none !default;
230
-
231
- $linkButtonColor: $primaryColor !default;
232
- $linkButtonHoverColor: $primaryColor !default;
233
- $linkButtonTextHoverDecoration: underline !default;
234
- $linkButtonFocusShadow: 0 0 0 1px $focusOutlineColor !default;
235
-
236
- //checkbox
237
- $checkboxWidth: 22px !default;
238
- $checkboxHeight: 22px !default;
239
- $checkboxBorder: 2px solid $shade600 !default;
240
- $checkboxIconFontSize: 14px !default;
241
- $checkboxActiveBorderColor: $primaryColor !default;
242
- $checkboxActiveBg: $primaryColor !default;
243
- $checkboxIconActiveColor: $primaryTextColor !default;
244
- $checkboxActiveHoverBg: $primaryLighterColor !default;
245
- $checkboxIconActiveHoverColor: $primaryTextColor !default;
246
- $checkboxActiveHoverBorderColor: $primaryLighterColor !default;
247
-
248
- //radiobutton
249
- $radiobuttonWidth: 22px !default;
250
- $radiobuttonHeight: 22px !default;
251
- $radiobuttonBorder: 2px solid $shade600 !default;
252
- $radiobuttonIconSize: 12px !default;
253
- $radiobuttonActiveBorderColor: $primaryColor !default;
254
- $radiobuttonActiveBg: $primaryColor !default;
255
- $radiobuttonIconActiveColor: $primaryTextColor !default;
256
- $radiobuttonActiveHoverBg: $primaryLighterColor !default;
257
- $radiobuttonIconActiveHoverColor: $primaryTextColor !default;
258
- $radiobuttonActiveHoverBorderColor: $primaryLighterColor !default;
259
-
260
- //colorpicker
261
- $colorPickerPreviewWidth: 2rem !default;
262
- $colorPickerPreviewHeight: 2rem !default;
263
- $colorPickerBg: $shade800 !default;
264
- $colorPickerBorder: 1px solid $shade600 !default;
265
- $colorPickerHandleColor: $shade000 !default;
266
-
267
- //togglebutton
268
- $toggleButtonBg: $shade800 !default;
269
- $toggleButtonBorder: 1px solid $shade600 !default;
270
- $toggleButtonTextColor: $shade000 !default;
271
- $toggleButtonIconColor: $shade100 !default;
272
- $toggleButtonHoverBg: $hoverBg !default;
273
- $toggleButtonHoverBorderColor: $shade600 !default;
274
- $toggleButtonTextHoverColor: $shade000 !default;
275
- $toggleButtonIconHoverColor: $shade100 !default;
276
- $toggleButtonActiveBg: $primaryColor !default;
277
- $toggleButtonActiveBorderColor: $primaryColor !default;
278
- $toggleButtonTextActiveColor: $primaryTextColor !default;
279
- $toggleButtonIconActiveColor: $primaryTextColor !default;
280
- $toggleButtonActiveHoverBg: $primaryLightColor !default;
281
- $toggleButtonActiveHoverBorderColor: $primaryLightColor !default;
282
- $toggleButtonTextActiveHoverColor: $primaryTextColor !default;
283
- $toggleButtonIconActiveHoverColor: $primaryTextColor !default;
284
-
285
- //inplace
286
- $inplacePadding: $inputPadding !default;
287
- $inplaceHoverBg: $hoverBg !default;
288
- $inplaceTextHoverColor: $shade000 !default;
289
-
290
- //rating
291
- $ratingIconFontSize: 1.143rem !default;
292
- $ratingCancelIconColor: #f48fb1 !default;
293
- $ratingCancelIconHoverColor: #f48fb1 !default;
294
- $ratingStarIconOffColor: $shade000 !default;
295
- $ratingStarIconOnColor: $primaryColor !default;
296
- $ratingStarIconHoverColor: $primaryColor !default;
297
-
298
- //slider
299
- $sliderBg: $shade600 !default;
300
- $sliderBorder: 0 none !default;
301
- $sliderHorizontalHeight: 0.286rem !default;
302
- $sliderVerticalWidth: 0.286rem !default;
303
- $sliderHandleWidth: 1.143rem !default;
304
- $sliderHandleHeight: 1.143rem !default;
305
- $sliderHandleBg: $shade600 !default;
306
- $sliderHandleBorder: 2px solid $primaryColor !default;
307
- $sliderHandleBorderRadius: 50% !default;
308
- $sliderHandleHoverBorderColor: $primaryColor !default;
309
- $sliderHandleHoverBg: $primaryColor !default;
310
- $sliderRangeBg: $primaryColor !default;
311
-
312
- //calendar
313
- $calendarTableMargin: 0.5rem 0 !default;
314
- $calendarPadding: 0.5rem !default;
315
- $calendarBg: $shade800 !default;
316
- $calendarInlineBg: $calendarBg !default;
317
- $calendarTextColor: $shade000 !default;
318
- $calendarBorder: $inputListBorder !default;
319
- $calendarOverlayBorder: $inputOverlayBorder !default;
320
-
321
- $calendarHeaderPadding: 0.5rem !default;
322
- $calendarHeaderBg: $shade800 !default;
323
- $calendarInlineHeaderBg: $calendarBg !default;
324
- $calendarHeaderBorder: 1px solid $shade600 !default;
325
- $calendarHeaderTextColor: $shade000 !default;
326
- $calendarHeaderFontWeight: 700 !default;
327
- $calendarHeaderCellPadding: 0.5rem !default;
328
- $calendarMonthYearHeaderHoverTextColor: $primaryColor !default;
329
-
330
- $calendarCellDatePadding: 0.5rem !default;
331
- $calendarCellDateWidth: 2.5rem !default;
332
- $calendarCellDateHeight: 2.5rem !default;
333
- $calendarCellDateBorderRadius: 50% !default;
334
- $calendarCellDateBorder: 1px solid transparent !default;
335
- $calendarCellDateHoverBg: $hoverBg !default;
336
- $calendarCellDateTodayBg: transparent !default;
337
- $calendarCellDateTodayBorderColor: transparent !default;
338
- $calendarCellDateTodayTextColor: $primaryColor !default;
339
-
340
- $calendarButtonBarPadding: 1rem 0 !default;
341
- $calendarTimePickerPadding: 0.5rem !default;
342
- $calendarTimePickerElementPadding: 0 0.5rem !default;
343
- $calendarTimePickerTimeFontSize: 1.25rem !default;
344
-
345
- $calendarBreakpoint: 769px !default;
346
- $calendarCellDatePaddingSM: 0 !default;
347
-
348
- //input switch
349
- $inputSwitchWidth: 3rem !default;
350
- $inputSwitchHeight: 1.75rem !default;
351
- $inputSwitchBorderRadius: 30px !default;
352
- $inputSwitchHandleWidth: 1.25rem !default;
353
- $inputSwitchHandleHeight: 1.25rem !default;
354
- $inputSwitchHandleBorderRadius: 50% !default;
355
- $inputSwitchSliderPadding: 0.25rem !default;
356
- $inputSwitchSliderOffBg: $shade500 !default;
357
- $inputSwitchHandleOffBg: $shade100 !default;
358
- $inputSwitchSliderOffHoverBg: $shade600 !default;
359
- $inputSwitchSliderOnBg: $primaryColor !default;
360
- $inputSwitchSliderOnHoverBg: $primaryLightColor !default;
361
- $inputSwitchHandleOnBg: $primaryTextColor !default;
362
-
363
- //panel
364
- $panelHeaderBorderColor: $shade600 !default;
365
- $panelHeaderBorder: 1px solid $shade600 !default;
366
- $panelHeaderBg: $shade800 !default;
367
- $panelHeaderTextColor: $shade000 !default;
368
- $panelHeaderFontWeight: 700 !default;
369
- $panelHeaderPadding: 0.75rem !default;
370
- $panelToggleableHeaderPadding: 0.75rem 1.25rem !default;
371
-
372
- $panelHeaderHoverBg: $hoverBg !default;
373
- $panelHeaderHoverBorderColor: $shade600 !default;
374
- $panelHeaderTextHoverColor: $shade000 !default;
375
-
376
- $panelContentBorderColor: $shade600 !default;
377
- $panelContentBorder: 1px solid $shade600 !default;
378
- $panelContentBg: $shade800 !default;
379
- $panelContentEvenRowBg: #1c2532 !default;
380
- $panelContentTextColor: $shade000 !default;
381
- $panelContentPadding: 0.75rem !default;
382
-
383
- $panelFooterBorder: 1px solid $shade600 !default;
384
- $panelFooterBg: $shade800 !default;
385
- $panelFooterTextColor: $shade000 !default;
386
- $panelFooterPadding: 0.75rem 1.25rem !default;
387
-
388
- //accordion
389
- $accordionSpacing: 4px !default;
390
- $accordionHeaderBorder: $panelHeaderBorder !default;
391
- $accordionHeaderBg: $panelHeaderBg !default;
392
- $accordionHeaderTextColor: $panelHeaderTextColor !default;
393
- $accordionHeaderFontWeight: $panelHeaderFontWeight !default;
394
- $accordionHeaderPadding: $panelHeaderPadding !default;
395
-
396
- $accordionHeaderHoverBg: $hoverBg !default;
397
- $accordionHeaderHoverBorderColor: $shade600 !default;
398
- $accordionHeaderTextHoverColor: $shade000 !default;
399
-
400
- $accordionHeaderActiveBg: $panelHeaderBg !default;
401
- $accordionHeaderActiveBorderColor: $shade600 !default;
402
- $accordionHeaderTextActiveColor: $shade000 !default;
403
-
404
- $accordionHeaderActiveHoverBg: $hoverBg !default;
405
- $accordionHeaderActiveHoverBorderColor: $shade600 !default;
406
- $accordionHeaderTextActiveHoverColor: $shade000 !default;
407
-
408
- $accordionContentBorder: $panelContentBorder !default;
409
- $accordionContentBg: $panelContentBg !default;
410
- $accordionContentTextColor: $panelContentTextColor !default;
411
- $accordionContentPadding: $panelContentPadding !default;
412
-
413
- //tabview
414
- $tabviewNavBorder: 1px solid $shade600 !default;
415
- $tabviewNavBorderWidth: 0 0 2px 0 !default;
416
- $tabviewNavBg: transparent !default;
417
-
418
- $tabviewHeaderSpacing: 0 !default;
419
- $tabviewHeaderBorder: solid $shade600 !default;
420
- $tabviewHeaderBorderWidth: 0 0 2px 0 !default;
421
- $tabviewHeaderBorderColor: transparent transparent $shade600 transparent !default;
422
- $tabviewHeaderBg: $shade800 !default;
423
- $tabviewHeaderTextColor: $shade100 !default;
424
- $tabviewHeaderFontWeight: $panelHeaderFontWeight !default;
425
- $tabviewHeaderPadding: $panelHeaderPadding !default;
426
- $tabviewHeaderMargin: 0 0 -2px 0 !default;
427
-
428
- $tabviewHeaderHoverBg: $shade800 !default;
429
- $tabviewHeaderHoverBorderColor: $primaryColor !default;
430
- $tabviewHeaderTextHoverColor: $shade000 !default;
431
-
432
- $tabviewHeaderActiveBg: $shade800 !default;
433
- $tabviewHeaderActiveBorderColor: $primaryColor !default;
434
- $tabviewHeaderTextActiveColor: $primaryColor !default;
435
-
436
- $tabviewContentBorder: 0 none !default;
437
- $tabviewContentBg: $shade800 !default;
438
- $tabviewContentTextColor: $shade000 !default;
439
- $tabviewContentPadding: $panelContentPadding !default;
440
-
441
- //upload
442
- $fileUploadProgressBarHeight: 0.25rem !default;
443
- $fileUploadContentPadding: 2rem 1rem !default;
444
-
445
- //scrollpanel
446
- $scrollPanelTrackBorder: 0 none !default;
447
- $scrollPanelTrackBg: $shade600 !default;
448
-
449
- //card
450
- $cardBodyPadding: 0.75rem !default;
451
- $cardTitleFontSize: 1rem !default;
452
- $cardTitleFontWeight: 700 !default;
453
- $cardSubTitleFontWeight: 400 !default;
454
- $cardSubTitleColor: $shade100 !default;
455
- $cardContentPadding: 0.75rem 0 !default;
456
- $cardFooterPadding: 0.75rem 0 0 0 !default;
457
- $cardShadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14),
458
- 0 1px 3px 0 rgba(0, 0, 0, 0.12) !default;
459
-
460
- //editor
461
- $editorToolbarBg: $panelHeaderBg !default;
462
- $editorToolbarBorder: $panelHeaderBorder !default;
463
- $editorToolbarPadding: $panelHeaderPadding !default;
464
- $editorToolbarIconColor: $textSecondaryColor !default;
465
- $editorToolbarIconHoverColor: $textColor !default;
466
- $editorIconActiveColor: $primaryColor !default;
467
- $editorContentBorder: $panelContentBorder !default;
468
- $editorContentBg: $panelContentBg !default;
469
-
470
- //paginator
471
- $paginatorBg: $shade800 !default;
472
- $paginatorTextColor: $shade100 !default;
473
- $paginatorBorder: solid $shade600 !default;
474
- $paginatorBorderWidth: 1px !default;
475
- $paginatorPadding: 0.5rem 1rem !default;
476
- $paginatorElementWidth: $buttonIconOnlyWidth !default;
477
- $paginatorElementHeight: $buttonIconOnlyWidth !default;
478
- $paginatorElementBg: transparent !default;
479
- $paginatorElementBorder: 0 none !default;
480
- $paginatorElementIconColor: $shade100 !default;
481
- $paginatorElementHoverBg: $hoverBg !default;
482
- $paginatorElementHoverBorderColor: transparent !default;
483
- $paginatorElementIconHoverColor: $shade000 !default;
484
- $paginatorElementBorderRadius: $borderRadius !default;
485
- $paginatorElementMargin: 0.143rem !default;
486
- $paginatorElementPadding: 0 !default;
487
-
488
- //table
489
- $tableHeaderBorder: 1px solid $shade600 !default;
490
- $tableHeaderBorderWidth: 0 0 1px 0 !default;
491
- $tableHeaderBg: $shade800 !default;
492
- $tableHeaderTextColor: $shade100 !default;
493
- $tableHeaderFontWeight: 700 !default;
494
- $tableHeaderPadding: 1rem 1rem !default;
495
-
496
- $tableHeaderCellPadding: 1rem 1rem !default;
497
- $tableHeaderCellBg: $shade800 !default;
498
- $tableHeaderCellTextColor: $shade000 !default;
499
- $tableHeaderCellFontWeight: 700 !default;
500
- $tableHeaderCellBorder: 1px solid $shade600 !default;
501
- $tableHeaderCellBorderWidth: 0 0 1px 0 !default;
502
- $tableHeaderCellHoverBg: $hoverBg !default;
503
- $tableHeaderCellTextHoverColor: $shade000 !default;
504
- $tableHeaderCellIconColor: $shade100 !default;
505
- $tableHeaderCellIconHoverColor: $shade000 !default;
506
- $tableHeaderCellHighlightBg: $highlightBg !default;
507
- $tableHeaderCellHighlightTextColor: $highlightTextColor !default;
508
- $tableHeaderCellHighlightHoverBg: $highlightBg !default;
509
- $tableHeaderCellHighlightTextHoverColor: $highlightTextColor !default;
510
- $tableSortableColumnBadgeSize: 1.143rem !default;
511
-
512
- $tableBodyRowBg: $shade800 !default;
513
- $tableBodyRowTextColor: $shade000 !default;
514
- $tableBodyRowEvenBg: #1c2532 !default;
515
- $tableBodyRowHoverBg: $hoverBg !default;
516
- $tableBodyRowTextHoverColor: $shade000 !default;
517
- $tableBodyCellBorder: 1px solid $shade600 !default;
518
- $tableBodyCellBorderWidth: 0 0 1px 0 !default;
519
- $tableBodyCellPadding: 1rem 1rem !default;
520
-
521
- $tableFooterCellPadding: 1rem 1rem !default;
522
- $tableFooterCellBg: $shade800 !default;
523
- $tableFooterCellTextColor: $shade000 !default;
524
- $tableFooterCellFontWeight: 700 !default;
525
- $tableFooterCellBorder: 1px solid $shade600 !default;
526
- $tableFooterCellBorderWidth: 0 0 1px 0 !default;
527
- $tableResizerHelperBg: $primaryColor !default;
528
- $tableDragHelperBg: rgba($primaryColor, 0.16) !default;
529
-
530
- $tableFooterBorder: 1px solid $shade600 !default;
531
- $tableFooterBorderWidth: 0 0 1px 0 !default;
532
- $tableFooterBg: $shade800 !default;
533
- $tableFooterTextColor: $shade000 !default;
534
- $tableFooterFontWeight: 700 !default;
535
- $tableFooterPadding: 1rem 1rem !default;
536
-
537
- $tableCellContentAlignment: left !default;
538
- $tableTopPaginatorBorderWidth: 1px 0 1px 0 !default;
539
- $tableBottomPaginatorBorderWidth: 0 0 1px 0 !default;
540
-
541
- $tableScaleSM: 0.5 !default;
542
- $tableScaleLG: 1.25 !default;
543
-
544
- //dataview
545
- $dataViewContentPadding: 0 !default;
546
- $dataViewContentBorder: 0 none !default;
547
- $dataViewListItemBorder: solid $shade600 !default;
548
- $dataViewListItemBorderWidth: 0 0 1px 0 !default;
549
-
550
- //datascroller
551
- $dataScrollerContentPadding: 0 !default;
552
- $dataScrollerContentBorder: 0 none !default;
553
- $dataScrollerListItemBorder: solid $shade600 !default;
554
- $dataScrollerListItemBorderWidth: 0 0 1px 0 !default;
555
-
556
- //tree
557
- $treeContainerPadding: 0.286rem !default;
558
- $treeNodePadding: 0.143rem !default;
559
- $treeNodeContentPadding: 0.5rem !default;
560
- $treeNodeChildrenPadding: 0 0 0 1rem !default;
561
- $treeNodeIconColor: $shade100 !default;
562
-
563
- //timeline
564
- $timelineVerticalEventContentPadding: 0 1rem !default;
565
- $timelineHorizontalEventContentPadding: 1rem 0 !default;
566
- $timelineEventMarkerWidth: 1rem !default;
567
- $timelineEventMarkerHeight: 1rem !default;
568
- $timelineEventMarkerBorderRadius: 50% !default;
569
- $timelineEventMarkerBorder: 2px solid $primaryColor !default;
570
- $timelineEventMarkerBackground: $primaryTextColor !default;
571
- $timelineEventConnectorSize: 2px !default;
572
- $timelineEventColor: $shade600 !default;
573
-
574
- //org chart
575
- $organizationChartConnectorColor: $shade600 !default;
576
-
577
- //message
578
- $messageMargin: 1rem 0 !default;
579
- $messagePadding: 0.75rem 1rem !default;
580
- $messageBorderWidth: 0 0 0 6px !default;
581
- $messageIconFontSize: 1.5rem !default;
582
- $messageTextFontSize: 1rem !default;
583
- $messageTextFontWeight: 500 !default;
584
-
585
- //inline message
586
- $inlineMessagePadding: $inputPadding !default;
587
- $inlineMessageMargin: 0 !default;
588
- $inlineMessageIconFontSize: 1rem !default;
589
- $inlineMessageTextFontSize: 1rem !default;
590
- $inlineMessageBorderWidth: 1px !default;
591
-
592
- //toast
593
- $toastIconFontSize: 2rem !default;
594
- $toastMessageTextMargin: 0 0 0 1rem !default;
595
- $toastMargin: 0 0 1rem 0 !default;
596
- $toastPadding: 1rem !default;
597
- $toastBorderWidth: 0 0 0 6px !default;
598
- $toastShadow: none !default;
599
- $toastOpacity: 1 !default;
600
- $toastTitleFontWeight: 700 !default;
601
- $toastDetailMargin: $inlineSpacing 0 0 0 !default;
602
-
603
- //severities
604
- $infoMessageBg: rgba(59, 130, 246, 0.2) !default;
605
- $infoMessageBorder: solid #3b82f6 !default;
606
- $infoMessageTextColor: #93c5fd !default;
607
- $infoMessageIconColor: #93c5fd !default;
608
- $successMessageBg: rgba(16, 185, 129, 0.2) !default;
609
- $successMessageBorder: solid #10b981 !default;
610
- $successMessageTextColor: #6ee7b7 !default;
611
- $successMessageIconColor: #6ee7b7 !default;
612
- $warningMessageBg: rgba(234, 179, 8, 0.2) !default;
613
- $warningMessageBorder: solid #eab308 !default;
614
- $warningMessageTextColor: #fde047 !default;
615
- $warningMessageIconColor: #fde047 !default;
616
- $errorMessageBg: rgba(239, 68, 68, 0.2) !default;
617
- $errorMessageBorder: solid #ef4444 !default;
618
- $errorMessageTextColor: #fca5a5 !default;
619
- $errorMessageIconColor: #fca5a5 !default;
620
-
621
- //overlays
622
- $overlayContentBorder: 1px solid $shade600 !default;
623
- $overlayContentBg: $panelContentBg !default;
624
- $overlayContainerShadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2),
625
- 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12) !default;
626
-
627
- //dialog
628
- $dialogHeaderBg: $shade800 !default;
629
- $dialogHeaderBorder: 0 none !default;
630
- $dialogHeaderTextColor: $shade000 !default;
631
- $dialogHeaderFontWeight: 700 !default;
632
- $dialogHeaderFontSize: 1.25rem !default;
633
- $dialogHeaderPadding: 1.5rem !default;
634
- $dialogContentPadding: 0 1.5rem 2rem 1.5rem !default;
635
- $dialogFooterBorder: 0 none !default;
636
- $dialogFooterPadding: 0 1.5rem 1.5rem 1.5rem !default;
637
-
638
- //confirmpopup
639
- $confirmPopupContentPadding: $panelContentPadding !default;
640
- $confirmPopupFooterPadding: 0 1.25rem 1.25rem 1.25rem !default;
641
-
642
- //tooltip
643
- $tooltipBg: $shade600 !default;
644
- $tooltipTextColor: $shade000 !default;
645
- $tooltipPadding: $inputPadding !default;
646
-
647
- //steps
648
- $stepsItemBg: transparent !default;
649
- $stepsItemBorder: 0 none !default;
650
- $stepsItemTextColor: $shade100 !default;
651
- $stepsItemNumberWidth: 2rem !default;
652
- $stepsItemNumberHeight: 2rem !default;
653
- $stepsItemNumberFontSize: 1.143rem !default;
654
- $stepsItemNumberColor: $shade000 !default;
655
- $stepsItemNumberBorderRadius: 50% !default;
656
- $stepsItemActiveFontWeight: 700 !default;
657
-
658
- //progressbar
659
- $progressBarHeight: 1.5rem !default;
660
- $progressBarBorder: 0 none !default;
661
- $progressBarBg: $shade600 !default;
662
- $progressBarValueBg: $primaryColor !default;
663
- $progressBarValueTextColor: $primaryTextColor !default;
664
-
665
- //menu (e.g. menu, menubar, tieredmenu)
666
- $menuWidth: 12.5rem !default;
667
- $menuBg: $shade700 !default;
668
- $menuBorder: 1px solid $shade600 !default;
669
- $menuTextColor: $shade000 !default;
670
- $menuitemPadding: 0.75rem 1.25rem !default;
671
- $menuitemBorderRadius: 0 !default;
672
- $menuitemTextColor: $shade000 !default;
673
- $menuitemIconColor: $shade100 !default;
674
- $menuitemTextHoverColor: $shade000 !default;
675
- $menuitemIconHoverColor: $shade000 !default;
676
- $menuitemHoverBg: $hoverBg !default;
677
- $menuitemTextFocusColor: $shade000 !default;
678
- $menuitemIconFocusColor: $shade000 !default;
679
- $menuitemFocusBg: $shade600 !default;
680
- $menuitemTextActiveColor: $highlightTextColor !default;
681
- $menuitemIconActiveColor: $highlightTextColor !default;
682
- $menuitemActiveBg: $highlightBg !default;
683
- $menuitemActiveFocusBg: $highlightFocusBg !default;
684
- $menuitemSubmenuIconFontSize: 0.875rem !default;
685
- $submenuHeaderMargin: 0 !default;
686
- $submenuHeaderPadding: 0.75rem 1.25rem !default;
687
- $submenuHeaderBg: $shade700 !default;
688
- $submenuHeaderTextColor: $shade000 !default;
689
- $submenuHeaderBorderRadius: 0 !default;
690
- $submenuHeaderFontWeight: 700 !default;
691
- $overlayMenuBg: $menuBg !default;
692
- $overlayMenuBorder: 1px solid $shade600 !default;
693
- $overlayMenuShadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2),
694
- 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12) !default;
695
- $verticalMenuPadding: 0.25rem 0 !default;
696
- $menuSeparatorMargin: 0.25rem 0 !default;
697
-
698
- $breadcrumbPadding: 1rem !default;
699
- $breadcrumbBg: $menuBg !default;
700
- $breadcrumbBorder: $menuBorder !default;
701
- $breadcrumbItemTextColor: $menuitemTextColor !default;
702
- $breadcrumbItemIconColor: $menuitemIconColor !default;
703
- $breadcrumbLastItemTextColor: $menuitemTextColor !default;
704
- $breadcrumbLastItemIconColor: $menuitemIconColor !default;
705
- $breadcrumbSeparatorColor: $menuitemTextColor !default;
706
-
707
- $horizontalMenuPadding: 0.5rem !default;
708
- $horizontalMenuBg: $shade700 !default;
709
- $horizontalMenuBorder: $menuBorder !default;
710
- $horizontalMenuTextColor: $menuTextColor !default;
711
- $horizontalMenuRootMenuitemPadding: $menuitemPadding !default;
712
- $horizontalMenuRootMenuitemBorderRadius: $borderRadius !default;
713
- $horizontalMenuRootMenuitemTextColor: $menuitemTextColor !default;
714
- $horizontalMenuRootMenuitemIconColor: $menuitemIconColor !default;
715
- $horizontalMenuRootMenuitemTextHoverColor: $menuitemTextHoverColor !default;
716
- $horizontalMenuRootMenuitemIconHoverColor: $menuitemIconHoverColor !default;
717
- $horizontalMenuRootMenuitemHoverBg: $menuitemHoverBg !default;
718
- $horizontalMenuRootMenuitemTextActiveColor: $menuitemTextActiveColor !default;
719
- $horizontalMenuRootMenuitemIconActiveColor: $menuitemIconActiveColor !default;
720
- $horizontalMenuRootMenuitemActiveBg: $menuitemActiveBg !default;
721
-
722
- //badge and tag
723
- $badgeBg: $primaryColor !default;
724
- $badgeTextColor: $primaryTextColor !default;
725
- $badgeMinWidth: 1.5rem !default;
726
- $badgeHeight: 1.5rem !default;
727
- $badgeFontWeight: 700 !default;
728
- $badgeFontSize: 0.75rem !default;
729
-
730
- $tagPadding: 0.25rem 0.4rem !default;
731
-
732
- //carousel
733
- $carouselIndicatorsPadding: 1rem !default;
734
- $carouselIndicatorBg: $shade600 !default;
735
- $carouselIndicatorHoverBg: $hoverBg !default;
736
- $carouselIndicatorBorderRadius: 0 !default;
737
- $carouselIndicatorWidth: 2rem !default;
738
- $carouselIndicatorHeight: 0.5rem !default;
739
-
740
- //galleria
741
- $galleriaMaskBg: rgba(0, 0, 0, 0.9) !default;
742
- $galleriaCloseIconMargin: 0.5rem !default;
743
- $galleriaCloseIconFontSize: 2rem !default;
744
- $galleriaCloseIconBg: transparent !default;
745
- $galleriaCloseIconColor: #f8f9fa !default;
746
- $galleriaCloseIconHoverBg: rgba(255, 255, 255, 0.1) !default;
747
- $galleriaCloseIconHoverColor: #f8f9fa !default;
748
- $galleriaCloseIconWidth: 4rem !default;
749
- $galleriaCloseIconHeight: 4rem !default;
750
- $galleriaCloseIconBorderRadius: 50% !default;
751
-
752
- $galleriaItemNavigatorBg: transparent !default;
753
- $galleriaItemNavigatorColor: #f8f9fa !default;
754
- $galleriaItemNavigatorMargin: 0 0.5rem !default;
755
- $galleriaItemNavigatorFontSize: 2rem !default;
756
- $galleriaItemNavigatorHoverBg: rgba(255, 255, 255, 0.1) !default;
757
- $galleriaItemNavigatorHoverColor: #f8f9fa !default;
758
- $galleriaItemNavigatorWidth: 4rem !default;
759
- $galleriaItemNavigatorHeight: 4rem !default;
760
- $galleriaItemNavigatorBorderRadius: $borderRadius !default;
761
-
762
- $galleriaCaptionBg: rgba(0, 0, 0, 0.5) !default;
763
- $galleriaCaptionTextColor: #f8f9fa !default;
764
- $galleriaCaptionPadding: 1rem !default;
765
-
766
- $galleriaIndicatorsPadding: 1rem !default;
767
- $galleriaIndicatorBg: $shade600 !default;
768
- $galleriaIndicatorHoverBg: rgba(255, 255, 255, 0.1) !default;
769
- $galleriaIndicatorBorderRadius: 50% !default;
770
- $galleriaIndicatorWidth: 1rem !default;
771
- $galleriaIndicatorHeight: 1rem !default;
772
- $galleriaIndicatorsBgOnItem: rgba(0, 0, 0, 0.5) !default;
773
- $galleriaIndicatorBgOnItem: rgba(255, 255, 255, 0.4) !default;
774
- $galleriaIndicatorHoverBgOnItem: rgba(255, 255, 255, 0.6) !default;
775
-
776
- $galleriaThumbnailContainerBg: rgba(0, 0, 0, 0.9) !default;
777
- $galleriaThumbnailContainerPadding: 1rem 0.25rem !default;
778
- $galleriaThumbnailNavigatorBg: transparent !default;
779
- $galleriaThumbnailNavigatorColor: #f8f9fa !default;
780
- $galleriaThumbnailNavigatorHoverBg: rgba(255, 255, 255, 0.1) !default;
781
- $galleriaThumbnailNavigatorHoverColor: #f8f9fa !default;
782
- $galleriaThumbnailNavigatorBorderRadius: 50% !default;
783
- $galleriaThumbnailNavigatorWidth: 2rem !default;
784
- $galleriaThumbnailNavigatorHeight: 2rem !default;
785
-
786
- //divider
787
- $dividerHorizontalMargin: 1.25rem 0 !default;
788
- $dividerHorizontalPadding: 0 1.25rem !default;
789
- $dividerVerticalMargin: 0 1.25rem !default;
790
- $dividerVerticalPadding: 1.25rem 0 !default;
791
- $dividerSize: 1px !default;
792
- $dividerColor: $shade600 !default;
793
-
794
- //avatar
795
- $avatarBg: $shade600 !default;
796
- $avatarTextColor: $textColor !default;
797
-
798
- //chip
799
- $chipBg: $shade600 !default;
800
- $chipTextColor: $textColor !default;
801
- $chipBorderRadius: 16px !default;
802
- $chipFocusBg: $shade500 !default;
803
- $chipFocusTextColor: $textColor !default;
804
-
805
- //scrollTop
806
- $scrollTopBg: $highlightBg !default;
807
- $scrollTopHoverBg: scale-color($highlightBg, $alpha: 24%) !default;
808
- $scrollTopWidth: 3rem !default;
809
- $scrollTopHeight: 3rem !default;
810
- $scrollTopBorderRadius: 50% !default;
811
- $scrollTopFontSize: 1.5rem !default;
812
- $scrollTopTextColor: $highlightTextColor !default;
813
-
814
- //skeleton
815
- $skeletonBg: rgba(255, 255, 255, 0.06) !default;
816
- $skeletonAnimationBg: rgba(255, 255, 255, 0.04) !default;
817
-
818
- //splitter
819
- $splitterGutterBg: rgba(255, 255, 255, 0.03) !default;
820
- $splitterGutterHandleBg: $shade600 !default;
821
-
822
- //speeddial
823
- $speedDialButtonWidth: 4rem !default;
824
- $speedDialButtonHeight: 4rem !default;
825
- $speedDialButtonIconFontSize: 1.3rem !default;
826
- $speedDialActionWidth: 3rem !default;
827
- $speedDialActionHeight: 3rem !default;
828
- $speedDialActionBg: $shade000 !default;
829
- $speedDialActionHoverBg: $shade100 !default;
830
- $speedDialActionTextColor: $shade900 !default;
831
- $speedDialActionTextHoverColor: $shade900 !default;
832
-
833
- //dock
834
- $dockActionWidth: 4rem !default;
835
- $dockActionHeight: 4rem !default;
836
- $dockItemPadding: 0.5rem !default;
837
- $dockItemBorderRadius: $borderRadius !default;
838
- $dockCurrentItemMargin: 1.5rem !default;
839
- $dockFirstItemsMargin: 1.3rem !default;
840
- $dockSecondItemsMargin: 0.9rem !default;
841
- $dockBg: rgba(255, 255, 255, 0.1) !default;
842
- $dockBorder: 1px solid rgba(255, 255, 255, 0.2) !default;
843
- $dockPadding: 0.5rem 0.5rem !default;
844
- $dockBorderRadius: 0.5rem !default;
845
-
846
- //image
847
- $imageMaskBg: rgba(0, 0, 0, 0.9) !default;
848
- $imagePreviewToolbarPadding: 1rem !default;
849
- $imagePreviewIndicatorColor: #f8f9fa !default;
850
- $imagePreviewIndicatorBg: rgba(0, 0, 0, 0.5) !default;
851
- $imagePreviewActionIconBg: transparent !default;
852
- $imagePreviewActionIconColor: #f8f9fa !default;
853
- $imagePreviewActionIconHoverBg: rgba(255, 255, 255, 0.1) !default;
854
- $imagePreviewActionIconHoverColor: #f8f9fa !default;
855
- $imagePreviewActionIconWidth: 3rem !default;
856
- $imagePreviewActionIconHeight: 3rem !default;
857
- $imagePreviewActionIconFontSize: 1.5rem !default;
858
- $imagePreviewActionIconBorderRadius: 50% !default;
859
-
860
- :root {
861
- /* font-family: "Inter var", sans-serif; */
862
- font-family: "HyperlegibleNext var", sans-serif;
863
- font-feature-settings: "cv02", "cv03", "cv04", "cv11";
864
- font-variation-settings: normal;
865
- /* --font-family: "Inter var", sans-serif; */
866
- --font-family: "HyperlegibleNext var", sans-serif;
867
- --font-feature-settings: "cv02", "cv03", "cv04", "cv11";
868
- --surface-a: #{$shade800};
869
- --surface-b: #{$shade900};
870
- --surface-c: #{$hoverBg};
871
- --surface-d: #{$shade600};
872
- --surface-e: #{$shade800};
873
- --surface-f: #{$shade800};
874
- --text-color: #{$shade000};
875
- --text-color-secondary: #{$shade100};
876
- --primary-color: #{$primaryColor};
877
- --primary-color-text: #{$primaryTextColor};
878
- --surface-0: #111827;
879
- --surface-50: #1f2937;
880
- --surface-100: #374151;
881
- --surface-200: #4b5563;
882
- --surface-300: #6b7280;
883
- --surface-400: #9ca3af;
884
- --surface-500: #d1d5db;
885
- --surface-600: #e5e7eb;
886
- --surface-700: #f3f4f6;
887
- --surface-800: #f9fafb;
888
- --surface-900: #ffffff;
889
- --gray-50: #f9fafb;
890
- --gray-100: #f3f4f6;
891
- --gray-200: #e5e7eb;
892
- --gray-300: #d1d5db;
893
- --gray-400: #9ca3af;
894
- --gray-500: #6b7280;
895
- --gray-600: #4b5563;
896
- --gray-700: #374151;
897
- --gray-800: #1f2937;
898
- --gray-900: #111827;
899
- --content-padding: #{$panelContentPadding};
900
- --inline-spacing: #{$inlineSpacing};
901
- --border-radius: #{$borderRadius};
902
- --surface-ground: #111827;
903
- --surface-section: #111827;
904
- --surface-card: #1f2937;
905
- --surface-overlay: #1f2937;
906
- --surface-border: rgba(255, 255, 255, 0.1);
907
- --surface-hover: rgba(255, 255, 255, 0.03);
908
- --focus-ring: #{$focusShadow};
909
- --maskbg: #{$maskBg};
910
- --highlight-bg: #{$highlightBg};
911
- --highlight-text-color: #{$highlightTextColor};
912
- color-scheme: dark;
913
- }
1
+ $colors: (
2
+ "blue": #3b82f6,
3
+ "green": #22c55e,
4
+ "yellow": #eab308,
5
+ "cyan": #06b6d4,
6
+ "pink": #ec4899,
7
+ "indigo": #6366f1,
8
+ "teal": #14b8a6,
9
+ "orange": #f97316,
10
+ "bluegray": #64748b,
11
+ "purple": #a855f7,
12
+ "red": #ff3d32,
13
+ "primary": $primaryColor
14
+ );
15
+
16
+ //shades
17
+ $shade000: rgba(255, 255, 255, 0.87) !default; //text color
18
+ $shade100: rgba(255, 255, 255, 0.6) !default; //text secondary color
19
+ $shade500: #6b7280 !default;
20
+ $shade600: #424b57 !default; //input bg, border, divider
21
+ $shade700: #374151 !default; //menu bg
22
+ $shade800: #1f2937 !default; //elevated surface
23
+ $shade900: #111827 !default; //ground surface
24
+
25
+ $hoverBg: rgba(255, 255, 255, 0.03) !default;
26
+
27
+ //global
28
+ /* $fontFamily: "Inter var", sans-serif !default; */
29
+ $fontFamily: "HyperlegibleNext var", sans-serif !default;
30
+ $fontSize: 1rem !default;
31
+ $fontWeight: normal !default;
32
+ $textColor: $shade000 !default;
33
+ $textSecondaryColor: $shade100 !default;
34
+ $borderRadius: 6px !default;
35
+ $transitionDuration: 0.2s !default;
36
+ $formElementTransition: background-color $transitionDuration,
37
+ color $transitionDuration, border-color $transitionDuration,
38
+ box-shadow $transitionDuration !default;
39
+ $actionIconTransition: background-color $transitionDuration,
40
+ color $transitionDuration, box-shadow $transitionDuration !default;
41
+ $listItemTransition: box-shadow $transitionDuration !default;
42
+ $primeIconFontSize: 1rem !default;
43
+ $divider: 1px solid $shade600 !default;
44
+ $inlineSpacing: 0.5rem !default; //spacing between inline elements
45
+ $disabledOpacity: 0.4 !default; //opacity of a disabled item
46
+ $maskBg: rgba(0, 0, 0, 0.4) !default; //modal mask bg color
47
+ $loadingIconFontSize: 2rem !default;
48
+ $errorColor: #fca5a5 !default;
49
+
50
+ //scale
51
+ $scaleSM: 0.875 !default;
52
+ $scaleLG: 1.25 !default;
53
+
54
+ //focus
55
+ $focusOutlineColor: $primaryLightestColor !default;
56
+ $focusOutline: 0 none !default;
57
+ $focusOutlineOffset: 0 !default;
58
+ $focusShadow: 0 0 0 0.2rem $focusOutlineColor !default;
59
+
60
+ //action icons
61
+ $actionIconWidth: 2rem !default;
62
+ $actionIconHeight: 2rem !default;
63
+ $actionIconBg: transparent !default;
64
+ $actionIconBorder: 0 none !default;
65
+ $actionIconColor: $shade100 !default;
66
+ $actionIconHoverBg: $hoverBg !default;
67
+ $actionIconHoverBorderColor: transparent !default;
68
+ $actionIconHoverColor: $shade000 !default;
69
+ $actionIconBorderRadius: 50% !default;
70
+
71
+ //input field (e.g. inputtext, spinner, inputmask)
72
+ $inputPadding: 0.75rem 0.75rem !default;
73
+ $inputTextFontSize: 1rem !default;
74
+ $inputBg: $shade900 !default;
75
+ $inputTextColor: $shade000 !default;
76
+ $inputIconColor: $shade100 !default;
77
+ $inputBorder: 1px solid $shade600 !default;
78
+ $inputHoverBorderColor: $primaryColor !default;
79
+ $inputFocusBorderColor: $primaryColor !default;
80
+ $inputErrorBorderColor: $errorColor !default;
81
+ $inputPlaceholderTextColor: $shade100 !default;
82
+ $inputFilledBg: $shade600 !default;
83
+ $inputFilledHoverBg: $inputFilledBg !default;
84
+ $inputFilledFocusBg: $inputFilledBg !default;
85
+
86
+ //input groups
87
+ $inputGroupBg: $shade800 !default;
88
+ $inputGroupTextColor: $shade100 !default;
89
+ $inputGroupAddOnMinWidth: 3rem !default;
90
+
91
+ //input lists (e.g. dropdown, autocomplete, multiselect, orderlist)
92
+ $inputListBg: $shade800 !default;
93
+ $inputListTextColor: $shade000 !default;
94
+ $inputListBorder: $inputBorder !default;
95
+ $inputListPadding: 0.75rem 0 !default;
96
+ $inputListItemPadding: 0.75rem 1.25rem !default;
97
+ $inputListItemBg: transparent !default;
98
+ $inputListItemTextColor: $shade000 !default;
99
+ $inputListItemHoverBg: $hoverBg !default;
100
+ $inputListItemTextHoverColor: $shade000 !default;
101
+ $inputListItemTextFocusColor: $shade000 !default;
102
+ $inputListItemFocusBg: $shade600 !default;
103
+ $inputListItemBorder: 0 none !default;
104
+ $inputListItemBorderRadius: 0 !default;
105
+ $inputListItemMargin: 0 !default;
106
+ $inputListItemFocusShadow: inset 0 0 0 0.15rem $focusOutlineColor !default;
107
+ $inputListHeaderPadding: 0.75rem 1.25rem !default;
108
+ $inputListHeaderMargin: 0 !default;
109
+ $inputListHeaderBg: $shade800 !default;
110
+ $inputListHeaderTextColor: $shade000 !default;
111
+ $inputListHeaderBorder: 1px solid $shade600 !default;
112
+
113
+ //inputs with overlays (e.g. autocomplete, dropdown, multiselect)
114
+ $inputOverlayBg: $inputListBg !default;
115
+ $inputOverlayHeaderBg: $inputListHeaderBg !default;
116
+ $inputOverlayBorder: 1px solid $shade600 !default;
117
+ $inputOverlayShadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2),
118
+ 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12) !default;
119
+
120
+ //password
121
+ $passwordMeterBg: $shade600 !default;
122
+ $passwordWeakBg: #eb9a9c !default;
123
+ $passwordMediumBg: #ffcf91 !default;
124
+ $passwordStrongBg: #93deac !default;
125
+
126
+ //button
127
+ $buttonPadding: 0.75rem 1.25rem !default;
128
+ $buttonIconOnlyWidth: 3rem !default;
129
+ $buttonIconOnlyPadding: 0.75rem 0 !default;
130
+ $buttonBg: $primaryColor !default;
131
+ $buttonTextColor: $primaryTextColor !default;
132
+ $buttonBorder: 1px solid $primaryColor !default;
133
+ $buttonHoverBg: $primaryLightColor !default;
134
+ $buttonTextHoverColor: $primaryTextColor !default;
135
+ $buttonHoverBorderColor: $primaryLightColor !default;
136
+ $buttonActiveBg: $primaryLighterColor !default;
137
+ $buttonTextActiveColor: $primaryTextColor !default;
138
+ $buttonActiveBorderColor: $primaryLighterColor !default;
139
+ $raisedButtonShadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
140
+ 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12) !default;
141
+ $roundedButtonBorderRadius: 2rem !default;
142
+
143
+ $textButtonHoverBgOpacity: 0.04 !default;
144
+ $textButtonActiveBgOpacity: 0.16 !default;
145
+ $outlinedButtonBorder: 1px solid !default;
146
+ $plainButtonTextColor: $textSecondaryColor !default;
147
+ $plainButtonHoverBgColor: $hoverBg !default;
148
+ $plainButtonActiveBgColor: rgba(255, 255, 255, 0.16) !default;
149
+
150
+ $secondaryButtonBg: #94a3b8 !default;
151
+ $secondaryButtonTextColor: #020617 !default;
152
+ $secondaryButtonBorder: 1px solid #94a3b8 !default;
153
+ $secondaryButtonHoverBg: #cbd5e1 !default;
154
+ $secondaryButtonTextHoverColor: $secondaryButtonTextColor !default;
155
+ $secondaryButtonHoverBorderColor: #cbd5e1 !default;
156
+ $secondaryButtonActiveBg: #e2e8f0 !default;
157
+ $secondaryButtonTextActiveColor: $secondaryButtonTextColor !default;
158
+ $secondaryButtonActiveBorderColor: #e2e8f0 !default;
159
+ $secondaryButtonFocusShadow: 0 0 0 1px
160
+ scale-color($secondaryButtonBg, $lightness: 30%) !default;
161
+
162
+ $infoButtonBg: #38bdf8 !default;
163
+ $infoButtonTextColor: #082f49 !default;
164
+ $infoButtonBorder: 1px solid #38bdf8 !default;
165
+ $infoButtonHoverBg: #7dd3fc !default;
166
+ $infoButtonTextHoverColor: $infoButtonTextColor !default;
167
+ $infoButtonHoverBorderColor: #7dd3fc !default;
168
+ $infoButtonActiveBg: #bae6fd !default;
169
+ $infoButtonTextActiveColor: $infoButtonTextColor !default;
170
+ $infoButtonActiveBorderColor: #bae6fd !default;
171
+ $infoButtonFocusShadow: 0 0 0 1px scale-color($infoButtonBg, $lightness: 30%) !default;
172
+
173
+ $successButtonBg: #4ade80 !default;
174
+ $successButtonTextColor: #052e16 !default;
175
+ $successButtonBorder: 1px solid #4ade80 !default;
176
+ $successButtonHoverBg: #86efac !default;
177
+ $successButtonTextHoverColor: $successButtonTextColor !default;
178
+ $successButtonHoverBorderColor: #86efac !default;
179
+ $successButtonActiveBg: #bbf7d0 !default;
180
+ $successButtonTextActiveColor: $successButtonTextColor !default;
181
+ $successButtonActiveBorderColor: #bbf7d0 !default;
182
+ $successButtonFocusShadow: 0 0 0 1px
183
+ scale-color($successButtonBg, $lightness: 30%) !default;
184
+
185
+ $warningButtonBg: #fb923c !default;
186
+ $warningButtonTextColor: #431407 !default;
187
+ $warningButtonBorder: 1px solid #fb923c !default;
188
+ $warningButtonHoverBg: #fdba74 !default;
189
+ $warningButtonTextHoverColor: $warningButtonTextColor !default;
190
+ $warningButtonHoverBorderColor: #fdba74 !default;
191
+ $warningButtonActiveBg: #fed7aa !default;
192
+ $warningButtonTextActiveColor: $warningButtonTextColor !default;
193
+ $warningButtonActiveBorderColor: #fed7aa !default;
194
+ $warningButtonFocusShadow: 0 0 0 1px
195
+ scale-color($warningButtonBg, $lightness: 30%) !default;
196
+
197
+ $helpButtonBg: #c084fc !default;
198
+ $helpButtonTextColor: #3b0764 !default;
199
+ $helpButtonBorder: 1px solid #c084fc !default;
200
+ $helpButtonHoverBg: #d8b4fe !default;
201
+ $helpButtonTextHoverColor: $helpButtonTextColor !default;
202
+ $helpButtonHoverBorderColor: #d8b4fe !default;
203
+ $helpButtonActiveBg: #e9d5ff !default;
204
+ $helpButtonTextActiveColor: $helpButtonTextColor !default;
205
+ $helpButtonActiveBorderColor: #e9d5ff !default;
206
+ $helpButtonFocusShadow: 0 0 0 1px scale-color($helpButtonBg, $lightness: 30%) !default;
207
+
208
+ $dangerButtonBg: #f87171 !default;
209
+ $dangerButtonTextColor: #450a0a !default;
210
+ $dangerButtonBorder: 1px solid #f87171 !default;
211
+ $dangerButtonHoverBg: #fca5a5 !default;
212
+ $dangerButtonTextHoverColor: $dangerButtonTextColor !default;
213
+ $dangerButtonHoverBorderColor: #fca5a5 !default;
214
+ $dangerButtonActiveBg: #fecaca !default;
215
+ $dangerButtonTextActiveColor: $dangerButtonTextColor !default;
216
+ $dangerButtonActiveBorderColor: #fecaca !default;
217
+ $dangerButtonFocusShadow: 0 0 0 1px
218
+ scale-color($dangerButtonBg, $lightness: 30%) !default;
219
+
220
+ $contrastButtonBg: #ffffff !default;
221
+ $contrastButtonTextColor: $shade900 !default;
222
+ $contrastButtonBorder: 1px solid $contrastButtonBg !default;
223
+ $contrastButtonHoverBg: #f3f4f6 !default;
224
+ $contrastButtonTextHoverColor: $contrastButtonTextColor !default;
225
+ $contrastButtonHoverBorderColor: #f3f4f6 !default;
226
+ $contrastButtonActiveBg: #e5e7eb !default;
227
+ $contrastButtonTextActiveColor: $contrastButtonTextColor !default;
228
+ $contrastButtonActiveBorderColor: #e5e7eb !default;
229
+ $contrastButtonFocusShadow: none !default;
230
+
231
+ $linkButtonColor: $primaryColor !default;
232
+ $linkButtonHoverColor: $primaryColor !default;
233
+ $linkButtonTextHoverDecoration: underline !default;
234
+ $linkButtonFocusShadow: 0 0 0 1px $focusOutlineColor !default;
235
+
236
+ //checkbox
237
+ $checkboxWidth: 22px !default;
238
+ $checkboxHeight: 22px !default;
239
+ $checkboxBorder: 2px solid $shade600 !default;
240
+ $checkboxIconFontSize: 14px !default;
241
+ $checkboxActiveBorderColor: $primaryColor !default;
242
+ $checkboxActiveBg: $primaryColor !default;
243
+ $checkboxIconActiveColor: $primaryTextColor !default;
244
+ $checkboxActiveHoverBg: $primaryLighterColor !default;
245
+ $checkboxIconActiveHoverColor: $primaryTextColor !default;
246
+ $checkboxActiveHoverBorderColor: $primaryLighterColor !default;
247
+
248
+ //radiobutton
249
+ $radiobuttonWidth: 22px !default;
250
+ $radiobuttonHeight: 22px !default;
251
+ $radiobuttonBorder: 2px solid $shade600 !default;
252
+ $radiobuttonIconSize: 12px !default;
253
+ $radiobuttonActiveBorderColor: $primaryColor !default;
254
+ $radiobuttonActiveBg: $primaryColor !default;
255
+ $radiobuttonIconActiveColor: $primaryTextColor !default;
256
+ $radiobuttonActiveHoverBg: $primaryLighterColor !default;
257
+ $radiobuttonIconActiveHoverColor: $primaryTextColor !default;
258
+ $radiobuttonActiveHoverBorderColor: $primaryLighterColor !default;
259
+
260
+ //colorpicker
261
+ $colorPickerPreviewWidth: 2rem !default;
262
+ $colorPickerPreviewHeight: 2rem !default;
263
+ $colorPickerBg: $shade800 !default;
264
+ $colorPickerBorder: 1px solid $shade600 !default;
265
+ $colorPickerHandleColor: $shade000 !default;
266
+
267
+ //togglebutton
268
+ $toggleButtonBg: $shade800 !default;
269
+ $toggleButtonBorder: 1px solid $shade600 !default;
270
+ $toggleButtonTextColor: $shade000 !default;
271
+ $toggleButtonIconColor: $shade100 !default;
272
+ $toggleButtonHoverBg: $hoverBg !default;
273
+ $toggleButtonHoverBorderColor: $shade600 !default;
274
+ $toggleButtonTextHoverColor: $shade000 !default;
275
+ $toggleButtonIconHoverColor: $shade100 !default;
276
+ $toggleButtonActiveBg: $primaryColor !default;
277
+ $toggleButtonActiveBorderColor: $primaryColor !default;
278
+ $toggleButtonTextActiveColor: $primaryTextColor !default;
279
+ $toggleButtonIconActiveColor: $primaryTextColor !default;
280
+ $toggleButtonActiveHoverBg: $primaryLightColor !default;
281
+ $toggleButtonActiveHoverBorderColor: $primaryLightColor !default;
282
+ $toggleButtonTextActiveHoverColor: $primaryTextColor !default;
283
+ $toggleButtonIconActiveHoverColor: $primaryTextColor !default;
284
+
285
+ //inplace
286
+ $inplacePadding: $inputPadding !default;
287
+ $inplaceHoverBg: $hoverBg !default;
288
+ $inplaceTextHoverColor: $shade000 !default;
289
+
290
+ //rating
291
+ $ratingIconFontSize: 1.143rem !default;
292
+ $ratingCancelIconColor: #f48fb1 !default;
293
+ $ratingCancelIconHoverColor: #f48fb1 !default;
294
+ $ratingStarIconOffColor: $shade000 !default;
295
+ $ratingStarIconOnColor: $primaryColor !default;
296
+ $ratingStarIconHoverColor: $primaryColor !default;
297
+
298
+ //slider
299
+ $sliderBg: $shade600 !default;
300
+ $sliderBorder: 0 none !default;
301
+ $sliderHorizontalHeight: 0.286rem !default;
302
+ $sliderVerticalWidth: 0.286rem !default;
303
+ $sliderHandleWidth: 1.143rem !default;
304
+ $sliderHandleHeight: 1.143rem !default;
305
+ $sliderHandleBg: $shade600 !default;
306
+ $sliderHandleBorder: 2px solid $primaryColor !default;
307
+ $sliderHandleBorderRadius: 50% !default;
308
+ $sliderHandleHoverBorderColor: $primaryColor !default;
309
+ $sliderHandleHoverBg: $primaryColor !default;
310
+ $sliderRangeBg: $primaryColor !default;
311
+
312
+ //calendar
313
+ $calendarTableMargin: 0.5rem 0 !default;
314
+ $calendarPadding: 0.5rem !default;
315
+ $calendarBg: $shade800 !default;
316
+ $calendarInlineBg: $calendarBg !default;
317
+ $calendarTextColor: $shade000 !default;
318
+ $calendarBorder: $inputListBorder !default;
319
+ $calendarOverlayBorder: $inputOverlayBorder !default;
320
+
321
+ $calendarHeaderPadding: 0.5rem !default;
322
+ $calendarHeaderBg: $shade800 !default;
323
+ $calendarInlineHeaderBg: $calendarBg !default;
324
+ $calendarHeaderBorder: 1px solid $shade600 !default;
325
+ $calendarHeaderTextColor: $shade000 !default;
326
+ $calendarHeaderFontWeight: 700 !default;
327
+ $calendarHeaderCellPadding: 0.5rem !default;
328
+ $calendarMonthYearHeaderHoverTextColor: $primaryColor !default;
329
+
330
+ $calendarCellDatePadding: 0.5rem !default;
331
+ $calendarCellDateWidth: 2.5rem !default;
332
+ $calendarCellDateHeight: 2.5rem !default;
333
+ $calendarCellDateBorderRadius: 50% !default;
334
+ $calendarCellDateBorder: 1px solid transparent !default;
335
+ $calendarCellDateHoverBg: $hoverBg !default;
336
+ $calendarCellDateTodayBg: transparent !default;
337
+ $calendarCellDateTodayBorderColor: transparent !default;
338
+ $calendarCellDateTodayTextColor: $primaryColor !default;
339
+
340
+ $calendarButtonBarPadding: 1rem 0 !default;
341
+ $calendarTimePickerPadding: 0.5rem !default;
342
+ $calendarTimePickerElementPadding: 0 0.5rem !default;
343
+ $calendarTimePickerTimeFontSize: 1.25rem !default;
344
+
345
+ $calendarBreakpoint: 769px !default;
346
+ $calendarCellDatePaddingSM: 0 !default;
347
+
348
+ //input switch
349
+ $inputSwitchWidth: 3rem !default;
350
+ $inputSwitchHeight: 1.75rem !default;
351
+ $inputSwitchBorderRadius: 30px !default;
352
+ $inputSwitchHandleWidth: 1.25rem !default;
353
+ $inputSwitchHandleHeight: 1.25rem !default;
354
+ $inputSwitchHandleBorderRadius: 50% !default;
355
+ $inputSwitchSliderPadding: 0.25rem !default;
356
+ $inputSwitchSliderOffBg: $shade500 !default;
357
+ $inputSwitchHandleOffBg: $shade100 !default;
358
+ $inputSwitchSliderOffHoverBg: $shade600 !default;
359
+ $inputSwitchSliderOnBg: $primaryColor !default;
360
+ $inputSwitchSliderOnHoverBg: $primaryLightColor !default;
361
+ $inputSwitchHandleOnBg: $primaryTextColor !default;
362
+
363
+ //panel
364
+ $panelHeaderBorderColor: $shade600 !default;
365
+ $panelHeaderBorder: 1px solid $shade600 !default;
366
+ $panelHeaderBg: $shade800 !default;
367
+ $panelHeaderTextColor: $shade000 !default;
368
+ $panelHeaderFontWeight: 700 !default;
369
+ $panelHeaderPadding: 0.75rem !default;
370
+ $panelToggleableHeaderPadding: 0.75rem 1.25rem !default;
371
+
372
+ $panelHeaderHoverBg: $hoverBg !default;
373
+ $panelHeaderHoverBorderColor: $shade600 !default;
374
+ $panelHeaderTextHoverColor: $shade000 !default;
375
+
376
+ $panelContentBorderColor: $shade600 !default;
377
+ $panelContentBorder: 1px solid $shade600 !default;
378
+ $panelContentBg: $shade800 !default;
379
+ $panelContentEvenRowBg: #1c2532 !default;
380
+ $panelContentTextColor: $shade000 !default;
381
+ $panelContentPadding: 0.75rem !default;
382
+
383
+ $panelFooterBorder: 1px solid $shade600 !default;
384
+ $panelFooterBg: $shade800 !default;
385
+ $panelFooterTextColor: $shade000 !default;
386
+ $panelFooterPadding: 0.75rem 1.25rem !default;
387
+
388
+ //accordion
389
+ $accordionSpacing: 4px !default;
390
+ $accordionHeaderBorder: $panelHeaderBorder !default;
391
+ $accordionHeaderBg: $panelHeaderBg !default;
392
+ $accordionHeaderTextColor: $panelHeaderTextColor !default;
393
+ $accordionHeaderFontWeight: $panelHeaderFontWeight !default;
394
+ $accordionHeaderPadding: $panelHeaderPadding !default;
395
+
396
+ $accordionHeaderHoverBg: $hoverBg !default;
397
+ $accordionHeaderHoverBorderColor: $shade600 !default;
398
+ $accordionHeaderTextHoverColor: $shade000 !default;
399
+
400
+ $accordionHeaderActiveBg: $panelHeaderBg !default;
401
+ $accordionHeaderActiveBorderColor: $shade600 !default;
402
+ $accordionHeaderTextActiveColor: $shade000 !default;
403
+
404
+ $accordionHeaderActiveHoverBg: $hoverBg !default;
405
+ $accordionHeaderActiveHoverBorderColor: $shade600 !default;
406
+ $accordionHeaderTextActiveHoverColor: $shade000 !default;
407
+
408
+ $accordionContentBorder: $panelContentBorder !default;
409
+ $accordionContentBg: $panelContentBg !default;
410
+ $accordionContentTextColor: $panelContentTextColor !default;
411
+ $accordionContentPadding: $panelContentPadding !default;
412
+
413
+ //tabview
414
+ $tabviewNavBorder: 1px solid $shade600 !default;
415
+ $tabviewNavBorderWidth: 0 0 2px 0 !default;
416
+ $tabviewNavBg: transparent !default;
417
+
418
+ $tabviewHeaderSpacing: 0 !default;
419
+ $tabviewHeaderBorder: solid $shade600 !default;
420
+ $tabviewHeaderBorderWidth: 0 0 2px 0 !default;
421
+ $tabviewHeaderBorderColor: transparent transparent $shade600 transparent !default;
422
+ $tabviewHeaderBg: $shade800 !default;
423
+ $tabviewHeaderTextColor: $shade100 !default;
424
+ $tabviewHeaderFontWeight: $panelHeaderFontWeight !default;
425
+ $tabviewHeaderPadding: $panelHeaderPadding !default;
426
+ $tabviewHeaderMargin: 0 0 -2px 0 !default;
427
+
428
+ $tabviewHeaderHoverBg: $shade800 !default;
429
+ $tabviewHeaderHoverBorderColor: $primaryColor !default;
430
+ $tabviewHeaderTextHoverColor: $shade000 !default;
431
+
432
+ $tabviewHeaderActiveBg: $shade800 !default;
433
+ $tabviewHeaderActiveBorderColor: $primaryColor !default;
434
+ $tabviewHeaderTextActiveColor: $primaryColor !default;
435
+
436
+ $tabviewContentBorder: 0 none !default;
437
+ $tabviewContentBg: $shade800 !default;
438
+ $tabviewContentTextColor: $shade000 !default;
439
+ $tabviewContentPadding: $panelContentPadding !default;
440
+
441
+ //upload
442
+ $fileUploadProgressBarHeight: 0.25rem !default;
443
+ $fileUploadContentPadding: 2rem 1rem !default;
444
+
445
+ //scrollpanel
446
+ $scrollPanelTrackBorder: 0 none !default;
447
+ $scrollPanelTrackBg: $shade600 !default;
448
+
449
+ //card
450
+ $cardBodyPadding: 0.75rem !default;
451
+ $cardTitleFontSize: 1rem !default;
452
+ $cardTitleFontWeight: 700 !default;
453
+ $cardSubTitleFontWeight: 400 !default;
454
+ $cardSubTitleColor: $shade100 !default;
455
+ $cardContentPadding: 0.75rem 0 !default;
456
+ $cardFooterPadding: 0.75rem 0 0 0 !default;
457
+ $cardShadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14),
458
+ 0 1px 3px 0 rgba(0, 0, 0, 0.12) !default;
459
+
460
+ //editor
461
+ $editorToolbarBg: $panelHeaderBg !default;
462
+ $editorToolbarBorder: $panelHeaderBorder !default;
463
+ $editorToolbarPadding: $panelHeaderPadding !default;
464
+ $editorToolbarIconColor: $textSecondaryColor !default;
465
+ $editorToolbarIconHoverColor: $textColor !default;
466
+ $editorIconActiveColor: $primaryColor !default;
467
+ $editorContentBorder: $panelContentBorder !default;
468
+ $editorContentBg: $panelContentBg !default;
469
+
470
+ //paginator
471
+ $paginatorBg: $shade800 !default;
472
+ $paginatorTextColor: $shade100 !default;
473
+ $paginatorBorder: solid $shade600 !default;
474
+ $paginatorBorderWidth: 1px !default;
475
+ $paginatorPadding: 0.5rem 1rem !default;
476
+ $paginatorElementWidth: $buttonIconOnlyWidth !default;
477
+ $paginatorElementHeight: $buttonIconOnlyWidth !default;
478
+ $paginatorElementBg: transparent !default;
479
+ $paginatorElementBorder: 0 none !default;
480
+ $paginatorElementIconColor: $shade100 !default;
481
+ $paginatorElementHoverBg: $hoverBg !default;
482
+ $paginatorElementHoverBorderColor: transparent !default;
483
+ $paginatorElementIconHoverColor: $shade000 !default;
484
+ $paginatorElementBorderRadius: $borderRadius !default;
485
+ $paginatorElementMargin: 0.143rem !default;
486
+ $paginatorElementPadding: 0 !default;
487
+
488
+ //table
489
+ $tableHeaderBorder: 1px solid $shade600 !default;
490
+ $tableHeaderBorderWidth: 0 0 1px 0 !default;
491
+ $tableHeaderBg: $shade800 !default;
492
+ $tableHeaderTextColor: $shade100 !default;
493
+ $tableHeaderFontWeight: 700 !default;
494
+ $tableHeaderPadding: 1rem 1rem !default;
495
+
496
+ $tableHeaderCellPadding: 1rem 1rem !default;
497
+ $tableHeaderCellBg: $shade800 !default;
498
+ $tableHeaderCellTextColor: $shade000 !default;
499
+ $tableHeaderCellFontWeight: 700 !default;
500
+ $tableHeaderCellBorder: 1px solid $shade600 !default;
501
+ $tableHeaderCellBorderWidth: 0 0 1px 0 !default;
502
+ $tableHeaderCellHoverBg: $hoverBg !default;
503
+ $tableHeaderCellTextHoverColor: $shade000 !default;
504
+ $tableHeaderCellIconColor: $shade100 !default;
505
+ $tableHeaderCellIconHoverColor: $shade000 !default;
506
+ $tableHeaderCellHighlightBg: $highlightBg !default;
507
+ $tableHeaderCellHighlightTextColor: $highlightTextColor !default;
508
+ $tableHeaderCellHighlightHoverBg: $highlightBg !default;
509
+ $tableHeaderCellHighlightTextHoverColor: $highlightTextColor !default;
510
+ $tableSortableColumnBadgeSize: 1.143rem !default;
511
+
512
+ $tableBodyRowBg: $shade800 !default;
513
+ $tableBodyRowTextColor: $shade000 !default;
514
+ $tableBodyRowEvenBg: #1c2532 !default;
515
+ $tableBodyRowHoverBg: $hoverBg !default;
516
+ $tableBodyRowTextHoverColor: $shade000 !default;
517
+ $tableBodyCellBorder: 1px solid $shade600 !default;
518
+ $tableBodyCellBorderWidth: 0 0 1px 0 !default;
519
+ $tableBodyCellPadding: 1rem 1rem !default;
520
+
521
+ $tableFooterCellPadding: 1rem 1rem !default;
522
+ $tableFooterCellBg: $shade800 !default;
523
+ $tableFooterCellTextColor: $shade000 !default;
524
+ $tableFooterCellFontWeight: 700 !default;
525
+ $tableFooterCellBorder: 1px solid $shade600 !default;
526
+ $tableFooterCellBorderWidth: 0 0 1px 0 !default;
527
+ $tableResizerHelperBg: $primaryColor !default;
528
+ $tableDragHelperBg: rgba($primaryColor, 0.16) !default;
529
+
530
+ $tableFooterBorder: 1px solid $shade600 !default;
531
+ $tableFooterBorderWidth: 0 0 1px 0 !default;
532
+ $tableFooterBg: $shade800 !default;
533
+ $tableFooterTextColor: $shade000 !default;
534
+ $tableFooterFontWeight: 700 !default;
535
+ $tableFooterPadding: 1rem 1rem !default;
536
+
537
+ $tableCellContentAlignment: left !default;
538
+ $tableTopPaginatorBorderWidth: 1px 0 1px 0 !default;
539
+ $tableBottomPaginatorBorderWidth: 0 0 1px 0 !default;
540
+
541
+ $tableScaleSM: 0.5 !default;
542
+ $tableScaleLG: 1.25 !default;
543
+
544
+ //dataview
545
+ $dataViewContentPadding: 0 !default;
546
+ $dataViewContentBorder: 0 none !default;
547
+ $dataViewListItemBorder: solid $shade600 !default;
548
+ $dataViewListItemBorderWidth: 0 0 1px 0 !default;
549
+
550
+ //datascroller
551
+ $dataScrollerContentPadding: 0 !default;
552
+ $dataScrollerContentBorder: 0 none !default;
553
+ $dataScrollerListItemBorder: solid $shade600 !default;
554
+ $dataScrollerListItemBorderWidth: 0 0 1px 0 !default;
555
+
556
+ //tree
557
+ $treeContainerPadding: 0.286rem !default;
558
+ $treeNodePadding: 0.143rem !default;
559
+ $treeNodeContentPadding: 0.5rem !default;
560
+ $treeNodeChildrenPadding: 0 0 0 1rem !default;
561
+ $treeNodeIconColor: $shade100 !default;
562
+
563
+ //timeline
564
+ $timelineVerticalEventContentPadding: 0 1rem !default;
565
+ $timelineHorizontalEventContentPadding: 1rem 0 !default;
566
+ $timelineEventMarkerWidth: 1rem !default;
567
+ $timelineEventMarkerHeight: 1rem !default;
568
+ $timelineEventMarkerBorderRadius: 50% !default;
569
+ $timelineEventMarkerBorder: 2px solid $primaryColor !default;
570
+ $timelineEventMarkerBackground: $primaryTextColor !default;
571
+ $timelineEventConnectorSize: 2px !default;
572
+ $timelineEventColor: $shade600 !default;
573
+
574
+ //org chart
575
+ $organizationChartConnectorColor: $shade600 !default;
576
+
577
+ //message
578
+ $messageMargin: 1rem 0 !default;
579
+ $messagePadding: 0.75rem 1rem !default;
580
+ $messageBorderWidth: 0 0 0 6px !default;
581
+ $messageIconFontSize: 1.5rem !default;
582
+ $messageTextFontSize: 1rem !default;
583
+ $messageTextFontWeight: 500 !default;
584
+
585
+ //inline message
586
+ $inlineMessagePadding: $inputPadding !default;
587
+ $inlineMessageMargin: 0 !default;
588
+ $inlineMessageIconFontSize: 1rem !default;
589
+ $inlineMessageTextFontSize: 1rem !default;
590
+ $inlineMessageBorderWidth: 1px !default;
591
+
592
+ //toast
593
+ $toastIconFontSize: 2rem !default;
594
+ $toastMessageTextMargin: 0 0 0 1rem !default;
595
+ $toastMargin: 0 0 1rem 0 !default;
596
+ $toastPadding: 1rem !default;
597
+ $toastBorderWidth: 0 0 0 6px !default;
598
+ $toastShadow: none !default;
599
+ $toastOpacity: 1 !default;
600
+ $toastTitleFontWeight: 700 !default;
601
+ $toastDetailMargin: $inlineSpacing 0 0 0 !default;
602
+
603
+ //severities
604
+ $infoMessageBg: rgba(59, 130, 246, 0.2) !default;
605
+ $infoMessageBorder: solid #3b82f6 !default;
606
+ $infoMessageTextColor: #93c5fd !default;
607
+ $infoMessageIconColor: #93c5fd !default;
608
+ $successMessageBg: rgba(16, 185, 129, 0.2) !default;
609
+ $successMessageBorder: solid #10b981 !default;
610
+ $successMessageTextColor: #6ee7b7 !default;
611
+ $successMessageIconColor: #6ee7b7 !default;
612
+ $warningMessageBg: rgba(234, 179, 8, 0.2) !default;
613
+ $warningMessageBorder: solid #eab308 !default;
614
+ $warningMessageTextColor: #fde047 !default;
615
+ $warningMessageIconColor: #fde047 !default;
616
+ $errorMessageBg: rgba(239, 68, 68, 0.2) !default;
617
+ $errorMessageBorder: solid #ef4444 !default;
618
+ $errorMessageTextColor: #fca5a5 !default;
619
+ $errorMessageIconColor: #fca5a5 !default;
620
+
621
+ //overlays
622
+ $overlayContentBorder: 1px solid $shade600 !default;
623
+ $overlayContentBg: $panelContentBg !default;
624
+ $overlayContainerShadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2),
625
+ 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12) !default;
626
+
627
+ //dialog
628
+ $dialogHeaderBg: $shade800 !default;
629
+ $dialogHeaderBorder: 0 none !default;
630
+ $dialogHeaderTextColor: $shade000 !default;
631
+ $dialogHeaderFontWeight: 700 !default;
632
+ $dialogHeaderFontSize: 1.25rem !default;
633
+ $dialogHeaderPadding: 1.5rem !default;
634
+ $dialogContentPadding: 0 1.5rem 2rem 1.5rem !default;
635
+ $dialogFooterBorder: 0 none !default;
636
+ $dialogFooterPadding: 0 1.5rem 1.5rem 1.5rem !default;
637
+
638
+ //confirmpopup
639
+ $confirmPopupContentPadding: $panelContentPadding !default;
640
+ $confirmPopupFooterPadding: 0 1.25rem 1.25rem 1.25rem !default;
641
+
642
+ //tooltip
643
+ $tooltipBg: $shade600 !default;
644
+ $tooltipTextColor: $shade000 !default;
645
+ $tooltipPadding: $inputPadding !default;
646
+
647
+ //steps
648
+ $stepsItemBg: transparent !default;
649
+ $stepsItemBorder: 0 none !default;
650
+ $stepsItemTextColor: $shade100 !default;
651
+ $stepsItemNumberWidth: 2rem !default;
652
+ $stepsItemNumberHeight: 2rem !default;
653
+ $stepsItemNumberFontSize: 1.143rem !default;
654
+ $stepsItemNumberColor: $shade000 !default;
655
+ $stepsItemNumberBorderRadius: 50% !default;
656
+ $stepsItemActiveFontWeight: 700 !default;
657
+
658
+ //progressbar
659
+ $progressBarHeight: 1.5rem !default;
660
+ $progressBarBorder: 0 none !default;
661
+ $progressBarBg: $shade600 !default;
662
+ $progressBarValueBg: $primaryColor !default;
663
+ $progressBarValueTextColor: $primaryTextColor !default;
664
+
665
+ //menu (e.g. menu, menubar, tieredmenu)
666
+ $menuWidth: 12.5rem !default;
667
+ $menuBg: $shade700 !default;
668
+ $menuBorder: 1px solid $shade600 !default;
669
+ $menuTextColor: $shade000 !default;
670
+ $menuitemPadding: 0.75rem 1.25rem !default;
671
+ $menuitemBorderRadius: 0 !default;
672
+ $menuitemTextColor: $shade000 !default;
673
+ $menuitemIconColor: $shade100 !default;
674
+ $menuitemTextHoverColor: $shade000 !default;
675
+ $menuitemIconHoverColor: $shade000 !default;
676
+ $menuitemHoverBg: $hoverBg !default;
677
+ $menuitemTextFocusColor: $shade000 !default;
678
+ $menuitemIconFocusColor: $shade000 !default;
679
+ $menuitemFocusBg: $shade600 !default;
680
+ $menuitemTextActiveColor: $highlightTextColor !default;
681
+ $menuitemIconActiveColor: $highlightTextColor !default;
682
+ $menuitemActiveBg: $highlightBg !default;
683
+ $menuitemActiveFocusBg: $highlightFocusBg !default;
684
+ $menuitemSubmenuIconFontSize: 0.875rem !default;
685
+ $submenuHeaderMargin: 0 !default;
686
+ $submenuHeaderPadding: 0.75rem 1.25rem !default;
687
+ $submenuHeaderBg: $shade700 !default;
688
+ $submenuHeaderTextColor: $shade000 !default;
689
+ $submenuHeaderBorderRadius: 0 !default;
690
+ $submenuHeaderFontWeight: 700 !default;
691
+ $overlayMenuBg: $menuBg !default;
692
+ $overlayMenuBorder: 1px solid $shade600 !default;
693
+ $overlayMenuShadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2),
694
+ 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12) !default;
695
+ $verticalMenuPadding: 0.25rem 0 !default;
696
+ $menuSeparatorMargin: 0.25rem 0 !default;
697
+
698
+ $breadcrumbPadding: 1rem !default;
699
+ $breadcrumbBg: $menuBg !default;
700
+ $breadcrumbBorder: $menuBorder !default;
701
+ $breadcrumbItemTextColor: $menuitemTextColor !default;
702
+ $breadcrumbItemIconColor: $menuitemIconColor !default;
703
+ $breadcrumbLastItemTextColor: $menuitemTextColor !default;
704
+ $breadcrumbLastItemIconColor: $menuitemIconColor !default;
705
+ $breadcrumbSeparatorColor: $menuitemTextColor !default;
706
+
707
+ $horizontalMenuPadding: 0.5rem !default;
708
+ $horizontalMenuBg: $shade700 !default;
709
+ $horizontalMenuBorder: $menuBorder !default;
710
+ $horizontalMenuTextColor: $menuTextColor !default;
711
+ $horizontalMenuRootMenuitemPadding: $menuitemPadding !default;
712
+ $horizontalMenuRootMenuitemBorderRadius: $borderRadius !default;
713
+ $horizontalMenuRootMenuitemTextColor: $menuitemTextColor !default;
714
+ $horizontalMenuRootMenuitemIconColor: $menuitemIconColor !default;
715
+ $horizontalMenuRootMenuitemTextHoverColor: $menuitemTextHoverColor !default;
716
+ $horizontalMenuRootMenuitemIconHoverColor: $menuitemIconHoverColor !default;
717
+ $horizontalMenuRootMenuitemHoverBg: $menuitemHoverBg !default;
718
+ $horizontalMenuRootMenuitemTextActiveColor: $menuitemTextActiveColor !default;
719
+ $horizontalMenuRootMenuitemIconActiveColor: $menuitemIconActiveColor !default;
720
+ $horizontalMenuRootMenuitemActiveBg: $menuitemActiveBg !default;
721
+
722
+ //badge and tag
723
+ $badgeBg: $primaryColor !default;
724
+ $badgeTextColor: $primaryTextColor !default;
725
+ $badgeMinWidth: 1.5rem !default;
726
+ $badgeHeight: 1.5rem !default;
727
+ $badgeFontWeight: 700 !default;
728
+ $badgeFontSize: 0.75rem !default;
729
+
730
+ $tagPadding: 0.25rem 0.4rem !default;
731
+
732
+ //carousel
733
+ $carouselIndicatorsPadding: 1rem !default;
734
+ $carouselIndicatorBg: $shade600 !default;
735
+ $carouselIndicatorHoverBg: $hoverBg !default;
736
+ $carouselIndicatorBorderRadius: 0 !default;
737
+ $carouselIndicatorWidth: 2rem !default;
738
+ $carouselIndicatorHeight: 0.5rem !default;
739
+
740
+ //galleria
741
+ $galleriaMaskBg: rgba(0, 0, 0, 0.9) !default;
742
+ $galleriaCloseIconMargin: 0.5rem !default;
743
+ $galleriaCloseIconFontSize: 2rem !default;
744
+ $galleriaCloseIconBg: transparent !default;
745
+ $galleriaCloseIconColor: #f8f9fa !default;
746
+ $galleriaCloseIconHoverBg: rgba(255, 255, 255, 0.1) !default;
747
+ $galleriaCloseIconHoverColor: #f8f9fa !default;
748
+ $galleriaCloseIconWidth: 4rem !default;
749
+ $galleriaCloseIconHeight: 4rem !default;
750
+ $galleriaCloseIconBorderRadius: 50% !default;
751
+
752
+ $galleriaItemNavigatorBg: transparent !default;
753
+ $galleriaItemNavigatorColor: #f8f9fa !default;
754
+ $galleriaItemNavigatorMargin: 0 0.5rem !default;
755
+ $galleriaItemNavigatorFontSize: 2rem !default;
756
+ $galleriaItemNavigatorHoverBg: rgba(255, 255, 255, 0.1) !default;
757
+ $galleriaItemNavigatorHoverColor: #f8f9fa !default;
758
+ $galleriaItemNavigatorWidth: 4rem !default;
759
+ $galleriaItemNavigatorHeight: 4rem !default;
760
+ $galleriaItemNavigatorBorderRadius: $borderRadius !default;
761
+
762
+ $galleriaCaptionBg: rgba(0, 0, 0, 0.5) !default;
763
+ $galleriaCaptionTextColor: #f8f9fa !default;
764
+ $galleriaCaptionPadding: 1rem !default;
765
+
766
+ $galleriaIndicatorsPadding: 1rem !default;
767
+ $galleriaIndicatorBg: $shade600 !default;
768
+ $galleriaIndicatorHoverBg: rgba(255, 255, 255, 0.1) !default;
769
+ $galleriaIndicatorBorderRadius: 50% !default;
770
+ $galleriaIndicatorWidth: 1rem !default;
771
+ $galleriaIndicatorHeight: 1rem !default;
772
+ $galleriaIndicatorsBgOnItem: rgba(0, 0, 0, 0.5) !default;
773
+ $galleriaIndicatorBgOnItem: rgba(255, 255, 255, 0.4) !default;
774
+ $galleriaIndicatorHoverBgOnItem: rgba(255, 255, 255, 0.6) !default;
775
+
776
+ $galleriaThumbnailContainerBg: rgba(0, 0, 0, 0.9) !default;
777
+ $galleriaThumbnailContainerPadding: 1rem 0.25rem !default;
778
+ $galleriaThumbnailNavigatorBg: transparent !default;
779
+ $galleriaThumbnailNavigatorColor: #f8f9fa !default;
780
+ $galleriaThumbnailNavigatorHoverBg: rgba(255, 255, 255, 0.1) !default;
781
+ $galleriaThumbnailNavigatorHoverColor: #f8f9fa !default;
782
+ $galleriaThumbnailNavigatorBorderRadius: 50% !default;
783
+ $galleriaThumbnailNavigatorWidth: 2rem !default;
784
+ $galleriaThumbnailNavigatorHeight: 2rem !default;
785
+
786
+ //divider
787
+ $dividerHorizontalMargin: 1.25rem 0 !default;
788
+ $dividerHorizontalPadding: 0 1.25rem !default;
789
+ $dividerVerticalMargin: 0 1.25rem !default;
790
+ $dividerVerticalPadding: 1.25rem 0 !default;
791
+ $dividerSize: 1px !default;
792
+ $dividerColor: $shade600 !default;
793
+
794
+ //avatar
795
+ $avatarBg: $shade600 !default;
796
+ $avatarTextColor: $textColor !default;
797
+
798
+ //chip
799
+ $chipBg: $shade600 !default;
800
+ $chipTextColor: $textColor !default;
801
+ $chipBorderRadius: 16px !default;
802
+ $chipFocusBg: $shade500 !default;
803
+ $chipFocusTextColor: $textColor !default;
804
+
805
+ //scrollTop
806
+ $scrollTopBg: $highlightBg !default;
807
+ $scrollTopHoverBg: scale-color($highlightBg, $alpha: 24%) !default;
808
+ $scrollTopWidth: 3rem !default;
809
+ $scrollTopHeight: 3rem !default;
810
+ $scrollTopBorderRadius: 50% !default;
811
+ $scrollTopFontSize: 1.5rem !default;
812
+ $scrollTopTextColor: $highlightTextColor !default;
813
+
814
+ //skeleton
815
+ $skeletonBg: rgba(255, 255, 255, 0.06) !default;
816
+ $skeletonAnimationBg: rgba(255, 255, 255, 0.04) !default;
817
+
818
+ //splitter
819
+ $splitterGutterBg: rgba(255, 255, 255, 0.03) !default;
820
+ $splitterGutterHandleBg: $shade600 !default;
821
+
822
+ //speeddial
823
+ $speedDialButtonWidth: 4rem !default;
824
+ $speedDialButtonHeight: 4rem !default;
825
+ $speedDialButtonIconFontSize: 1.3rem !default;
826
+ $speedDialActionWidth: 3rem !default;
827
+ $speedDialActionHeight: 3rem !default;
828
+ $speedDialActionBg: $shade000 !default;
829
+ $speedDialActionHoverBg: $shade100 !default;
830
+ $speedDialActionTextColor: $shade900 !default;
831
+ $speedDialActionTextHoverColor: $shade900 !default;
832
+
833
+ //dock
834
+ $dockActionWidth: 4rem !default;
835
+ $dockActionHeight: 4rem !default;
836
+ $dockItemPadding: 0.5rem !default;
837
+ $dockItemBorderRadius: $borderRadius !default;
838
+ $dockCurrentItemMargin: 1.5rem !default;
839
+ $dockFirstItemsMargin: 1.3rem !default;
840
+ $dockSecondItemsMargin: 0.9rem !default;
841
+ $dockBg: rgba(255, 255, 255, 0.1) !default;
842
+ $dockBorder: 1px solid rgba(255, 255, 255, 0.2) !default;
843
+ $dockPadding: 0.5rem 0.5rem !default;
844
+ $dockBorderRadius: 0.5rem !default;
845
+
846
+ //image
847
+ $imageMaskBg: rgba(0, 0, 0, 0.9) !default;
848
+ $imagePreviewToolbarPadding: 1rem !default;
849
+ $imagePreviewIndicatorColor: #f8f9fa !default;
850
+ $imagePreviewIndicatorBg: rgba(0, 0, 0, 0.5) !default;
851
+ $imagePreviewActionIconBg: transparent !default;
852
+ $imagePreviewActionIconColor: #f8f9fa !default;
853
+ $imagePreviewActionIconHoverBg: rgba(255, 255, 255, 0.1) !default;
854
+ $imagePreviewActionIconHoverColor: #f8f9fa !default;
855
+ $imagePreviewActionIconWidth: 3rem !default;
856
+ $imagePreviewActionIconHeight: 3rem !default;
857
+ $imagePreviewActionIconFontSize: 1.5rem !default;
858
+ $imagePreviewActionIconBorderRadius: 50% !default;
859
+
860
+ :root {
861
+ /* font-family: "Inter var", sans-serif; */
862
+ font-family: "HyperlegibleNext var", sans-serif;
863
+ font-feature-settings: "cv02", "cv03", "cv04", "cv11";
864
+ font-variation-settings: normal;
865
+ /* --font-family: "Inter var", sans-serif; */
866
+ --font-family: "HyperlegibleNext var", sans-serif;
867
+ --font-feature-settings: "cv02", "cv03", "cv04", "cv11";
868
+ --surface-a: #{$shade800};
869
+ --surface-b: #{$shade900};
870
+ --surface-c: #{$hoverBg};
871
+ --surface-d: #{$shade600};
872
+ --surface-e: #{$shade800};
873
+ --surface-f: #{$shade800};
874
+ --text-color: #{$shade000};
875
+ --text-color-secondary: #{$shade100};
876
+ --primary-color: #{$primaryColor};
877
+ --primary-color-text: #{$primaryTextColor};
878
+ --surface-0: #111827;
879
+ --surface-50: #1f2937;
880
+ --surface-100: #374151;
881
+ --surface-200: #4b5563;
882
+ --surface-300: #6b7280;
883
+ --surface-400: #9ca3af;
884
+ --surface-500: #d1d5db;
885
+ --surface-600: #e5e7eb;
886
+ --surface-700: #f3f4f6;
887
+ --surface-800: #f9fafb;
888
+ --surface-900: #ffffff;
889
+ --gray-50: #f9fafb;
890
+ --gray-100: #f3f4f6;
891
+ --gray-200: #e5e7eb;
892
+ --gray-300: #d1d5db;
893
+ --gray-400: #9ca3af;
894
+ --gray-500: #6b7280;
895
+ --gray-600: #4b5563;
896
+ --gray-700: #374151;
897
+ --gray-800: #1f2937;
898
+ --gray-900: #111827;
899
+ --content-padding: #{$panelContentPadding};
900
+ --inline-spacing: #{$inlineSpacing};
901
+ --border-radius: #{$borderRadius};
902
+ --surface-ground: #111827;
903
+ --surface-section: #111827;
904
+ --surface-card: #1f2937;
905
+ --surface-overlay: #1f2937;
906
+ --surface-border: rgba(255, 255, 255, 0.1);
907
+ --surface-hover: rgba(255, 255, 255, 0.03);
908
+ --focus-ring: #{$focusShadow};
909
+ --maskbg: #{$maskBg};
910
+ --highlight-bg: #{$highlightBg};
911
+ --highlight-text-color: #{$highlightTextColor};
912
+ color-scheme: dark;
913
+ }