azion-theme 1.10.0 → 1.10.2

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.2](https://github.com/aziontech/azion-theme/compare/v1.10.1...v1.10.2) (2025-03-10)
2
+
3
+ ### Bug Fixes
4
+
5
+ * trigger cicd ([ab37d68](https://github.com/aziontech/azion-theme/commit/ab37d68a1f6c9e89bc5f6c40393a6f816edfe98e))
6
+
7
+ ## [1.10.1](https://github.com/aziontech/azion-theme/compare/v1.10.0...v1.10.1) (2025-03-06)
8
+
9
+ ### Bug Fixes
10
+
11
+ * trigger version ([e4fe653](https://github.com/aziontech/azion-theme/commit/e4fe6534f7924df8eaa58888f0c667356e846627))
12
+
1
13
  ## [1.10.0](https://github.com/aziontech/azion-theme/compare/v1.9.0...v1.10.0) (2025-02-25)
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.10.0",
4
+ "version": "1.10.2",
5
5
  "author": "aziontech",
6
6
  "contributors": [
7
7
  {
@@ -224,6 +224,8 @@ $colors: (
224
224
  --p-tag-warning-color: #ffb64d;
225
225
  --p-tag-danger-background: #f53d3d33;
226
226
  --p-tag-danger-color: #f53d3d;
227
+ --p-tag-close-background: #404040;
228
+ --p-tag-close-color: #FFFFFF;
227
229
  --carousel-indicator: #e9ecef20;
228
230
  --carousel-indicator-highlight: #ededed;
229
231
  --carousel-indicator-hover: #dee2e640;
@@ -386,6 +388,8 @@ $colors: (
386
388
  --p-tag-warning-color: #c59707;
387
389
  --p-tag-danger-background: #ef404033;
388
390
  --p-tag-danger-color: #ef4040;
391
+ --p-tag-close-background: #404040;
392
+ --p-tag-close-color: #FFFFFF;
389
393
  --carousel-indicator: #e9ecef;
390
394
  --carousel-indicator-highlight: #1c1c1c;
391
395
  --carousel-indicator-hover: #dee2e6;
@@ -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;
@@ -224,6 +226,8 @@ $colors: (
224
226
  --p-tag-warning-color: #ffb64d;
225
227
  --p-tag-danger-background: #f53d3d33;
226
228
  --p-tag-danger-color: #f53d3d;
229
+ --p-tag-close-background: #404040;
230
+ --p-tag-close-color: #FFFFFF;
227
231
  --carousel-indicator: #e9ecef20;
228
232
  --carousel-indicator-highlight: #ededed;
229
233
  --carousel-indicator-hover: #dee2e640;
@@ -264,6 +268,8 @@ $colors: (
264
268
  --surface-800: #b5b5b5;
265
269
  --surface-900: #a7a7a7;
266
270
 
271
+ --surface-code-highlight: #b5b5b550;
272
+
267
273
  --gray-50: #fafafa;
268
274
  --gray-100: #f5f5f5;
269
275
  --gray-200: #eeeeee;
@@ -386,6 +392,8 @@ $colors: (
386
392
  --p-tag-warning-color: #c59707;
387
393
  --p-tag-danger-background: #ef404033;
388
394
  --p-tag-danger-color: #ef4040;
395
+ --p-tag-close-background: #404040;
396
+ --p-tag-close-color: #FFFFFF;
389
397
  --carousel-indicator: #e9ecef;
390
398
  --carousel-indicator-highlight: #1c1c1c;
391
399
  --carousel-indicator-hover: #dee2e6;
@@ -1,11 +1,11 @@
1
1
  .code-log-body {
2
2
  padding: 1px;
3
- font-family: 'Courier New', Courier, monospace;
3
+ font-family: "Roboto Mono", serif;
4
4
  color: var(--text-color);
5
- background: var(--surface-400);
5
+ background: var(--surface-code-highlight) ;
6
6
  }
7
7
 
8
8
  .value-code-log-body {
9
- font-family: 'Courier New', Courier, monospace;
9
+ font-family: "Roboto Mono", serif;
10
10
  color: var(--text-color);
11
11
  }
@@ -129,3 +129,7 @@
129
129
  color: var(--secondary-button-text-color) !important;
130
130
  }
131
131
  }
132
+
133
+ .astro-code {
134
+ background-color: var(--surface-400) !important;
135
+ }
@@ -39,4 +39,9 @@
39
39
  background-color: var(--p-tag-danger-background) !important;
40
40
  color: var(--p-tag-danger-color) !important;
41
41
  }
42
+
43
+ &.tag-close {
44
+ background-color: var(--p-tag-close-background) !important;
45
+ color: var(--p-tag-close-color) !important;
46
+ }
42
47
  }