diff options
author | silverwind | 2022-01-11 10:12:51 -0800 |
---|---|---|
committer | GitHub | 2022-01-11 12:12:51 -0600 |
commit | c719841f0d6acd78a43e65682a487c8843d06d9e (patch) | |
tree | bd7e9c756cd3254f21011730504cf051c95f59b6 | |
parent | f9e150002e762079c0f6a6ad6369f64fd3041841 (diff) |
Fix purple color in suggested label colors (#18242)
This looks like a typo that was introduced when these colors were added,
causing what is supposed to be purple show up as green.
-rw-r--r-- | templates/repo/issue/label_precolors.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/issue/label_precolors.tmpl b/templates/repo/issue/label_precolors.tmpl index d0e165068..555595fc1 100644 --- a/templates/repo/issue/label_precolors.tmpl +++ b/templates/repo/issue/label_precolors.tmpl @@ -5,7 +5,7 @@ <a class="color" style="background-color:#006b75" data-color-hex="#006b75"></a> <a class="color" style="background-color:#207de5" data-color-hex="#207de5"></a> <a class="color" style="background-color:#0052cc" data-color-hex="#0052cc"></a> -<a class="color" style="background-color:#53e917" data-color-hex="#53e917"></a> +<a class="color" style="background-color:#5319e7" data-color-hex="#5319e7"></a> <a class="color" style="background-color:#f6c6c7" data-color-hex="#f6c6c7"></a> <a class="color" style="background-color:#fad8c7" data-color-hex="#fad8c7"></a> <a class="color" style="background-color:#fef2c0" data-color-hex="#fef2c0"></a> |