我想使用一个图像作为我的脉轮供应商的身体背景。
我创建了一个代码片段如下,但它似乎不工作.
const styles = {
global: (props: GlobalStyleProps) => ({
body: {
fontFamily: 'body',
color: mode('gray.800', 'whiteAlpha.900')(props),
// bg: mode('gray.800', 'whiteAlpha.900')(props),
backgroundImage: mode('@public/unknown.png', '@public/unknown.png')(props),
lineHeight: 'base',
},
}),
}
const theme = extendTheme({ styles });
1条答案
按热度按时间kb5ga3dv1#
这个应该可以