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

35 lines
1.0 KiB
JavaScript
Raw Normal View History

export default {
variables: {
colorScheme: {
light: {
previewIndicator: {
background: '{maskBackground}',
textColor: '{surface.200}'
},
mask: {
background: 'rgba(0,0,0,0.9)'
},
action: {
backgroundHover: 'rgba(255,255,255,0.1)',
color: '{surface.50}',
colorHover: '{surface.0}'
}
},
dark: {
previewIndicator: {
background: '{maskBackground}',
textColor: '{surface.200}'
},
mask: {
background: 'rgba(0,0,0,0.9)'
},
action: {
backgroundHover: 'rgba(255,255,255,0.1)',
color: '{surface.50}',
colorHover: '{surface.0}'
}
}
}
}
};