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

81 lines
2.5 KiB
JavaScript
Raw Normal View History

export default {
2024-02-20 20:46:42 +00:00
colorScheme: {
light: {
navigator: {
2024-03-12 11:27:32 +00:00
hoverBackground: 'rgba(255, 255, 255, 0.1)',
2024-02-20 20:46:42 +00:00
color: '{surface.100}'
},
thumbnailNavigator: {
2024-03-12 11:27:32 +00:00
hoverBackground: '{surface.200}',
2024-02-20 20:46:42 +00:00
color: '{surface.600}',
2024-03-12 11:27:32 +00:00
hoverColor: '{surface.700}'
2024-02-20 20:46:42 +00:00
},
thumbnailContainer: {
background: '{surface.50}'
},
caption: {
background: 'rgba(0, 0, 0, 0.5)',
2024-03-12 11:27:32 +00:00
color: '{surface.100}'
2024-02-20 20:46:42 +00:00
},
indicator: {
background: '{surface.200}',
2024-03-12 11:27:32 +00:00
hoverBackground: '{surface.300}',
activeBackground: '{primary.color}'
2024-02-20 20:46:42 +00:00
},
insetIndicators: {
background: 'rgba(0, 0, 0, 0.5)'
},
insetIndicator: {
background: 'rgba(255, 255, 255, 0.4)',
2024-03-12 11:27:32 +00:00
hoverBackground: 'rgba(255, 255, 255, 0.4)'
2024-02-20 20:46:42 +00:00
},
mask: {
background: 'rgba(0,0,0,0.9)'
},
close: {
2024-03-12 11:27:32 +00:00
hoverBackground: 'rgba(255,255,255,0.1)',
2024-02-20 20:46:42 +00:00
color: '{surface.50}',
2024-03-12 11:27:32 +00:00
hoverColor: '{surface.0}'
2024-02-20 20:46:42 +00:00
}
},
dark: {
navigator: {
2024-03-12 11:27:32 +00:00
hoverBackground: 'rgba(255, 255, 255, 0.1)',
2024-02-20 20:46:42 +00:00
color: '{surface.400}'
},
thumbnailNavigator: {
2024-03-12 11:27:32 +00:00
hoverBackground: '{surface.800}',
2024-02-20 20:46:42 +00:00
color: '{surface.400}',
2024-03-12 11:27:32 +00:00
hoverColor: '{surface.300}'
2024-02-20 20:46:42 +00:00
},
thumbnailContainer: {
background: '{surface.950}'
},
caption: {
background: 'rgba(0, 0, 0, 0.5)',
2024-03-12 11:27:32 +00:00
color: '{surface.100}'
2024-02-20 20:46:42 +00:00
},
indicator: {
background: '{surface.200}',
2024-03-12 11:27:32 +00:00
hoverBackground: '{surface.300}',
activeBackground: '{primary.color}'
2024-02-20 20:46:42 +00:00
},
insetIndicators: {
background: 'rgba(0, 0, 0, 0.5)'
},
insetIndicator: {
background: 'rgba(255, 255, 255, 0.4)',
2024-03-12 11:27:32 +00:00
hoverBackground: 'rgba(255, 255, 255, 0.4)'
2024-02-20 20:46:42 +00:00
},
mask: {
background: 'rgba(0,0,0,0.9)'
},
close: {
2024-03-12 11:27:32 +00:00
hoverBackground: 'rgba(255,255,255,0.1)',
2024-02-20 20:46:42 +00:00
color: '{surface.50}',
2024-03-12 11:27:32 +00:00
hoverColor: '{surface.0}'
}
}
}
};