mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 17:32:36 +00:00
38 lines
1.3 KiB
JavaScript
38 lines
1.3 KiB
JavaScript
export default {
|
|
root: {
|
|
transitionDuration: '{transition.duration}'
|
|
},
|
|
button: {
|
|
width: '2.5rem',
|
|
borderRadius: '{form.field.border.radius}',
|
|
verticalPadding: '{form.field.padding.y}'
|
|
},
|
|
colorScheme: {
|
|
light: {
|
|
button: {
|
|
background: 'transparent',
|
|
hoverBackground: '{surface.100}',
|
|
activeBackground: '{surface.200}',
|
|
borderColor: '{form.field.border.color}',
|
|
hoverBorderColor: '{form.field.border.color}',
|
|
activeBorderColor: '{form.field.border.color}',
|
|
color: '{surface.400}',
|
|
hoverColor: '{surface.500}',
|
|
activeColor: '{surface.600}'
|
|
}
|
|
},
|
|
dark: {
|
|
button: {
|
|
background: 'transparent',
|
|
hoverBackground: '{surface.800}',
|
|
activeBackground: '{surface.700}',
|
|
borderColor: '{form.field.border.color}',
|
|
hoverBorderColor: '{form.field.border.color}',
|
|
activeBorderColor: '{form.field.border.color}',
|
|
color: '{surface.400}',
|
|
hoverColor: '{surface.300}',
|
|
activeColor: '{surface.200}'
|
|
}
|
|
}
|
|
}
|
|
};
|