From c017b26f18e19e139cd68ef2ac8ad36495688c43 Mon Sep 17 00:00:00 2001 From: sadique43 <54922697+sadique43@users.noreply.github.com> Date: Thu, 1 Oct 2020 08:37:27 +0530 Subject: [PATCH] updating color name with hex color code in css --- demo/styling.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/demo/styling.html b/demo/styling.html index b2e820e4..e6243aa6 100644 --- a/demo/styling.html +++ b/demo/styling.html @@ -86,23 +86,23 @@ body.light button, select, body.light select { - background-color: white; - color: black; + background-color: #FFFFFF; + color: #000000; } body.dark, body.dark button, body.dark select { - background-color: black; - color: white; + background-color: #000000; + color: #FFFFFF; } @media (prefers-color-scheme: dark) { body, button, select { - background-color: black; - color: white; + background-color: #000000; + color: #FFFFFF; } }