Dark theme

This commit is contained in:
2021-11-29 23:38:30 +01:00
parent f75d084ab5
commit 8f204f7cbd
4 changed files with 61 additions and 10 deletions

View File

@@ -1,8 +1,16 @@
@import url('./src/styles/colors.css');
body {
font-family: 'Shippori Antique', sans-serif;
height: 80vh;
/* background-color: #222848; */
background-color: #f8f9ff;
/* color: #f1f1f1; */
color: #3b3e66;
}
background-color: var(--body);
color: var(--text);
}
.dark {
--body: #1c1c1c;
--text: #ffffff;
--status:#292929;
--stack: #212121;
--border: #3a3a3a;
}