summaryrefslogtreecommitdiffstats
path: root/src/scopes/_colored-links.scss
blob: 15614baa67a09ef00dbf753c0a34949d1a7fee07 (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
@use 'iro-sass/src/index' as iro;
@use '../functions' as fn;

@include iro.props-namespace('colored-links') {
    @include iro.props-store((
        --colors: (
            --idle:    fn.global-color(--accent --link-idle --quiet --fg),
            --visited: fn.global-color(--accent --link-visited --quiet --fg),
            --key-focus: (
                --border: fn.global-color(--focus --fill),
                --shadow: 0 0 0 calc(fn.global-dim(--focus --outline-width) + 2px) fn.global-color(--accent --primary --quiet --obj-lo),
            ),
        )
    ), 'colors');

    @include iro.bem-scope(iro.props-namespace()) {
        :link {
            color:           fn.color(--idle);
            text-decoration: underline;
        }

        :visited {
            color:           fn.color(--visited);
            text-decoration: underline;
        }

        :link,
        :visited {
            border-radius: .5px;

            @include iro.bem-at-theme('keyboard') {
                &:focus {
                    box-shadow: 0 0 0 2px fn.color(--key-focus --border), fn.color(--key-focus --shadow);
                }
            }
        }
    }
}