-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy path_variables.scss
41 lines (41 loc) · 1.46 KB
/
_variables.scss
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
:root {
// semantic colors
@each $color, $value in $semantic-colors {
--sd-color-#{$color}: #{$value};
}
// semantic colors for highlighting (e.g. focus/hover)
@each $color, $value in $semantic-colors {
--sd-color-#{$color}-highlight: #{mix(black, $value, 15%)};
}
// semantic colors for backgrounds
@each $color, $value in $semantic-colors {
--sd-color-#{$color}-bg: #{rgba($value, 0.2)};
}
// colors for text on top of a semantic color background
@each $color, $value in $semantic-colors {
--sd-color-#{$color}-text: #{text-color($value)};
}
// shadow
--sd-color-shadow: #{$black-15};
// cards
--sd-color-card-border: #{$black-12-5};
--sd-color-card-border-hover: hsla(231, 99%, 66%, 1);
--sd-color-card-background: transparent;
--sd-color-card-text: inherit;
--sd-color-card-header: transparent;
--sd-color-card-footer: transparent;
// tabs
--sd-color-tabs-label-active: hsla(231, 99%, 66%, 1);
--sd-color-tabs-label-hover: hsla(231, 99%, 66%, 1);
--sd-color-tabs-label-inactive: hsl(0, 0%, 66%);
--sd-color-tabs-underline-active: hsla(231, 99%, 66%, 1);
--sd-color-tabs-underline-hover: rgba(178, 206, 245, 0.62);
--sd-color-tabs-underline-inactive: transparent;
--sd-color-tabs-overline: rgb(222, 222, 222);
--sd-color-tabs-underline: rgb(222, 222, 222);
--sd-fontsize-tabs-label: 1rem;
// dropdown
--sd-fontsize-dropdown: inherit;
--sd-fontsize-dropdown-title: 1rem;
--sd-fontweight-dropdown-title: 700;
}