2023-05-07 01:31:55 +00:00
|
|
|
/*
|
|
|
|
Base colors :D
|
|
|
|
*/
|
|
|
|
:root {
|
|
|
|
--c-primary: #ffb86d;
|
|
|
|
--c-on-primary: #492900;
|
|
|
|
--c-primary-container: #683c00;
|
|
|
|
--c-on-primary-container: #ffdcbd;
|
|
|
|
--c-error: #ffb4ab;
|
|
|
|
--c-on-error: #690005;
|
|
|
|
--c-error-container: #93000a;
|
|
|
|
--c-on-error-container: #ffdad6;
|
|
|
|
--c-background: #201b16;
|
|
|
|
--c-on-background: #ebe1d9;
|
|
|
|
--c-surface: #201b16;
|
|
|
|
--c-on-surface: #ebe1d9;
|
|
|
|
--c-outline: #9d8e81;
|
|
|
|
--c-surface-variant: #50453a;
|
|
|
|
--c-on-surface-variant: #d5c3b5;
|
|
|
|
}
|
|
|
|
|
2023-05-07 17:44:02 +00:00
|
|
|
@media (prefers-color-scheme: light) {
|
|
|
|
:root {
|
|
|
|
--c-primary: #9e4300;
|
|
|
|
--c-on-primary: #ffffff;
|
|
|
|
--c-primary-container: #ffdbcb;
|
|
|
|
--c-on-primary-container: #341100;
|
|
|
|
--c-error: #ba1a1a;
|
|
|
|
--c-on-error: #ffffff;
|
|
|
|
--c-error-container: #ffdad6;
|
|
|
|
--c-on-error-container: #410002;
|
|
|
|
--c-background: #fffbff;
|
|
|
|
--c-on-background: #201a18;
|
|
|
|
--c-surface: #fffbff;
|
|
|
|
--c-on-surface: #201a18;
|
|
|
|
--c-outline: #85736c;
|
|
|
|
--c-surface-variant: #f4ded4;
|
|
|
|
--c-on-surface-variant: #52443d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-05-07 01:31:55 +00:00
|
|
|
body {
|
|
|
|
background-color: var(--c-background);
|
|
|
|
color: var(--c-on-background);
|
|
|
|
font-family: Inter, "Inter Nerd Font", sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|