83 lines
2.7 KiB
JavaScript
83 lines
2.7 KiB
JavaScript
export default {
|
|
colorScheme: {
|
|
light: {
|
|
navButton: {
|
|
hoverBackground: 'rgba(255, 255, 255, 0.1)',
|
|
color: '{surface.100}'
|
|
},
|
|
thumbnailNavButton: {
|
|
hoverBackground: '{surface.200}',
|
|
color: '{surface.600}',
|
|
hoverColor: '{surface.700}'
|
|
},
|
|
thumbnailsContent: {
|
|
background: '{surface.50}'
|
|
},
|
|
caption: {
|
|
background: 'rgba(0, 0, 0, 0.5)',
|
|
color: '{surface.100}'
|
|
},
|
|
indicatorButton: {
|
|
background: '{surface.200}',
|
|
hoverBackground: '{surface.300}',
|
|
activeBackground: '{primary.color}'
|
|
},
|
|
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: 'rgba(0,0,0,0.9)'
|
|
},
|
|
closeButton: {
|
|
hoverBackground: 'rgba(255,255,255,0.1)',
|
|
color: '{surface.50}',
|
|
hoverColor: '{surface.0}'
|
|
}
|
|
},
|
|
dark: {
|
|
navButton: {
|
|
hoverBackground: 'rgba(255, 255, 255, 0.1)',
|
|
color: '{surface.400}'
|
|
},
|
|
thumbnailNavButton: {
|
|
hoverBackground: '{surface.800}',
|
|
color: '{surface.400}',
|
|
hoverColor: '{surface.300}'
|
|
},
|
|
thumbnailsContent: {
|
|
background: '{surface.950}'
|
|
},
|
|
caption: {
|
|
background: 'rgba(0, 0, 0, 0.5)',
|
|
color: '{surface.100}'
|
|
},
|
|
indicatorButton: {
|
|
background: '{surface.200}',
|
|
hoverBackground: '{surface.300}',
|
|
activeBackground: '{primary.color}'
|
|
},
|
|
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: 'rgba(0,0,0,0.9)'
|
|
},
|
|
closeButton: {
|
|
hoverBackground: 'rgba(255,255,255,0.1)',
|
|
color: '{surface.50}',
|
|
hoverColor: '{surface.0}'
|
|
}
|
|
}
|
|
}
|
|
};
|