azion-theme 1.9.0 → 1.10.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.
- package/CHANGELOG.md +12 -0
- package/package.json +1 -1
- package/src/azion/_custom.scss +1 -0
- package/src/azion/_variables.scss +4 -0
- package/src/azion/custom/_code.scss +11 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [1.10.1](https://github.com/aziontech/azion-theme/compare/v1.10.0...v1.10.1) (2025-03-06)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* trigger version ([e4fe653](https://github.com/aziontech/azion-theme/commit/e4fe6534f7924df8eaa58888f0c667356e846627))
|
|
6
|
+
|
|
7
|
+
## [1.10.0](https://github.com/aziontech/azion-theme/compare/v1.9.0...v1.10.0) (2025-02-25)
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* add code log body style ([#33](https://github.com/aziontech/azion-theme/issues/33)) ([8bafe31](https://github.com/aziontech/azion-theme/commit/8bafe3165f5b18820810ed28e258ebcb946611e1))
|
|
12
|
+
|
|
1
13
|
## [1.9.0](https://github.com/aziontech/azion-theme/compare/v1.8.1...v1.9.0) (2025-02-20)
|
|
2
14
|
|
|
3
15
|
### Features
|
package/package.json
CHANGED
package/src/azion/_custom.scss
CHANGED
|
@@ -89,6 +89,8 @@ $colors: (
|
|
|
89
89
|
--surface-800: #5e5e5e;
|
|
90
90
|
--surface-900: #7d7d7d;
|
|
91
91
|
|
|
92
|
+
--surface-code-highlight: #5e5e5e50;
|
|
93
|
+
|
|
92
94
|
--gray-50: #282828;
|
|
93
95
|
--gray-100: #363636;
|
|
94
96
|
--gray-200: #747474;
|
|
@@ -264,6 +266,8 @@ $colors: (
|
|
|
264
266
|
--surface-800: #b5b5b5;
|
|
265
267
|
--surface-900: #a7a7a7;
|
|
266
268
|
|
|
269
|
+
--surface-code-highlight: #b5b5b550;
|
|
270
|
+
|
|
267
271
|
--gray-50: #fafafa;
|
|
268
272
|
--gray-100: #f5f5f5;
|
|
269
273
|
--gray-200: #eeeeee;
|