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

39 lines
1.1 KiB
JavaScript
Raw Normal View History

2024-02-23 06:51:41 +00:00
export default {
colorScheme: {
light: {
header: {
background: '{surface.0}',
borderColor: '{surface.200}',
2024-03-12 11:31:18 +00:00
color: '{surface.700}'
2024-02-23 06:51:41 +00:00
},
content: {
background: '{surface.0}',
2024-03-12 11:31:18 +00:00
highlightBackground: '{highlight.background}',
2024-02-23 06:51:41 +00:00
borderColor: '{surface.200}',
2024-03-12 11:31:18 +00:00
highlightBorderColor: '{highlight.color}',
color: '{surface.700}'
2024-02-23 06:51:41 +00:00
},
file: {
borderColor: '{surface.200}'
}
},
dark: {
header: {
background: '{surface.900}',
borderColor: '{surface.700}',
2024-03-12 11:31:18 +00:00
color: '{surface.0}'
2024-02-23 06:51:41 +00:00
},
content: {
background: '{surface.900}',
2024-03-12 11:31:18 +00:00
highlightBackground: '{highlight.background}',
2024-02-23 06:51:41 +00:00
borderColor: '{surface.700}',
2024-03-12 11:31:18 +00:00
highlightBorderColor: '{highlight.color}',
color: '{surface.0}'
2024-02-23 06:51:41 +00:00
},
file: {
borderColor: '{surface.200}'
}
}
}
};