2024-02-19 22:53:42 +00:00
|
|
|
export default {
|
2024-05-09 18:27:01 +00:00
|
|
|
root: {
|
2024-05-13 15:09:09 +00:00
|
|
|
borderRadius: '{border.radius.md}',
|
2024-05-09 18:27:01 +00:00
|
|
|
padding: '0 0.5rem',
|
|
|
|
fontSize: '0.75rem',
|
|
|
|
fontWeight: '700',
|
|
|
|
minWidth: '1.5rem',
|
|
|
|
height: '1.5rem'
|
|
|
|
},
|
|
|
|
dot: {
|
|
|
|
size: '0.5rem'
|
|
|
|
},
|
2024-05-13 15:09:09 +00:00
|
|
|
sm: {
|
|
|
|
fontSize: '0.625rem',
|
|
|
|
minWidth: '1.25rem',
|
|
|
|
height: '1.25rem'
|
|
|
|
},
|
2024-05-09 18:27:01 +00:00
|
|
|
lg: {
|
2024-05-13 15:09:09 +00:00
|
|
|
fontSize: '0.875rem',
|
|
|
|
minWidth: '1.75rem',
|
|
|
|
height: '1.75rem'
|
2024-05-09 18:27:01 +00:00
|
|
|
},
|
|
|
|
xl: {
|
2024-05-13 15:09:09 +00:00
|
|
|
fontSize: '1rem',
|
|
|
|
minWidth: '2rem',
|
|
|
|
height: '2rem'
|
2024-05-09 18:27:01 +00:00
|
|
|
},
|
2024-02-20 20:46:42 +00:00
|
|
|
colorScheme: {
|
|
|
|
light: {
|
|
|
|
primary: {
|
|
|
|
background: '{primary.color}',
|
2024-05-13 15:09:09 +00:00
|
|
|
color: '{primary.contrast.color}'
|
2024-02-19 22:53:42 +00:00
|
|
|
},
|
2024-02-20 20:46:42 +00:00
|
|
|
secondary: {
|
|
|
|
background: '{surface.100}',
|
2024-03-12 10:07:36 +00:00
|
|
|
color: '{surface.600}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
success: {
|
|
|
|
background: '{green.500}',
|
2024-03-12 10:07:36 +00:00
|
|
|
color: '{surface.0}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
info: {
|
|
|
|
background: '{sky.500}',
|
2024-03-12 10:07:36 +00:00
|
|
|
color: '{surface.0}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
warn: {
|
|
|
|
background: '{orange.500}',
|
2024-03-12 10:07:36 +00:00
|
|
|
color: '{surface.0}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
danger: {
|
|
|
|
background: '{red.500}',
|
2024-03-12 10:07:36 +00:00
|
|
|
color: '{surface.0}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
contrast: {
|
|
|
|
background: '{surface.950}',
|
2024-03-12 10:07:36 +00:00
|
|
|
color: '{surface.0}'
|
2024-02-20 20:46:42 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
dark: {
|
|
|
|
primary: {
|
2024-05-13 15:09:09 +00:00
|
|
|
background: '{primary.color}',
|
|
|
|
color: '{primary.contrast.color}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
secondary: {
|
|
|
|
background: '{surface.800}',
|
2024-03-12 10:07:36 +00:00
|
|
|
color: '{surface.300}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
success: {
|
2024-05-13 15:09:09 +00:00
|
|
|
background: '{green.400}',
|
|
|
|
color: '{green.950}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
info: {
|
2024-05-13 15:09:09 +00:00
|
|
|
background: '{sky.400}',
|
|
|
|
color: '{sky.950}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
warn: {
|
2024-05-13 15:09:09 +00:00
|
|
|
background: '{orange.400}',
|
|
|
|
color: '{orange.950}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
danger: {
|
2024-05-13 15:09:09 +00:00
|
|
|
background: '{red.400}',
|
|
|
|
color: '{red.950}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
contrast: {
|
|
|
|
background: '{surface.0}',
|
2024-03-12 10:07:36 +00:00
|
|
|
color: '{surface.950}'
|
2024-02-19 22:53:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|