我正在将我的应用程序的样式从 Less 转换为Emotion
在 Less 中,我的样式如下:
@blue: #476882;
background: rgba(red(@blue), green(@blue), blue(@blue), 0.5);
在转换为 Emotion 时,我正在这样做:
export const BLUE = '#476882'
background: rgba(red(${BLUE}), green(${BLUE}), blue(${BLUE}), 0.5);
但是它不起作用。
有什么建议可以完成这项工作吗?