aboutsummaryrefslogtreecommitdiff
path: root/app/globals.css
diff options
context:
space:
mode:
authorzwlucas <lucas.oliveira1676@etec.sp.gov.br>2025-03-31 23:24:13 +0000
committerzwlucas <lucas.oliveira1676@etec.sp.gov.br>2025-03-31 23:24:13 +0000
commit0d54368efc5e91bf1beea8961655fa77f51b3074 (patch)
tree565050614ac4666c41b8eec20ce1ca85f4d8bb09 /app/globals.css
downloadeleicoes-0d54368efc5e91bf1beea8961655fa77f51b3074.tar.gz
eleicoes-0d54368efc5e91bf1beea8961655fa77f51b3074.zip
Initial commit from Create Next App
Diffstat (limited to 'app/globals.css')
-rw-r--r--app/globals.css26
1 files changed, 26 insertions, 0 deletions
diff --git a/app/globals.css b/app/globals.css
new file mode 100644
index 0000000..a2dc41e
--- /dev/null
+++ b/app/globals.css
@@ -0,0 +1,26 @@
+@import "tailwindcss";
+
+:root {
+ --background: #ffffff;
+ --foreground: #171717;
+}
+
+@theme inline {
+ --color-background: var(--background);
+ --color-foreground: var(--foreground);
+ --font-sans: var(--font-geist-sans);
+ --font-mono: var(--font-geist-mono);
+}
+
+@media (prefers-color-scheme: dark) {
+ :root {
+ --background: #0a0a0a;
+ --foreground: #ededed;
+ }
+}
+
+body {
+ background: var(--background);
+ color: var(--foreground);
+ font-family: Arial, Helvetica, sans-serif;
+}