Feat(Theme): Support dark mode

This commit is contained in:
2024-10-23 10:17:45 +08:00
parent b7c3fb8524
commit dbce6b9cf2
180 changed files with 3478 additions and 3199 deletions

View File

@@ -0,0 +1,35 @@
import { createStyles } from 'antd-style'
export default createStyles(({ token }) => ({
title: {
marginBottom: token.marginMD,
transform: `translateY(-${token.sizeSM}px)`
},
primary: {
fontSize: token.fontSizeHeading3,
fontWeight: 'bolder',
color: token.colorPrimary
},
secondary: {
fontSize: token.fontSize
},
form: {
width: 300,
fontSize: token.fontSize
},
retry: {
marginBottom: token.margin
},
success: {
marginBottom: token.margin
},
footer: {
textAlign: 'center'
}
}))