Add dark mode

This commit is contained in:
Joachim
2021-05-26 13:07:33 +02:00
parent bf503d370c
commit b47edc5f0d
2 changed files with 14 additions and 6 deletions

View File

@ -39,11 +39,12 @@ DEFAULT_AUTO_FIELD = "django.db.models.AutoField"
# Preview image
# Specify RGB tuple or RGB hex strings, or 'use_dominant_color'
PREVIEW_BG_COLOR = "use_dominant_color"
# Specify RGB tuple or RGB hex strings,
# or "use_dominant_color_light" / "use_dominant_color_dark"
PREVIEW_BG_COLOR = "use_dominant_color_dark"
PREVIEW_IMG_WIDTH = 1200
PREVIEW_IMG_HEIGHT = 630
PREVIEW_TEXT_COLOR = "#363636"
PREVIEW_TEXT_COLOR = "#FFF"
PREVIEW_DEFAULT_COVER_COLOR = "#002549"
# Quick-start development settings - unsuitable for production