auxalia-ui-kit 1.5.6 → 1.5.7
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/dist/chunk-LSMVZLQD.js +96 -0
- package/dist/index.cjs +144 -226
- package/dist/index.d.cts +54 -78
- package/dist/index.d.ts +54 -78
- package/dist/index.js +94 -169
- package/dist/styles.css +9 -12
- package/dist/tailwind.preset.cjs +51 -58
- package/dist/tailwind.preset.js +1 -1
- package/dist/tokens.css +103 -62
- package/package.json +13 -13
- package/dist/chunk-UV6KVN3I.js +0 -103
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
// src/tailwind.preset.ts
|
|
2
|
+
var auxaliaColors = {
|
|
3
|
+
// Primary brand: Brand Green
|
|
4
|
+
"auxalia-green": {
|
|
5
|
+
50: "#F8FBF0",
|
|
6
|
+
100: "#F0F7E1",
|
|
7
|
+
200: "#DDF0C0",
|
|
8
|
+
300: "#C3E88A",
|
|
9
|
+
400: "#A7D500",
|
|
10
|
+
500: "#8DB800",
|
|
11
|
+
600: "#749400",
|
|
12
|
+
700: "#5A7600",
|
|
13
|
+
800: "#3D5000",
|
|
14
|
+
900: "#283400"
|
|
15
|
+
},
|
|
16
|
+
// Secondary brand: Dark Blue
|
|
17
|
+
"auxalia-blue": {
|
|
18
|
+
50: "#F5F7F9",
|
|
19
|
+
100: "#EDF6FB",
|
|
20
|
+
200: "#C0D6E6",
|
|
21
|
+
300: "#204760",
|
|
22
|
+
400: "#1C3D52",
|
|
23
|
+
500: "#00263E",
|
|
24
|
+
600: "#001928"
|
|
25
|
+
}
|
|
26
|
+
};
|
|
27
|
+
var preset = {
|
|
28
|
+
darkMode: "class",
|
|
29
|
+
theme: {
|
|
30
|
+
extend: {
|
|
31
|
+
fontFamily: {
|
|
32
|
+
sans: ["Inter", "sans-serif"],
|
|
33
|
+
display: ["Inter", "sans-serif"],
|
|
34
|
+
body: ["Inter", "sans-serif"]
|
|
35
|
+
},
|
|
36
|
+
colors: {
|
|
37
|
+
// ─── Brand semantic tokens (map to CSS vars in tokens.css) ───
|
|
38
|
+
primary: "var(--color-primary)",
|
|
39
|
+
"primary-hover": "var(--color-primary-hover)",
|
|
40
|
+
"primary-foreground": "var(--color-primary-foreground)",
|
|
41
|
+
secondary: "var(--color-secondary)",
|
|
42
|
+
"secondary-hover": "var(--color-secondary-hover)",
|
|
43
|
+
"secondary-foreground": "var(--color-secondary-foreground)",
|
|
44
|
+
accent: "var(--color-accent)",
|
|
45
|
+
"accent-foreground": "var(--color-accent-foreground)",
|
|
46
|
+
surface: "var(--color-surface)",
|
|
47
|
+
"surface-hover": "var(--color-surface-hover)",
|
|
48
|
+
"surface-foreground": "var(--color-surface-foreground)",
|
|
49
|
+
destructive: "var(--color-destructive)",
|
|
50
|
+
"destructive-hover": "var(--color-destructive-hover)",
|
|
51
|
+
"destructive-foreground": "var(--color-destructive-foreground)",
|
|
52
|
+
"destructive-background": "var(--color-destructive-background)",
|
|
53
|
+
success: "var(--color-success)",
|
|
54
|
+
"success-foreground": "var(--color-success-foreground)",
|
|
55
|
+
"success-background": "var(--color-success-background)",
|
|
56
|
+
warning: "var(--color-warning)",
|
|
57
|
+
"warning-foreground": "var(--color-warning-foreground)",
|
|
58
|
+
"warning-background": "var(--color-warning-background)",
|
|
59
|
+
info: "var(--color-info)",
|
|
60
|
+
"info-foreground": "var(--color-info-foreground)",
|
|
61
|
+
// ─── Border tokens ───────────────────────────────────────────
|
|
62
|
+
border: "var(--color-border)",
|
|
63
|
+
"border-input": "var(--color-border-input)",
|
|
64
|
+
// ─── Surface / background tokens ─────────────────────────────
|
|
65
|
+
card: "var(--color-card)",
|
|
66
|
+
"card-hover": "var(--color-card-hover)",
|
|
67
|
+
hero: "var(--color-bg-hero)",
|
|
68
|
+
popover: "var(--color-popover)",
|
|
69
|
+
// ─── Text tokens (non-conflicting names) ─────────────────────
|
|
70
|
+
// Usage: text-content, text-dim, text-muted
|
|
71
|
+
content: "var(--color-text)",
|
|
72
|
+
dim: "var(--color-text-secondary)",
|
|
73
|
+
muted: "var(--color-text-muted)",
|
|
74
|
+
// ─── Static palette (for precise palette-level overrides) ─────
|
|
75
|
+
...auxaliaColors
|
|
76
|
+
},
|
|
77
|
+
borderRadius: {
|
|
78
|
+
sm: "var(--radius-sm)",
|
|
79
|
+
md: "var(--radius-md)",
|
|
80
|
+
lg: "var(--radius-lg)",
|
|
81
|
+
xl: "var(--radius-xl)",
|
|
82
|
+
full: "var(--radius-full)"
|
|
83
|
+
},
|
|
84
|
+
backgroundImage: {
|
|
85
|
+
"gradient-radial-green": "radial-gradient(circle at 20% 20%, rgba(167, 213, 0, 0.15), transparent 35%)",
|
|
86
|
+
"gradient-radial-blue": "radial-gradient(circle at 80% 0%, rgba(0, 38, 62, 0.1), transparent 40%)",
|
|
87
|
+
"gradient-glow": "linear-gradient(to bottom right, rgba(0, 38, 62, 0.1), transparent, rgba(255, 255, 255, 0.05))"
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
};
|
|
92
|
+
var tailwind_preset_default = preset;
|
|
93
|
+
|
|
94
|
+
export {
|
|
95
|
+
tailwind_preset_default
|
|
96
|
+
};
|
package/dist/index.cjs
CHANGED
|
@@ -140,12 +140,12 @@ var alertVariants = (0, import_class_variance_authority.cva)(
|
|
|
140
140
|
{
|
|
141
141
|
variants: {
|
|
142
142
|
variant: {
|
|
143
|
-
default: "bg-surface text-content border-border
|
|
144
|
-
primary: "bg-primary/5 text-content border-primary/20
|
|
145
|
-
destructive: "bg-destructive/5 text-content border-destructive/20
|
|
146
|
-
success: "bg-
|
|
147
|
-
warning: "bg-
|
|
148
|
-
info: "bg-
|
|
143
|
+
default: "bg-surface text-content border-border",
|
|
144
|
+
primary: "bg-primary/5 text-content border-primary/20 [&>svg]:text-primary",
|
|
145
|
+
destructive: "bg-destructive/5 text-content border-destructive/20 [&>svg]:text-destructive",
|
|
146
|
+
success: "bg-success/10 text-content border-success/25 [&>svg]:text-success",
|
|
147
|
+
warning: "bg-warning/10 text-content border-warning/25 [&>svg]:text-warning",
|
|
148
|
+
info: "bg-info/10 text-content border-info/25 [&>svg]:text-info"
|
|
149
149
|
}
|
|
150
150
|
},
|
|
151
151
|
defaultVariants: {
|
|
@@ -243,12 +243,14 @@ var badgeVariants = (0, import_class_variance_authority3.cva)(
|
|
|
243
243
|
{
|
|
244
244
|
variants: {
|
|
245
245
|
variant: {
|
|
246
|
-
default: "bg-primary/10 text-primary border-primary/20
|
|
247
|
-
secondary: "bg-secondary/10 text-secondary border-secondary/20
|
|
248
|
-
accent: "bg-accent/10 text-accent border-accent/20
|
|
249
|
-
destructive: "bg-destructive/10 text-destructive border-destructive/20
|
|
250
|
-
success: "bg-
|
|
251
|
-
|
|
246
|
+
default: "bg-primary/10 text-primary border-primary/20",
|
|
247
|
+
secondary: "bg-secondary/10 text-secondary border-secondary/20",
|
|
248
|
+
accent: "bg-accent/10 text-accent border-accent/20",
|
|
249
|
+
destructive: "bg-destructive/10 text-destructive border-destructive/20",
|
|
250
|
+
success: "bg-success/10 text-success border-success/25",
|
|
251
|
+
warning: "bg-warning/10 text-warning border-warning/25",
|
|
252
|
+
info: "bg-info/10 text-info border-info/25",
|
|
253
|
+
outline: "bg-transparent text-content border-border",
|
|
252
254
|
solid: "bg-primary text-primary-foreground border-transparent"
|
|
253
255
|
}
|
|
254
256
|
},
|
|
@@ -624,11 +626,11 @@ var dropdownMenuItemVariants = (0, import_class_variance_authority6.cva)(
|
|
|
624
626
|
{
|
|
625
627
|
variants: {
|
|
626
628
|
variant: {
|
|
627
|
-
default: "focus:bg-
|
|
628
|
-
primary: "focus:bg-primary/10
|
|
629
|
-
secondary: "focus:bg-secondary/10
|
|
630
|
-
accent: "focus:bg-accent/10
|
|
631
|
-
destructive: "focus:bg-destructive/10
|
|
629
|
+
default: "focus:bg-surface-hover focus:text-primary",
|
|
630
|
+
primary: "focus:bg-primary/10 focus:text-primary",
|
|
631
|
+
secondary: "focus:bg-secondary/10 focus:text-primary",
|
|
632
|
+
accent: "focus:bg-accent/10 focus:text-primary",
|
|
633
|
+
destructive: "focus:bg-destructive/10 focus:text-destructive"
|
|
632
634
|
}
|
|
633
635
|
},
|
|
634
636
|
defaultVariants: {
|
|
@@ -1200,18 +1202,17 @@ function TooltipContent({
|
|
|
1200
1202
|
// src/components/Card/card.styles.ts
|
|
1201
1203
|
var import_class_variance_authority8 = require("class-variance-authority");
|
|
1202
1204
|
var cardVariants = (0, import_class_variance_authority8.cva)(
|
|
1203
|
-
|
|
1204
|
-
rounded-lg border p-4 transition-all duration-300
|
|
1205
|
-
`,
|
|
1205
|
+
"rounded-lg border p-4 transition-all duration-300",
|
|
1206
1206
|
{
|
|
1207
1207
|
variants: {
|
|
1208
1208
|
variant: {
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1209
|
+
// bg-card token handles light/dark automatically
|
|
1210
|
+
default: "bg-card border-border shadow-sm hover:shadow-md",
|
|
1211
|
+
primary: "bg-card border-primary/10 hover:border-primary/20 shadow-sm hover:shadow-md",
|
|
1212
|
+
outlined: "border-2 border-primary/30 bg-transparent hover:border-primary/50",
|
|
1213
|
+
elevated: "bg-card border-border shadow-lg hover:shadow-xl",
|
|
1214
|
+
success: "bg-success/10 border-success/25",
|
|
1215
|
+
accent: "bg-accent/10 border-accent/25"
|
|
1215
1216
|
}
|
|
1216
1217
|
},
|
|
1217
1218
|
defaultVariants: {
|
|
@@ -1229,27 +1230,12 @@ function Card({ variant, className, ...props }) {
|
|
|
1229
1230
|
// src/components/Input/input.styles.ts
|
|
1230
1231
|
var import_class_variance_authority9 = require("class-variance-authority");
|
|
1231
1232
|
var inputVariants = (0, import_class_variance_authority9.cva)(
|
|
1232
|
-
|
|
1233
|
-
w-full rounded-md border transition-colors
|
|
1234
|
-
bg-white dark:bg-white/5
|
|
1235
|
-
text-slate-900 dark:text-white
|
|
1236
|
-
placeholder:text-slate-400 dark:placeholder:text-slate-500
|
|
1237
|
-
focus:outline-none focus:ring-2 focus:ring-offset-0
|
|
1238
|
-
disabled:cursor-not-allowed disabled:opacity-50
|
|
1239
|
-
`,
|
|
1233
|
+
"w-full rounded-md border transition-colors bg-card text-content placeholder:text-muted focus:outline-none focus:ring-2 focus:ring-offset-0 disabled:cursor-not-allowed disabled:opacity-50",
|
|
1240
1234
|
{
|
|
1241
1235
|
variants: {
|
|
1242
1236
|
variant: {
|
|
1243
|
-
default:
|
|
1244
|
-
|
|
1245
|
-
focus:border-black/20 dark:focus:border-white/20
|
|
1246
|
-
focus:ring-black/10 dark:focus:ring-white/10
|
|
1247
|
-
`,
|
|
1248
|
-
error: `
|
|
1249
|
-
border-red-500 dark:border-red-400
|
|
1250
|
-
focus:border-red-600 dark:focus:border-red-500
|
|
1251
|
-
focus:ring-red-500/20 dark:focus:ring-red-400/20
|
|
1252
|
-
`
|
|
1237
|
+
default: "border-border hover:border-border-input focus:border-border-input focus:ring-border-input/20",
|
|
1238
|
+
error: "border-destructive hover:border-destructive focus:border-destructive focus:ring-destructive/20"
|
|
1253
1239
|
},
|
|
1254
1240
|
size: {
|
|
1255
1241
|
sm: "h-8 px-2.5 text-sm",
|
|
@@ -6375,53 +6361,16 @@ var import_lucide_react4 = require("lucide-react");
|
|
|
6375
6361
|
// src/components/Select/select.styles.ts
|
|
6376
6362
|
var import_class_variance_authority10 = require("class-variance-authority");
|
|
6377
6363
|
var selectTriggerVariants = (0, import_class_variance_authority10.cva)(
|
|
6378
|
-
|
|
6379
|
-
flex w-full items-center justify-between gap-2 rounded-md border transition-colors
|
|
6380
|
-
bg-white dark:bg-white/5
|
|
6381
|
-
text-slate-900 dark:text-white
|
|
6382
|
-
focus:outline-none focus:ring-2 focus:ring-offset-0
|
|
6383
|
-
disabled:cursor-not-allowed disabled:opacity-50
|
|
6384
|
-
data-[placeholder]:text-slate-400 dark:data-[placeholder]:text-slate-500
|
|
6385
|
-
[&>span]:truncate
|
|
6386
|
-
`,
|
|
6364
|
+
"flex w-full items-center justify-between gap-2 rounded-md border transition-colors bg-card text-content focus:outline-none focus:ring-2 focus:ring-offset-0 disabled:cursor-not-allowed disabled:opacity-50 data-[placeholder]:text-muted [&>span]:truncate",
|
|
6387
6365
|
{
|
|
6388
6366
|
variants: {
|
|
6389
6367
|
variant: {
|
|
6390
|
-
default:
|
|
6391
|
-
|
|
6392
|
-
|
|
6393
|
-
|
|
6394
|
-
|
|
6395
|
-
|
|
6396
|
-
primary: `
|
|
6397
|
-
border-primary/30 dark:border-primary/25
|
|
6398
|
-
hover:border-primary/50 dark:hover:border-primary/40
|
|
6399
|
-
focus:border-primary/50 dark:focus:border-primary/40
|
|
6400
|
-
focus:ring-primary/20 dark:focus:ring-primary/15
|
|
6401
|
-
`,
|
|
6402
|
-
secondary: `
|
|
6403
|
-
border-secondary/30 dark:border-secondary/25
|
|
6404
|
-
hover:border-secondary/50 dark:hover:border-secondary/40
|
|
6405
|
-
focus:border-secondary/50 dark:focus:border-secondary/40
|
|
6406
|
-
focus:ring-secondary/20 dark:focus:ring-secondary/15
|
|
6407
|
-
`,
|
|
6408
|
-
accent: `
|
|
6409
|
-
border-accent/30 dark:border-accent/25
|
|
6410
|
-
hover:border-accent/50 dark:hover:border-accent/40
|
|
6411
|
-
focus:border-accent/50 dark:focus:border-accent/40
|
|
6412
|
-
focus:ring-accent/20 dark:focus:ring-accent/15
|
|
6413
|
-
`,
|
|
6414
|
-
destructive: `
|
|
6415
|
-
border-destructive/40 dark:border-destructive/35
|
|
6416
|
-
hover:border-destructive/60 dark:hover:border-destructive/50
|
|
6417
|
-
focus:border-destructive/60 dark:focus:border-destructive/50
|
|
6418
|
-
focus:ring-destructive/20 dark:focus:ring-destructive/15
|
|
6419
|
-
`,
|
|
6420
|
-
error: `
|
|
6421
|
-
border-red-500 dark:border-red-400
|
|
6422
|
-
focus:border-red-600 dark:focus:border-red-500
|
|
6423
|
-
focus:ring-red-500/20 dark:focus:ring-red-400/20
|
|
6424
|
-
`
|
|
6368
|
+
default: "border-border hover:border-border-input focus:border-border-input focus:ring-border-input/20",
|
|
6369
|
+
primary: "border-primary/30 hover:border-primary/50 focus:border-primary/50 focus:ring-primary/20",
|
|
6370
|
+
secondary: "border-secondary/30 hover:border-secondary/50 focus:border-secondary/50 focus:ring-secondary/20",
|
|
6371
|
+
accent: "border-accent/30 hover:border-accent/50 focus:border-accent/50 focus:ring-accent/20",
|
|
6372
|
+
destructive: "border-destructive/40 hover:border-destructive/60 focus:border-destructive/60 focus:ring-destructive/20",
|
|
6373
|
+
error: "border-destructive hover:border-destructive focus:border-destructive focus:ring-destructive/20"
|
|
6425
6374
|
},
|
|
6426
6375
|
size: {
|
|
6427
6376
|
sm: "h-8 px-3 text-sm",
|
|
@@ -6440,11 +6389,12 @@ var selectItemVariants = (0, import_class_variance_authority10.cva)(
|
|
|
6440
6389
|
{
|
|
6441
6390
|
variants: {
|
|
6442
6391
|
variant: {
|
|
6443
|
-
default: "focus:bg-
|
|
6444
|
-
primary: "focus:bg-primary/10
|
|
6445
|
-
secondary: "focus:bg-secondary/10
|
|
6446
|
-
accent: "focus:bg-accent/10
|
|
6447
|
-
destructive: "focus:bg-destructive/10
|
|
6392
|
+
default: "focus:bg-surface-hover focus:text-primary",
|
|
6393
|
+
primary: "focus:bg-primary/10 focus:text-primary",
|
|
6394
|
+
secondary: "focus:bg-secondary/10 focus:text-primary",
|
|
6395
|
+
accent: "focus:bg-accent/10 focus:text-primary",
|
|
6396
|
+
destructive: "focus:bg-destructive/10 focus:text-destructive",
|
|
6397
|
+
error: "focus:bg-destructive/10 focus:text-destructive"
|
|
6448
6398
|
}
|
|
6449
6399
|
},
|
|
6450
6400
|
defaultVariants: {
|
|
@@ -7328,63 +7278,41 @@ var ControlledTable_default = ControlledTable;
|
|
|
7328
7278
|
|
|
7329
7279
|
// src/tailwind.preset.ts
|
|
7330
7280
|
var auxaliaColors = {
|
|
7331
|
-
// Primary Brand
|
|
7281
|
+
// Primary brand: Brand Green
|
|
7332
7282
|
"auxalia-green": {
|
|
7333
|
-
50: "#
|
|
7334
|
-
100: "#
|
|
7335
|
-
200: "#
|
|
7336
|
-
300: "#
|
|
7337
|
-
400: "#
|
|
7338
|
-
|
|
7339
|
-
500: "#93b800",
|
|
7283
|
+
50: "#F8FBF0",
|
|
7284
|
+
100: "#F0F7E1",
|
|
7285
|
+
200: "#DDF0C0",
|
|
7286
|
+
300: "#C3E88A",
|
|
7287
|
+
400: "#A7D500",
|
|
7288
|
+
500: "#8DB800",
|
|
7340
7289
|
600: "#749400",
|
|
7341
|
-
700: "#
|
|
7342
|
-
800: "#
|
|
7343
|
-
900: "#
|
|
7290
|
+
700: "#5A7600",
|
|
7291
|
+
800: "#3D5000",
|
|
7292
|
+
900: "#283400"
|
|
7344
7293
|
},
|
|
7345
|
-
// Secondary
|
|
7294
|
+
// Secondary brand: Dark Blue
|
|
7346
7295
|
"auxalia-blue": {
|
|
7347
|
-
50: "#
|
|
7348
|
-
100: "#
|
|
7349
|
-
200: "#
|
|
7350
|
-
300: "#
|
|
7351
|
-
400: "#
|
|
7352
|
-
500: "#
|
|
7353
|
-
|
|
7354
|
-
|
|
7355
|
-
700: "#1f3860",
|
|
7356
|
-
800: "#142a47",
|
|
7357
|
-
900: "#0a1628"
|
|
7358
|
-
},
|
|
7359
|
-
// Accent - Petrol Green
|
|
7360
|
-
"auxalia-petrol": {
|
|
7361
|
-
50: "#f0fbfc",
|
|
7362
|
-
100: "#dff8f9",
|
|
7363
|
-
200: "#bef1f3",
|
|
7364
|
-
300: "#7fe6eb",
|
|
7365
|
-
400: "#3fd9e1",
|
|
7366
|
-
500: "#0f868b",
|
|
7367
|
-
// Auxalia petrol
|
|
7368
|
-
600: "#0a646b",
|
|
7369
|
-
700: "#064952",
|
|
7370
|
-
800: "#033539",
|
|
7371
|
-
900: "#011f22"
|
|
7372
|
-
},
|
|
7373
|
-
// Supporting Colors
|
|
7374
|
-
"auxalia-orange": "#dc6b39",
|
|
7375
|
-
"auxalia-yellow": "#cfd12d",
|
|
7376
|
-
"auxalia-red": "#93383a",
|
|
7377
|
-
"auxalia-cyan": "#abbfbd"
|
|
7296
|
+
50: "#F5F7F9",
|
|
7297
|
+
100: "#EDF6FB",
|
|
7298
|
+
200: "#C0D6E6",
|
|
7299
|
+
300: "#204760",
|
|
7300
|
+
400: "#1C3D52",
|
|
7301
|
+
500: "#00263E",
|
|
7302
|
+
600: "#001928"
|
|
7303
|
+
}
|
|
7378
7304
|
};
|
|
7379
7305
|
var preset = {
|
|
7380
7306
|
darkMode: "class",
|
|
7381
7307
|
theme: {
|
|
7382
7308
|
extend: {
|
|
7383
7309
|
fontFamily: {
|
|
7384
|
-
|
|
7385
|
-
|
|
7310
|
+
sans: ["Inter", "sans-serif"],
|
|
7311
|
+
display: ["Inter", "sans-serif"],
|
|
7312
|
+
body: ["Inter", "sans-serif"]
|
|
7386
7313
|
},
|
|
7387
7314
|
colors: {
|
|
7315
|
+
// ─── Brand semantic tokens (map to CSS vars in tokens.css) ───
|
|
7388
7316
|
primary: "var(--color-primary)",
|
|
7389
7317
|
"primary-hover": "var(--color-primary-hover)",
|
|
7390
7318
|
"primary-foreground": "var(--color-primary-foreground)",
|
|
@@ -7399,27 +7327,42 @@ var preset = {
|
|
|
7399
7327
|
destructive: "var(--color-destructive)",
|
|
7400
7328
|
"destructive-hover": "var(--color-destructive-hover)",
|
|
7401
7329
|
"destructive-foreground": "var(--color-destructive-foreground)",
|
|
7330
|
+
"destructive-background": "var(--color-destructive-background)",
|
|
7331
|
+
success: "var(--color-success)",
|
|
7332
|
+
"success-foreground": "var(--color-success-foreground)",
|
|
7333
|
+
"success-background": "var(--color-success-background)",
|
|
7334
|
+
warning: "var(--color-warning)",
|
|
7335
|
+
"warning-foreground": "var(--color-warning-foreground)",
|
|
7336
|
+
"warning-background": "var(--color-warning-background)",
|
|
7337
|
+
info: "var(--color-info)",
|
|
7338
|
+
"info-foreground": "var(--color-info-foreground)",
|
|
7339
|
+
// ─── Border tokens ───────────────────────────────────────────
|
|
7402
7340
|
border: "var(--color-border)",
|
|
7403
7341
|
"border-input": "var(--color-border-input)",
|
|
7404
|
-
//
|
|
7405
|
-
|
|
7406
|
-
"
|
|
7407
|
-
"auxalia-petrol": auxaliaColors["auxalia-petrol"],
|
|
7408
|
-
// Background surface tokens (bg-card, bg-hero, bg-popover, bg-card-hover)
|
|
7409
|
-
card: "var(--card)",
|
|
7410
|
-
"card-hover": "var(--card-hover)",
|
|
7342
|
+
// ─── Surface / background tokens ─────────────────────────────
|
|
7343
|
+
card: "var(--color-card)",
|
|
7344
|
+
"card-hover": "var(--color-card-hover)",
|
|
7411
7345
|
hero: "var(--color-bg-hero)",
|
|
7412
|
-
popover: "var(--popover)",
|
|
7413
|
-
//
|
|
7414
|
-
//
|
|
7346
|
+
popover: "var(--color-popover)",
|
|
7347
|
+
// ─── Text tokens (non-conflicting names) ─────────────────────
|
|
7348
|
+
// Usage: text-content, text-dim, text-muted
|
|
7415
7349
|
content: "var(--color-text)",
|
|
7416
7350
|
dim: "var(--color-text-secondary)",
|
|
7417
|
-
muted: "var(--color-text-muted)"
|
|
7351
|
+
muted: "var(--color-text-muted)",
|
|
7352
|
+
// ─── Static palette (for precise palette-level overrides) ─────
|
|
7353
|
+
...auxaliaColors
|
|
7354
|
+
},
|
|
7355
|
+
borderRadius: {
|
|
7356
|
+
sm: "var(--radius-sm)",
|
|
7357
|
+
md: "var(--radius-md)",
|
|
7358
|
+
lg: "var(--radius-lg)",
|
|
7359
|
+
xl: "var(--radius-xl)",
|
|
7360
|
+
full: "var(--radius-full)"
|
|
7418
7361
|
},
|
|
7419
7362
|
backgroundImage: {
|
|
7420
7363
|
"gradient-radial-green": "radial-gradient(circle at 20% 20%, rgba(167, 213, 0, 0.15), transparent 35%)",
|
|
7421
|
-
"gradient-radial-blue": "radial-gradient(circle at 80% 0%, rgba(
|
|
7422
|
-
"gradient-glow": "linear-gradient(to bottom right, rgba(
|
|
7364
|
+
"gradient-radial-blue": "radial-gradient(circle at 80% 0%, rgba(0, 38, 62, 0.1), transparent 40%)",
|
|
7365
|
+
"gradient-glow": "linear-gradient(to bottom right, rgba(0, 38, 62, 0.1), transparent, rgba(255, 255, 255, 0.05))"
|
|
7423
7366
|
}
|
|
7424
7367
|
}
|
|
7425
7368
|
}
|
|
@@ -7428,92 +7371,67 @@ var tailwind_preset_default = preset;
|
|
|
7428
7371
|
|
|
7429
7372
|
// src/lib/tokens.ts
|
|
7430
7373
|
var AuxaliaTokens = {
|
|
7431
|
-
// PRIMARY: BRAND GREEN
|
|
7374
|
+
// ─── PRIMARY: BRAND GREEN ─────────────────────────────────────────
|
|
7432
7375
|
primary: {
|
|
7433
|
-
50: "#
|
|
7434
|
-
100: "#
|
|
7435
|
-
200: "#
|
|
7436
|
-
300: "#
|
|
7437
|
-
400: "#
|
|
7438
|
-
|
|
7439
|
-
500: "#93b800",
|
|
7376
|
+
50: "#F8FBF0",
|
|
7377
|
+
100: "#F0F7E1",
|
|
7378
|
+
200: "#DDF0C0",
|
|
7379
|
+
300: "#C3E88A",
|
|
7380
|
+
400: "#A7D500",
|
|
7381
|
+
500: "#8DB800",
|
|
7440
7382
|
600: "#749400",
|
|
7441
|
-
700: "#
|
|
7442
|
-
800: "#
|
|
7443
|
-
900: "#
|
|
7444
|
-
default: "#
|
|
7383
|
+
700: "#5A7600",
|
|
7384
|
+
800: "#3D5000",
|
|
7385
|
+
900: "#283400",
|
|
7386
|
+
default: "#A7D500"
|
|
7445
7387
|
},
|
|
7446
|
-
// SECONDARY: DARK BLUE
|
|
7388
|
+
// ─── SECONDARY: DARK BLUE ─────────────────────────────────────────
|
|
7447
7389
|
secondary: {
|
|
7448
|
-
50: "#
|
|
7449
|
-
100: "#
|
|
7450
|
-
200: "#
|
|
7451
|
-
300: "#
|
|
7452
|
-
400: "#
|
|
7453
|
-
500: "#
|
|
7454
|
-
|
|
7455
|
-
|
|
7456
|
-
700: "#1f3860",
|
|
7457
|
-
800: "#142a47",
|
|
7458
|
-
900: "#0a1628",
|
|
7459
|
-
default: "#3e6897"
|
|
7460
|
-
},
|
|
7461
|
-
// ACCENT: PETROL GREEN
|
|
7462
|
-
accent: {
|
|
7463
|
-
50: "#f0fbfc",
|
|
7464
|
-
100: "#dff8f9",
|
|
7465
|
-
200: "#bef1f3",
|
|
7466
|
-
300: "#7fe6eb",
|
|
7467
|
-
400: "#3fd9e1",
|
|
7468
|
-
500: "#0f868b",
|
|
7469
|
-
// Main accent color (petrol)
|
|
7470
|
-
600: "#0a646b",
|
|
7471
|
-
700: "#064952",
|
|
7472
|
-
800: "#033539",
|
|
7473
|
-
900: "#011f22",
|
|
7474
|
-
default: "#0f868b"
|
|
7390
|
+
50: "#F5F7F9",
|
|
7391
|
+
100: "#EDF6FB",
|
|
7392
|
+
200: "#C0D6E6",
|
|
7393
|
+
300: "#204760",
|
|
7394
|
+
400: "#1C3D52",
|
|
7395
|
+
500: "#00263E",
|
|
7396
|
+
600: "#001928",
|
|
7397
|
+
default: "#00263E"
|
|
7475
7398
|
},
|
|
7476
|
-
//
|
|
7477
|
-
supporting: {
|
|
7478
|
-
orange: "#dc6b39",
|
|
7479
|
-
yellow: "#cfd12d",
|
|
7480
|
-
red: "#93383a",
|
|
7481
|
-
cyan: "#abbfbd"
|
|
7482
|
-
},
|
|
7483
|
-
// NEUTRAL COLORS
|
|
7399
|
+
// ─── NEUTRAL ──────────────────────────────────────────────────────
|
|
7484
7400
|
neutral: {
|
|
7485
7401
|
white: "#ffffff",
|
|
7486
7402
|
black: "#000000",
|
|
7487
|
-
|
|
7488
|
-
50: "#
|
|
7489
|
-
100: "#
|
|
7490
|
-
200: "#
|
|
7491
|
-
|
|
7492
|
-
|
|
7493
|
-
|
|
7494
|
-
|
|
7495
|
-
|
|
7496
|
-
800: "#333333",
|
|
7497
|
-
900: "#1a1a1a"
|
|
7403
|
+
surface: {
|
|
7404
|
+
50: "#F0F4F8",
|
|
7405
|
+
100: "#DDE3E7",
|
|
7406
|
+
200: "#131927"
|
|
7407
|
+
},
|
|
7408
|
+
text: {
|
|
7409
|
+
300: "#131927",
|
|
7410
|
+
200: "#4F697C",
|
|
7411
|
+
100: "#9B9DB0"
|
|
7498
7412
|
}
|
|
7499
7413
|
},
|
|
7500
|
-
// SEMANTIC COLORS
|
|
7414
|
+
// ─── SEMANTIC COLORS ──────────────────────────────────────────────
|
|
7415
|
+
// Mirror of the CSS --color-{name} tokens (light-mode values)
|
|
7501
7416
|
semantic: {
|
|
7502
|
-
success: "#
|
|
7503
|
-
//
|
|
7504
|
-
|
|
7505
|
-
|
|
7506
|
-
|
|
7507
|
-
|
|
7508
|
-
|
|
7509
|
-
|
|
7510
|
-
|
|
7511
|
-
|
|
7512
|
-
|
|
7513
|
-
|
|
7514
|
-
|
|
7515
|
-
|
|
7516
|
-
|
|
7417
|
+
success: "#22C55E",
|
|
7418
|
+
// hsl(142 71% 45%)
|
|
7419
|
+
successForeground: "#ffffff",
|
|
7420
|
+
successBackground: "#E1F5EE",
|
|
7421
|
+
// hsl(159 50% 92%)
|
|
7422
|
+
warning: "#F59E0B",
|
|
7423
|
+
// hsl(38 92% 50%)
|
|
7424
|
+
warningForeground: "#000000",
|
|
7425
|
+
warningBackground: "#FEF3C7",
|
|
7426
|
+
// hsl(48 96% 89%)
|
|
7427
|
+
destructive: "#FF383C",
|
|
7428
|
+
// hsl(359 100% 61%)
|
|
7429
|
+
destructiveForeground: "#ffffff",
|
|
7430
|
+
destructiveBackground: "#FCEBEB",
|
|
7431
|
+
// hsl(0 74% 95%)
|
|
7432
|
+
info: "#1C3D52",
|
|
7433
|
+
// hsl(203 49% 22%)
|
|
7434
|
+
infoForeground: "#ffffff"
|
|
7517
7435
|
}
|
|
7518
7436
|
};
|
|
7519
7437
|
// Annotate the CommonJS export names for ESM import in node:
|