diff --git a/src/frontend/src/style/applies.css b/src/frontend/src/style/applies.css index 39d4769e6..a9ffa8dd4 100644 --- a/src/frontend/src/style/applies.css +++ b/src/frontend/src/style/applies.css @@ -296,7 +296,7 @@ @apply generic-node-status text-status-green; } .gray-status { - @apply generic-node-status text-muted-foreground; + @apply generic-node-status text-status-gray; } .red-status { diff --git a/src/frontend/src/style/index.css b/src/frontend/src/style/index.css index 0185d25b7..ba0496071 100644 --- a/src/frontend/src/style/index.css +++ b/src/frontend/src/style/index.css @@ -60,6 +60,7 @@ --chat-send: #059669; --status-green: #4ade80; --status-blue: #2563eb; + --status-gray: #6b7280; --connection: #555; } diff --git a/src/frontend/tailwind.config.js b/src/frontend/tailwind.config.js index cef5b5891..ba37b1b62 100644 --- a/src/frontend/tailwind.config.js +++ b/src/frontend/tailwind.config.js @@ -80,6 +80,7 @@ module.exports = { "status-green": "var(--status-green)", "status-red": "var(--status-red)", "status-yellow": "var(--status-yellow)", + "status-gray": "var(--status-gray)", "success-background": "var(--success-background)", "success-foreground": "var(--success-foreground)", "beta-background": "var(--beta-background)",