Move to embedded dirs

This commit is contained in:
Andrew-71 2024-05-18 16:15:20 +03:00
parent 119ae9c3c6
commit 430a7461e6
16 changed files with 99 additions and 42 deletions

BIN
public/favicon-512.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 894 B

After

Width:  |  Height:  |  Size: 894 B

Before After
Before After

View file

@ -4,7 +4,7 @@
"description": "A plaintext diary",
"icons": [
{
"src": "/public/TODO.png",
"src": "/public/favicon-512.png",
"type": "image/png",
"sizes": "512x512"
},

30
public/themes/sans.css Normal file
View file

@ -0,0 +1,30 @@
/* Sans Undertale */
:root {
/* Light theme */
--text-light: #3c3836;
--bg-light: #e2e7e8;
--clickable-light: #41acda;
--clickable-hover-light: #2d8db4;
--clickable-label-light: #e2e8e2;
--text-hover-light: #665c54;
--textarea-bg-light: #f3f3f3;
--textarea-border-light: #3c3836;
/* Dark theme */
--text-dark: #e2e7e8;
--bg-dark: #25282a;
--clickable-dark: #41acda;
--clickable-hover-dark: #2d8db4;
--clickable-label-dark: #e2e8e2;
--text-hover-dark: #cdd2d3;
--textarea-bg-dark: #2d3234;
--textarea-border-dark: #3c3836;
}
body, textarea, input, button {
font-family: "Comic Sans MS", sans-serif;
}