@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.
- package/LICENSE +21 -0
- package/README.md +466 -0
- package/package.json +52 -0
- package/src/azion/_custom.scss +3 -0
- package/src/azion/_extensions.scss +37 -0
- package/src/azion/_fonts.scss +153 -0
- package/src/azion/_variables-widget.scss +400 -0
- package/src/azion/_variables.scss +407 -0
- package/src/azion/custom/_code.scss +11 -0
- package/src/azion/custom/_focus.scss +5 -0
- package/src/azion/custom/_scrollbehavior.scss +6 -0
- package/src/azion/custom/_selection.scss +4 -0
- package/src/azion/custom/_special-button.scss +57 -0
- package/src/azion/extended-components/_autocomplete.scss +13 -0
- package/src/azion/extended-components/_badge.scss +53 -0
- package/src/azion/extended-components/_breadcumb.scss +18 -0
- package/src/azion/extended-components/_button.scss +134 -0
- package/src/azion/extended-components/_calendar.scss +310 -0
- package/src/azion/extended-components/_carousel.scss +9 -0
- package/src/azion/extended-components/_checkbox.scss +33 -0
- package/src/azion/extended-components/_datatable.scss +130 -0
- package/src/azion/extended-components/_dialog.scss +45 -0
- package/src/azion/extended-components/_divider.scss +37 -0
- package/src/azion/extended-components/_dropdown.scss +10 -0
- package/src/azion/extended-components/_dropdownitem.scss +13 -0
- package/src/azion/extended-components/_inlinemessage.scss +10 -0
- package/src/azion/extended-components/_inputnumber.scss +40 -0
- package/src/azion/extended-components/_inputpassword.scss +4 -0
- package/src/azion/extended-components/_inputswitch.scss +53 -0
- package/src/azion/extended-components/_listbox.scss +35 -0
- package/src/azion/extended-components/_markdown.scss +135 -0
- package/src/azion/extended-components/_menuitem.scss +22 -0
- package/src/azion/extended-components/_multiselect.scss +167 -0
- package/src/azion/extended-components/_overlaypanel.scss +18 -0
- package/src/azion/extended-components/_picklist.scss +25 -0
- package/src/azion/extended-components/_progressbar.scss +6 -0
- package/src/azion/extended-components/_radiobutton.scss +63 -0
- package/src/azion/extended-components/_selectbutton.scss +36 -0
- package/src/azion/extended-components/_sidebar.scss +28 -0
- package/src/azion/extended-components/_splitbutton.scss +22 -0
- package/src/azion/extended-components/_tabmenu.scss +21 -0
- package/src/azion/extended-components/_tabview.scss +41 -0
- package/src/azion/extended-components/_tag.scss +47 -0
- package/src/azion/extended-components/_toast.scss +9 -0
- package/src/azion/extended-components/_tooltip.scss +7 -0
- package/src/azion/extended-components/_treeselect.scss +10 -0
- package/src/azion/extended-components/jsonform/_inputcheckbox.scss +41 -0
- package/src/azion/extended-components/jsonform/_inputtext.scss +26 -0
- package/src/azion/extended-components/jsonform/_label.scss +185 -0
- package/src/azion/extended-components/jsonform/_select.scss +34 -0
- package/src/azion/theme-base/_colors.scss +18 -0
- package/src/azion/theme-base/_common.scss +75 -0
- package/src/azion/theme-base/_components.scss +103 -0
- package/src/azion/theme-base/_mixins.scss +250 -0
- package/src/azion/theme-base/components/button/_button.scss +567 -0
- package/src/azion/theme-base/components/button/_speeddial.scss +97 -0
- package/src/azion/theme-base/components/button/_splitbutton.scss +390 -0
- package/src/azion/theme-base/components/data/_carousel.scss +37 -0
- package/src/azion/theme-base/components/data/_datatable.scss +347 -0
- package/src/azion/theme-base/components/data/_dataview.scss +47 -0
- package/src/azion/theme-base/components/data/_filter.scss +138 -0
- package/src/azion/theme-base/components/data/_orderlist.scss +70 -0
- package/src/azion/theme-base/components/data/_organizationchart.scss +50 -0
- package/src/azion/theme-base/components/data/_paginator.scss +92 -0
- package/src/azion/theme-base/components/data/_picklist.scss +70 -0
- package/src/azion/theme-base/components/data/_timeline.scss +38 -0
- package/src/azion/theme-base/components/data/_tree.scss +90 -0
- package/src/azion/theme-base/components/data/_treetable.scss +251 -0
- package/src/azion/theme-base/components/file/_fileupload.scss +82 -0
- package/src/azion/theme-base/components/input/_autocomplete.scss +114 -0
- package/src/azion/theme-base/components/input/_calendar.scss +251 -0
- package/src/azion/theme-base/components/input/_cascadeselect.scss +106 -0
- package/src/azion/theme-base/components/input/_checkbox.scss +86 -0
- package/src/azion/theme-base/components/input/_chips.scss +53 -0
- package/src/azion/theme-base/components/input/_colorpicker.scss +18 -0
- package/src/azion/theme-base/components/input/_dropdown.scss +147 -0
- package/src/azion/theme-base/components/input/_editor.scss +122 -0
- package/src/azion/theme-base/components/input/_inputgroup.scss +74 -0
- package/src/azion/theme-base/components/input/_inputnumber.scss +5 -0
- package/src/azion/theme-base/components/input/_inputswitch.scss +62 -0
- package/src/azion/theme-base/components/input/_inputtext.scss +100 -0
- package/src/azion/theme-base/components/input/_listbox.scss +89 -0
- package/src/azion/theme-base/components/input/_multiselect.scss +166 -0
- package/src/azion/theme-base/components/input/_password.scss +33 -0
- package/src/azion/theme-base/components/input/_radiobutton.scss +78 -0
- package/src/azion/theme-base/components/input/_rating.scss +60 -0
- package/src/azion/theme-base/components/input/_selectbutton.scss +50 -0
- package/src/azion/theme-base/components/input/_slider.scss +49 -0
- package/src/azion/theme-base/components/input/_togglebutton.scss +52 -0
- package/src/azion/theme-base/components/input/_treeselect.scss +91 -0
- package/src/azion/theme-base/components/menu/_breadcrumb.scss +42 -0
- package/src/azion/theme-base/components/menu/_contextmenu.scss +39 -0
- package/src/azion/theme-base/components/menu/_dock.scss +95 -0
- package/src/azion/theme-base/components/menu/_megamenu.scss +55 -0
- package/src/azion/theme-base/components/menu/_menu.scss +33 -0
- package/src/azion/theme-base/components/menu/_menubar.scss +141 -0
- package/src/azion/theme-base/components/menu/_panelmenu.scss +153 -0
- package/src/azion/theme-base/components/menu/_steps.scss +56 -0
- package/src/azion/theme-base/components/menu/_tabmenu.scss +49 -0
- package/src/azion/theme-base/components/menu/_tieredmenu.scss +43 -0
- package/src/azion/theme-base/components/messages/_inlinemessage.scss +64 -0
- package/src/azion/theme-base/components/messages/_message.scss +100 -0
- package/src/azion/theme-base/components/messages/_toast.scss +100 -0
- package/src/azion/theme-base/components/misc/_avatar.scss +30 -0
- package/src/azion/theme-base/components/misc/_badge.scss +48 -0
- package/src/azion/theme-base/components/misc/_blockui.scss +0 -0
- package/src/azion/theme-base/components/misc/_chip.scss +39 -0
- package/src/azion/theme-base/components/misc/_inplace.scss +17 -0
- package/src/azion/theme-base/components/misc/_progressbar.scss +17 -0
- package/src/azion/theme-base/components/misc/_progressspinner.scss +49 -0
- package/src/azion/theme-base/components/misc/_scrolltop.scss +25 -0
- package/src/azion/theme-base/components/misc/_skeleton.scss +8 -0
- package/src/azion/theme-base/components/misc/_tag.scss +40 -0
- package/src/azion/theme-base/components/misc/_terminal.scss +12 -0
- package/src/azion/theme-base/components/multimedia/_galleria.scss +151 -0
- package/src/azion/theme-base/components/multimedia/_image.scss +54 -0
- package/src/azion/theme-base/components/overlay/_confirmpopup.scss +72 -0
- package/src/azion/theme-base/components/overlay/_dialog.scss +64 -0
- package/src/azion/theme-base/components/overlay/_overlaypanel.scss +38 -0
- package/src/azion/theme-base/components/overlay/_sidebar.scss +23 -0
- package/src/azion/theme-base/components/overlay/_tooltip.scss +33 -0
- package/src/azion/theme-base/components/panel/_accordion.scss +118 -0
- package/src/azion/theme-base/components/panel/_card.scss +30 -0
- package/src/azion/theme-base/components/panel/_divider.scss +40 -0
- package/src/azion/theme-base/components/panel/_fieldset.scss +51 -0
- package/src/azion/theme-base/components/panel/_panel.scss +47 -0
- package/src/azion/theme-base/components/panel/_scrollpanel.scss +11 -0
- package/src/azion/theme-base/components/panel/_splitter.scss +24 -0
- package/src/azion/theme-base/components/panel/_tabview.scss +66 -0
- package/src/azion/theme-base/components/panel/_toolbar.scss +11 -0
- package/src/azion/theme-widget.scss +9 -0
- package/src/azion/theme.scss +9 -0
- package/src/azion/variables/_button.scss +438 -0
- package/src/azion/variables/_data.scss +346 -0
- package/src/azion/variables/_form.scss +570 -0
- package/src/azion/variables/_general.scss +149 -0
- package/src/azion/variables/_media.scss +231 -0
- package/src/azion/variables/_menu.scss +287 -0
- package/src/azion/variables/_message.scss +145 -0
- package/src/azion/variables/_misc.scss +143 -0
- package/src/azion/variables/_overlay.scss +67 -0
- package/src/azion/variables/_panel.scss +327 -0
- package/src/tokens/README.md +345 -0
- package/src/tokens/build/css-vars.js +41 -0
- package/src/tokens/build/preset.js +69 -0
- package/src/tokens/build/refs.js +7 -0
- package/src/tokens/build/resolve.js +102 -0
- package/src/tokens/build/tailwind-helper.js +12 -0
- package/src/tokens/build/tailwind-plugin.js +175 -0
- package/src/tokens/colors-brand.js +24 -0
- package/src/tokens/index.js +16 -0
- package/src/tokens/primitives/brand.js +69 -0
- package/src/tokens/primitives/colors.js +133 -0
- package/src/tokens/semantic/backgrounds.js +48 -0
- package/src/tokens/semantic/borders.js +46 -0
- package/src/tokens/semantic/text.js +78 -0
|
@@ -0,0 +1,407 @@
|
|
|
1
|
+
// Theme Specific Variables
|
|
2
|
+
|
|
3
|
+
:root {
|
|
4
|
+
--surface-a: #ffffff;
|
|
5
|
+
--surface-b: #f8f9fa;
|
|
6
|
+
--surface-c: #e9ecef;
|
|
7
|
+
--surface-d: #dee2e6;
|
|
8
|
+
--surface-e: #ffffff;
|
|
9
|
+
--surface-f: #ffffff;
|
|
10
|
+
|
|
11
|
+
--green-50: #f4fcf7;
|
|
12
|
+
--green-100: #caf1d8;
|
|
13
|
+
--green-200: #a0e6ba;
|
|
14
|
+
--green-300: #76db9b;
|
|
15
|
+
--green-400: #4cd07d;
|
|
16
|
+
--green-500: #22c55e;
|
|
17
|
+
--green-600: #1da750;
|
|
18
|
+
--green-700: #188a42;
|
|
19
|
+
--green-800: #136c34;
|
|
20
|
+
--green-900: #0e4f26;
|
|
21
|
+
|
|
22
|
+
--red-50: #fff5f5;
|
|
23
|
+
--red-100: #ffd0ce;
|
|
24
|
+
--red-200: #ffaca7;
|
|
25
|
+
--red-300: #ff8780;
|
|
26
|
+
--red-400: #ff6259;
|
|
27
|
+
--red-500: #ff3d32;
|
|
28
|
+
--red-600: #d9342b;
|
|
29
|
+
--red-700: #b32b23;
|
|
30
|
+
--red-800: #8c221c;
|
|
31
|
+
--red-900: #661814;
|
|
32
|
+
|
|
33
|
+
--font-family: "Sora", sans-serif;
|
|
34
|
+
}
|
|
35
|
+
// Mandatory Designer Variables
|
|
36
|
+
|
|
37
|
+
$colors: (
|
|
38
|
+
"blue": #2196f3,
|
|
39
|
+
"green": #4caf50,
|
|
40
|
+
"yellow": #fbc02d,
|
|
41
|
+
"cyan": #00bcd4,
|
|
42
|
+
"pink": #e91e63,
|
|
43
|
+
"indigo": #3f51b5,
|
|
44
|
+
"teal": #009688,
|
|
45
|
+
"orange": #f57c00,
|
|
46
|
+
"bluegray": #607d8b,
|
|
47
|
+
"purple": #9c27b0,
|
|
48
|
+
"red": #ff4032,
|
|
49
|
+
"primary": #2b2b2b,
|
|
50
|
+
);
|
|
51
|
+
|
|
52
|
+
@import "./variables/general";
|
|
53
|
+
@import "./variables/form";
|
|
54
|
+
@import "./variables/button";
|
|
55
|
+
@import "./variables/panel";
|
|
56
|
+
@import "./variables/_data";
|
|
57
|
+
@import "./variables/_overlay";
|
|
58
|
+
@import "./variables/_message";
|
|
59
|
+
@import "./variables/_menu";
|
|
60
|
+
@import "./variables/_media";
|
|
61
|
+
@import "./variables/_misc";
|
|
62
|
+
|
|
63
|
+
:root.azion.azion-dark {
|
|
64
|
+
color-scheme: dark;
|
|
65
|
+
|
|
66
|
+
--primary-color: #f4f4f4;
|
|
67
|
+
--primary-dark-color: #hsla(0, 0%, 96%, 0.5);
|
|
68
|
+
--primary-darker-color: #f4f4f4;
|
|
69
|
+
--primary-text-color: #f4f4f4;
|
|
70
|
+
--overlay-content-bg: var(--surface-section);
|
|
71
|
+
--highlight-bg: #f4f4f410;
|
|
72
|
+
--degrade-primary: 255, 255, 255;
|
|
73
|
+
--degrade-secondary: 0, 0, 0;
|
|
74
|
+
|
|
75
|
+
--text-color: #ededed;
|
|
76
|
+
--primary-color-text: #1e1e1e;
|
|
77
|
+
--text-color-secondary: #b5b5b5;
|
|
78
|
+
--text-color-link: #93c5fd;
|
|
79
|
+
--text-color-link-hover: #93c5fd;
|
|
80
|
+
--text-color-empty: var(--surface-800);
|
|
81
|
+
|
|
82
|
+
--gray-50: #282828;
|
|
83
|
+
--gray-100: #363636;
|
|
84
|
+
--gray-200: #747474;
|
|
85
|
+
--gray-300: #939393;
|
|
86
|
+
--gray-400: #b2b2b2;
|
|
87
|
+
--gray-500: #9e9e9e;
|
|
88
|
+
--gray-600: #ebebeb;
|
|
89
|
+
--gray-700: #f5f5f5;
|
|
90
|
+
--gray-800: #fafafa;
|
|
91
|
+
--gray-900: #ffffff;
|
|
92
|
+
|
|
93
|
+
--surface-0: #0a0a0a;
|
|
94
|
+
--surface-50: #111111;
|
|
95
|
+
--surface-100: #171717;
|
|
96
|
+
--surface-200: #222222;
|
|
97
|
+
--surface-300: #282828;
|
|
98
|
+
--surface-400: #2e2e2e;
|
|
99
|
+
--surface-500: #353535;
|
|
100
|
+
--surface-600: #3e3e3e;
|
|
101
|
+
--surface-700: #4a4a4a;
|
|
102
|
+
--surface-800: #5e5e5e;
|
|
103
|
+
--surface-900: #7d7d7d;
|
|
104
|
+
|
|
105
|
+
--surface-ground: var(--surface-0);
|
|
106
|
+
--surface-section: var(--surface-50);
|
|
107
|
+
--surface-card: var(--surface-100);
|
|
108
|
+
--surface-overlay: #ffffff;
|
|
109
|
+
--surface-border: var(--surface-300);
|
|
110
|
+
--surface-hover: #f5f5f516;
|
|
111
|
+
--surface-code-highlight: #5e5e5e50;
|
|
112
|
+
|
|
113
|
+
--content-padding: 1.25rem;
|
|
114
|
+
--inline-spacing: 0.5rem;
|
|
115
|
+
--border-radius: 6px;
|
|
116
|
+
--focus-ring: 0 0 0 0.2rem #f3642b9f;
|
|
117
|
+
--tabview-header-active-bg: #f4f4f4;
|
|
118
|
+
|
|
119
|
+
--maskbg: #1c1c1c80;
|
|
120
|
+
--highlight-text-color: none;
|
|
121
|
+
--highlight-focus-bg: var(--surface-hover);
|
|
122
|
+
--dropdown-hover-bg: var(--surface-hover);
|
|
123
|
+
--disabled-opacity: 0.5;
|
|
124
|
+
--error-color: #f26464;
|
|
125
|
+
--mask-bg: #1c1c1c80;
|
|
126
|
+
--bg-selection: #fab99e;
|
|
127
|
+
--table-bg-color: var(--surface-100);
|
|
128
|
+
--table-header-color: var(--surface-50);
|
|
129
|
+
--highlight-tabview-nav-link: #1e1e1e;
|
|
130
|
+
--bg-tabview-nav-link: var(--surface-100);
|
|
131
|
+
--highlight-tab-menu-link: #1c1c1c;
|
|
132
|
+
--paginator-bg: var(--surface-50);
|
|
133
|
+
--paginator-border: var(--surface-border);
|
|
134
|
+
--paginator-element-hover-bg: hsla(0, 0%, 100%, 0.03);
|
|
135
|
+
--table-header-font-weight: 500;
|
|
136
|
+
--table-cell-font-weight: 600;
|
|
137
|
+
--table-header-cell-hover-bg: var(--surface-200);
|
|
138
|
+
--table-header-cell-bg: var(--surface-50);
|
|
139
|
+
--table-header-cell-highlight-bg: var(--surface-50);
|
|
140
|
+
--table-cell-highlight-hover-bg: var(--surface-200);
|
|
141
|
+
--table-body-row-even-bg: var(--surface-100);
|
|
142
|
+
--table-body-row-hover-bg: var(--surface-200);
|
|
143
|
+
--table-footer-cell-bg: #1c1c1c;
|
|
144
|
+
--table-footer-border: var(--surface-border);
|
|
145
|
+
--table-footer-border-width: none;
|
|
146
|
+
--table-footer-bg: #1c1c1c;
|
|
147
|
+
--plain-button-active-bg-color: #222222;
|
|
148
|
+
--secondary-button-bg: #ffffff;
|
|
149
|
+
--secondary-button-text-color: #222222;
|
|
150
|
+
--secondary-button-border: #f4f4f4;
|
|
151
|
+
--secondary-button-hover-bg: #e1e1e1;
|
|
152
|
+
--secondary-button-text-hover-color: #1e1e1e;
|
|
153
|
+
--secondary-button-hover-border-color: #e1e1e1;
|
|
154
|
+
--secondary-button-active-bg: #d9d9d9;
|
|
155
|
+
--secondary-button-active-border-color: #d9d9d9;
|
|
156
|
+
--secondary-button-hover-border-color: #e1e1e1;
|
|
157
|
+
--secondary-button-text-active-color: #1e1e1e;
|
|
158
|
+
--secondary-button-active-border-color: #d9d9d9;
|
|
159
|
+
--warning-button-text-color: #1e1e1e;
|
|
160
|
+
--help-button-hover-border-color: #8e24aa;
|
|
161
|
+
--help-button-active: #7b1fa2;
|
|
162
|
+
--toggle-button-bg: #1e1e1e;
|
|
163
|
+
--toggle-button-border: #3e3e3e;
|
|
164
|
+
--toggle-button-hover-bg: #282828;
|
|
165
|
+
--input-bg: var(--surface-300);
|
|
166
|
+
--input-border: var(--surface-500);
|
|
167
|
+
--input-placeholder-text-color: #666;
|
|
168
|
+
--input-filled-bg: #181818;
|
|
169
|
+
--input-filled-hover-bg: #2b2b2b;
|
|
170
|
+
--input-filled-focus-bg: #181818;
|
|
171
|
+
--input-group-bg: #1c1c1c;
|
|
172
|
+
--input-list-bg: #171717;
|
|
173
|
+
--input-list-header-bg: #1c1c1c;
|
|
174
|
+
--input-overlay-shadow:
|
|
175
|
+
0px 0px 0px 1px #3b3b3b, 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
|
|
176
|
+
--checkbox-border: #666666;
|
|
177
|
+
--calendar-bg: #292929;
|
|
178
|
+
--calendar-cell-date-today-bg: #f4f4f4;
|
|
179
|
+
--calendar-cell-date-today-text-color: #1e1e1e;
|
|
180
|
+
--input-switch-slider-off-bg: #a1a1a1;
|
|
181
|
+
--input-switch-slider-off-hover-bg: #5e5e5e;
|
|
182
|
+
--input-switch-handle-on-bg: #ffffff;
|
|
183
|
+
--file-upload-file-border: 1px solid #e7e7e7;
|
|
184
|
+
--editor-toolbar-border: 1px solid #e7e7e7;
|
|
185
|
+
--action-icon-border: #3e3e3e;
|
|
186
|
+
--action-icon-color: $textSecondaryColor;
|
|
187
|
+
--action-icon-hover-bg: #282828;
|
|
188
|
+
--action-icon-hover-border-color: 1px solid #3e3e3e;
|
|
189
|
+
--panel-content-bg: var(--surface-section);
|
|
190
|
+
--panel-header-hover-border-color: #171717;
|
|
191
|
+
--panel-header-text-hover-color: rgba(244, 244, 244, 0.04);
|
|
192
|
+
--card-shadow:
|
|
193
|
+
0px 2px 1px -1px rgba(0, 0, 0, 0.02), 0px 1px 1px 0px rgba(0, 0, 0, 0.14),
|
|
194
|
+
0px 1px 3px 0px rgba(0, 0, 0, 0.12), 0px 0px 0px 1px #3c3c3c;
|
|
195
|
+
--splitter-gutter-handle-bg: var(--surface-100);
|
|
196
|
+
--overlay-container-shadow:
|
|
197
|
+
0px 0px 0px 1px #3e3e3e, 0px 24px 38px 3px rgba(0, 0, 0, 0.14),
|
|
198
|
+
0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
|
|
199
|
+
--dialog-header-bg: var(--surface-section);
|
|
200
|
+
--tooltip-text-color: #1c1c1c;
|
|
201
|
+
--badge-font-weight: 400;
|
|
202
|
+
--tag-padding: 0.25rem 0.5rem;
|
|
203
|
+
--progress-bar-value-bg: #(var(--primary-color));
|
|
204
|
+
--progress-spinner-stroke-color: var(--surface-600);
|
|
205
|
+
--avatar-bg: #363636;
|
|
206
|
+
--chip-bg: #404040;
|
|
207
|
+
--chip-focus-bg: #363636;
|
|
208
|
+
--skeleton-bg: #3131316d;
|
|
209
|
+
--skeleton-animation-bg: #31313199;
|
|
210
|
+
--toast-shadow: #3e3e3e;
|
|
211
|
+
--success-message-bg: #39e4781f;
|
|
212
|
+
--success-message-icon-color: #39e478;
|
|
213
|
+
--error-message--bg: #f2646433;
|
|
214
|
+
--error-message-icon-color: #f26464;
|
|
215
|
+
--steps-item-bg: #00000000;
|
|
216
|
+
--steps-item-border: #3e3e3e;
|
|
217
|
+
--menu-bg: #1c1c1c;
|
|
218
|
+
--menu-border: #3e3e3e;
|
|
219
|
+
--submenu-header-font-weight: 500;
|
|
220
|
+
--overlay-menu-shadow:
|
|
221
|
+
0px 1px 10px 0px rgba(0, 0, 0, 0.12), 0px 4px 5px 0px rgba(0, 0, 0, 0.14),
|
|
222
|
+
0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 0px 0px 1px #3c3c3c;
|
|
223
|
+
--horizontal-menu-bg: #1c1c1c;
|
|
224
|
+
--p-tag-background: #ff6c4729;
|
|
225
|
+
--p-tag-color: #ff6c47;
|
|
226
|
+
--p-tag-success-background: #16a34a33;
|
|
227
|
+
--p-tag-success-color: #39e478;
|
|
228
|
+
--p-tag-warning-background: #ffb64d33;
|
|
229
|
+
--p-tag-warning-color: #ffb64d;
|
|
230
|
+
--p-tag-danger-background: #f53d3d33;
|
|
231
|
+
--p-tag-danger-color: #f53d3d;
|
|
232
|
+
--p-tag-close-background: #404040;
|
|
233
|
+
--p-tag-close-color: #ffffff;
|
|
234
|
+
--carousel-indicator: #e9ecef20;
|
|
235
|
+
--carousel-indicator-highlight: #ededed;
|
|
236
|
+
--carousel-indicator-hover: #dee2e640;
|
|
237
|
+
--special-button-bg: rgba(23, 23, 23, 0.85);
|
|
238
|
+
--special-button-hover-bg: rgba(23, 23, 23, 0.25);
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
:root.azion.azion-light {
|
|
242
|
+
color-scheme: light;
|
|
243
|
+
--text-color: #1c1c1c;
|
|
244
|
+
--primary-color-text: #f4f4f4;
|
|
245
|
+
--text-color-secondary: #666666;
|
|
246
|
+
--text-color-link: #3265cb;
|
|
247
|
+
--text-color-link-hover: #2851a4;
|
|
248
|
+
--text-color-empty: var(--surface-800);
|
|
249
|
+
--degrade-primary: 0, 0, 0;
|
|
250
|
+
--degrade-secondary: 255, 255, 255;
|
|
251
|
+
|
|
252
|
+
--primary-color: #2b2b2b;
|
|
253
|
+
--primary-dark-color: #000;
|
|
254
|
+
--primary-darker-color: #000;
|
|
255
|
+
--primary-text-color: #f4f4f4;
|
|
256
|
+
|
|
257
|
+
--overlay-content-bg: var(--surface-section);
|
|
258
|
+
--highlight-bg: var(--surface-100);
|
|
259
|
+
|
|
260
|
+
--primary-color-text: #f4f4f4;
|
|
261
|
+
--primary-text-color: #f4f4f4;
|
|
262
|
+
|
|
263
|
+
--gray-50: #fafafa;
|
|
264
|
+
--gray-100: #f5f5f5;
|
|
265
|
+
--gray-200: #eeeeee;
|
|
266
|
+
--gray-300: #e0e0e0;
|
|
267
|
+
--gray-400: #bdbdbd;
|
|
268
|
+
--gray-500: #9e9e9e;
|
|
269
|
+
--gray-600: #757575;
|
|
270
|
+
--gray-700: #616161;
|
|
271
|
+
--gray-800: #424242;
|
|
272
|
+
--gray-900: #212121;
|
|
273
|
+
|
|
274
|
+
--surface-0: #ffffff;
|
|
275
|
+
--surface-50: #f9fafb;
|
|
276
|
+
--surface-100: #f4f4f4;
|
|
277
|
+
--surface-200: #eeeeee;
|
|
278
|
+
--surface-300: #e8e8e8;
|
|
279
|
+
--surface-400: #e3e3e3;
|
|
280
|
+
--surface-500: #dddddd;
|
|
281
|
+
--surface-600: #d3d3d3;
|
|
282
|
+
--surface-700: #c9c9c9;
|
|
283
|
+
--surface-800: #b5b5b5;
|
|
284
|
+
--surface-900: #a7a7a7;
|
|
285
|
+
|
|
286
|
+
--surface-ground: var(--surface-50);
|
|
287
|
+
--surface-section: var(--surface-0);
|
|
288
|
+
--surface-card: var(--surface-0);
|
|
289
|
+
--surface-overlay: var(--surface-0);
|
|
290
|
+
--surface-border: var(--surface-200);
|
|
291
|
+
--surface-hover: #3b3b3b16;
|
|
292
|
+
--surface-code-highlight: #b5b5b550;
|
|
293
|
+
|
|
294
|
+
--maskbg: #1e1e1e32;
|
|
295
|
+
--highlight-text-color: none;
|
|
296
|
+
--highlight-focus-bg: var(--surface-hover);
|
|
297
|
+
--highlight-tabview-nav-link: #f4f4f4;
|
|
298
|
+
--dropdown-hover-bg: var(--surface-hover);
|
|
299
|
+
--bg-tabview-nav-link: var(--surface-hover);
|
|
300
|
+
--tabview-header-active-bg: #1e1e1e;
|
|
301
|
+
--disabled-opacity: 0.4;
|
|
302
|
+
--mask-bg: #1e1e1e32;
|
|
303
|
+
--error-color: #ef4040;
|
|
304
|
+
--bg-selection: #f7966e;
|
|
305
|
+
--table-bg-color: var(--surface-0);
|
|
306
|
+
--table-header-color: var(--surface-0);
|
|
307
|
+
--highlight-tab-menu-link: #f4f4f4;
|
|
308
|
+
--paginator-bg: var(--surface-0);
|
|
309
|
+
--paginator-border: none;
|
|
310
|
+
--paginator-element-hover-bg: #e9ecef;
|
|
311
|
+
--table-header-cell-hover-bg: #e9ecef;
|
|
312
|
+
--table-cell-highlight-hover-bg: #e9ecef;
|
|
313
|
+
--table-header-font-weight: 600;
|
|
314
|
+
--table-cell-font-weight: 500;
|
|
315
|
+
--table-header-cell-bg: var(--surface-50);
|
|
316
|
+
--table-header-cell-highlight-bg: var(--surface-100);
|
|
317
|
+
--table-body-row-even-bg: #ffffff;
|
|
318
|
+
--table-body-row-hover-bg: #f7f7f7;
|
|
319
|
+
--table-footer-border: #e9ecef;
|
|
320
|
+
--table-footer-border-width: 0 0 1px 0;
|
|
321
|
+
--table-footer-bg: #f8f9fa;
|
|
322
|
+
--plain-button-active-bg-color: #1e1e1e33;
|
|
323
|
+
--secondary-button-bg: #1e1e1e;
|
|
324
|
+
--secondary-button-text-color: #f4f4f4;
|
|
325
|
+
--secondary-button-hover-bg: #404040;
|
|
326
|
+
--secondary-button-text-hover-color: #f4f4f4;
|
|
327
|
+
--secondary-button-hover-border-color: #323232;
|
|
328
|
+
--secondary-button-active-bg: #303030;
|
|
329
|
+
--secondary-button-text-active-color: #ffffff;
|
|
330
|
+
--secondary-button-active-border-color: #303030;
|
|
331
|
+
--warning-button-text-color: #1c1c1c;
|
|
332
|
+
--help-button-hover-border-color: #0953a6;
|
|
333
|
+
--help-button-active: #0953a6;
|
|
334
|
+
--toggle-button-bg: #ffffff;
|
|
335
|
+
--toggle-button-border: #ced4da;
|
|
336
|
+
--toggle-button-hover-bg: #e9ecef;
|
|
337
|
+
--input-bg: var(--surface-100);
|
|
338
|
+
--input-border: var(--surface-300);
|
|
339
|
+
--input-placeholder-text-color: #979797;
|
|
340
|
+
--input-filled-bg: #f4f4f4;
|
|
341
|
+
--input-filled-hover-bg: #eaeaea;
|
|
342
|
+
--input-filled-focus-bg: #f8f9fa;
|
|
343
|
+
--input-group-bg: #eaeaea;
|
|
344
|
+
--input-list-bg: #ffffff;
|
|
345
|
+
--input-list-header-bg: #f8f9fa;
|
|
346
|
+
--input-overlay-shadow:
|
|
347
|
+
0px 0px 0px 1px #e7e7e7, 0px 1px 4px 0px rgba(0, 0, 0, 0.04);
|
|
348
|
+
--checkbox-border: var(--surface-border);
|
|
349
|
+
--calendar-bg: #ffffff;
|
|
350
|
+
--calendar-cell-date-today-bg: #1e1e1e;
|
|
351
|
+
--calendar-cell-date-today-text-color: #f4f4f4;
|
|
352
|
+
--input-switch-slider-off-bg: #ced4da;
|
|
353
|
+
--input-switch-slider-off-hover-bg: #c3cad2;
|
|
354
|
+
--input-switch-handle-on-bg: #1e1e1e;
|
|
355
|
+
--file-upload-file-border: 1px solid #c3cad2;
|
|
356
|
+
--editor-toolbar-border: 1px solid #dee2e6;
|
|
357
|
+
--action-icon-border: #e7e7e7;
|
|
358
|
+
--action-icon-color: $textColor;
|
|
359
|
+
--action-icon-hover-bg: #1e1e1e04;
|
|
360
|
+
--action-icon-hover-border-color: 1px solid #e7e7e7;
|
|
361
|
+
--panel-content-bg: var(--surface-section);
|
|
362
|
+
--panel-header-hover-border-color: #dee2e6;
|
|
363
|
+
--panel-header-text-hover-color: var(--text-color);
|
|
364
|
+
--card-shadow: 0px 0px 0px 1px #e7e7e7;
|
|
365
|
+
--splitter-gutter-handle-bg: #e7e7e7;
|
|
366
|
+
--overlay-container-shadow:
|
|
367
|
+
0px 0px 0px 1px #e7e7e7, 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
|
|
368
|
+
--dialog-header-bg: var(--surface-section);
|
|
369
|
+
--tooltip-text-color: #ffffff;
|
|
370
|
+
--badge-font-weight: 500;
|
|
371
|
+
--tag-padding: 0.25rem 0.4rem;
|
|
372
|
+
--progress-bar-value-bg: #f3652b;
|
|
373
|
+
--progress-spinner-stroke-color: $errorMessageTextColor;
|
|
374
|
+
--avatar-bg: #e7e7e7;
|
|
375
|
+
--chip-bg: #dedede;
|
|
376
|
+
--chip-focus-bg: #dee2e6;
|
|
377
|
+
--skeleton-bg: #eaeaea;
|
|
378
|
+
--skeleton-animation-bg: #d6d6d6;
|
|
379
|
+
--toast-shadow: #e7e7e7;
|
|
380
|
+
--success-message-bg: #1982361f;
|
|
381
|
+
--success-message-icon-color: #198236;
|
|
382
|
+
--error-message--bg: #ef40401f;
|
|
383
|
+
--error-message-icon-color: #ef4040;
|
|
384
|
+
--steps-item-bg: #ffffff00;
|
|
385
|
+
--steps-item-border: #e7e7e7;
|
|
386
|
+
--menu-bg: #ffffff;
|
|
387
|
+
--menu-border: #e7e7e7;
|
|
388
|
+
--submenu-header-font-weight: 400;
|
|
389
|
+
--overlay-menu-shadow:
|
|
390
|
+
0px 1px 4px 0px rgba(0, 0, 0, 0.04), 0px 0px 0px 1px #e7e7e7;
|
|
391
|
+
--horizontal-menu-bg: #f8f9fa;
|
|
392
|
+
--p-tag-background: #ff6c4729;
|
|
393
|
+
--p-tag-color: #ff6c47;
|
|
394
|
+
--p-tag-success-background: #16a34a33;
|
|
395
|
+
--p-tag-success-color: #16a34a;
|
|
396
|
+
--p-tag-warning-background: #c5970733;
|
|
397
|
+
--p-tag-warning-color: #c59707;
|
|
398
|
+
--p-tag-danger-background: #ef404033;
|
|
399
|
+
--p-tag-danger-color: #ef4040;
|
|
400
|
+
--p-tag-close-background: #404040;
|
|
401
|
+
--p-tag-close-color: #ffffff;
|
|
402
|
+
--carousel-indicator: #e9ecef;
|
|
403
|
+
--carousel-indicator-highlight: #1c1c1c;
|
|
404
|
+
--carousel-indicator-hover: #dee2e6;
|
|
405
|
+
--special-button-bg: rgba(255, 255, 255);
|
|
406
|
+
--special-button-hover-bg: rgba(255, 255, 255, 0.85);
|
|
407
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
.special-button {
|
|
2
|
+
position: relative;
|
|
3
|
+
display: flex;
|
|
4
|
+
justify-content: center;
|
|
5
|
+
align-items: center;
|
|
6
|
+
border: none;
|
|
7
|
+
padding: 1px;
|
|
8
|
+
background-color: transparent;
|
|
9
|
+
border-radius: 0.375rem;
|
|
10
|
+
overflow: hidden;
|
|
11
|
+
transition: background-color 0.3s ease;
|
|
12
|
+
|
|
13
|
+
&::before {
|
|
14
|
+
content: '';
|
|
15
|
+
position: absolute;
|
|
16
|
+
inset: 0;
|
|
17
|
+
filter: blur(12px);
|
|
18
|
+
background: linear-gradient(
|
|
19
|
+
90deg,
|
|
20
|
+
rgba(255, 255, 255, 1), /* white */
|
|
21
|
+
rgba(0, 20, 255, 1), /* violet */
|
|
22
|
+
rgba(255, 120, 0, 1) /* orange */
|
|
23
|
+
);
|
|
24
|
+
animation: rotate-background 8s linear infinite;
|
|
25
|
+
z-index: 1;
|
|
26
|
+
pointer-events: none;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&:hover .special-button-content {
|
|
30
|
+
background-color: var(--special-button-hover-bg);
|
|
31
|
+
box-shadow: inset 0 0 0 0px var(--surface-border);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.special-button-content {
|
|
36
|
+
position: relative;
|
|
37
|
+
z-index: 2;
|
|
38
|
+
display: flex;
|
|
39
|
+
align-items: center;
|
|
40
|
+
gap: 0.375rem;
|
|
41
|
+
padding: 0 0.75rem;
|
|
42
|
+
height: 2rem;
|
|
43
|
+
border-radius: 0.375rem;
|
|
44
|
+
background-color: var(--special-button-bg);
|
|
45
|
+
transition: background-color 0.3s ease;
|
|
46
|
+
box-shadow: inset 0 0 0 .5px var(--surface-border);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
@keyframes rotate-background {
|
|
50
|
+
0% {
|
|
51
|
+
transform: rotate(0deg);
|
|
52
|
+
}
|
|
53
|
+
100% {
|
|
54
|
+
transform: rotate(360deg);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
// Custom badge
|
|
2
|
+
.p-badge {
|
|
3
|
+
border: 1px solid var(--surface-border) !important;
|
|
4
|
+
border-radius: $borderRadius;
|
|
5
|
+
color: $badgeTextColor;
|
|
6
|
+
font-size: 0.75rem !important;
|
|
7
|
+
font-weight: 600 !important;
|
|
8
|
+
min-width: $badgeMinWidth;
|
|
9
|
+
height: $badgeHeight;
|
|
10
|
+
display: flex !important;
|
|
11
|
+
align-items: center !important;
|
|
12
|
+
justify-content: center !important;
|
|
13
|
+
|
|
14
|
+
&.p-badge-secondary {
|
|
15
|
+
background-color: $secondaryButtonBg;
|
|
16
|
+
color: $secondaryButtonTextColor;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
&.p-badge-success {
|
|
20
|
+
background-color: $successButtonBg;
|
|
21
|
+
color: $successButtonTextColor;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
&.p-badge-info {
|
|
25
|
+
background-color: $infoButtonBg;
|
|
26
|
+
color: $infoButtonTextColor;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&.p-badge-warning {
|
|
30
|
+
background-color: $warningButtonBg;
|
|
31
|
+
color: $warningButtonTextColor;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
&.p-badge-danger {
|
|
35
|
+
background-color: $dangerButtonBg;
|
|
36
|
+
color: $dangerButtonTextColor;
|
|
37
|
+
border: none !important;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
&.p-badge-lg {
|
|
41
|
+
font-size: 1.5 * $badgeFontSize;
|
|
42
|
+
min-width: 1.5 * $badgeMinWidth;
|
|
43
|
+
height: 1.5 * $badgeHeight;
|
|
44
|
+
line-height: 1.5 * $badgeHeight;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
&.p-badge-xl {
|
|
48
|
+
font-size: 2 * $badgeFontSize;
|
|
49
|
+
min-width: 2 * $badgeMinWidth;
|
|
50
|
+
height: 2 * $badgeHeight;
|
|
51
|
+
line-height: 2 * $badgeHeight;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// Custom Breadcrumb
|
|
2
|
+
.p-breadcrumb {
|
|
3
|
+
.p-breadcrumb-list {
|
|
4
|
+
font-weight: 500 !important;
|
|
5
|
+
text-wrap: nowrap !important;
|
|
6
|
+
.p-menuitem-link {
|
|
7
|
+
padding: 0.25rem 0.125rem !important;
|
|
8
|
+
transition: $formElementTransition !important;
|
|
9
|
+
font-size: 1.125rem !important;
|
|
10
|
+
}
|
|
11
|
+
.p-menuitem:last-of-type {
|
|
12
|
+
font-weight: 500 !important;
|
|
13
|
+
}
|
|
14
|
+
.p-menuitem:hover {
|
|
15
|
+
text-decoration: underline;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|