From 009e4a08621030a0fbf8d6880fa91d15f52a9017 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Colombaro?= Date: Mon, 21 Sep 2020 15:38:20 +0200 Subject: [PATCH] Fix options on dark themes --- source/options.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/source/options.css b/source/options.css index de19674..e361366 100644 --- a/source/options.css +++ b/source/options.css @@ -1,5 +1,14 @@ body { min-width: 430px; /* Required to size the Browser Action popup */ + background: white; + color: black; +} + +@media (prefers-color-scheme: dark) { + body { + background: black; + color: white; + } } :root {