diff --git a/web-browsers/revert-serif.user.css b/web-browsers/revert-serif.user.css deleted file mode 100644 index 330b4ec..0000000 --- a/web-browsers/revert-serif.user.css +++ /dev/null @@ -1,23 +0,0 @@ -/* ==UserStyle== -@name Revert Serif -@updateURL https://gitea.blesmrt.net/mikaela/gist/raw/branch/master/web-browsers/revert-serif.user.css -@namespace eu.aminda -@version 2024.22.0 -==/UserStyle== */ - -:root { - color-scheme: dark light !important; -} -* { - font-family: "Liberation Serif", "Tinos", "Times New Roman", serif; - color: revert !important; - border-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-sans.user.css b/web-browsers/revert.user.css similarity index 66% rename from web-browsers/revert-sans.user.css rename to web-browsers/revert.user.css index 5aa1797..c194c78 100644 --- a/web-browsers/revert-sans.user.css +++ b/web-browsers/revert.user.css @@ -1,15 +1,19 @@ /* ==UserStyle== -@name Revert Sans +@name Revert @updateURL https://gitea.blesmrt.net/mikaela/gist/raw/branch/master/web-browsers/revert-serif.user.css @namespace eu.aminda @version 2024.22.0 +@var select FontSet "Font Set" { + "Liberation Serif, Tinos, Times New Roman, serif": 'serif', + "Liberation Sans, Arimo, Arial, sans-serif": 'sans-serif' +} ==/UserStyle== */ :root { color-scheme: dark light !important; } * { - font-family: "Liberation Sans", "Arimo", "Arial", sans-serif; + font-family: FontSet !important; color: revert !important; border-color: revert !important; background-color: revert !important; @@ -19,5 +23,5 @@ a { } code, pre { - font-family: "Liberation Mono", "Cousine", "Courier New", monospace; + font-family: "Liberation Mono", "Cousine", "Courier New", monospace !important; }