2024-05-05 20:35:38 +00:00
|
|
|
export default {
|
|
|
|
root: {
|
2024-05-11 14:05:42 +00:00
|
|
|
background: '{content.background}',
|
2024-05-05 20:35:38 +00:00
|
|
|
borderColor: '{content.border.color}',
|
2024-05-11 14:05:42 +00:00
|
|
|
color: '{content.color}',
|
2024-05-11 21:46:26 +00:00
|
|
|
borderRadius: '{content.border.radius}'
|
2024-05-11 14:05:42 +00:00
|
|
|
},
|
|
|
|
header: {
|
|
|
|
borderWidth: '0 0 1px 0',
|
|
|
|
borderColor: '{content.border.color}',
|
2024-05-11 21:46:26 +00:00
|
|
|
padding: '1.125rem',
|
|
|
|
borderRadius: '3px 3px 0 0'
|
2024-05-11 14:05:42 +00:00
|
|
|
},
|
|
|
|
toggleableHeader: {
|
2024-05-11 14:45:19 +00:00
|
|
|
padding: '0.25rem 1.125rem'
|
2024-05-11 14:05:42 +00:00
|
|
|
},
|
|
|
|
title: {
|
|
|
|
fontWeight: '700'
|
|
|
|
},
|
|
|
|
content: {
|
2024-05-11 21:46:26 +00:00
|
|
|
padding: '1.125rem'
|
2024-05-11 14:05:42 +00:00
|
|
|
},
|
|
|
|
footer: {
|
2024-05-11 21:46:26 +00:00
|
|
|
padding: '1.125rem'
|
2024-05-11 14:05:42 +00:00
|
|
|
},
|
|
|
|
colorScheme: {
|
|
|
|
light: {
|
|
|
|
header: {
|
2024-05-11 21:25:43 +00:00
|
|
|
background: '{surface.100}',
|
2024-05-11 14:05:42 +00:00
|
|
|
color: '{text.color}'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
dark: {
|
|
|
|
header: {
|
|
|
|
background: '{surface.800}',
|
|
|
|
color: '{text.color}'
|
|
|
|
}
|
|
|
|
}
|
2024-05-05 20:35:38 +00:00
|
|
|
}
|
|
|
|
};
|