我试图用SCSS覆盖Bootstrap,以便为按钮使用自己的代码。 Bootstrap已导入,位于项目的node_module中。
我基本上想获得按钮所采用的默认方形形状,并使其背景颜色符合我的规格。
我决定从color开始,并使用自己的颜色代替Bootstrap所依赖的以下格式的颜色。
$button-color: rgba(255, 255, 242, 0);
@import "../../../node_modules/bootstrap/scss/variables";
基于Importing部分中的“主题引导”页面,我正在使用这种格式。
Argument `$color` of `darken($color, $amount)` must be a color
我在网站上进行了查找,发现那些收到此错误的人实际上试图使用此darken($ color,$ amount)格式。我没有,我不确定如何解决此问题,因为我没有使用它。
答案 0 :(得分:1)
您还需要导入_functions SASS文件...
@import "../../../node_modules/bootstrap/scss/functions";
@import "../../../node_modules/bootstrap/scss/variables";