Slight changes

This commit is contained in:
Ole Eskild Steensen 2022-03-15 15:17:09 +01:00
parent 4689824bab
commit 04d448e7aa
2 changed files with 10 additions and 4 deletions

4
.env
View File

@ -1,2 +1,2 @@
THEME=https://raw.githubusercontent.com/kepano/obsidian-minimal/master/Minimal.css THEME=https://raw.githubusercontent.com/colineckert/obsidian-things/main/obsidian.css
BASE_THEME=dark BASE_THEME=light

View File

@ -41,12 +41,18 @@ h4 {
text-align: center; text-align: center;
} }
body { .theme-dark {
background-color: rgb(32, 31, 31); background: rgb(32, 31, 31);
color: white; color: white;
font-family: 'Roboto', sans-serif; font-family: 'Roboto', sans-serif;
} }
.theme-light {
background: white;
color: black;
font-family: 'Roboto', sans-serif;
}
a { a {
text-decoration: underline; text-decoration: underline;
color: rgb(97, 186, 245); color: rgb(97, 186, 245);