我正在开发应用程序.在这里,我为样式创建了单独的文件,将样式组件用于自定义css,但是问题是我无权使用variable而不是HEX value.我将颜色值放入变量中,但无法在styled-component中使用它.
import styled from 'styled-components';
// App Colors
let text ='#fff';
// Top Header Component Main Style
export const HeaderContainer= styled.div `
margin-top: 67px;
margin-left: 220px;
margin-bottom: 30px;
color: {text};
`
最佳答案
您在方括号之前缺少$.
原文链接:https://www.f2er.com/js/531198.htmlcolor: ${text};