From 3175557cb82079a2fe09a9a1f916fa9aecb58e60 Mon Sep 17 00:00:00 2001 From: Bastiaan van der Plaat Date: Wed, 15 Nov 2023 19:53:14 +0100 Subject: [PATCH] LibWeb: Update progressbar colors to be more pleasant --- Userland/Libraries/LibWeb/CSS/Default.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Userland/Libraries/LibWeb/CSS/Default.css b/Userland/Libraries/LibWeb/CSS/Default.css index d579f7e52d..b07ad97099 100644 --- a/Userland/Libraries/LibWeb/CSS/Default.css +++ b/Userland/Libraries/LibWeb/CSS/Default.css @@ -786,10 +786,10 @@ progress { progress::-webkit-progress-bar { width: inherit; height: inherit; - background-color: grey; + background-color: hsl(0, 0%, 96%); } progress::-webkit-progress-value { height: inherit; - background-color: green; + background-color: hsl(204, 86%, 53%); }