summaryrefslogtreecommitdiffstats
path: root/src/_themes.scss
blob: bfce7d9079053701b1d507652928383847be6888 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
@use 'sass:map';
@use 'iro-sass/src/iro-sass' as iro;
@use 'include-media/dist/include-media' as media;
@use 'props';

@use 'core.vars' as vars;
@forward 'core.vars';

@mixin styles {
    @include iro.bem-theme('base') {
        background-color: props.get(vars.$theme, --bg-base);

        @include iro.bem-suffix('light') {
            @media (prefers-color-scheme: light) {
                background-color: props.get(vars.$theme, --bg-base);
            }
        }

        @include iro.bem-suffix('dark') {
            @media (prefers-color-scheme: dark) {
                background-color: props.get(vars.$theme, --bg-base);
            }
        }
    }

    @include iro.bem-theme('l1') {
        background-color: props.get(vars.$theme, --bg-l1);

        @include iro.bem-suffix('light') {
            @media (prefers-color-scheme: light) {
                background-color: props.get(vars.$theme, --bg-l1);
            }
        }

        @include iro.bem-suffix('dark') {
            @media (prefers-color-scheme: dark) {
                background-color: props.get(vars.$theme, --bg-l1);
            }
        }
    }

    @include iro.bem-theme('l2') {
        background-color: props.get(vars.$theme, --bg-l2);

        @include iro.bem-suffix('light') {
            @media (prefers-color-scheme: light) {
                background-color: props.get(vars.$theme, --bg-l2);
            }
        }

        @include iro.bem-suffix('dark') {
            @media (prefers-color-scheme: dark) {
                background-color: props.get(vars.$theme, --bg-l2);
            }
        }
    }

    @include iro.bem-theme('50') {
        background-color: props.get(vars.$theme, --base, --50);

        @include iro.bem-suffix('light') {
            @media (prefers-color-scheme: light) {
                background-color: props.get(vars.$theme, --base, --50);
            }
        }

        @include iro.bem-suffix('dark') {
            @media (prefers-color-scheme: dark) {
                background-color: props.get(vars.$theme, --base, --50);
            }
        }
    }
}