From 101a112661b09281d34f746489ea5f09f49a7f1a Mon Sep 17 00:00:00 2001 From: Fabian Montero Date: Tue, 16 Sep 2025 12:10:36 -0600 Subject: [PATCH] tabi: add posixlycorrect skin --- sass/skins/posixlycorrect.scss | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 sass/skins/posixlycorrect.scss diff --git a/sass/skins/posixlycorrect.scss b/sass/skins/posixlycorrect.scss new file mode 100644 index 0000000..453d2f3 --- /dev/null +++ b/sass/skins/posixlycorrect.scss @@ -0,0 +1,25 @@ +// force dark theme +@mixin theme-variables($theme) { + @if $theme =='light' { + --primary-color: #FC9300; + --background-color: #131a21; + } + @else if $theme == 'dark' { + --primary-color: #FC9300; + --background-color: #131a21; + } +} + +:root { + @include theme-variables('light'); +} + +[data-theme='dark'] { + @include theme-variables('dark'); +} + +@media (prefers-color-scheme: dark) { + :root:not([data-theme='light']) { + @include theme-variables('dark'); + } +}