azion-theme 1.19.1 → 1.20.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/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/src/azion/_variables.scss +8 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [1.20.0](https://github.com/aziontech/azion-theme/compare/v1.19.1...v1.20.0) (2026-03-12)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* added new tokens to cards home ([#78](https://github.com/aziontech/azion-theme/issues/78)) ([52af798](https://github.com/aziontech/azion-theme/commit/52af79825178b41cbf0d84fa9a1769b03ff53491))
|
|
6
|
+
|
|
1
7
|
## [1.19.1](https://github.com/aziontech/azion-theme/compare/v1.19.0...v1.19.1) (2026-03-12)
|
|
2
8
|
|
|
3
9
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -110,6 +110,10 @@ $colors: (
|
|
|
110
110
|
--surface-hover: #f5f5f516;
|
|
111
111
|
--surface-code-highlight: #5e5e5e50;
|
|
112
112
|
|
|
113
|
+
--card-content-bg: var(--surface-100);
|
|
114
|
+
--card-header-bg: var(--surface-50);
|
|
115
|
+
--card-footer-bg: var(--surface-50);
|
|
116
|
+
|
|
113
117
|
--content-padding: 1.25rem;
|
|
114
118
|
--inline-spacing: 0.5rem;
|
|
115
119
|
--border-radius: 6px;
|
|
@@ -291,6 +295,10 @@ $colors: (
|
|
|
291
295
|
--surface-hover: #3b3b3b16;
|
|
292
296
|
--surface-code-highlight: #b5b5b550;
|
|
293
297
|
|
|
298
|
+
--card-content-bg: var(--surface-0);
|
|
299
|
+
--card-header-bg: var(--surface-0);
|
|
300
|
+
--card-footer-bg: var(--surface-0);
|
|
301
|
+
|
|
294
302
|
--maskbg: #1e1e1e32;
|
|
295
303
|
--highlight-text-color: none;
|
|
296
304
|
--highlight-focus-bg: var(--surface-hover);
|