diff options
author | phortx <benny@itws.de> | 2015-01-13 15:47:23 +0100 |
---|---|---|
committer | phortx <benny@itws.de> | 2015-01-13 15:47:23 +0100 |
commit | e64e0104fa97d6b420aa430018acfcfc3894044b (patch) | |
tree | 9310ea6c902df57129e98661811b50b5855062b8 /app/helpers/labels_helper.rb | |
parent | 5b32fda4b8698deda5402b8c640d36bf5cd69222 (diff) | |
download | gitlab-ce-e64e0104fa97d6b420aa430018acfcfc3894044b.tar.gz |
Reorders label colors for better "rainbow"
Diffstat (limited to 'app/helpers/labels_helper.rb')
-rw-r--r-- | app/helpers/labels_helper.rb | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/app/helpers/labels_helper.rb b/app/helpers/labels_helper.rb index bf9d9fd2496..a2e6244e8b3 100644 --- a/app/helpers/labels_helper.rb +++ b/app/helpers/labels_helper.rb @@ -14,12 +14,6 @@ module LabelsHelper def suggested_colors [ - '#CC0033', - '#FF0000', - '#D9534F', - '#D1D100', - '#F0AD4E', - '#AD8D43', '#0033CC', '#428BCA', '#44AD8E', @@ -32,9 +26,15 @@ module LabelsHelper '#A295D6', '#5843AD', '#8E44AD', - '#AD4363', '#FFECDB', - '#D10069' + '#AD4363', + '#D10069', + '#CC0033', + '#FF0000', + '#D9534F', + '#D1D100', + '#F0AD4E', + '#AD8D43' ] end |