forcing light mode

This commit is contained in:
2026-02-16 11:30:18 +01:00
parent 1e04a928aa
commit 64ee7e6d9b

View File

@@ -1,5 +1,7 @@
@import "tailwindcss"; @import "tailwindcss";
@custom-variant dark (&:where(.dark, .dark *));
@layer base { @layer base {
:root { :root {
--background: #ffffff; --background: #ffffff;
@@ -16,6 +18,7 @@
--spacing-lg: 32px; --spacing-lg: 32px;
--border-radius: 8px; --border-radius: 8px;
--shadow-card: 0 2px 8px rgba(0, 0, 0, 0.1); --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.1);
color-scheme: light;
} }
} }
@@ -27,13 +30,6 @@
} }
@layer base { @layer base {
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
* { * {
box-sizing: border-box; box-sizing: border-box;
margin: 0; margin: 0;
@@ -43,6 +39,7 @@
body { body {
background: var(--background); background: var(--background);
color: var(--foreground); color: var(--foreground);
color-scheme: light;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
line-height: 1.6; line-height: 1.6;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;