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

39 lines
1.1 KiB
JavaScript

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