nextjs 改变主题颜色
2024/10/26小于 1 分钟
next项目 shadcn更换主题
在 global.css 中添加变量
bg-background
bg-foreground
text-primary
text-secondary
text-muted
text-brand
:root {
--third: #f0f0f0;
}
.dark {
--third: #121212;
}
在 global.css 中添加变量
bg-background
bg-foreground
text-primary
text-secondary
text-muted
text-brand
:root {
--third: #f0f0f0;
}
.dark {
--third: #121212;
}