diff options
author | silverwind <me@silverwind.io> | 2022-01-11 10:11:40 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-11 12:11:40 -0600 |
commit | 72cced1f3e3500b01705c9e9cdbdc59e9a27cb1c (patch) | |
tree | e2fa3d3043cf5fd51b6a309fc8f82188a01a8bbd /templates/repo | |
parent | 09d2029b6c943e542ae5ddf0a5b890ab92355b0f (diff) | |
download | gitea-72cced1f3e3500b01705c9e9cdbdc59e9a27cb1c.tar.gz gitea-72cced1f3e3500b01705c9e9cdbdc59e9a27cb1c.zip |
Fix purple color in suggested label colors (#18241)
This looks like a typo that was introduced when these colors were added,
causing what is supposed to be purple show up as green.
Diffstat (limited to 'templates/repo')
-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 d0e165068d..555595fc14 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> |