blob: 72562c0636b8161fa9894581538fbcc8cc2a429a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
@use 'iro-sass/src/index' as iro;
@use 'functions' as fn;
@include iro.bem-theme('base') {
background-color: fn.global-color(--bg-base);
}
@include iro.bem-theme('l1') {
background-color: fn.global-color(--bg-l1);
}
@include iro.bem-theme('l2') {
background-color: fn.global-color(--bg-l2);
}
|