65 lines
1.7 KiB
JavaScript
65 lines
1.7 KiB
JavaScript
|
export default {
|
||
|
colorScheme: {
|
||
|
light: {
|
||
|
primary: {
|
||
|
background: '{primary.color}',
|
||
|
color: '{primary.contrast.color}'
|
||
|
},
|
||
|
secondary: {
|
||
|
background: '{surface.100}',
|
||
|
color: '{surface.600}'
|
||
|
},
|
||
|
success: {
|
||
|
background: '{green.500}',
|
||
|
color: '{surface.0}'
|
||
|
},
|
||
|
info: {
|
||
|
background: '{sky.500}',
|
||
|
color: '{surface.0}'
|
||
|
},
|
||
|
warn: {
|
||
|
background: '{orange.500}',
|
||
|
color: '{surface.0}'
|
||
|
},
|
||
|
danger: {
|
||
|
background: '{red.500}',
|
||
|
color: '{surface.0}'
|
||
|
},
|
||
|
contrast: {
|
||
|
background: '{surface.950}',
|
||
|
color: '{surface.0}'
|
||
|
}
|
||
|
},
|
||
|
dark: {
|
||
|
primary: {
|
||
|
background: '{primary.color}',
|
||
|
color: '{primary.contrast.color}'
|
||
|
},
|
||
|
secondary: {
|
||
|
background: '{surface.800}',
|
||
|
color: '{surface.300}'
|
||
|
},
|
||
|
success: {
|
||
|
background: '{green.400}',
|
||
|
color: '{green.950}'
|
||
|
},
|
||
|
info: {
|
||
|
background: '{sky.400}',
|
||
|
color: '{sky.950}'
|
||
|
},
|
||
|
warn: {
|
||
|
background: '{orange.400}',
|
||
|
color: '{orange.950}'
|
||
|
},
|
||
|
danger: {
|
||
|
background: '{red.400}',
|
||
|
color: '{red.950}'
|
||
|
},
|
||
|
contrast: {
|
||
|
background: '{surface.0}',
|
||
|
color: '{surface.950}'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|