bandsbender's picture
Upload 348 files
21a686e verified
raw
history blame
880 Bytes
@import "tailwindcss";
@theme {
--color-primary: #DC2626;
--color-secondary: #111827;
--color-background: #000000;
--color-foreground: #FFFFFF;
--color-muted: #6B7280;
--color-accent: #DC2626;
--color-card: #1F2937;
--color-border: #374151;
--color-input: #374151;
--color-ring: #DC2626;
--color-destructive: #EF4444;
--color-success: #10B981;
--color-warning: #F59E0B;
}
@layer base {
* {
border-color: theme(colors.border);
}
body {
background-color: #000000;
color: #FFFFFF;
font-family: 'Inter', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
color: #FFFFFF;
}
.text-primary {
color: #DC2626;
}
.text-secondary {
color: #6B7280;
}
.bg-primary {
background-color: #DC2626;
}
.bg-secondary {
background-color: #111827;
}
.border-primary {
border-color: #DC2626;
}
}