diff options
author | 2019-04-17 11:38:04 +0100 | |
---|---|---|
committer | 2019-04-17 11:38:04 +0100 | |
commit | f7830f299fc9009ff944b3aea656b44d83c91420 (patch) | |
tree | 8b9112f76e1e88f041790f2b81b24f54edd91f42 /pydis_site/settings.py | |
parent | Image upload and images sidebar form work (diff) |
Accessibility and images sidebar
Diffstat (limited to 'pydis_site/settings.py')
-rw-r--r-- | pydis_site/settings.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pydis_site/settings.py b/pydis_site/settings.py index 58bf5abe..40954566 100644 --- a/pydis_site/settings.py +++ b/pydis_site/settings.py @@ -276,6 +276,8 @@ BULMA_SETTINGS = { "variables": { "primary": "#7289DA", "link": "$primary", + + "green": "#21c65c", # Better contrast with the light text } } @@ -313,7 +315,7 @@ WIKI_MARKDOWN_KWARGS = { } WIKI_MESSAGE_TAG_CSS_CLASS = { - messages.DEBUG: "is-info", + messages.DEBUG: "", # is-info isn't distinctive enough from blurple messages.ERROR: "is-danger", messages.INFO: "is-primary", messages.SUCCESS: "is-success", |