35 lines
1.0 KiB
JavaScript
35 lines
1.0 KiB
JavaScript
|
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}'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|