2024-02-19 22:53:42 +00:00
|
|
|
export default {
|
2024-02-20 20:46:42 +00:00
|
|
|
colorScheme: {
|
|
|
|
light: {
|
|
|
|
primary: {
|
|
|
|
background: '{primary.color}',
|
2024-05-04 12:12:43 +00:00
|
|
|
color: '{primary.contrast.color}'
|
2024-02-19 22:53:42 +00:00
|
|
|
},
|
2024-02-20 20:46:42 +00:00
|
|
|
secondary: {
|
|
|
|
background: '{surface.100}',
|
2024-03-12 10:07:36 +00:00
|
|
|
color: '{surface.600}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
success: {
|
|
|
|
background: '{green.500}',
|
2024-03-12 10:07:36 +00:00
|
|
|
color: '{surface.0}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
info: {
|
|
|
|
background: '{sky.500}',
|
2024-03-12 10:07:36 +00:00
|
|
|
color: '{surface.0}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
warn: {
|
|
|
|
background: '{orange.500}',
|
2024-03-12 10:07:36 +00:00
|
|
|
color: '{surface.0}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
danger: {
|
|
|
|
background: '{red.500}',
|
2024-03-12 10:07:36 +00:00
|
|
|
color: '{surface.0}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
contrast: {
|
|
|
|
background: '{surface.950}',
|
2024-03-12 10:07:36 +00:00
|
|
|
color: '{surface.0}'
|
2024-02-20 20:46:42 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
dark: {
|
|
|
|
primary: {
|
|
|
|
background: '{primary.color}',
|
2024-05-04 12:12:43 +00:00
|
|
|
color: '{primary.contrast.color}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
secondary: {
|
|
|
|
background: '{surface.800}',
|
2024-03-12 10:07:36 +00:00
|
|
|
color: '{surface.300}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
success: {
|
|
|
|
background: '{green.400}',
|
2024-03-12 10:07:36 +00:00
|
|
|
color: '{green.950}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
info: {
|
|
|
|
background: '{sky.400}',
|
2024-03-12 10:07:36 +00:00
|
|
|
color: '{sky.950}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
warn: {
|
|
|
|
background: '{orange.400}',
|
2024-03-12 10:07:36 +00:00
|
|
|
color: '{orange.950}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
danger: {
|
|
|
|
background: '{red.400}',
|
2024-03-12 10:07:36 +00:00
|
|
|
color: '{red.950}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
contrast: {
|
|
|
|
background: '{surface.0}',
|
2024-03-12 10:07:36 +00:00
|
|
|
color: '{surface.950}'
|
2024-02-19 22:53:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|