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

33 lines
902 B
JavaScript
Raw Normal View History

2024-02-23 06:51:41 +00:00
export default {
colorScheme: {
light: {
2024-04-20 12:45:44 +00:00
root: {
2024-02-23 06:51:41 +00:00
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: {
2024-03-12 11:31:18 +00:00
highlightBackground: '{highlight.background}',
highlightBorderColor: '{highlight.color}',
2024-02-23 06:51:41 +00:00
},
file: {
borderColor: '{surface.200}'
}
},
dark: {
2024-04-20 12:45:44 +00:00
root: {
2024-02-23 06:51:41 +00:00
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: {
2024-03-12 11:31:18 +00:00
highlightBackground: '{highlight.background}',
2024-04-20 12:45:44 +00:00
highlightBorderColor: '{highlight.color}'
2024-02-23 06:51:41 +00:00
},
file: {
2024-04-20 12:45:44 +00:00
borderColor: '{surface.700}'
2024-02-23 06:51:41 +00:00
}
}
}
};