2024-05-05 20:35:38 +00:00
|
|
|
export default {
|
|
|
|
root: {
|
|
|
|
borderColor: '{content.border.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',
|
2024-05-14 07:36:02 +00:00
|
|
|
borderRadius: '5px 5px 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-13 08:03:41 +00:00
|
|
|
background: '{surface.50}',
|
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
|
|
|
}
|
|
|
|
};
|