coloooors

This commit is contained in:
legop3
2025-11-18 15:36:56 -05:00
parent 457ad42565
commit fb5b166a37
31 changed files with 292 additions and 327 deletions
+36 -3
View File
@@ -5,12 +5,45 @@
:root {
font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
sans-serif;
color: #0f172a;
background-color: #f8fafc;
@apply bg-black text-slate-100;
}
body {
margin: 0;
min-height: 100vh;
background-color: #0f172a;
@apply bg-black text-slate-100;
}
@layer components {
.panel {
@apply bg-zinc-800 text-slate-100 p-0.5;
}
.panel-section {
@apply bg-zinc-950 text-slate-100 p-0.5;
}
.panel-muted {
@apply text-sm text-slate-400;
}
.surface {
@apply bg-zinc-900/80 text-slate-100 border border-zinc-800 px-0.5 py-0.5;
}
.surface-muted {
@apply bg-zinc-950/80 text-slate-200 border border-zinc-900 px-0.5 py-0.5;
}
.field-input {
@apply bg-zinc-900/80 text-slate-100 border border-zinc-800 px-0.5 py-0.5 focus:outline-none focus:ring-1 focus:ring-slate-500;
}
.button-dark {
@apply px-0.5 py-0.5 text-sm font-medium text-white transition-colors bg-sky-600 hover:bg-sky-500;
}
.button-danger {
@apply px-0.5 py-0.5 text-sm font-medium text-white transition-colors bg-rose-600 hover:bg-rose-500;
}
}