Files
main/app/globals.css

37 lines
680 B
CSS
Raw Normal View History

2026-03-24 06:59:35 +03:00
@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 {
2026-03-24 10:16:28 +03:00
--background: #505050;
2026-03-24 06:59:35 +03:00
--foreground: #ededed;
2026-03-24 19:10:22 +03:00
--link-color: #8b56cc;
--link-hover: #ae5ed6;
2026-03-24 18:51:23 +03:00
}
2026-03-24 06:59:35 +03:00
}
2026-03-24 19:10:22 +03:00
.link-custom {
color: var(--linl-color);
transition: color 0.2s ease;
}
.link-custom:hover {
color: var(--link-hover);
}
2026-03-24 06:59:35 +03:00
body {
background: var(--background);
color: var(--foreground);
2026-03-24 18:51:23 +03:00
link: var(--link);
2026-03-24 06:59:35 +03:00
font-family: Arial, Helvetica, sans-serif;
}