Warning, /iDDS/monitor/data/scss/bootstrap/_root.scss is written in an unsupported language. File is not indexed.
0001 :root {
0002 // Custom variable values only support SassScript inside `#{}`.
0003 @each $color, $value in $colors {
0004 --#{$variable-prefix}#{$color}: #{$value};
0005 }
0006
0007 @each $color, $value in $theme-colors {
0008 --#{$variable-prefix}#{$color}: #{$value};
0009 }
0010
0011 // Use `inspect` for lists so that quoted items keep the quotes.
0012 // See https://github.com/sass/sass/issues/2383#issuecomment-336349172
0013 --#{$variable-prefix}font-sans-serif: #{inspect($font-family-sans-serif)};
0014 --#{$variable-prefix}font-monospace: #{inspect($font-family-monospace)};
0015 --#{$variable-prefix}gradient: #{$gradient};
0016 }