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

128 lines
3.5 KiB
JavaScript
Raw Normal View History

export default {
2024-05-13 10:49:38 +00:00
root: {
borderWidth: '1px',
borderColor: '{content.border.color}',
borderRadius: '{content.border.radius}'
},
navButton: {
background: 'rgba(255, 255, 255, 0.1)',
hoverBackground: 'rgba(255, 255, 255, 0.2)',
color: '{surface.100}',
hoverColor: '{surface.0}',
size: '3rem',
gutter: '0.5rem',
prev: {
borderRadius: '50%'
},
next: {
borderRadius: '50%'
},
focusRing: {
width: '{focus.ring.width}',
style: '{focus.ring.style}',
color: '{focus.ring.color}',
offset: '{focus.ring.offset}',
shadow: '{focus.ring.shadow}'
}
},
navIcon: {
size: '1.5rem'
},
thumbnailsContent: {
background: '{content.background}',
padding: '1rem 0.25rem'
},
thumbnailNavButton: {
size: '2rem',
borderRadius: '{content.border.radius}',
gutter: '0.5rem',
focusRing: {
width: '{focus.ring.width}',
style: '{focus.ring.style}',
color: '{focus.ring.color}',
offset: '{focus.ring.offset}',
shadow: '{focus.ring.shadow}'
}
},
thumbnailNavButtonIcon: {
size: '1rem'
},
caption: {
background: 'rgba(0, 0, 0, 0.5)',
color: '{surface.100}',
padding: '1rem'
},
indicatorList: {
gap: '0.5rem',
padding: '1rem'
},
indicatorButton: {
width: '1rem',
height: '1rem',
activeBackground: '{primary.color}',
borderRadius: '50%',
focusRing: {
width: '{focus.ring.width}',
style: '{focus.ring.style}',
color: '{focus.ring.color}',
offset: '{focus.ring.offset}',
shadow: '{focus.ring.shadow}'
}
},
insetIndicatorList: {
background: 'rgba(0, 0, 0, 0.5)'
},
insetIndicatorButton: {
background: 'rgba(255, 255, 255, 0.4)',
hoverBackground: 'rgba(255, 255, 255, 0.6)',
activeBackground: 'rgba(255, 255, 255, 0.9)'
},
mask: {
background: '{mask.background}',
color: '{mask.color}'
},
closeButton: {
size: '3rem',
gutter: '0.5rem',
background: 'rgba(255, 255, 255, 0.1)',
hoverBackground: 'rgba(255, 255, 255, 0.2)',
color: '{surface.50}',
hoverColor: '{surface.0}',
borderRadius: '50%',
focusRing: {
width: '{focus.ring.width}',
style: '{focus.ring.style}',
color: '{focus.ring.color}',
offset: '{focus.ring.offset}',
shadow: '{focus.ring.shadow}'
}
},
closeButtonIcon: {
size: '1.5rem'
},
2024-02-20 20:46:42 +00:00
colorScheme: {
light: {
thumbnailNavButton: {
2024-05-13 10:49:38 +00:00
hoverBackground: '{surface.100}',
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
},
indicatorButton: {
2024-02-20 20:46:42 +00:00
background: '{surface.200}',
2024-05-13 10:49:38 +00:00
hoverBackground: '{surface.300}'
2024-02-20 20:46:42 +00:00
}
},
dark: {
thumbnailNavButton: {
2024-05-13 10:49:38 +00:00
hoverBackground: '{surface.700}',
2024-02-20 20:46:42 +00:00
color: '{surface.400}',
2024-05-13 10:49:38 +00:00
hoverColor: '{surface.0}'
2024-02-20 20:46:42 +00:00
},
indicatorButton: {
2024-05-13 10:49:38 +00:00
background: '{surface.700}',
hoverBackground: '{surface.600}'
}
}
}
};