Task attempt 4e0e57ea-d98b-44d2-b0a5-2c7ef9114a47 - Final changes

This commit is contained in:
Louis Knight-Webb
2025-06-20 16:20:22 +01:00
parent 2c4a7f7f4b
commit 3027a3de5c
11 changed files with 157 additions and 69 deletions

View File

@@ -51,6 +51,40 @@ module.exports = {
DEFAULT: "hsl(var(--card))",
foreground: "hsl(var(--card-foreground))",
},
success: {
DEFAULT: "hsl(var(--success))",
foreground: "hsl(var(--success-foreground))",
},
warning: {
DEFAULT: "hsl(var(--warning))",
foreground: "hsl(var(--warning-foreground))",
},
info: {
DEFAULT: "hsl(var(--info))",
foreground: "hsl(var(--info-foreground))",
},
neutral: {
DEFAULT: "hsl(var(--neutral))",
foreground: "hsl(var(--neutral-foreground))",
},
status: {
init: "hsl(var(--status-init))",
"init-foreground": "hsl(var(--status-init-foreground))",
running: "hsl(var(--status-running))",
"running-foreground": "hsl(var(--status-running-foreground))",
complete: "hsl(var(--status-complete))",
"complete-foreground": "hsl(var(--status-complete-foreground))",
failed: "hsl(var(--status-failed))",
"failed-foreground": "hsl(var(--status-failed-foreground))",
paused: "hsl(var(--status-paused))",
"paused-foreground": "hsl(var(--status-paused-foreground))",
},
console: {
DEFAULT: "hsl(var(--console-background))",
foreground: "hsl(var(--console-foreground))",
success: "hsl(var(--console-success))",
error: "hsl(var(--console-error))",
},
},
borderRadius: {
lg: "var(--radius)",