primevue-mirror/components/lib/themes/aura/paginator/index.js

33 lines
853 B
JavaScript
Raw Normal View History

export default {
2024-02-20 20:46:42 +00:00
colorScheme: {
light: {
root: {
background: '{surface.0}',
2024-03-13 11:13:29 +00:00
color: '{surface.700}'
},
2024-02-20 20:46:42 +00:00
navigator: {
2024-03-13 11:13:29 +00:00
hoverBackground: '{surface.100}',
2024-02-20 20:46:42 +00:00
color: '{surface.500}',
2024-03-13 11:13:29 +00:00
hoverColor: '{surface.600}'
2024-02-20 20:46:42 +00:00
},
currentPageReport: {
2024-03-13 11:13:29 +00:00
color: '{surface.500}'
2024-02-20 20:46:42 +00:00
}
},
dark: {
root: {
background: '{surface.900}',
2024-03-13 11:13:29 +00:00
color: '{surface.0}'
2024-02-20 20:46:42 +00:00
},
navigator: {
2024-03-13 11:13:29 +00:00
hoverBackground: '{surface.800}',
2024-02-20 20:46:42 +00:00
color: '{surface.400}',
2024-03-13 11:13:29 +00:00
hoverColor: '{surface.300}'
2024-02-20 20:46:42 +00:00
},
currentPageReport: {
2024-03-13 11:13:29 +00:00
color: '{surface.400}'
}
}
}
};