From 1e23fd94b1ac7932cc079cc1f4b9238cc55530f3 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Sat, 26 Mar 2022 01:00:18 +0000 Subject: [PATCH] LibWeb: Use ThreedShadow1 palette color for input border in Default.css This is a bit easier on the eye than black. --- Userland/Libraries/LibWeb/CSS/Default.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/CSS/Default.css b/Userland/Libraries/LibWeb/CSS/Default.css index 9e0a40e339..d287007f5b 100644 --- a/Userland/Libraries/LibWeb/CSS/Default.css +++ b/Userland/Libraries/LibWeb/CSS/Default.css @@ -223,7 +223,7 @@ ol { /* FIXME: This is a temporary hack until we can render a native-looking frame for these. */ input, textarea { - border: 1px solid black; + border: 1px solid -libweb-palette-threed-shadow1; min-width: 80px; min-height: 16px; width: 120px;