summaryrefslogtreecommitdiff
path: root/sysret.org/themes/tabi-lean/sass/skins/monochrome.scss
blob: 976e12e13fda3a7be06af6633746349ebe63ba7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@mixin theme-variables($theme) {
    @if $theme =='light' {
        --primary-color: #727272;  // Contrast ratio: 4.81:1
    }
    @else if $theme == 'dark' {
        --primary-color: #b3b3b3;  // Contrast ratio: 7.86:1
    }
}

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