Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_highlight-text.scss « components « scss « src - github.com/kakawait/hugo-tranquilpeak-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8e5ff998a9c555e180fa69d5d5caad117678c52a (plain)
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
.highlight-text {
    display: inline;
    padding: 3px;

    &.red {
        background-color:map-get($highlight-text-bg-colors, 'red');
    }
    &.green {
        background-color:map-get($highlight-text-bg-colors, 'green');
    }
    &.blue {
        background-color:map-get($highlight-text-bg-colors, 'blue');
    }
    &.purple {
        background-color:map-get($highlight-text-bg-colors, 'purple');
    }
    &.orange {
        background-color:map-get($highlight-text-bg-colors, 'orange');
    }
    &.yellow {
        background-color:map-get($highlight-text-bg-colors, 'yellow');
    }
    &.cyan {
        background-color:map-get($highlight-text-bg-colors, 'cyan');
    }
    &.primary {
        background-color:map-get($highlight-text-bg-colors, 'primary');
    }
    &.success {
        background-color:map-get($highlight-text-bg-colors, 'success');
    }
    &.warning {
        background-color:map-get($highlight-text-bg-colors, 'warning');
    }
    &.danger {
        background-color:map-get($highlight-text-bg-colors, 'danger');
    }

}