aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/settings.py
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2019-10-06 17:36:51 +0100
committerGravatar Gareth Coles <[email protected]>2019-10-06 17:36:51 +0100
commit3c6d913b83ba589dbffe45456a5355985ce35a10 (patch)
tree9087e0a15af35e4419f870d6d57cd9ebe3a6d13c /pydis_site/settings.py
parentAdd missing CSS for notifications (diff)
Make the Bulma colours less saturated
Diffstat (limited to 'pydis_site/settings.py')
-rw-r--r--pydis_site/settings.py15
1 files changed, 11 insertions, 4 deletions
diff --git a/pydis_site/settings.py b/pydis_site/settings.py
index 93867101..f3d573c1 100644
--- a/pydis_site/settings.py
+++ b/pydis_site/settings.py
@@ -296,15 +296,22 @@ CRISPY_TEMPLATE_PACK = "bulma"
# Custom settings for django-simple-bulma
BULMA_SETTINGS = {
"variables": { # If you update these colours, please update the notification.css file
- "green": "#21c65c", # Accessibility: Better contrast with the light text
- "primary": "#7289DA",
+ "primary": "#7289DA", # Discord blurple
+
+ "orange": "#ffb39b", # Bulma default, but at a saturation of 100
+ "yellow": "#ffea9b", # Bulma default, but at a saturation of 100
+ "green": "#7fd19c", # Bulma default, but at a saturation of 100
+ "turquoise": "#7289DA", # Blurple, because Bulma uses this as the default primary
+ "cyan": "#91cbee", # Bulma default, but at a saturation of 100
+ "blue": "#86a7dc", # Bulma default, but at a saturation of 100
+ "purple": "#b86bff", # Bulma default, but at a saturation of 100
+ "red": "#ffafc2", # Bulma default, but at a saturation of 80
+
"link": "$primary",
"dimensions": "16 24 32 48 64 96 128 256 512", # Possible image dimensions
"navbar-height": "4.75rem",
"footer-padding": "1rem 1.5rem 1rem",
-
- "notification-background-color": "#33353C", # Discord embed background colour
}
}