33 lines
879 B
JavaScript
33 lines
879 B
JavaScript
|
export default {
|
||
|
colorScheme: {
|
||
|
light: {
|
||
|
previewIndicator: {
|
||
|
background: '{maskBackground}',
|
||
|
color: '{surface.200}'
|
||
|
},
|
||
|
mask: {
|
||
|
background: 'rgba(0,0,0,0.9)'
|
||
|
},
|
||
|
action: {
|
||
|
hoverBackground: 'rgba(255,255,255,0.1)',
|
||
|
color: '{surface.50}',
|
||
|
hoverColor: '{surface.0}'
|
||
|
}
|
||
|
},
|
||
|
dark: {
|
||
|
previewIndicator: {
|
||
|
background: '{maskBackground}',
|
||
|
color: '{surface.200}'
|
||
|
},
|
||
|
mask: {
|
||
|
background: 'rgba(0,0,0,0.9)'
|
||
|
},
|
||
|
action: {
|
||
|
hoverBackground: 'rgba(255,255,255,0.1)',
|
||
|
color: '{surface.50}',
|
||
|
hoverColor: '{surface.0}'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|