Improve light theme base colors

This commit is contained in:
Tiago
2025-12-14 10:56:34 -03:00
parent 280bb47131
commit 31d0b30365

View File

@@ -1,5 +1,6 @@
/* Dashboard Telseg - estilos base */ /* Dashboard Telseg - estilos base */
:root { :root {
color-scheme: dark;
/* Tema escuro neutro (preto) */ /* Tema escuro neutro (preto) */
--bg: #000000; /* preto puro */ --bg: #000000; /* preto puro */
--panel: #0a0a0a; /* preto levemente mais claro que o bg */ --panel: #0a0a0a; /* preto levemente mais claro que o bg */
@@ -15,8 +16,10 @@
} }
[data-theme="light"] { [data-theme="light"] {
color-scheme: light;
--bg: #f8fafc; /* slate-50 */ --bg: #f8fafc; /* slate-50 */
--panel: #ffffff; --panel: #ffffff;
--card: #fdfdfd;
--muted: #475569; /* slate-600 */ --muted: #475569; /* slate-600 */
--text: #0f172a; /* slate-900 */ --text: #0f172a; /* slate-900 */
--primary: #16a34a; --primary: #16a34a;