primevue-mirror/components/lib/themes/primeone/presets/aura/dataview/index.js

37 lines
997 B
JavaScript

export default {
colorScheme: {
light: {
header: {
background: '{surface.0}',
borderColor: '{surface.200}',
color: '{surface.700}'
},
content: {
background: '{surface.0}',
color: '{surface.700}'
},
footer: {
background: '{surface.0}',
borderColor: '{surface.200}',
color: '{surface.700}'
}
},
dark: {
header: {
background: '{surface.900}',
borderColor: '{surface.700}',
color: '{surface.0}'
},
content: {
background: '{surface.900}',
color: '{surface.0}'
},
footer: {
background: '{surface.900}',
borderColor: '{surface.700}',
color: '{surface.0}'
}
}
}
};