tabi: add posixlycorrect skin

This commit is contained in:
Fabian Montero 2025-09-16 12:10:36 -06:00
parent 7f2b8f802c
commit 44f9f5641a
Signed by: fabian
GPG key ID: 3EDA9AE3937CCDE3

View file

@ -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');
}
}