1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-28 07:39:57 +02:00
This commit is contained in:
louismaxime.piton
2023-09-13 12:05:54 +02:00
parent 56d9856415
commit ff8d62c223
5 changed files with 62 additions and 4 deletions

View File

@@ -18,6 +18,18 @@
--#{$prefix}#{$color}: #{$value};
}
@each $color, $value in $on-theme-colors {
--#{$prefix}on-#{$color}: #{$value};
}
@each $color, $value in $theme-colors-hover {
--#{$prefix}#{$color}-hover: #{$value};
}
@each $color, $value in $theme-colors-active {
--#{$prefix}#{$color}-active: #{$value};
}
@each $color, $value in $theme-colors-rgb {
--#{$prefix}#{$color}-rgb: #{$value};
}
@@ -155,6 +167,18 @@
--#{$prefix}#{$color}: #{$value};
}
@each $color, $value in $on-theme-colors-dark {
--#{$prefix}on-#{$color}: #{$value};
}
@each $color, $value in $theme-colors-hover-dark {
--#{$prefix}#{$color}-hover: #{$value};
}
@each $color, $value in $theme-colors-active-dark {
--#{$prefix}#{$color}-active: #{$value};
}
@each $color, $value in $theme-colors-rgb-dark {
--#{$prefix}#{$color}-rgb: #{$value};
}