2024-02-19 22:53:42 +00:00
|
|
|
export default {
|
2024-02-20 20:46:42 +00:00
|
|
|
colorScheme: {
|
|
|
|
light: {
|
|
|
|
info: {
|
|
|
|
background: 'color-mix(in srgb, {blue.50}, transparent 5%)',
|
|
|
|
borderColor: '{blue.200}',
|
2024-03-12 10:20:51 +00:00
|
|
|
color: '{blue.600}',
|
2024-02-20 20:46:42 +00:00
|
|
|
boxShadow: '0px 4px 8px 0px color-mix(in srgb, {blue.500}, transparent 96%)',
|
2024-05-04 12:23:26 +00:00
|
|
|
closeButton: {
|
|
|
|
hoverBackground: '{blue.100}'
|
|
|
|
}
|
2024-02-19 22:53:42 +00:00
|
|
|
},
|
2024-02-20 20:46:42 +00:00
|
|
|
success: {
|
|
|
|
background: 'color-mix(in srgb, {green.50}, transparent 5%)',
|
|
|
|
borderColor: '{green.200}',
|
2024-03-12 10:20:51 +00:00
|
|
|
color: '{green.600}',
|
2024-02-20 20:46:42 +00:00
|
|
|
boxShadow: '0px 4px 8px 0px color-mix(in srgb, {green.500}, transparent 96%)',
|
2024-05-04 12:23:26 +00:00
|
|
|
closeButton: {
|
|
|
|
hoverBackground: '{green.100}'
|
|
|
|
}
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
warn: {
|
|
|
|
background: 'color-mix(in srgb,{yellow.50}, transparent 5%)',
|
|
|
|
borderColor: '{yellow.200}',
|
2024-03-12 10:20:51 +00:00
|
|
|
color: '{yellow.600}',
|
2024-02-20 20:46:42 +00:00
|
|
|
boxShadow: '0px 4px 8px 0px color-mix(in srgb, {yellow.500}, transparent 96%)',
|
2024-05-04 12:23:26 +00:00
|
|
|
closeButton: {
|
|
|
|
hoverBackground: '{yellow.100}'
|
|
|
|
}
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
error: {
|
|
|
|
background: 'color-mix(in srgb, {red.50}, transparent 5%)',
|
|
|
|
borderColor: '{red.200}',
|
2024-03-12 10:20:51 +00:00
|
|
|
color: '{red.600}',
|
2024-02-20 20:46:42 +00:00
|
|
|
boxShadow: '0px 4px 8px 0px color-mix(in srgb, {red.500}, transparent 96%)',
|
2024-05-04 12:23:26 +00:00
|
|
|
closeButton: {
|
|
|
|
hoverBackground: '{red.100}'
|
|
|
|
}
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
secondary: {
|
|
|
|
background: '{surface.100}',
|
|
|
|
borderColor: '{surface.200}',
|
2024-03-12 10:20:51 +00:00
|
|
|
color: '{surface.600}',
|
2024-02-20 20:46:42 +00:00
|
|
|
boxShadow: '0px 4px 8px 0px color-mix(in srgb, {surface.500}, transparent 96%)',
|
2024-05-04 12:23:26 +00:00
|
|
|
closeButton: {
|
|
|
|
hoverBackground: '{surface.200}'
|
|
|
|
}
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
contrast: {
|
|
|
|
background: '{surface.900}',
|
|
|
|
borderColor: '{surface.950}',
|
2024-03-12 10:20:51 +00:00
|
|
|
color: '{surface.50}',
|
2024-02-20 20:46:42 +00:00
|
|
|
boxShadow: '0px 4px 8px 0px color-mix(in srgb, {surface.950}, transparent 96%)',
|
2024-05-04 12:23:26 +00:00
|
|
|
closeButton: {
|
|
|
|
hoverBackground: '{surface.800}'
|
|
|
|
}
|
2024-02-20 20:46:42 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
dark: {
|
|
|
|
info: {
|
|
|
|
background: 'color-mix(in srgb, {blue.500}, transparent 84%)',
|
|
|
|
borderColor: 'color-mix(in srgb, {blue.700}, transparent 64%)',
|
2024-03-12 10:20:51 +00:00
|
|
|
color: '{blue.500}',
|
2024-02-20 20:46:42 +00:00
|
|
|
boxShadow: '0px 4px 8px 0px color-mix(in srgb, {blue.500}, transparent 96%)',
|
2024-05-04 12:23:26 +00:00
|
|
|
closeButton: {
|
|
|
|
hoverBackground: 'rgba(255, 255, 255, 0.05)'
|
|
|
|
}
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
success: {
|
|
|
|
background: 'color-mix(in srgb, {green.500}, transparent 84%)',
|
|
|
|
borderColor: 'color-mix(in srgb, {green.700}, transparent 64%)',
|
2024-03-12 10:20:51 +00:00
|
|
|
color: '{green.500}',
|
2024-02-20 20:46:42 +00:00
|
|
|
boxShadow: '0px 4px 8px 0px color-mix(in srgb, {green.500}, transparent 96%)',
|
2024-05-04 12:23:26 +00:00
|
|
|
closeButton: {
|
|
|
|
hoverBackground: 'rgba(255, 255, 255, 0.05)'
|
|
|
|
}
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
warn: {
|
|
|
|
background: 'color-mix(in srgb, {yellow.500}, transparent 84%)',
|
|
|
|
borderColor: 'color-mix(in srgb, {yellow.700}, transparent 64%)',
|
2024-03-12 10:20:51 +00:00
|
|
|
color: '{yellow.500}',
|
2024-02-20 20:46:42 +00:00
|
|
|
boxShadow: '0px 4px 8px 0px color-mix(in srgb, {yellow.500}, transparent 96%)',
|
2024-05-04 12:23:26 +00:00
|
|
|
closeButton: {
|
|
|
|
hoverBackground: 'rgba(255, 255, 255, 0.05)'
|
|
|
|
}
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
error: {
|
|
|
|
background: 'color-mix(in srgb, {red.500}, transparent 84%)',
|
|
|
|
borderColor: 'color-mix(in srgb, {red.700}, transparent 64%)',
|
2024-03-12 10:20:51 +00:00
|
|
|
color: '{red.500}',
|
2024-02-20 20:46:42 +00:00
|
|
|
boxShadow: '0px 4px 8px 0px color-mix(in srgb, {red.500}, transparent 96%)',
|
2024-05-04 12:23:26 +00:00
|
|
|
closeButton: {
|
|
|
|
hoverBackground: 'rgba(255, 255, 255, 0.05)'
|
|
|
|
}
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
secondary: {
|
|
|
|
background: '{surface.800}',
|
|
|
|
borderColor: '{surface.700}',
|
2024-03-12 10:20:51 +00:00
|
|
|
color: '{surface.300}',
|
2024-02-20 20:46:42 +00:00
|
|
|
boxShadow: '0px 4px 8px 0px color-mix(in srgb, {surface.500}, transparent 96%)',
|
2024-05-04 12:23:26 +00:00
|
|
|
closeButton: {
|
|
|
|
hoverBackground: '{surface.700}'
|
|
|
|
}
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
contrast: {
|
|
|
|
background: '{surface.0}',
|
|
|
|
borderColor: '{surface.100}',
|
2024-03-12 10:20:51 +00:00
|
|
|
color: '{surface.950}',
|
2024-02-20 20:46:42 +00:00
|
|
|
boxShadow: '0px 4px 8px 0px color-mix(in srgb, {surface.950}, transparent 96%)',
|
2024-05-04 12:23:26 +00:00
|
|
|
closeButton: {
|
|
|
|
hoverBackground: '{surface.100}'
|
|
|
|
}
|
2024-02-19 22:53:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|