2024-05-13 14:15:43 +00:00
|
|
|
export default {
|
|
|
|
button: {
|
2024-05-14 22:53:19 +00:00
|
|
|
background: 'transparent',
|
|
|
|
borderColor: '{form.field.border.color}',
|
|
|
|
hoverBorderColor: '{form.field.border.color}',
|
|
|
|
activeBorderColor: '{form.field.border.color}',
|
|
|
|
color: '{form.field.icon.color}',
|
|
|
|
hoverColor: '{form.field.icon.color}',
|
|
|
|
activeColor: '{form.field.icon.color}',
|
2024-05-13 14:15:43 +00:00
|
|
|
width: '2.5rem',
|
|
|
|
borderRadius: '{form.field.border.radius}',
|
|
|
|
verticalPadding: '{form.field.padding.y}'
|
|
|
|
},
|
|
|
|
colorScheme: {
|
|
|
|
light: {
|
|
|
|
button: {
|
2024-05-14 22:53:19 +00:00
|
|
|
hoverBackground: '{surface.200}',
|
|
|
|
activeBackground: '{surface.300}'
|
2024-05-13 14:15:43 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
dark: {
|
|
|
|
button: {
|
2024-05-14 22:53:19 +00:00
|
|
|
hoverBackground: '{surface.700}',
|
|
|
|
activeBackground: '{surface.600}'
|
2024-05-13 14:15:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|