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 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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "azion-theme",
3
3
  "type": "module",
4
- "version": "1.9.0",
4
+ "version": "1.10.1",
5
5
  "author": "aziontech",
6
6
  "contributors": [
7
7
  {
@@ -1,2 +1,3 @@
1
1
  @import './custom/selection';
2
2
  @import './custom/special-button';
3
+ @import './custom/code'
@@ -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;
@@ -0,0 +1,11 @@
1
+ .code-log-body {
2
+ padding: 1px;
3
+ font-family: "Roboto Mono", serif;
4
+ color: var(--text-color);
5
+ background: var(--surface-code-highlight) ;
6
+ }
7
+
8
+ .value-code-log-body {
9
+ font-family: "Roboto Mono", serif;
10
+ color: var(--text-color);
11
+ }