15 lines
272 B
SCSS
15 lines
272 B
SCSS
@use '../utils' as *;
|
|
|
|
/*=============================
|
|
- Background color
|
|
===============================*/
|
|
.grey-bg {
|
|
background: var(--tg-color-gray-1);
|
|
}
|
|
.white-bg {
|
|
background: var(--tg-color-white-default);
|
|
}
|
|
.black-bg {
|
|
background: var(--tg-color-black-1);
|
|
}
|