@aziontech/theme 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (156) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +466 -0
  3. package/package.json +52 -0
  4. package/src/azion/_custom.scss +3 -0
  5. package/src/azion/_extensions.scss +37 -0
  6. package/src/azion/_fonts.scss +153 -0
  7. package/src/azion/_variables-widget.scss +400 -0
  8. package/src/azion/_variables.scss +407 -0
  9. package/src/azion/custom/_code.scss +11 -0
  10. package/src/azion/custom/_focus.scss +5 -0
  11. package/src/azion/custom/_scrollbehavior.scss +6 -0
  12. package/src/azion/custom/_selection.scss +4 -0
  13. package/src/azion/custom/_special-button.scss +57 -0
  14. package/src/azion/extended-components/_autocomplete.scss +13 -0
  15. package/src/azion/extended-components/_badge.scss +53 -0
  16. package/src/azion/extended-components/_breadcumb.scss +18 -0
  17. package/src/azion/extended-components/_button.scss +134 -0
  18. package/src/azion/extended-components/_calendar.scss +310 -0
  19. package/src/azion/extended-components/_carousel.scss +9 -0
  20. package/src/azion/extended-components/_checkbox.scss +33 -0
  21. package/src/azion/extended-components/_datatable.scss +130 -0
  22. package/src/azion/extended-components/_dialog.scss +45 -0
  23. package/src/azion/extended-components/_divider.scss +37 -0
  24. package/src/azion/extended-components/_dropdown.scss +10 -0
  25. package/src/azion/extended-components/_dropdownitem.scss +13 -0
  26. package/src/azion/extended-components/_inlinemessage.scss +10 -0
  27. package/src/azion/extended-components/_inputnumber.scss +40 -0
  28. package/src/azion/extended-components/_inputpassword.scss +4 -0
  29. package/src/azion/extended-components/_inputswitch.scss +53 -0
  30. package/src/azion/extended-components/_listbox.scss +35 -0
  31. package/src/azion/extended-components/_markdown.scss +135 -0
  32. package/src/azion/extended-components/_menuitem.scss +22 -0
  33. package/src/azion/extended-components/_multiselect.scss +167 -0
  34. package/src/azion/extended-components/_overlaypanel.scss +18 -0
  35. package/src/azion/extended-components/_picklist.scss +25 -0
  36. package/src/azion/extended-components/_progressbar.scss +6 -0
  37. package/src/azion/extended-components/_radiobutton.scss +63 -0
  38. package/src/azion/extended-components/_selectbutton.scss +36 -0
  39. package/src/azion/extended-components/_sidebar.scss +28 -0
  40. package/src/azion/extended-components/_splitbutton.scss +22 -0
  41. package/src/azion/extended-components/_tabmenu.scss +21 -0
  42. package/src/azion/extended-components/_tabview.scss +41 -0
  43. package/src/azion/extended-components/_tag.scss +47 -0
  44. package/src/azion/extended-components/_toast.scss +9 -0
  45. package/src/azion/extended-components/_tooltip.scss +7 -0
  46. package/src/azion/extended-components/_treeselect.scss +10 -0
  47. package/src/azion/extended-components/jsonform/_inputcheckbox.scss +41 -0
  48. package/src/azion/extended-components/jsonform/_inputtext.scss +26 -0
  49. package/src/azion/extended-components/jsonform/_label.scss +185 -0
  50. package/src/azion/extended-components/jsonform/_select.scss +34 -0
  51. package/src/azion/theme-base/_colors.scss +18 -0
  52. package/src/azion/theme-base/_common.scss +75 -0
  53. package/src/azion/theme-base/_components.scss +103 -0
  54. package/src/azion/theme-base/_mixins.scss +250 -0
  55. package/src/azion/theme-base/components/button/_button.scss +567 -0
  56. package/src/azion/theme-base/components/button/_speeddial.scss +97 -0
  57. package/src/azion/theme-base/components/button/_splitbutton.scss +390 -0
  58. package/src/azion/theme-base/components/data/_carousel.scss +37 -0
  59. package/src/azion/theme-base/components/data/_datatable.scss +347 -0
  60. package/src/azion/theme-base/components/data/_dataview.scss +47 -0
  61. package/src/azion/theme-base/components/data/_filter.scss +138 -0
  62. package/src/azion/theme-base/components/data/_orderlist.scss +70 -0
  63. package/src/azion/theme-base/components/data/_organizationchart.scss +50 -0
  64. package/src/azion/theme-base/components/data/_paginator.scss +92 -0
  65. package/src/azion/theme-base/components/data/_picklist.scss +70 -0
  66. package/src/azion/theme-base/components/data/_timeline.scss +38 -0
  67. package/src/azion/theme-base/components/data/_tree.scss +90 -0
  68. package/src/azion/theme-base/components/data/_treetable.scss +251 -0
  69. package/src/azion/theme-base/components/file/_fileupload.scss +82 -0
  70. package/src/azion/theme-base/components/input/_autocomplete.scss +114 -0
  71. package/src/azion/theme-base/components/input/_calendar.scss +251 -0
  72. package/src/azion/theme-base/components/input/_cascadeselect.scss +106 -0
  73. package/src/azion/theme-base/components/input/_checkbox.scss +86 -0
  74. package/src/azion/theme-base/components/input/_chips.scss +53 -0
  75. package/src/azion/theme-base/components/input/_colorpicker.scss +18 -0
  76. package/src/azion/theme-base/components/input/_dropdown.scss +147 -0
  77. package/src/azion/theme-base/components/input/_editor.scss +122 -0
  78. package/src/azion/theme-base/components/input/_inputgroup.scss +74 -0
  79. package/src/azion/theme-base/components/input/_inputnumber.scss +5 -0
  80. package/src/azion/theme-base/components/input/_inputswitch.scss +62 -0
  81. package/src/azion/theme-base/components/input/_inputtext.scss +100 -0
  82. package/src/azion/theme-base/components/input/_listbox.scss +89 -0
  83. package/src/azion/theme-base/components/input/_multiselect.scss +166 -0
  84. package/src/azion/theme-base/components/input/_password.scss +33 -0
  85. package/src/azion/theme-base/components/input/_radiobutton.scss +78 -0
  86. package/src/azion/theme-base/components/input/_rating.scss +60 -0
  87. package/src/azion/theme-base/components/input/_selectbutton.scss +50 -0
  88. package/src/azion/theme-base/components/input/_slider.scss +49 -0
  89. package/src/azion/theme-base/components/input/_togglebutton.scss +52 -0
  90. package/src/azion/theme-base/components/input/_treeselect.scss +91 -0
  91. package/src/azion/theme-base/components/menu/_breadcrumb.scss +42 -0
  92. package/src/azion/theme-base/components/menu/_contextmenu.scss +39 -0
  93. package/src/azion/theme-base/components/menu/_dock.scss +95 -0
  94. package/src/azion/theme-base/components/menu/_megamenu.scss +55 -0
  95. package/src/azion/theme-base/components/menu/_menu.scss +33 -0
  96. package/src/azion/theme-base/components/menu/_menubar.scss +141 -0
  97. package/src/azion/theme-base/components/menu/_panelmenu.scss +153 -0
  98. package/src/azion/theme-base/components/menu/_steps.scss +56 -0
  99. package/src/azion/theme-base/components/menu/_tabmenu.scss +49 -0
  100. package/src/azion/theme-base/components/menu/_tieredmenu.scss +43 -0
  101. package/src/azion/theme-base/components/messages/_inlinemessage.scss +64 -0
  102. package/src/azion/theme-base/components/messages/_message.scss +100 -0
  103. package/src/azion/theme-base/components/messages/_toast.scss +100 -0
  104. package/src/azion/theme-base/components/misc/_avatar.scss +30 -0
  105. package/src/azion/theme-base/components/misc/_badge.scss +48 -0
  106. package/src/azion/theme-base/components/misc/_blockui.scss +0 -0
  107. package/src/azion/theme-base/components/misc/_chip.scss +39 -0
  108. package/src/azion/theme-base/components/misc/_inplace.scss +17 -0
  109. package/src/azion/theme-base/components/misc/_progressbar.scss +17 -0
  110. package/src/azion/theme-base/components/misc/_progressspinner.scss +49 -0
  111. package/src/azion/theme-base/components/misc/_scrolltop.scss +25 -0
  112. package/src/azion/theme-base/components/misc/_skeleton.scss +8 -0
  113. package/src/azion/theme-base/components/misc/_tag.scss +40 -0
  114. package/src/azion/theme-base/components/misc/_terminal.scss +12 -0
  115. package/src/azion/theme-base/components/multimedia/_galleria.scss +151 -0
  116. package/src/azion/theme-base/components/multimedia/_image.scss +54 -0
  117. package/src/azion/theme-base/components/overlay/_confirmpopup.scss +72 -0
  118. package/src/azion/theme-base/components/overlay/_dialog.scss +64 -0
  119. package/src/azion/theme-base/components/overlay/_overlaypanel.scss +38 -0
  120. package/src/azion/theme-base/components/overlay/_sidebar.scss +23 -0
  121. package/src/azion/theme-base/components/overlay/_tooltip.scss +33 -0
  122. package/src/azion/theme-base/components/panel/_accordion.scss +118 -0
  123. package/src/azion/theme-base/components/panel/_card.scss +30 -0
  124. package/src/azion/theme-base/components/panel/_divider.scss +40 -0
  125. package/src/azion/theme-base/components/panel/_fieldset.scss +51 -0
  126. package/src/azion/theme-base/components/panel/_panel.scss +47 -0
  127. package/src/azion/theme-base/components/panel/_scrollpanel.scss +11 -0
  128. package/src/azion/theme-base/components/panel/_splitter.scss +24 -0
  129. package/src/azion/theme-base/components/panel/_tabview.scss +66 -0
  130. package/src/azion/theme-base/components/panel/_toolbar.scss +11 -0
  131. package/src/azion/theme-widget.scss +9 -0
  132. package/src/azion/theme.scss +9 -0
  133. package/src/azion/variables/_button.scss +438 -0
  134. package/src/azion/variables/_data.scss +346 -0
  135. package/src/azion/variables/_form.scss +570 -0
  136. package/src/azion/variables/_general.scss +149 -0
  137. package/src/azion/variables/_media.scss +231 -0
  138. package/src/azion/variables/_menu.scss +287 -0
  139. package/src/azion/variables/_message.scss +145 -0
  140. package/src/azion/variables/_misc.scss +143 -0
  141. package/src/azion/variables/_overlay.scss +67 -0
  142. package/src/azion/variables/_panel.scss +327 -0
  143. package/src/tokens/README.md +345 -0
  144. package/src/tokens/build/css-vars.js +41 -0
  145. package/src/tokens/build/preset.js +69 -0
  146. package/src/tokens/build/refs.js +7 -0
  147. package/src/tokens/build/resolve.js +102 -0
  148. package/src/tokens/build/tailwind-helper.js +12 -0
  149. package/src/tokens/build/tailwind-plugin.js +175 -0
  150. package/src/tokens/colors-brand.js +24 -0
  151. package/src/tokens/index.js +16 -0
  152. package/src/tokens/primitives/brand.js +69 -0
  153. package/src/tokens/primitives/colors.js +133 -0
  154. package/src/tokens/semantic/backgrounds.js +48 -0
  155. package/src/tokens/semantic/borders.js +46 -0
  156. package/src/tokens/semantic/text.js +78 -0
@@ -0,0 +1,570 @@
1
+ /// Padding of an input field, must be defined with a shorthand for vertical and horizontal values e.g. ".5rem .5rem"
2
+ /// @group form
3
+ $inputPadding: 0.344rem 0.5rem;
4
+
5
+ /// Background of an input field
6
+ /// @group form
7
+ $inputBg: var(--input-bg);
8
+
9
+ /// Font size of an input field
10
+ /// @group form
11
+ $inputTextFontSize: 0.875rem;
12
+
13
+ /// Text color of an input field
14
+ /// @group form
15
+ $inputTextColor: $textColor;
16
+
17
+ /// Color of an icon inside an input field
18
+ /// @group form
19
+ $inputIconColor: $textColor;
20
+
21
+ /// Border of an input field
22
+ /// @group form
23
+ $inputBorder: 1px solid var(--input-border);
24
+
25
+ /// Border of an input field in hover state
26
+ /// @group form
27
+ $inputHoverBorderColor: #f3652b;
28
+
29
+ /// Border of an input field in focus state
30
+ /// @group form
31
+ $inputFocusBorderColor: #f3652b;
32
+
33
+ /// Color of an input field in invalid state
34
+ /// @group form
35
+ $inputErrorBorderColor: $errorColor;
36
+
37
+ /// Text color of a placeholder
38
+ /// @group form
39
+ $inputPlaceholderTextColor: var(--input-placeholder-text-color);
40
+
41
+ /// Background of a filled input
42
+ /// @group form
43
+ $inputFilledBg: var(--input-filled-bg);
44
+
45
+ /// Background of a filled input in hover state
46
+ /// @group form
47
+ $inputFilledHoverBg: var(--input-filled-hover-bg);
48
+
49
+ /// Background of a filled input in focus state
50
+ /// @group form
51
+ $inputFilledFocusBg: var(--input-filled-focus-bg);
52
+
53
+ /// Backgroud color of an input group addon
54
+ /// @group form
55
+ $inputGroupBg: var(--input-group-bg);
56
+
57
+ /// Text color of an input group addon
58
+ /// @group form
59
+ $inputGroupTextColor: $textSecondaryColor;
60
+
61
+ /// Minimum width of an input group addon
62
+ /// @group form
63
+ $inputGroupAddOnMinWidth: 2.357rem;
64
+
65
+ /// Background of an input list such as dropdown, listbox, multiselect
66
+ /// @group form
67
+ $inputListBg: var(--input-list-bg);
68
+
69
+ /// Text color of an input list
70
+ /// @group form
71
+ $inputListTextColor: $textColor;
72
+
73
+ /// Border of an input list
74
+ /// @group form
75
+ $inputListBorder: $inputBorder;
76
+
77
+ /// Padding of an input list
78
+ /// @group form
79
+ $inputListPadding: 0.5rem;
80
+
81
+ /// Padding for an individual itrem of an input list
82
+ /// @group form
83
+ $inputListItemPadding: 0.75rem 0.5rem;
84
+
85
+ /// Background for an individual itrem of an input list
86
+ /// @group form
87
+ $inputListItemBg: transparent;
88
+
89
+ /// Text color for an individual itrem of an input list
90
+ /// @group form
91
+ $inputListItemTextColor: $textColor;
92
+
93
+ /// Hover state background for an individual itrem of an input list
94
+ /// @group form
95
+ $inputListItemHoverBg: var(--dropdown-hover-bg);
96
+
97
+ /// Hover state text color for an individual itrem of an input list
98
+ /// @group form
99
+ $inputListItemTextHoverColor: $textColor;
100
+
101
+ /// Focus state background for an individual itrem of an input list
102
+ /// @group form
103
+ $inputListItemFocusBg: var(--highlight-focus-bg);
104
+
105
+ /// Focus state text color for an individual itrem of an input list
106
+ /// @group form
107
+ $inputListItemTextFocusColor: $textColor;
108
+
109
+ /// Border for an individual itrem of an input list
110
+ /// @group form
111
+ $inputListItemBorder: 0 none;
112
+
113
+ /// Border radius for an individual itrem of an input list
114
+ /// @group form
115
+ $inputListItemBorderRadius: $borderRadius;
116
+
117
+ /// Margin for an individual itrem of an input list
118
+ /// @group form
119
+ $inputListItemMargin: 0;
120
+
121
+ /// Box shadow for an individual itrem of an input list in focused state
122
+ /// @group form
123
+ $inputListItemFocusShadow: inset 0 0 0 0.15rem $focusOutlineColor;
124
+
125
+ /// Padding for a header of an input list
126
+ /// @group form
127
+ $inputListHeaderPadding: 0.5rem 1rem;
128
+
129
+ /// Margin for a header of an input list
130
+ /// @group form
131
+ $inputListHeaderMargin: 0;
132
+
133
+ /// Background for a header of an input list
134
+ /// @group form
135
+ $inputListHeaderBg: var(--input-list-header-bg);
136
+
137
+ /// Text color for a header of an input list
138
+ /// @group form
139
+ $inputListHeaderTextColor: $textColor;
140
+
141
+ /// Border for a header of an input list
142
+ /// @group form
143
+ $inputListHeaderBorder: 0 none;
144
+
145
+ /// Background for an overlay of an input such as autocomplete or dropdown
146
+ /// @group form
147
+ $inputOverlayBg: $inputListBg;
148
+
149
+ /// Background for an overlay header of an input such as autocomplete or dropdown
150
+ /// @group form
151
+ $inputOverlayHeaderBg: $inputListHeaderBg;
152
+
153
+ /// Border for an overlay of an input such as autocomplete or dropdown
154
+ /// @group form
155
+ $inputOverlayBorder: 0 none;
156
+
157
+ /// Shadow for an overlay of an input such as autocomplete or dropdown
158
+ /// @group form
159
+ $inputOverlayShadow: var(--input-overlay-shadow);
160
+
161
+ /// Width of a checkbox
162
+ /// @group form
163
+ $checkboxWidth: 20px;
164
+
165
+ /// Height of a checkbox
166
+ /// @group form
167
+ $checkboxHeight: 20px;
168
+
169
+ /// Border of a checkbox
170
+ /// @group form
171
+ $checkboxBorder: 2px solid var(--checkbox-border);
172
+
173
+ /// Size of a checkbox icon
174
+ /// @group form
175
+ $checkboxIconFontSize: 14px;
176
+
177
+ /// Border color of a selected checkbox
178
+ /// @group form
179
+ $checkboxActiveBorderColor: var(--primary-color);
180
+
181
+ /// Background of a selected checkbox
182
+ /// @group form
183
+ $checkboxActiveBg: var(--primary-color);
184
+
185
+ /// Icon color of a selected checkbox
186
+ /// @group form
187
+ $checkboxIconActiveColor: var(--primary-text-color);
188
+
189
+ /// Background of a selected checkbox in hover state
190
+ /// @group form
191
+ $checkboxActiveHoverBg: var(--primary-darker-color);
192
+
193
+ /// Icon color of a selected checkbox in hover state
194
+ /// @group form
195
+ $checkboxIconActiveHoverColor: var(--primary-text-color);
196
+
197
+ /// Border color of a selected checkbox in hover state
198
+ /// @group form
199
+ $checkboxActiveHoverBorderColor: var(--primary-darker-color);
200
+
201
+ /// Width of a radiobutton
202
+ /// @group form
203
+ $radiobuttonWidth: 20px;
204
+
205
+ /// Height of a radiobutton
206
+ /// @group form
207
+ $radiobuttonHeight: 20px;
208
+
209
+ /// Border of a radiobutton
210
+ /// @group form
211
+ $radiobuttonBorder: 2px solid var(--surface-border);
212
+
213
+ /// Font size of a radiobutton icon
214
+ /// @group form
215
+ $radiobuttonIconSize: 10px;
216
+
217
+ /// Border color of a selected radiobutton
218
+ /// @group form
219
+ $radiobuttonActiveBorderColor: #f3652b;
220
+
221
+ /// Background of a selected radiobutton
222
+ /// @group form
223
+ $radiobuttonActiveBg: #f3652b;
224
+
225
+ /// Icon color of a selected radiobutton
226
+ /// @group form
227
+ $radiobuttonIconActiveColor: var(--primary-text-color);
228
+
229
+ /// Background of a selected radiobutton in hover state
230
+ /// @group form
231
+ $radiobuttonActiveHoverBg: var(--primary-darker-color);
232
+
233
+ /// Icon color of a selected radiobutton in hover state
234
+ /// @group form
235
+ $radiobuttonIconActiveHoverColor: var(--primary-text-color);
236
+
237
+ /// Border color of a selected radiobutton in hover state
238
+ /// @group form
239
+ $radiobuttonActiveHoverBorderColor: var(--primary-darker-color);
240
+
241
+ /// Width of a color picker preview element
242
+ /// @group form
243
+ $colorPickerPreviewWidth: 2rem;
244
+
245
+ /// Height of a color picker preview element
246
+ /// @group form
247
+ $colorPickerPreviewHeight: 2rem;
248
+
249
+ /// Background of a color picker
250
+ /// @group form
251
+ $colorPickerBg: #323232;
252
+
253
+ /// Border color of a color picker
254
+ /// @group form
255
+ $colorPickerBorder: 1px solid #191919;
256
+
257
+ /// Handle color of a color picker
258
+ /// @group form
259
+ $colorPickerHandleColor: #ffffff;
260
+
261
+ /// Font size of a rating icon
262
+ /// @group form
263
+ $ratingIconFontSize: 1.143rem;
264
+
265
+ /// Icon color for the cancel icon of a rating
266
+ /// @group form
267
+ $ratingCancelIconColor: #e74c3c;
268
+
269
+ /// Hover icon color for the cancel icon of a rating
270
+ /// @group form
271
+ $ratingCancelIconHoverColor: #c0392b;
272
+
273
+ /// Icon color for the star icon of a rating in unselected state
274
+ /// @group form
275
+ $ratingStarIconOffColor: $textColor;
276
+
277
+ /// Icon color for the star icon of a rating in selected state
278
+ /// @group form
279
+ $ratingStarIconOnColor: var(--primary-color);
280
+
281
+ /// Icon color for the star icon of a rating in hover state
282
+ /// @group form
283
+ $ratingStarIconHoverColor: var(--primary-color);
284
+
285
+ /// Background of a slider
286
+ /// @group form
287
+ $sliderBg: #dee2e6;
288
+
289
+ /// Border of a slider
290
+ /// @group form
291
+ $sliderBorder: 0 none;
292
+
293
+ /// Height of a horizontal slider
294
+ /// @group form
295
+ $sliderHorizontalHeight: 0.286rem;
296
+
297
+ /// Width of a vertical slider
298
+ /// @group form
299
+ $sliderVerticalWidth: 0.286rem;
300
+
301
+ /// Width of a slider handle
302
+ /// @group form
303
+ $sliderHandleWidth: 1.143rem;
304
+
305
+ /// Height of a slider handle
306
+ /// @group form
307
+ $sliderHandleHeight: 1.143rem;
308
+
309
+ /// Background of a slider handle
310
+ /// @group form
311
+ $sliderHandleBg: #ffffff;
312
+
313
+ /// Border of a slider handle
314
+ /// @group form
315
+ $sliderHandleBorder: 2px solid var(--primary-color);
316
+
317
+ /// Border radius of a slider handle
318
+ /// @group form
319
+ $sliderHandleBorderRadius: 50%;
320
+
321
+ /// Border of a slider handle in hover state
322
+ /// @group form
323
+ $sliderHandleHoverBorderColor: var(--primary-color);
324
+
325
+ /// Background of a slider handle in hover state
326
+ /// @group form
327
+ $sliderHandleHoverBg: var(--primary-color);
328
+
329
+ /// Background color of a range slider
330
+ /// @group form
331
+ $sliderRangeBg: var(--primary-color);
332
+
333
+ /// Margin of a calendar table
334
+ /// @group form
335
+ $calendarTableMargin: 0.5rem 0;
336
+
337
+ /// Margin of a calendar
338
+ /// @group form
339
+ $calendarPadding: 0.5rem;
340
+
341
+ /// Background of a calendar
342
+ /// @group form
343
+ $calendarBg: var(--calendar-bg);
344
+
345
+ /// Background of an inlime calendar
346
+ /// @group form
347
+ $calendarInlineBg: $calendarBg;
348
+
349
+ /// Text color of a calendar
350
+ /// @group form
351
+ $calendarTextColor: $textColor;
352
+
353
+ /// Border of an inline calendar
354
+ /// @group form
355
+ $calendarBorder: $inputListBorder;
356
+
357
+ /// Border of an overlay calendar
358
+ /// @group form
359
+ $calendarOverlayBorder: $inputOverlayBorder;
360
+
361
+ /// Padding of a calendar header
362
+ /// @group form
363
+ $calendarHeaderPadding: 0.5rem;
364
+
365
+ /// Background of a calendar header
366
+ /// @group form
367
+ $calendarHeaderBg: var(--calendar-bg);
368
+
369
+ /// Background of an inline calendar header
370
+ /// @group form
371
+ $calendarInlineHeaderBg: $calendarBg;
372
+
373
+ /// Border of a calendar header
374
+ /// @group form
375
+ $calendarHeaderBorder: 1px solid var(--surface-border);
376
+
377
+ /// Text color of a calendar header
378
+ /// @group form
379
+ $calendarHeaderTextColor: $textColor;
380
+
381
+ /// Font weight of a calendar header
382
+ /// @group form
383
+ $calendarHeaderFontWeight: 600;
384
+
385
+ /// Padding of a calendar weekday cell
386
+ /// @group form
387
+ $calendarHeaderCellPadding: 0.5rem;
388
+
389
+ /// Text color of current month and year text in hover state
390
+ /// @group form
391
+ $calendarMonthYearHeaderHoverTextColor: var(--primary-color) !default;
392
+
393
+ /// Padding of a calendar date cell
394
+ /// @group form
395
+ $calendarCellDatePadding: 0.5rem;
396
+
397
+ /// Width of a calendar date cell
398
+ /// @group form
399
+ $calendarCellDateWidth: 2.5rem;
400
+
401
+ /// Height of a calendar date cell
402
+ /// @group form
403
+ $calendarCellDateHeight: 2.5rem;
404
+
405
+ /// Border radius of a calendar date cell
406
+ /// @group form
407
+ $calendarCellDateBorderRadius: 50%;
408
+
409
+ /// Border of a calendar date cell
410
+ /// @group form
411
+ $calendarCellDateBorder: 1px solid transparent;
412
+
413
+ /// Background of a calendar date cell in hover state
414
+ /// @group form
415
+ $calendarCellDateHoverBg: var(--surface-hover);
416
+
417
+ /// Background of a calendar date cell indicating today
418
+ /// @group form
419
+ $calendarCellDateTodayBg: var(--calendar-cell-date-today-bg);
420
+
421
+ /// Border color of a calendar date cell indicating today
422
+ /// @group form
423
+ $calendarCellDateTodayBorderColor: transparent;
424
+
425
+ /// Text color of a calendar date cell indicating today
426
+ /// @group form
427
+ $calendarCellDateTodayTextColor: var(--calendar-cell-date-today-text-color);
428
+
429
+ /// Padding of the calendar button bar
430
+ /// @group form
431
+ $calendarButtonBarPadding: 1rem 0;
432
+
433
+ /// Padding of a time picker container of a calendar
434
+ /// @group form
435
+ $calendarTimePickerPadding: 0.5rem;
436
+
437
+ /// Padding of a time picker element of a calendar
438
+ /// @group form
439
+ $calendarTimePickerElementPadding: 0 0.429rem;
440
+
441
+ /// Font size of a time picker element of a calendar
442
+ /// @group form
443
+ $calendarTimePickerTimeFontSize: 1.286rem;
444
+
445
+ /// Breakpoint of calendar to apply styles for small screens like phones
446
+ /// @group form
447
+ $calendarBreakpoint: 769px;
448
+
449
+ /// Padding of a calendar date cell on small screens like phones
450
+ /// @group form
451
+ $calendarCellDatePaddingSM: 0;
452
+
453
+ /// Width of an inputswitch
454
+ /// @group form
455
+ $inputSwitchWidth: 2.25rem;
456
+
457
+ /// Height of an inputswitch
458
+ /// @group form
459
+ $inputSwitchHeight: 1.25rem;
460
+
461
+ /// Border radius of an inputswitch
462
+ /// @group form
463
+ $inputSwitchBorderRadius: 30px;
464
+
465
+ /// Width of an inputswitch handle
466
+ /// @group form
467
+ $inputSwitchHandleWidth: 1rem;
468
+
469
+ /// Height of an inputswitch handle
470
+ /// @group form
471
+ $inputSwitchHandleHeight: 1rem;
472
+
473
+ /// Border radius of an inputswitch handle
474
+ /// @group form
475
+ $inputSwitchHandleBorderRadius: 50%;
476
+
477
+ /// Padding of an inputswitch slider
478
+ /// @group form
479
+ $inputSwitchSliderPadding: 0.063rem;
480
+
481
+ /// Background color of an inputswitch slider when unselected
482
+ /// @group form
483
+ $inputSwitchSliderOffBg: var(--input-switch-slider-off-bg);
484
+
485
+ /// Background color of an inputswitch handle when unselected
486
+ /// @group form
487
+ $inputSwitchHandleOffBg: #ffffff;
488
+
489
+ /// Hover background color of an inputswitch slider when unselected
490
+ /// @group form
491
+ $inputSwitchSliderOffHoverBg: var(--input-switch-slider-off-hover-bg);
492
+
493
+ /// Background color of an inputswitch slider when selected
494
+ /// @group form
495
+ $inputSwitchSliderOnBg: var(--primary-color);
496
+
497
+ /// Hover background color of an inputswitch slider when selected
498
+ /// @group form
499
+ $inputSwitchSliderOnHoverBg: var(--primary-dark-color);
500
+
501
+ /// Background color of an inputswitch handle when selected
502
+ /// @group form
503
+ $inputSwitchHandleOnBg: var(--input-switch-handle-on-bg);
504
+
505
+ /// Height for the progress bar of a fileupload
506
+ /// @group form
507
+ $fileUploadProgressBarHeight: 0.25rem;
508
+
509
+ /// Padding of the fileupload content section
510
+ /// @group form
511
+ $fileUploadContentPadding: 2rem 1rem;
512
+
513
+ /// Border of the fileupload content section
514
+ $fileUploadContentHoverBorder: 1px dashed var(--primary-color) !default;
515
+
516
+ /// Border of the fileupload content item section
517
+ /// @group form
518
+ $fileUploadFileBorder: 1px solid var(--file-upload-file-border);
519
+
520
+ /// Padding of the fileupload content item section
521
+ /// @group form
522
+ $fileUploadFilePadding: 1rem;
523
+
524
+ /// Background of an editor toolbar
525
+ /// @group form
526
+ $editorToolbarBg: #f8f9fa;
527
+
528
+ /// Border of an editor toolbar
529
+ /// @group form
530
+ $editorToolbarBorder: 1px solid var(--editor-toolbar-border);
531
+
532
+ /// Padding of an editor toolbar
533
+ /// @group form
534
+ $editorToolbarPadding: 1rem;
535
+
536
+ /// Icon color of an editor toolbar
537
+ /// @group form
538
+ $editorToolbarIconColor: #6c757d;
539
+
540
+ /// Icon color of an editor toolbar in hover state
541
+ /// @group form
542
+ $editorToolbarIconHoverColor: #495057;
543
+
544
+ /// Icon color of an editor toolbar in active state
545
+ /// @group form
546
+ $editorIconActiveColor: var(--primary-color);
547
+
548
+ /// Border of an editor content
549
+ /// @group form
550
+ $editorContentBorder: 1px solid #dee2e6;
551
+
552
+ /// Background of an editor content
553
+ /// @group form
554
+ $editorContentBg: #ffffff;
555
+
556
+ /// Background of a password meter
557
+ /// @group form
558
+ $passwordMeterBg: #dee2e6;
559
+
560
+ /// Background of a week password
561
+ /// @group form
562
+ $passwordWeakBg: #e53935;
563
+
564
+ /// Background of a medium password
565
+ /// @group form
566
+ $passwordMediumBg: #ffb300;
567
+
568
+ /// Background of a strong password
569
+ /// @group form
570
+ $passwordStrongBg: #43a047;
@@ -0,0 +1,149 @@
1
+ /// Font of the theme
2
+ /// @group general
3
+ $fontFamily: 'Roboto', sans-serif;
4
+
5
+ /// Size of the font
6
+ /// @group general
7
+ $fontSize: 1rem;
8
+
9
+ /// Thickness of the texts
10
+ /// @group general
11
+ $fontWeight: normal;
12
+
13
+ /// Primary text color
14
+ /// @group general
15
+ $textColor: var(--text-color);
16
+
17
+ /// Secondary text color
18
+ /// @group general
19
+ $textSecondaryColor: var(--text-color-secondary);
20
+
21
+ /// Background of a highlighted item
22
+ /// @group general
23
+ $highlightBg: var(--highlight-bg);
24
+
25
+ /// Text color of a highlighted item
26
+ /// @group general
27
+ $highlightTextColor: none;
28
+
29
+ /// Background of a highlighted item in focus state
30
+ /// @group general
31
+ $highlightFocusBg: var(--highlight-focus-bg);
32
+
33
+ /// Radius of the corners
34
+ /// @group general
35
+ $borderRadius: 6px;
36
+
37
+ /// Duration of the property transitions
38
+ /// @group general
39
+ $transitionDuration: 0.2s;
40
+
41
+ /// Properties of a form element transition
42
+ /// @group general
43
+ $formElementTransition:
44
+ background-color $transitionDuration,
45
+ color $transitionDuration,
46
+ border-color $transitionDuration,
47
+ box-shadow $transitionDuration;
48
+
49
+ /// Properties of a action icon transition
50
+ /// @group general
51
+ $actionIconTransition:
52
+ background-color $transitionDuration,
53
+ color $transitionDuration,
54
+ box-shadow $transitionDuration;
55
+
56
+ /// Properties of a list item transition
57
+ /// @group general
58
+ $listItemTransition:
59
+ background-color $transitionDuration,
60
+ border-color $transitionDuration,
61
+ box-shadow $transitionDuration;
62
+
63
+ /// Size of the Icons
64
+ /// @group general
65
+ $primeIconFontSize: 1rem;
66
+
67
+ /// Separator border
68
+ /// @group general
69
+ $divider: 1px solid var(--surface-border);
70
+
71
+ /// Space between two inline items
72
+ /// @group general
73
+ $inlineSpacing: 0.5rem;
74
+
75
+ /// Opacity of the disabled elements
76
+ /// @group general
77
+ $disabledOpacity: var(--disabled-opacity);
78
+
79
+ /// Background of the modal layer
80
+ /// @group general
81
+ $maskBg: var(--mask-bg);
82
+
83
+ /// Font size of the loading icons
84
+ /// @group general
85
+ $loadingIconFontSize: 2rem;
86
+
87
+ /// Color to use on an invalid element e.g. invalid input
88
+ /// @group general
89
+ $errorColor: var(--error-color);
90
+
91
+ /// Outline color of a focused element
92
+ /// @group general
93
+ $focusOutlineColor: #f3642b9f;
94
+
95
+ /// Outline of a focused element
96
+ /// @group general
97
+ $focusOutline: 0 none;
98
+
99
+ /// Outline offset of a focused element
100
+ /// @group general
101
+ $focusOutlineOffset: 0;
102
+
103
+ /// Box shadow of a focused element
104
+ /// @group general
105
+ $focusShadow: 0 0 0 0.2rem $focusOutlineColor;
106
+
107
+ /// Width of an action icon
108
+ /// @group general
109
+ $actionIconWidth: 2rem;
110
+
111
+ /// Height of an action icon
112
+ /// @group general
113
+ $actionIconHeight: 2rem;
114
+
115
+ /// Background of an action icon
116
+ /// @group general
117
+ $actionIconBg: transparent;
118
+
119
+ /// Border of an action icon
120
+ /// @group general
121
+ $actionIconBorder: var(--section-icon-border);
122
+
123
+ /// Color of an action icon
124
+ /// @group general
125
+ $actionIconColor: var(--section-icon-color);
126
+
127
+ /// Backgroun of an action icon in hover state
128
+ /// @group general
129
+ $actionIconHoverBg: var(--section-icon-hover-bg);
130
+
131
+ /// Border of an action icon in hover state
132
+ /// @group general
133
+ $actionIconHoverBorderColor: 1px solid var(--section-icon-hover-border-color);
134
+
135
+ /// Color of an action icon in hover state
136
+ /// @group general
137
+ $actionIconHoverColor: $textColor;
138
+
139
+ /// Border radius of an action icon
140
+ /// @group general
141
+ $actionIconBorderRadius: 6px;
142
+
143
+ /// Scale factor of small component size
144
+ /// @group general
145
+ $scaleSM: 0.875;
146
+
147
+ /// Scale factor of small large size
148
+ /// @group general
149
+ $scaleLG: 1.25;