From f3828cac0a2fcaae0d4cc626f3471a2fc10817ad Mon Sep 17 00:00:00 2001 From: Deimos Date: Wed, 26 Sep 2018 15:12:15 -0600 Subject: [PATCH] Change label colors/order again Solarized's green color is pretty awful, not really attractive for Exemplary comments. This switches Exemplary to blue, Joke to green, and Offtopic to cyan. It also rearranges the order a bit so that the colors in the labeling menu go in a progression that looks right. --- tildes/scss/_variables.scss | 6 +++--- tildes/tildes/enums.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tildes/scss/_variables.scss b/tildes/scss/_variables.scss index 13b205a..c9f94d6 100644 --- a/tildes/scss/_variables.scss +++ b/tildes/scss/_variables.scss @@ -36,10 +36,10 @@ $topic-tag-nsfw-color: $red; $topic-tag-spoiler-color: $yellow; // Colors for comment labels -$comment-label-exemplary-color: $green; -$comment-label-joke-color: $cyan; +$comment-label-exemplary-color: $blue; +$comment-label-joke-color: $green; $comment-label-noise-color: $yellow; -$comment-label-offtopic-color: $blue; +$comment-label-offtopic-color: $cyan; $comment-label-malice-color: $red; $sidebar-width: 300px; diff --git a/tildes/tildes/enums.py b/tildes/tildes/enums.py index 1633486..500a959 100644 --- a/tildes/tildes/enums.py +++ b/tildes/tildes/enums.py @@ -41,8 +41,8 @@ class CommentLabelOption(enum.Enum): """Enum for the (site-wide) comment label options.""" EXEMPLARY = enum.auto() - JOKE = enum.auto() OFFTOPIC = enum.auto() + JOKE = enum.auto() NOISE = enum.auto() MALICE = enum.auto()