Changed default theme color

pull/625/head
Piero Toffanin 2019-02-18 14:12:01 -05:00
rodzic 2b9c346ac9
commit 2d440cc0e2
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -17,13 +17,13 @@ class Theme(models.Model):
# Similar to how discourse.org does it
primary = ColorField(default='#2c3e50', help_text="Most text, icons, and borders.")
secondary = ColorField(default='#ffffff', help_text="The main background color, and text color of some buttons.")
tertiary = ColorField(default='#18bc9c', help_text="Navigation links.")
tertiary = ColorField(default='#3498db', help_text="Navigation links.")
button_primary = ColorField(default='#2c3e50', help_text="Primary button color.")
button_default = ColorField(default='#95a5a6', help_text="Default button color.")
button_danger = ColorField(default='#e74c3c', help_text="Delete button color.")
header_background = ColorField(default='#18bc9c', help_text="Background color of the site's header.")
header_background = ColorField(default='#3498db', help_text="Background color of the site's header.")
header_primary = ColorField(default='#ffffff', help_text="Text and icons in the site's header.")
border = ColorField(default='#e7e7e7', help_text="The color of most borders.")