35 lines
601 B
CSS
35 lines
601 B
CSS
@import "tailwindcss";
|
|
|
|
:root {
|
|
--background: #ffffff;
|
|
--foreground: #171717;
|
|
|
|
/* Brand Colors */
|
|
--color-brand-accent: #8D6B1D;
|
|
--color-brand-header: #0F172A;
|
|
--color-brand-text: #4A4A4A;
|
|
--color-brand-background: #FFFFFF;
|
|
}
|
|
|
|
/* Theme variables moved to :root for compatibility */
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
--background: #0a0a0a;
|
|
--foreground: #ededed;
|
|
}
|
|
}
|
|
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
background: var(--background);
|
|
color: var(--foreground);
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
#__next {
|
|
height: 100%;
|
|
}
|