primevue-mirror/components/lib/themes/nora/inputnumber/index.js

29 lines
852 B
JavaScript

export default {
button: {
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}',
width: '2.5rem',
borderRadius: '{form.field.border.radius}',
verticalPadding: '{form.field.padding.y}'
},
colorScheme: {
light: {
button: {
hoverBackground: '{surface.200}',
activeBackground: '{surface.300}'
}
},
dark: {
button: {
hoverBackground: '{surface.700}',
activeBackground: '{surface.600}'
}
}
}
};