From 745ecae2ab432d5dd93d9db530b87d385fe51b1f Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Thu, 30 May 2024 13:18:44 +0300 Subject: [PATCH] web-browsers: initial userstyles These will be merged together once I learn how, but I am not supposed to be playing around with these now. Even if I am just testing how they work. --- web-browsers/revert-sans.user.css | 20 ++++++++++++++++++++ web-browsers/revert-serif.user.css | 20 ++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 web-browsers/revert-sans.user.css create mode 100644 web-browsers/revert-serif.user.css diff --git a/web-browsers/revert-sans.user.css b/web-browsers/revert-sans.user.css new file mode 100644 index 0000000..2e1d399 --- /dev/null +++ b/web-browsers/revert-sans.user.css @@ -0,0 +1,20 @@ +/* ==UserStyle== +@name Revert Sans +@updateURL https://gitea.blesmrt.net/mikaela/gist/raw/branch/master/web-browsers/revert-serif.user.css +==/UserStyle== */ + +:root { + color-scheme: dark light !important; +} +* { + font-family: "Liberation Sans", "Arimo", "Arial", sans-serif; + color: revert !important; + background-color: revert !important; +} +a { + text-decoration: underline !important; +} +code, +pre { + font-family: "Liberation Mono", "Cousine", "Courier New", monospace; +} diff --git a/web-browsers/revert-serif.user.css b/web-browsers/revert-serif.user.css new file mode 100644 index 0000000..08403d2 --- /dev/null +++ b/web-browsers/revert-serif.user.css @@ -0,0 +1,20 @@ +/* ==UserStyle== +@name Revert Serif +@updateURL https://gitea.blesmrt.net/mikaela/gist/raw/branch/master/web-browsers/revert-serif.user.css +==/UserStyle== */ + +:root { + color-scheme: dark light !important; +} +* { + font-family: "Liberation Serif", "Tinos", "Times New Roman", serif; + color: revert !important; + background-color: revert !important; +} +a { + text-decoration: underline !important; +} +code, +pre { + font-family: "Liberation Mono", "Cousine", "Courier New", monospace; +}