我正在使用primeng或md暗靛蓝主题,我的问题是,如果它是可以改变的颜色,特定的primeng组件。例如,下拉是黑色的,但当我使用按钮,他们是靛蓝。因此,我的问题是,是否有办法将p元素风格转换为另一种主题颜色,在我的例子中,从靛蓝色到黑色。
发布于 2021-09-21 17:49:49
下面是定制PrimeNG样式的(hacky)步骤。
node_modules/primeng/resources/themes/{your_theme}/theme.css)
npm install cpx --save-dev
"copyCss": "cpx \"assets/theme.css\" \"node_modules/primeng/resources/themes/{your_theme}/\""
"ngBuild": "npm run copyCss && ng build"
npm run ngBuild构建应用程序。(按需要使用任何其他构建开关)https://stackoverflow.com/questions/67603461
复制相似问题