primevue-mirror/components/lib/themes/lara/panel/index.js

41 lines
908 B
JavaScript

export default {
root: {
background: '{content.background}',
borderColor: '{content.border.color}',
color: '{content.color}',
borderRadius: '{content.border.radius}'
},
header: {
borderWidth: '0 0 1px 0',
borderColor: '{content.border.color}',
padding: '1.125rem',
borderRadius: '3px 3px 0 0'
},
toggleableHeader: {
padding: '0.25rem 1.125rem'
},
title: {
fontWeight: '700'
},
content: {
padding: '1.125rem'
},
footer: {
padding: '1.125rem'
},
colorScheme: {
light: {
header: {
background: '{surface.100}',
color: '{text.color}'
}
},
dark: {
header: {
background: '{surface.800}',
color: '{text.color}'
}
}
}
};