azion-theme 1.10.1 → 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,9 @@
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
+
1
7
  ## [1.10.1](https://github.com/aziontech/azion-theme/compare/v1.10.0...v1.10.1) (2025-03-06)
2
8
 
3
9
  ### Bug Fixes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "azion-theme",
3
3
  "type": "module",
4
- "version": "1.10.1",
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;
@@ -226,6 +226,8 @@ $colors: (
226
226
  --p-tag-warning-color: #ffb64d;
227
227
  --p-tag-danger-background: #f53d3d33;
228
228
  --p-tag-danger-color: #f53d3d;
229
+ --p-tag-close-background: #404040;
230
+ --p-tag-close-color: #FFFFFF;
229
231
  --carousel-indicator: #e9ecef20;
230
232
  --carousel-indicator-highlight: #ededed;
231
233
  --carousel-indicator-hover: #dee2e640;
@@ -390,6 +392,8 @@ $colors: (
390
392
  --p-tag-warning-color: #c59707;
391
393
  --p-tag-danger-background: #ef404033;
392
394
  --p-tag-danger-color: #ef4040;
395
+ --p-tag-close-background: #404040;
396
+ --p-tag-close-color: #FFFFFF;
393
397
  --carousel-indicator: #e9ecef;
394
398
  --carousel-indicator-highlight: #1c1c1c;
395
399
  --carousel-indicator-hover: #dee2e6;
@@ -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
  }