azion-theme 1.4.3 → 1.5.1

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 (131) hide show
  1. package/.github/workflows/release.yml +1 -1
  2. package/CHANGELOG.md +13 -0
  3. package/CODEOWNERS +1 -1
  4. package/default.js +1 -0
  5. package/package.json +3 -2
  6. package/src/azion/_custom.scss +1 -0
  7. package/src/azion/_extensions.scss +30 -0
  8. package/src/azion/_fonts.scss +156 -0
  9. package/src/azion/_variables.scss +369 -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/extended-components/_badge.scss +53 -0
  14. package/src/azion/extended-components/_breadcumb.scss +18 -0
  15. package/src/azion/extended-components/_button.scss +131 -0
  16. package/src/azion/extended-components/_calendar.scss +42 -0
  17. package/src/azion/extended-components/_checkbox.scss +58 -0
  18. package/src/azion/extended-components/_datatable.scss +92 -0
  19. package/src/azion/extended-components/_dialog.scss +45 -0
  20. package/src/azion/extended-components/_divider.scss +31 -0
  21. package/src/azion/extended-components/_dropdownitem.scss +12 -0
  22. package/src/azion/extended-components/_inlinemessage.scss +10 -0
  23. package/src/azion/extended-components/_inputnumber.scss +40 -0
  24. package/src/azion/extended-components/_inputpassword.scss +4 -0
  25. package/src/azion/extended-components/_inputswitch.scss +53 -0
  26. package/src/azion/extended-components/_listbox.scss +25 -0
  27. package/src/azion/extended-components/_markdown.scss +123 -0
  28. package/src/azion/extended-components/_menuitem.scss +22 -0
  29. package/src/azion/extended-components/_multiselect.scss +170 -0
  30. package/src/azion/extended-components/_overlaypanel.scss +18 -0
  31. package/src/azion/extended-components/_picklist.scss +25 -0
  32. package/src/azion/extended-components/_progressbar.scss +6 -0
  33. package/src/azion/extended-components/_radiobutton.scss +63 -0
  34. package/src/azion/extended-components/_selectbutton.scss +36 -0
  35. package/src/azion/extended-components/_sidebar.scss +27 -0
  36. package/src/azion/extended-components/_tabmenu.scss +21 -0
  37. package/src/azion/extended-components/_tabview.scss +41 -0
  38. package/src/azion/extended-components/_tag.scss +42 -0
  39. package/src/azion/extended-components/_toast.scss +67 -0
  40. package/src/azion/extended-components/_tooltip.scss +7 -0
  41. package/src/azion/theme-base/_colors.scss +18 -0
  42. package/src/azion/theme-base/_common.scss +75 -0
  43. package/src/azion/theme-base/_components.scss +103 -0
  44. package/src/azion/theme-base/_mixins.scss +250 -0
  45. package/src/azion/theme-base/components/button/_button.scss +564 -0
  46. package/src/azion/theme-base/components/button/_speeddial.scss +97 -0
  47. package/src/azion/theme-base/components/button/_splitbutton.scss +390 -0
  48. package/src/azion/theme-base/components/data/_carousel.scss +37 -0
  49. package/src/azion/theme-base/components/data/_datatable.scss +347 -0
  50. package/src/azion/theme-base/components/data/_dataview.scss +47 -0
  51. package/src/azion/theme-base/components/data/_filter.scss +138 -0
  52. package/src/azion/theme-base/components/data/_orderlist.scss +70 -0
  53. package/src/azion/theme-base/components/data/_organizationchart.scss +50 -0
  54. package/src/azion/theme-base/components/data/_paginator.scss +92 -0
  55. package/src/azion/theme-base/components/data/_picklist.scss +70 -0
  56. package/src/azion/theme-base/components/data/_timeline.scss +38 -0
  57. package/src/azion/theme-base/components/data/_tree.scss +90 -0
  58. package/src/azion/theme-base/components/data/_treetable.scss +251 -0
  59. package/src/azion/theme-base/components/file/_fileupload.scss +82 -0
  60. package/src/azion/theme-base/components/input/_autocomplete.scss +114 -0
  61. package/src/azion/theme-base/components/input/_calendar.scss +251 -0
  62. package/src/azion/theme-base/components/input/_cascadeselect.scss +106 -0
  63. package/src/azion/theme-base/components/input/_checkbox.scss +86 -0
  64. package/src/azion/theme-base/components/input/_chips.scss +53 -0
  65. package/src/azion/theme-base/components/input/_colorpicker.scss +18 -0
  66. package/src/azion/theme-base/components/input/_dropdown.scss +147 -0
  67. package/src/azion/theme-base/components/input/_editor.scss +122 -0
  68. package/src/azion/theme-base/components/input/_inputgroup.scss +74 -0
  69. package/src/azion/theme-base/components/input/_inputnumber.scss +5 -0
  70. package/src/azion/theme-base/components/input/_inputswitch.scss +62 -0
  71. package/src/azion/theme-base/components/input/_inputtext.scss +100 -0
  72. package/src/azion/theme-base/components/input/_listbox.scss +89 -0
  73. package/src/azion/theme-base/components/input/_multiselect.scss +166 -0
  74. package/src/azion/theme-base/components/input/_password.scss +33 -0
  75. package/src/azion/theme-base/components/input/_radiobutton.scss +78 -0
  76. package/src/azion/theme-base/components/input/_rating.scss +60 -0
  77. package/src/azion/theme-base/components/input/_selectbutton.scss +50 -0
  78. package/src/azion/theme-base/components/input/_slider.scss +49 -0
  79. package/src/azion/theme-base/components/input/_togglebutton.scss +52 -0
  80. package/src/azion/theme-base/components/input/_treeselect.scss +91 -0
  81. package/src/azion/theme-base/components/menu/_breadcrumb.scss +42 -0
  82. package/src/azion/theme-base/components/menu/_contextmenu.scss +39 -0
  83. package/src/azion/theme-base/components/menu/_dock.scss +95 -0
  84. package/src/azion/theme-base/components/menu/_megamenu.scss +55 -0
  85. package/src/azion/theme-base/components/menu/_menu.scss +33 -0
  86. package/src/azion/theme-base/components/menu/_menubar.scss +141 -0
  87. package/src/azion/theme-base/components/menu/_panelmenu.scss +153 -0
  88. package/src/azion/theme-base/components/menu/_steps.scss +56 -0
  89. package/src/azion/theme-base/components/menu/_tabmenu.scss +49 -0
  90. package/src/azion/theme-base/components/menu/_tieredmenu.scss +43 -0
  91. package/src/azion/theme-base/components/messages/_inlinemessage.scss +64 -0
  92. package/src/azion/theme-base/components/messages/_message.scss +100 -0
  93. package/src/azion/theme-base/components/messages/_toast.scss +100 -0
  94. package/src/azion/theme-base/components/misc/_avatar.scss +30 -0
  95. package/src/azion/theme-base/components/misc/_badge.scss +48 -0
  96. package/src/azion/theme-base/components/misc/_blockui.scss +0 -0
  97. package/src/azion/theme-base/components/misc/_chip.scss +39 -0
  98. package/src/azion/theme-base/components/misc/_inplace.scss +17 -0
  99. package/src/azion/theme-base/components/misc/_progressbar.scss +17 -0
  100. package/src/azion/theme-base/components/misc/_progressspinner.scss +49 -0
  101. package/src/azion/theme-base/components/misc/_scrolltop.scss +25 -0
  102. package/src/azion/theme-base/components/misc/_skeleton.scss +8 -0
  103. package/src/azion/theme-base/components/misc/_tag.scss +40 -0
  104. package/src/azion/theme-base/components/misc/_terminal.scss +12 -0
  105. package/src/azion/theme-base/components/multimedia/_galleria.scss +151 -0
  106. package/src/azion/theme-base/components/multimedia/_image.scss +54 -0
  107. package/src/azion/theme-base/components/overlay/_confirmpopup.scss +72 -0
  108. package/src/azion/theme-base/components/overlay/_dialog.scss +64 -0
  109. package/src/azion/theme-base/components/overlay/_overlaypanel.scss +64 -0
  110. package/src/azion/theme-base/components/overlay/_sidebar.scss +23 -0
  111. package/src/azion/theme-base/components/overlay/_tooltip.scss +33 -0
  112. package/src/azion/theme-base/components/panel/_accordion.scss +118 -0
  113. package/src/azion/theme-base/components/panel/_card.scss +30 -0
  114. package/src/azion/theme-base/components/panel/_divider.scss +31 -0
  115. package/src/azion/theme-base/components/panel/_fieldset.scss +51 -0
  116. package/src/azion/theme-base/components/panel/_panel.scss +47 -0
  117. package/src/azion/theme-base/components/panel/_scrollpanel.scss +11 -0
  118. package/src/azion/theme-base/components/panel/_splitter.scss +24 -0
  119. package/src/azion/theme-base/components/panel/_tabview.scss +66 -0
  120. package/src/azion/theme-base/components/panel/_toolbar.scss +11 -0
  121. package/src/azion/theme.scss +9 -0
  122. package/src/azion/variables/_button.scss +438 -0
  123. package/src/azion/variables/_data.scss +346 -0
  124. package/src/azion/variables/_form.scss +570 -0
  125. package/src/azion/variables/_general.scss +149 -0
  126. package/src/azion/variables/_media.scss +231 -0
  127. package/src/azion/variables/_menu.scss +287 -0
  128. package/src/azion/variables/_message.scss +145 -0
  129. package/src/azion/variables/_misc.scss +143 -0
  130. package/src/azion/variables/_overlay.scss +67 -0
  131. package/src/azion/variables/_panel.scss +327 -0
@@ -1,4 +1,4 @@
1
- name: Publish Package to npm.pkg.github
1
+ name: Publish Package
2
2
 
3
3
  on:
4
4
  repository_dispatch:
package/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ ## [1.5.1](https://github.com/aziontech/azion-theme/compare/v1.5.0...v1.5.1) (2024-08-06)
2
+
3
+ ### Bug Fixes
4
+
5
+ * fork primevue base theme and remove scss functions ([e6346c8](https://github.com/aziontech/azion-theme/commit/e6346c87edcdd4c777f0ddedea95a8f374c33744))
6
+ * scss variablens + functions ([efe88d3](https://github.com/aziontech/azion-theme/commit/efe88d368e063d697c156ff6642e9552f67f4064))
7
+
8
+ ## [1.5.0](https://github.com/aziontech/azion-theme/compare/v1.4.3...v1.5.0) (2024-08-05)
9
+
10
+ ### Features
11
+
12
+ * default theme supporting dark/light mode ([14433c6](https://github.com/aziontech/azion-theme/commit/14433c6814c8ef6601a73106043a4e83b47fc36b))
13
+
1
14
  ## [1.4.3](https://github.com/aziontech/azion-theme/compare/v1.4.2...v1.4.3) (2024-08-01)
2
15
 
3
16
  ### Bug Fixes
package/CODEOWNERS CHANGED
@@ -1 +1 @@
1
- * @cesaroeduardo @gablisb0a
1
+ * @cesaroeduardo @robsongajunior
package/default.js ADDED
@@ -0,0 +1 @@
1
+ import './src/azion/theme.scss';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "azion-theme",
3
3
  "type": "module",
4
- "version": "1.4.3",
4
+ "version": "1.5.1",
5
5
  "author": "aziontech",
6
6
  "contributors": [
7
7
  {
@@ -18,7 +18,8 @@
18
18
  ],
19
19
  "exports": {
20
20
  "./dark": "./dark.js",
21
- "./light": "./light.js"
21
+ "./light": "./light.js",
22
+ ".": "./default.js"
22
23
  },
23
24
  "scripts": {
24
25
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -0,0 +1 @@
1
+ @import './custom/selection'
@@ -0,0 +1,30 @@
1
+ /* Customizations to the designer theme should be defined here */
2
+ @layer primevue {
3
+ @import './extended-components/button';
4
+ @import './extended-components/selectbutton';
5
+ @import './extended-components/tabview';
6
+ @import './extended-components/tabmenu';
7
+ @import './extended-components/divider';
8
+ @import './extended-components/dropdownitem';
9
+ @import './extended-components/inlinemessage';
10
+ @import './extended-components/breadcumb';
11
+ @import './extended-components/sidebar';
12
+ @import './extended-components/tooltip';
13
+ @import './extended-components/datatable';
14
+ @import './extended-components/inputpassword';
15
+ @import './extended-components/toast';
16
+ @import './extended-components/inputswitch';
17
+ @import './extended-components/radiobutton';
18
+ @import './extended-components/checkbox';
19
+ @import './extended-components/tag';
20
+ @import './extended-components/markdown';
21
+ @import './extended-components/listbox';
22
+ @import './extended-components/inputnumber';
23
+ @import './extended-components/calendar';
24
+ @import './extended-components/badge';
25
+ @import './extended-components/menuitem';
26
+ @import './extended-components/progressbar';
27
+ @import './extended-components/dialog';
28
+ @import './extended-components/multiselect';
29
+
30
+ }
@@ -0,0 +1,156 @@
1
+ // Configuration for the font-face of the theme, defaults to the system font so left as blank
2
+ @font-face {
3
+ font-family: 'Roboto';
4
+ src: url('https://fonts.azion.com/roboto/roboto-light.eot');
5
+ src:
6
+ url('https://fonts.azion.com/roboto/roboto-light.eot?#iefix') format('embedded-opentype'),
7
+ url('https://fonts.azion.com/roboto/roboto-light.woff2') format('woff2'),
8
+ url('https://fonts.azion.com/roboto/roboto-light.woff') format('woff'),
9
+ url('https://fonts.azion.com/roboto/roboto-light.ttf') format('truetype'),
10
+ url('https://fonts.azion.com/roboto/roboto-light.svg#roboto-light') format('svg');
11
+ font-weight: 300;
12
+ font-style: normal;
13
+ font-display: swap;
14
+ }
15
+
16
+ @font-face {
17
+ font-family: 'Roboto Mono';
18
+ src: url('https://fonts.azion.com/roboto-mono/roboto-mono-regular.ttf') format('truetype');
19
+ font-weight: 400;
20
+ font-style: normal;
21
+ font-display: swap;
22
+ }
23
+
24
+ @font-face {
25
+ font-family: 'Roboto Mono';
26
+ src: url('https://fonts.azion.com/roboto-mono/roboto-mono-light.ttf') format('truetype');
27
+ font-weight: 300;
28
+ font-style: normal;
29
+ font-display: swap;
30
+ }
31
+
32
+ @font-face {
33
+ font-family: 'Roboto';
34
+ src: url('https://fonts.azion.com/roboto/roboto-regular.eot');
35
+ src:
36
+ url('https://fonts.azion.com/roboto/roboto-regular.eot?#iefix') format('embedded-opentype'),
37
+ url('https://fonts.azion.com/roboto/roboto-regular.woff2') format('woff2'),
38
+ url('https://fonts.azion.com/roboto/roboto-regular.woff') format('woff'),
39
+ url('https://fonts.azion.com/roboto/roboto-regular.ttf') format('truetype'),
40
+ url('https://fonts.azion.com/roboto/roboto-regular.svg#Roboto-Regular') format('svg');
41
+ font-weight: 400;
42
+ font-style: normal;
43
+ font-display: swap;
44
+ }
45
+
46
+ @font-face {
47
+ font-family: 'Roboto';
48
+ src: url('https://fonts.azion.com/roboto/roboto-italic.eot');
49
+ src:
50
+ url('https://fonts.azion.com/roboto/roboto-italic.eot?#iefix') format('embedded-opentype'),
51
+ url('https://fonts.azion.com/roboto/roboto-italic.woff2') format('woff2'),
52
+ url('https://fonts.azion.com/roboto/roboto-italic.woff') format('woff'),
53
+ url('https://fonts.azion.com/roboto/roboto-italic.ttf') format('truetype'),
54
+ url('https://fonts.azion.com/roboto/roboto-italic.svg#roboto-italic') format('svg');
55
+ font-weight: 400;
56
+ font-style: italic;
57
+ font-display: swap;
58
+ }
59
+
60
+ @font-face {
61
+ font-family: 'Roboto';
62
+ src: url('https://fonts.azion.com/roboto/roboto-medium.eot');
63
+ src:
64
+ url('https://fonts.azion.com/roboto/roboto-medium.eot?#iefix') format('embedded-opentype'),
65
+ url('https://fonts.azion.com/roboto/roboto-medium.woff2') format('woff2'),
66
+ url('https://fonts.azion.com/roboto/roboto-medium.woff') format('woff'),
67
+ url('https://fonts.azion.com/roboto/roboto-medium.ttf') format('truetype'),
68
+ url('https://fonts.azion.com/roboto/roboto-medium.svg#roboto-medium') format('svg');
69
+ font-weight: 500;
70
+ font-style: normal;
71
+ font-display: swap;
72
+ }
73
+
74
+ @font-face {
75
+ font-family: 'Roboto';
76
+ src: url('https://fonts.azion.com/roboto/roboto-mediumitalic.eot');
77
+ src:
78
+ url('https://fonts.azion.com/roboto/roboto-mediumitalic.eot?#iefix') format('embedded-opentype'),
79
+ url('https://fonts.azion.com/roboto/roboto-mediumitalic.woff2') format('woff2'),
80
+ url('https://fonts.azion.com/roboto/roboto-mediumitalic.woff') format('woff'),
81
+ url('https://fonts.azion.com/roboto/roboto-mediumitalic.ttf') format('truetype'),
82
+ url('https://fonts.azion.com/roboto/roboto-mediumitalic.svg#roboto-mediumitalic') format('svg');
83
+ font-weight: 500;
84
+ font-style: italic;
85
+ font-display: swap;
86
+ }
87
+
88
+ @font-face {
89
+ font-family: 'Roboto';
90
+ src: url('https://fonts.azion.com/roboto/roboto-bold.eot');
91
+ src:
92
+ url('https://fonts.azion.com/roboto/roboto-bold.eot?#iefix') format('embedded-opentype'),
93
+ url('https://fonts.azion.com/roboto/roboto-bold.woff2') format('woff2'),
94
+ url('https://fonts.azion.com/roboto/roboto-bold.woff') format('woff'),
95
+ url('https://fonts.azion.com/roboto/roboto-bold.ttf') format('truetype'),
96
+ url('https://fonts.azion.com/roboto/roboto-bold.svg#roboto-bold') format('svg');
97
+ font-weight: 600;
98
+ font-style: normal;
99
+ font-display: swap;
100
+ }
101
+
102
+ @font-face {
103
+ font-family: 'Roboto';
104
+ src: url('https://fonts.azion.com/roboto/roboto-bold.eot');
105
+ src:
106
+ url('https://fonts.azion.com/roboto/roboto-bold.eot?#iefix') format('embedded-opentype'),
107
+ url('https://fonts.azion.com/roboto/roboto-bold.woff2') format('woff2'),
108
+ url('https://fonts.azion.com/roboto/roboto-bold.woff') format('woff'),
109
+ url('https://fonts.azion.com/roboto/roboto-bold.ttf') format('truetype'),
110
+ url('https://fonts.azion.com/roboto/roboto-bold.svg#roboto-bold') format('svg');
111
+ font-weight: bold;
112
+ font-style: normal;
113
+ font-display: swap;
114
+ }
115
+
116
+ @font-face {
117
+ font-family: 'Roboto';
118
+ src: url('https://fonts.azion.com/roboto/roboto-bolditalic.eot');
119
+ src:
120
+ url('https://fonts.azion.com/roboto/roboto-bolditalic.eot?#iefix') format('embedded-opentype'),
121
+ url('https://fonts.azion.com/roboto/roboto-bolditalic.woff2') format('woff2'),
122
+ url('https://fonts.azion.com/roboto/roboto-bolditalic.woff') format('woff'),
123
+ url('https://fonts.azion.com/roboto/roboto-bolditalic.ttf') format('truetype'),
124
+ url('https://fonts.azion.com/roboto/roboto-bolditalic.svg#roboto-bolditalic') format('svg');
125
+ font-weight: bold;
126
+ font-style: italic;
127
+ font-display: swap;
128
+ }
129
+
130
+ @font-face {
131
+ font-family: 'Roboto';
132
+ src: url('https://fonts.azion.com/roboto/roboto-bolditalic.eot');
133
+ src:
134
+ url('https://fonts.azion.com/roboto/roboto-bolditalic.eot?#iefix') format('embedded-opentype'),
135
+ url('https://fonts.azion.com/roboto/roboto-bolditalic.woff2') format('woff2'),
136
+ url('https://fonts.azion.com/roboto/roboto-bolditalic.woff') format('woff'),
137
+ url('https://fonts.azion.com/roboto/roboto-bolditalic.ttf') format('truetype'),
138
+ url('https://fonts.azion.com/roboto/roboto-bolditalic.svg#roboto-bold') format('svg');
139
+ font-weight: 600;
140
+ font-style: italic;
141
+ font-display: swap;
142
+ }
143
+
144
+ @font-face {
145
+ font-family: 'Roboto';
146
+ src: url('https://fonts.azion.com/roboto/roboto-black.eot');
147
+ src:
148
+ url('https://fonts.azion.com/roboto/roboto-black.eot?#iefix') format('embedded-opentype'),
149
+ url('https://fonts.azion.com/roboto/roboto-black.woff2') format('woff2'),
150
+ url('https://fonts.azion.com/roboto/roboto-black.woff') format('woff'),
151
+ url('https://fonts.azion.com/roboto/roboto-black.ttf') format('truetype'),
152
+ url('https://fonts.azion.com/roboto/roboto-black.svg#roboto-black') format('svg');
153
+ font-weight: 700;
154
+ font-style: normal;
155
+ font-display: swap;
156
+ }
@@ -0,0 +1,369 @@
1
+ // Theme Specific Variables
2
+
3
+
4
+ $highlightBg: #f4f4f410;
5
+
6
+ $pc: #2b2b2b;
7
+ $pdc: #000;
8
+ $pderc: #000;
9
+ $ptc: #f4f4f4;
10
+ $highlightBg: rgba($pc, 0.06);
11
+ $overlayContentBg: #ffffff;
12
+
13
+ :root {
14
+ --surface-a: #ffffff;
15
+ --surface-b: #f8f9fa;
16
+ --surface-c: #e9ecef;
17
+ --surface-d: #dee2e6;
18
+ --surface-e: #ffffff;
19
+ --surface-f: #ffffff;
20
+
21
+ --green-50: #f4fcf7;
22
+ --green-100: #caf1d8;
23
+ --green-200: #a0e6ba;
24
+ --green-300: #76db9b;
25
+ --green-400: #4cd07d;
26
+ --green-500: #22c55e;
27
+ --green-600: #1da750;
28
+ --green-700: #188a42;
29
+ --green-800: #136c34;
30
+ --green-900: #0e4f26;
31
+
32
+ --red-50: #fff5f5;
33
+ --red-100: #ffd0ce;
34
+ --red-200: #ffaca7;
35
+ --red-300: #ff8780;
36
+ --red-400: #ff6259;
37
+ --red-500: #ff3d32;
38
+ --red-600: #d9342b;
39
+ --red-700: #b32b23;
40
+ --red-800: #8c221c;
41
+ --red-900: #661814;
42
+
43
+ --font-family: "Roboto", sans-serif;
44
+ }
45
+ // Mandatory Designer Variables
46
+
47
+ $colors: (
48
+ "blue": #2196f3,
49
+ "green": #4caf50,
50
+ "yellow": #fbc02d,
51
+ "cyan": #00bcd4,
52
+ "pink": #e91e63,
53
+ "indigo": #3f51b5,
54
+ "teal": #009688,
55
+ "orange": #f57c00,
56
+ "bluegray": #607d8b,
57
+ "purple": #9c27b0,
58
+ "red": #ff4032,
59
+ "primary": #f4f4f4
60
+ );
61
+
62
+ @import "./variables/general";
63
+ @import "./variables/form";
64
+ @import "./variables/button";
65
+ @import "./variables/panel";
66
+ @import "./variables/_data";
67
+ @import "./variables/_overlay";
68
+ @import "./variables/_message";
69
+ @import "./variables/_menu";
70
+ @import "./variables/_media";
71
+ @import "./variables/_misc";
72
+
73
+ :root.azion.azion-dark {
74
+ color-scheme: dark;
75
+
76
+ --primary-color: #f4f4f4;
77
+ --primary-dark-color: #hsla(0, 0%, 96%, 0.5);;
78
+ --primary-darker-color: #f4f4f4;
79
+ --primary-text-color: #f4f4f4;
80
+ --overlay-content-bg: #171717;
81
+ --highlight-bg: #f4f4f410;
82
+
83
+ --text-color: #ededed;
84
+ --primary-color-text: #1e1e1e;
85
+ --text-color-secondary: #b5b5b5;
86
+ --text-color-link: #93c5fd;
87
+ --text-color-link-hover: #93c5fd;
88
+
89
+ --surface-0: #0a0a0a;
90
+ --surface-50: #111111;
91
+ --surface-100: #171717;
92
+ --surface-200: #222222;
93
+ --surface-300: #282828;
94
+ --surface-400: #2e2e2e;
95
+ --surface-500: #353535;
96
+ --surface-600: #3e3e3e;
97
+ --surface-700: #4a4a4a;
98
+ --surface-800: #5e5e5e;
99
+ --surface-900: #7d7d7d;
100
+
101
+ --gray-50: #282828;
102
+ --gray-100: #363636;
103
+ --gray-200: #747474;
104
+ --gray-300: #939393;
105
+ --gray-400: #b2b2b2;
106
+ --gray-500: #9e9e9e;
107
+ --gray-600: #ebebeb;
108
+ --gray-700: #f5f5f5;
109
+ --gray-800: #fafafa;
110
+ --gray-900: #ffffff;
111
+
112
+ --surface-ground: #171717;
113
+ --surface-section: #171717;
114
+ --surface-card: #171717;
115
+ --surface-overlay: #ffffff;
116
+ --surface-border: #282828;
117
+ --surface-hover: #f5f5f516;
118
+
119
+ --content-padding: 1.25rem;
120
+ --inline-spacing: 0.5rem;
121
+ --border-radius: 6px;
122
+ --focus-ring: 0 0 0 0.2rem #f3642b9f;
123
+
124
+ --maskbg: #1c1c1c80;
125
+ --highlight-text-color: none;
126
+ --highlight-focus-bg: rgba(var(--primary-color), 0.08);
127
+ --disabled-opacity: 0.5;
128
+ --error-color: #f26464;
129
+ --mask-bg: #1c1c1c80;
130
+ --bg-selection: #fab99e;
131
+ --table-bg-color: #1c1c1c;
132
+ --tab-menu-link: #f4f4f4;
133
+ --paginator-bg: #1c1c1c;
134
+ --paginator-border: #282828;
135
+ --paginator-element-hover-bg: hsla(0, 0%, 100%, 0.03);
136
+ --table-header-font-weight: 500;
137
+ --table-cell-font-weight: 600;
138
+ --table-header-cell-hover-bg: #ffffff0d;
139
+ --table-header-cell-bg: #1c1c1c;
140
+ --table-header-cell-highlight-bg: #1c1c1c;
141
+ --table-cell-highlight-hover-bg: rgba(var(--primary-color), 0.16);
142
+ --table-body-row-even-bg: #212121;
143
+ --table-body-row-hover-bg: #353535;
144
+ --table-footer-cell-bg: #1c1c1c;
145
+ --table-footer-border: var(--surface-border);
146
+ --table-footer-border-width: none;
147
+ --table-footer-bg: #1c1c1c;
148
+ --plain-button-active-bg-color: #222222;
149
+ --secondary-button-bg: #ffffff;
150
+ --secondary-button-text-color: #222222;
151
+ --secondary-button-border: #f4f4f4;
152
+ --secondary-button-hover-bg: #e1e1e1;
153
+ --secondary-button-text-hover-color: #e1e1e1;
154
+ --secondary-button-hover-border-color: #e1e1e1;
155
+ --secondary-button-active-bg: #d9d9d9;
156
+ --secondary-button-active-border-color: #d9d9d9;
157
+ --secondary-button-text-hover-color: #1e1e1e;
158
+ --secondary-button-hover-border-color: #e1e1e1;
159
+ --secondary-button-text-active-color: #1e1e1e;
160
+ --secondary-button-active-border-color: #d9d9d9;
161
+ --warning-button-text-color: #1e1e1e;
162
+ --help-button-hover-border-color: #8e24aa;
163
+ --help-button-active: #7b1fa2;
164
+ --toggle-button-bg: #1e1e1e;
165
+ --toggle-button-border: #3e3e3e;
166
+ --toggle-button-hover-bg: #282828;
167
+ --input-bg: #292929;
168
+ --input-placeholder-text-color: #666;
169
+ --input-filled-bg: #181818;
170
+ --input-filled-hover-bg: #2b2b2b;
171
+ --input-filled-focus-bg: #181818;
172
+ --input-group-bg: #1c1c1c;
173
+ --input-list-bg: #171717;
174
+ --input-list-header-bg: #1c1c1c;
175
+ --input-overlay-shadow: 0px 0px 0px 1px #3b3b3b,
176
+ 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
177
+ --checkbox-border: #666666;
178
+ --calendar-bg: #292929;
179
+ --calendar-cell-date-today-bg: #f4f4f4;
180
+ --calendar-cell-date-today-text-color: #1e1e1e;
181
+ --input-switch-slider-off-bg: #a1a1a1;
182
+ --input-switch-slider-off-hover-bg: #5e5e5e;
183
+ --input-switch-handle-on-bg: #ffffff;
184
+ --file-upload-file-border: 1px solid #e7e7e7;
185
+ --editor-toolbar-border: 1px solid #e7e7e7;
186
+ --action-icon-border: #3e3e3e;
187
+ --action-icon-color: $textSecondaryColor;
188
+ --action-icon-hover-bg: #282828;
189
+ --action-icon-hover-border-color: 1px solid #3e3e3e;
190
+ --panel-content-bg: #171717;
191
+ --panel-header-hover-border-color: #171717;
192
+ --panel-header-text-hover-color: rgba(var(--primary-color), 0.04);
193
+ --card-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.02),
194
+ 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12),
195
+ 0px 0px 0px 1px #3c3c3c;
196
+ --splitter-gutter-handle-bg: #3e3e3e;
197
+ --overlay-container-shadow: 0px 0px 0px 1px #3e3e3e,
198
+ 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px -7px rgba(0, 0, 0, 0.2),
199
+ 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
200
+ --dialog-header-bg: #1c1c1c;
201
+ --tooltip-text-color: #1c1c1c;
202
+ --badge-font-weight: 400;
203
+ --tag-padding: 0.25rem 0.5rem;
204
+ --progress-bar-value-bg: #(var(--primary-color));
205
+ --progress-spinner-stroke-color: var(--surface-600);
206
+ --avatar-bg: #363636;
207
+ --chip-bg: #404040;
208
+ --chip-focus-bg: #363636;
209
+ --skeleton-bg: #3131316d;
210
+ --skeleton-animation-bg: #31313199;
211
+ --toast-shadow: #3e3e3e;
212
+ --success-message-bg: #39e4781f;
213
+ --success-message-icon-color: #39e478;
214
+ --error-message--bg: #f2646433;
215
+ --error-message-icon-color: #f26464;
216
+ --steps-item-bg: #00000000;
217
+ --steps-item-border: 1px solid #3e3e3e;
218
+ --menu-bg: #1c1c1c;
219
+ --menu-border: 1px solid #3e3e3e;
220
+ --submenu-header-font-weight: 500;
221
+ --overlay-menu-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12),
222
+ 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2),
223
+ 0px 0px 0px 1px #3c3c3c;
224
+ --horizontal-menu-bg: #1c1c1c;
225
+ }
226
+
227
+ :root.azion.azion-light {
228
+ color-scheme: light;
229
+ --text-color: #1c1c1c;
230
+ --primary-color-text: #f4f4f4;
231
+ --text-color-secondary: #666666;
232
+ --text-color-link: #3265cb;
233
+ --text-color-link-hover: #2851a4;
234
+
235
+ --primary-color: #2b2b2b;
236
+ --primary-dark-color: #000;
237
+ --primary-darker-color: #000;
238
+ --primary-text-color: #f4f4f4;
239
+
240
+ --overlay-content-bg: #ffffff;
241
+ --highlight-bg: rgba(var(--primary-color), 0.06);
242
+
243
+ --primary-color-text: #f4f4f4;
244
+ --primary-text-color: #f4f4f4;
245
+ --overlay-content-bg: #ffffff;
246
+
247
+ --surface-0: #ffffff;
248
+ --surface-50: #f9fafb;
249
+ --surface-100: #f4f4f4;
250
+ --surface-200: #eeeeee;
251
+ --surface-300: #e8e8e8;
252
+ --surface-400: #e3e3e3;
253
+ --surface-500: #dddddd;
254
+ --surface-600: #d3d3d3;
255
+ --surface-700: #c9c9c9;
256
+ --surface-800: #b5b5b5;
257
+ --surface-900: #a7a7a7;
258
+
259
+ --gray-50: #fafafa;
260
+ --gray-100: #f5f5f5;
261
+ --gray-200: #eeeeee;
262
+ --gray-300: #e0e0e0;
263
+ --gray-400: #bdbdbd;
264
+ --gray-500: #9e9e9e;
265
+ --gray-600: #757575;
266
+ --gray-700: #616161;
267
+ --gray-800: #424242;
268
+ --gray-900: #212121;
269
+
270
+ --surface-ground: #ffffff;
271
+ --surface-section: #ffffff;
272
+ --surface-card: #ffffff;
273
+ --surface-overlay: #ffffff;
274
+ --surface-border: #e8e8e8;
275
+ --surface-hover: #3b3b3b16;
276
+
277
+ --maskbg: #1e1e1e32;
278
+ --highlight-text-color: none;
279
+ --highlight-focus-bg: rgba(var(--primary-color), 0.08);
280
+ --disabled-opacity: 0.4;
281
+ --mask-bg: #1e1e1e32;
282
+ --error-color: #ef4040;
283
+ --bg-selection: #f7966e;
284
+ --table-bg-color: #e7e7e7;
285
+ --tab-menu-link: #1c1c1c;
286
+ --paginator-bg: #ffffff;
287
+ --paginator-border: none;
288
+ --paginator-element-hover-bg: #e9ecef;
289
+ --table-header-cell-hover-bg: #e9ecef;
290
+ --table-cell-highlight-hover-bg: #e9ecef;
291
+ --table-header-font-weight: 600;
292
+ --table-cell-font-weight: 500;
293
+ --table-header-cell-bg: #fcfdfd;
294
+ --table-header-cell-highlight-bg: #f8f9fa;
295
+ --table-body-row-even-bg: #ffffff;
296
+ --table-body-row-hover-bg: #f7f7f7;
297
+ --table-footer-border: #e9ecef;
298
+ --table-footer-border-width: 0 0 1px 0;
299
+ --table-footer-bg: #f8f9fa;
300
+ --plain-button-active-bg-color: #1e1e1e33;
301
+ --secondary-button-bg: #1e1e1e;
302
+ --secondary-button-text-color: #f4f4f4;
303
+ --secondary-button-text-hover-bg: #404040;
304
+ --secondary-button-text-hover-color: #f4f4f4;
305
+ --secondary-button-hover-border-color: #323232;
306
+ --secondary-button-active-bg: #303030;
307
+ --secondary-button-text-active-color: #ffffff;
308
+ --secondary-button-active-border-color: #303030;
309
+ --warning-button-text-color: #1c1c1c;
310
+ --help-button-hover-border-color: #0953a6;
311
+ --help-button-active: #0953a6;
312
+ --toggle-button-bg: #ffffff;
313
+ --toggle-button-border: #ced4da;
314
+ --toggle-button-hover-bg: #e9ecef;
315
+ --input-bg: #f4f4f4;
316
+ --input-placeholder-text-color: #979797;
317
+ --input-filled-bg: #f4f4f4;
318
+ --input-filled-hover-bg: #eaeaea;
319
+ --input-filled-focus-bg: #f8f9fa;
320
+ --input-group-bg: #eaeaea;
321
+ --input-list-bg: #ffffff;
322
+ --input-list-header-bg: #f8f9fa;
323
+ --input-overlay-shadow: 0px 0px 0px 1px #e7e7e7,
324
+ 0px 1px 4px 0px rgba(0, 0, 0, 0.04);
325
+ --checkbox-border: var(--surface-border);
326
+ --calendar-bg: #ffffff;
327
+ --calendar-cell-date-today-bg: #1e1e1e;
328
+ --calendar-cell-date-today-text-color: #f4f4f4;
329
+ --input-switch-slider-off-bg: #ced4da;
330
+ --input-switch-slider-off-hover-bg: #c3cad2;
331
+ --input-switch-handle-on-bg: #1e1e1e;
332
+ --file-upload-file-border: 1px solid #c3cad2;
333
+ --editor-toolbar-border: 1px solid #dee2e6;
334
+ --action-icon-border: #e7e7e7;
335
+ --action-icon-color: $textColor;
336
+ --action-icon-hover-bg: #1e1e1e04;
337
+ --action-icon-hover-border-color: 1px solid #e7e7e7;
338
+ --panel-content-bg: #ffffff;
339
+ --panel-header-hover-border-color: #dee2e6;
340
+ --panel-header-text-hover-color: var(--text-color);
341
+ --card-shadow: 0px 0px 0px 1px #e7e7e7;
342
+ --splitter-gutter-handle-bg: #e7e7e7;
343
+ --overlay-container-shadow: 0px 0px 0px 1px #e7e7e7,
344
+ 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
345
+ --dialog-header-bg: #ffffff;
346
+ --tooltip-text-color: #ffffff;
347
+ --badge-font-weight: 500;
348
+ --tag-padding: 0.25rem 0.4rem;
349
+ --progress-bar-value-bg: #f3652b;
350
+ --progress-spinner-stroke-color: $errorMessageTextColor;
351
+ --avatar-bg: #e7e7e7;
352
+ --chip-bg: #dedede;
353
+ --chip-focus-bg: #dee2e6;
354
+ --skeleton-bg: #eaeaea;
355
+ --skeleton-animation-bg: #d6d6d6;
356
+ --toast-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.08), 0px 0px 0px 1px #e7e7e7;
357
+ --success-message-bg: #1982361f;
358
+ --success-message-icon-color: #198236;
359
+ --error-message--bg: #ef40401f;
360
+ --error-message-icon-color: #ef4040;
361
+ --steps-item-bg: #ffffff00;
362
+ --steps-item-border: 1px solid #e7e7e7;
363
+ --menu-bg: #ffffff;
364
+ --menu-border: 1px solid #e7e7e7;
365
+ --submenu-header-font-weight: 400;
366
+ --overlay-menu-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.04),
367
+ 0px 0px 0px 1px #e7e7e7;
368
+ --horizontal-menu-bg: #f8f9fa;
369
+ }
@@ -0,0 +1,5 @@
1
+ a {
2
+ &:focus-visible {
3
+ @include focused();
4
+ }
5
+ }
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Enable smooth scrolling on the whole document
3
+ */
4
+ html {
5
+ scroll-behavior: smooth;
6
+ }
@@ -0,0 +1,4 @@
1
+ ::selection {
2
+ color: var(--primary-color-text);
3
+ background-color: var(--bg-selection);
4
+ }
@@ -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
+ }