From 4b41eb7c17b8b83b3bfcbe69d5a4e068697d3009 Mon Sep 17 00:00:00 2001 From: felipebpl <62957465+felipebpl@users.noreply.github.com> Date: Fri, 3 Feb 2023 11:42:53 -0300 Subject: [PATCH] updating warning text color to Grafana Orange (#790) **What this PR does**: This PR updates the color for the warning text to proper Grafana Orange (`rgb(255, 120, 10)`). **Which issue(s) this PR fixes**: #768 **Checklist** - [ ] Tests updated - [ ] Documentation added - [ ] `CHANGELOG.md` updated Co-authored-by: Matvey Kukuy --- grafana-plugin/src/style/vars.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/grafana-plugin/src/style/vars.css b/grafana-plugin/src/style/vars.css index bb0f2853..9e9b920c 100644 --- a/grafana-plugin/src/style/vars.css +++ b/grafana-plugin/src/style/vars.css @@ -27,7 +27,7 @@ --primary-text-color: rgb(36, 41, 46); --secondary-text-color: rgba(36, 41, 46, 0.75); --disabled-text-color: rgba(36, 41, 46, 0.5); - --warning-text-color: #8a6c00; + --warning-text-color: rgb(255, 120, 10); --success-text-color: rgb(10, 118, 78); --error-text-color: rgb(207, 14, 91); --primary-text-link: #1f62e0; @@ -56,7 +56,7 @@ --primary-text-color: rgb(204, 204, 220); --secondary-text-color: rgba(204, 204, 220, 0.65); --disabled-text-color: rgba(204, 204, 220, 0.4); - --warning-text-color: #f8d06b; + --warning-text-color: rgb(255, 120, 10); --success-text-color: rgb(108, 207, 142); --error-text-color: rgb(255, 82, 134); --primary-text-link: #6e9fff;