13 lines
266 B
SCSS
13 lines
266 B
SCSS
@use 'sass:map';
|
|
@use '@beeline/design-tokens/scss/tokens/themes/dark';
|
|
|
|
.box {
|
|
.dark-theme & {
|
|
background-color: map.get(dark.$theme, 'color-background-low');
|
|
|
|
&:hover {
|
|
background-color: map.get(dark.$theme, 'color-background-medium');
|
|
}
|
|
}
|
|
}
|