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,24 @@
import { createStyles } from 'antd-style'
export default createStyles(({ token }) => ({
root: {
width: 180,
height: 290,
textAlign: 'center',
gap: token.sizeXXL,
cursor: 'pointer',
'> *': {
flex: '0 0 auto',
display: 'block'
}
},
icon: {
marginTop: 80,
color: token.colorPrimary,
fontSize: token.sizeXXL
},
text: {
fontWeight: 'bolder',
fontSize: token.fontSizeXL
}
}))