From 082bc6b47804ac5b76dfade4a99b59e2b5aeee3d Mon Sep 17 00:00:00 2001 From: Samuel Mannehed Date: Mon, 30 Oct 2017 15:31:56 +0100 Subject: [PATCH] Use more subtle colors for warn and error in lite The clear red and yellow colors used before does not match well with the rest of noVNC's color scheme. --- app/styles/lite.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/styles/lite.css b/app/styles/lite.css index a65d1ab1..3150c9af 100644 --- a/app/styles/lite.css +++ b/app/styles/lite.css @@ -48,11 +48,11 @@ html { } .noVNC_status_error { - background: linear-gradient(#f04040 0%,#899cb3 49%,#7e93af 51%,#6e84a3 100%); + background: linear-gradient(#c83737 0%,#899cb3 49%,#7e93af 51%,#6e84a3 100%); } .noVNC_status_warn { - background: linear-gradient(#f0f040 0%,#899cb3 49%,#7e93af 51%,#6e84a3 100%); + background: linear-gradient(#b4b41e 0%,#899cb3 49%,#7e93af 51%,#6e84a3 100%); } #noVNC_buttons {