aetherx-dt-ui 0.1.0 → 0.1.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.
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aetherx-dt-ui",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Lightweight, customizable Vue components for DT projects",
5
5
  "type": "module",
6
6
  "bin": {
@@ -3,23 +3,23 @@
3
3
  --dt-background: hsl(0 0% 100%);
4
4
  --dt-foreground: hsl(240 10% 10%);
5
5
 
6
- /* Primary — the brand color */
7
- --dt-primary: hsl(220 72% 50%);
8
- --dt-primary-hover: hsl(220 72% 42%);
6
+ /* Primary — the brand color (RGB 0, 150, 178) */
7
+ --dt-primary: hsl(190 100% 35%);
8
+ --dt-primary-hover: hsl(190 100% 28%);
9
9
  --dt-primary-foreground: hsl(0 0% 100%);
10
10
 
11
- /* Secondary */
12
- --dt-secondary: hsl(220 14% 94%);
13
- --dt-secondary-hover: hsl(220 14% 88%);
14
- --dt-secondary-foreground: hsl(220 10% 20%);
11
+ /* Secondary — (RGB 102, 112, 133) */
12
+ --dt-secondary: hsl(220 13% 46%);
13
+ --dt-secondary-hover: hsl(220 13% 38%);
14
+ --dt-secondary-foreground: hsl(0 0% 100%);
15
15
 
16
16
  /* Muted */
17
- --dt-muted: hsl(220 14% 96%);
18
- --dt-muted-foreground: hsl(220 8% 46%);
17
+ --dt-muted: hsl(190 14% 96%);
18
+ --dt-muted-foreground: hsl(190 8% 46%);
19
19
 
20
20
  /* Accent */
21
- --dt-accent: hsl(220 14% 94%);
22
- --dt-accent-foreground: hsl(220 10% 20%);
21
+ --dt-accent: hsl(190 14% 94%);
22
+ --dt-accent-foreground: hsl(190 10% 20%);
23
23
 
24
24
  /* Destructive */
25
25
  --dt-destructive: hsl(0 72% 51%);
@@ -37,9 +37,9 @@
37
37
  --dt-warning-foreground: hsl(0 0% 100%);
38
38
 
39
39
  /* Borders & Rings */
40
- --dt-border: hsl(220 13% 88%);
41
- --dt-border-hover: hsl(220 13% 78%);
42
- --dt-ring: hsl(220 72% 50%);
40
+ --dt-border: hsl(190 13% 88%);
41
+ --dt-border-hover: hsl(190 13% 78%);
42
+ --dt-ring: hsl(190 100% 35%);
43
43
 
44
44
  /* Radii */
45
45
  --dt-radius-sm: 0.25rem;
@@ -90,18 +90,18 @@
90
90
  --dt-background: hsl(240 10% 8%);
91
91
  --dt-foreground: hsl(0 0% 95%);
92
92
 
93
- --dt-primary: hsl(220 72% 60%);
94
- --dt-primary-hover: hsl(220 72% 68%);
93
+ --dt-primary: hsl(190 100% 45%);
94
+ --dt-primary-hover: hsl(190 100% 52%);
95
95
  --dt-primary-foreground: hsl(0 0% 100%);
96
96
 
97
- --dt-secondary: hsl(220 14% 16%);
98
- --dt-secondary-hover: hsl(220 14% 22%);
99
- --dt-secondary-foreground: hsl(0 0% 90%);
97
+ --dt-secondary: hsl(220 13% 54%);
98
+ --dt-secondary-hover: hsl(220 13% 62%);
99
+ --dt-secondary-foreground: hsl(0 0% 100%);
100
100
 
101
- --dt-muted: hsl(220 14% 14%);
102
- --dt-muted-foreground: hsl(220 8% 55%);
101
+ --dt-muted: hsl(190 14% 14%);
102
+ --dt-muted-foreground: hsl(190 8% 55%);
103
103
 
104
- --dt-accent: hsl(220 14% 18%);
104
+ --dt-accent: hsl(190 14% 18%);
105
105
  --dt-accent-foreground: hsl(0 0% 90%);
106
106
 
107
107
  --dt-destructive: hsl(0 62% 55%);
@@ -116,9 +116,9 @@
116
116
  --dt-warning-hover: hsl(38 92% 63%);
117
117
  --dt-warning-foreground: hsl(0 0% 100%);
118
118
 
119
- --dt-border: hsl(220 13% 20%);
120
- --dt-border-hover: hsl(220 13% 30%);
121
- --dt-ring: hsl(220 72% 60%);
119
+ --dt-border: hsl(190 13% 20%);
120
+ --dt-border-hover: hsl(190 13% 30%);
121
+ --dt-ring: hsl(190 100% 45%);
122
122
 
123
123
  --dt-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
124
124
  --dt-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.3);