summaryrefslogtreecommitdiff
path: root/sysret.org/themes/tabi-lean/sass/skins/blue.scss
blob: d135219e37640803cba93bb647fd531e0343acee (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: #3271E7; // Contrast ratio: 4.51:1
    }
    @else if $theme == 'dark' {
        --primary-color: #6cacff; // Contrast ratio: 7.05: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');
    }
}