Update status colors in CSS and Tailwind config

This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-02-25 19:06:12 -03:00
commit 523e8d8ca2
3 changed files with 3 additions and 1 deletions

View file

@ -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 {

View file

@ -60,6 +60,7 @@
--chat-send: #059669;
--status-green: #4ade80;
--status-blue: #2563eb;
--status-gray: #6b7280;
--connection: #555;
}

View file

@ -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)",