forked from atums.world/atums.world
40 lines
857 B
CSS
40 lines
857 B
CSS
[data-theme="dark"] {
|
|
--background: rgb(31, 30, 30);
|
|
--background-secondary: rgb(45, 45, 45);
|
|
--border: rgb(31, 30, 30);
|
|
--text: rgb(255, 255, 255);
|
|
--text-secondary: rgb(255, 255, 255);
|
|
}
|
|
|
|
body {
|
|
font-family: "Ubuntu", sans-serif;
|
|
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-size: 16px;
|
|
|
|
background-color: var(--background);
|
|
}
|
|
|
|
/* Fonts */
|
|
@font-face {
|
|
font-family: "Ubuntu";
|
|
src: url("/public/assets/fonts/Ubuntu/Ubuntu-Regular.ttf") format("truetype");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Ubuntu Bold";
|
|
src: url("/public/assets/fonts/Ubuntu/Ubuntu-Bold.ttf") format("truetype");
|
|
font-weight: bold;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Fira Code";
|
|
src: url("/public/assets/fonts/Fira_code/FiraCode-Regular.ttf") format("truetype");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|