araozu.dev/public/global.css

54 lines
1.1 KiB
CSS
Raw Normal View History

2024-05-19 01:45:24 +00:00
/* Iosevka web */
@font-face {
font-family: "Iosevka Fixed Web";
font-display: swap;
font-weight: 400;
font-stretch: normal;
font-style: normal;
src: url("/Iosevka/Regular.woff2") format("woff2");
}
2024-07-15 14:17:35 +00:00
/* Iosevka from Xe Iaso: https://xeiaso.net/ https://github.com/Xe/iosevka */
@font-face {
font-family: "Iosevka Iaso";
font-display: swap;
font-weight: 400;
font-stretch: normal;
font-style: normal;
src: url("/IosevkaIaso/Regular.woff2") format("woff2");
}
2024-04-23 22:06:30 +00:00
:root {
--c-bg: #101010;
--c-on-bg: #dedede;
2024-05-01 11:50:59 +00:00
--c-bg-2: #18181b;
2024-05-26 01:44:27 +00:00
--c-border-1: transparent;
--c-border-2: #606060;
2024-10-06 02:06:04 +00:00
--font-display: "Atkinson Hyperlegible", sans-serif;
--font-body: "Iosevka Iaso", "Iosevka Fixed Web", sans-serif;
--font-mono: "Iosevka Fixed Web", Iosevka, sans-serif;
2024-04-23 22:06:30 +00:00
}
@media (prefers-color-scheme: light) {
:root {
--c-bg: #f5f5f5;
--c-on-bg: #101010;
2024-05-19 01:45:24 +00:00
2024-05-01 11:50:59 +00:00
--c-bg-2: white;
2024-05-26 01:44:27 +00:00
--c-border-1: #aaaaaa;
--c-border-2: #aaaaaa;
2024-04-23 22:06:30 +00:00
}
}
html {
background-color: var(--c-bg);
color: var(--c-on-bg);
2024-05-04 13:20:29 +00:00
}
body {
2024-10-06 02:06:04 +00:00
font-family: var(--font-body);
2024-05-04 13:20:29 +00:00
font-optical-sizing: auto;
2024-04-23 22:06:30 +00:00
}