mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-03-18 13:30:23 +00:00
16 lines
333 B
SCSS
16 lines
333 B
SCSS
:root {
|
|
@each $color, $value in $colors {
|
|
--#{$color}: $value;
|
|
}
|
|
|
|
@each $color, $value in $theme-colors {
|
|
--#{$color}: $value;
|
|
}
|
|
|
|
@each $bp, $value in $grid-breakpoints {
|
|
--breakpoint-#{$bp}: $value;
|
|
}
|
|
|
|
--font-family-sans-serif: $font-family-sans-serif;
|
|
--font-family-monospace: $font-family-monospace;
|
|
}
|