Initial commit

This commit is contained in:
Corentin Risselin 2019-12-31 06:03:44 +09:00
commit 56d40196d6
15 changed files with 490 additions and 0 deletions

8
assets/theme/dark.css Normal file
View file

@ -0,0 +1,8 @@
:root
{
--main-bg-color: #333;
--main-fg-color: #eee;
--main-primary-color: hsl(213, 35%, 65%);
--light-primary-color: hsl(213, 35%, 45%);
}

8
assets/theme/light.css Normal file
View file

@ -0,0 +1,8 @@
:root
{
--main-bg-color: #eee;
--main-fg-color: #333;
--main-primary-color: hsl(213, 35%, 45%);
--light-primary-color: hsl(213, 35%, 65%);
}