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-26 15:01:21 +03:00
|
|
|
--foreground: #ededed;
|
2026-03-26 15:43:43 +03:00
|
|
|
--link-hover: #8b56cc;
|
2026-03-24 18:51:23 +03:00
|
|
|
}
|
2026-03-24 06:59:35 +03:00
|
|
|
}
|
2026-03-26 15:43:43 +03:00
|
|
|
.two-color{
|
2026-03-27 17:21:10 +03:00
|
|
|
color: #5e5e5e;
|
2026-03-26 15:43:43 +03:00
|
|
|
}
|
2026-03-24 19:10:22 +03:00
|
|
|
.link-custom {
|
2026-03-26 15:43:43 +03:00
|
|
|
color: #ae5ed6;
|
2026-03-24 19:10:22 +03:00
|
|
|
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;
|
|
|
|
|
}
|