2
私はちょうどブートストラップ4ベータ版に更新して、私の色が壊れてしまった。色変数を置き換えたようです。 $brand-primary
とtheme-color("primary")
。
$theme-colors: (
primary: $blue,
secondary: $gray-600,
success: $green,
info: $cyan,
warning: $yellow,
danger: $red,
light: $gray-100,
dark: $gray-800
) !default;
だから、私はこれを上書きしようとした:私のvariables.scssファイル上書きで
$theme-colors: (
primary: #F5A637
);
ものはvariables.scssで定義されている唯一の場所は次のようになります。しかし、その後、コンパイルは失敗しますか?
ブートストラップの '$ theme-colors'定義の前に上書きする必要があるようです。 [GitHubの問題](https://github.com/twbs/bootstrap/issues/22891#issuecomment-316463806)と[対応するプルリクエスト](https://github.com/twbs/bootstrap/pull/23260)を参照してください。三日前から – Marvin