更改 $theme-colors 中的主要颜色使 btn-primary 的文本颜色变为黑色而不是默认的白色

发布于 2025-01-09 19:45:46 字数 291 浏览 1 评论 0原文

$theme-colors:(
    "primary": #F58220
);

@import "../bootstrap/scss/bootstrap";

但是 将文本颜色设置为黑色而不是默认的白色。那是如何自动改变的呢?

编辑:当我编辑“主要”时,所有其他如危险等都会被删除。 我想做的就是编辑“primary”,保持其余部分不变。

$theme-colors:(
    "primary": #F58220
);

@import "../bootstrap/scss/bootstrap";

But <button class="btn btn-primary w-100 text-center">Continue</button> made the text color black instead of the default white. How did that get changed automatically ?

EDIT : When I edit "primary" then all others like danger etc get removed.
All I want to do is to edit "primary" keeping the remaining as it is.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夕嗳→ 2025-01-16 19:45:46

看起来 $theme-colors:() 没有添加它,而是覆盖它。
我通过覆盖 $primary 来解决。

$primary: #F58220;

@import "../bootstrap/scss/bootstrap";

It looks like $theme-colors:() is not adding to it, but overwriting it.
I solved by just overwriting $primary.

$primary: #F58220;

@import "../bootstrap/scss/bootstrap";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文