why did I make user styles a config setting???

this moves it into the code, where it's sensible, and leaves the default
to the config
This commit is contained in:
2020-12-08 16:43:20 -06:00
parent 3fcf916317
commit d2c1c2e3ce
2 changed files with 7 additions and 6 deletions

View File

@@ -34,11 +34,7 @@ class Config(object):
MARKDOWN_EXTENSIONS = ['meta', 'tables']
PAGE_STYLES = {
'DEFAULT': 'css/light.css',
'dark': 'css/dark.css',
'light': 'css/light.css',
}
DEFAULT_PAGE_STYLE = 'light'
TITLE_SUFFIX = 'incorporeal.org'
MEDIA_DIR = 'media'