So I was trying to compile the bootstrap _variables.scss on version 4.3.1 and I got this error
Error: $color: theme-color("primary") is not a color.
$link-hover-color: darken($link-color, 15%) !default;
This seems like a configuration on your side, but we need to see how you load bootstrap and everything related so we need more info.
The theme-color() function is defined in scss/functions.scss. Make sure that file is imported before using the function.
Most helpful comment
The
theme-color()function is defined inscss/functions.scss. Make sure that file is imported before using the function.