starting stuff

This commit is contained in:
Luna 2025-11-13 13:28:15 -03:00
commit 9ecf2ee5fa
4 changed files with 51 additions and 0 deletions

10
assets/base.css Normal file
View file

@ -0,0 +1,10 @@
@import url(fonts.css);
html {
background-color: var(--c-bg)
}
p {
font-family: "nya";
color: var(--c-fg)
}

5
assets/colors.css Normal file
View file

@ -0,0 +1,5 @@
:root {
--c-bg: #000000;
--c-fg: #ffffff;
--c-highlight: #00ffff;
}

25
assets/fonts.css Normal file
View file

@ -0,0 +1,25 @@
@font-face {
font-family: "nya";
src: url(MapleMonoNormal-Regular.ttf.woff2);
font-weight: normal;
}
@font-face {
font-family: "nya";
src: url(MapleMonoNormal-Bold.ttf.woff2);
font-weight: bold;
}
@font-face {
font-family: "nya";
src: url(MapleMonoNormal-Italic.ttf.woff2);
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: "nya";
src: url(MapleMonoNormal-BoldItalic.ttf.woff2);
font-weight: bold;
font-style: italic;
}