gpt4 book ai didi

tailwind-css - 如何在 daisy-ui 中自定义主题?

转载 作者:行者123 更新时间:2023-12-05 00:51:59 36 4
gpt4 key购买 nike

  1. 我想在daisyui中自定义一个主题。是否可以自定义,即深色主题(只需修复一种颜色,或添加更多颜色条目)?

  2. 进一步:是否可以为您的自定义主题添加新的颜色条目?

即我尝试了以下但没有成功:

  daisyui: {
styled: true,
themes: [
"light", // first one will be the default theme
"dark",
{
mytheme: {
primary: "#793ef9",
"new-color": "#eff1ae",
"primary-focus": "#570df8",
},
},
"cupcake",
],
},

...但是当我在我的 css (theme("colors.new-color")) 中使用新颜色 new-color 时。我收到以下错误:

(146:7) /home/armwur/code/booking-overview/src/index.css 'colors.new-color' does not exist in your theme config. 'colors' has the following valid keys: 'inherit', 'current', 'transparent', 'black', 'white', 'neutral', 'primary', 'primary-focus', 'primary-content', 'secondary', 'secondary-focus', 'secondary-content', 'accent', 'accent-focus', 'accent-content', 'neutral-focus', 'neutral-content', 'base-100', 'base-200', 'base-300', 'base-content', 'info', 'success', 'warning', 'error'

144 | }
145 | .fast-table tr:hover td {
> 146 | background-color: theme('colors.new-color');
| ^
147 | }
148 | .fast-table th, .fast-table td {

我需要添加一个自定义颜色条目。这怎么可能?

最佳答案

  1. 您要做的是创建另一个主题。编辑现有主题的方法如下:
module.exports = {
//...
daisyui: {
themes: [
{
light: {
...require("daisyui/src/colors/themes")["[data-theme=light]"],
primary: "blue",
"primary-focus": "mediumblue",
},
},
],
},
}

更多信息请见 here .

  1. 这也可以通过将 CSS 添加到主题中来完成:
[data-theme="mytheme"] .btn {
border-width: 2px;
border-color: black;
}

更多信息请见 here .

关于tailwind-css - 如何在 daisy-ui 中自定义主题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70713667/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com