2024-02-19 22:53:42 +00:00
|
|
|
export default {
|
2024-05-04 21:57:50 +00:00
|
|
|
header: {
|
|
|
|
background: '{content.background}',
|
|
|
|
borderColor: '{datatable.border.color}',
|
|
|
|
color: '{content.color}'
|
|
|
|
},
|
|
|
|
headerCell: {
|
|
|
|
background: '{content.background}',
|
|
|
|
hoverBackground: '{content.hover.background}',
|
|
|
|
borderColor: '{datatable.border.color}',
|
|
|
|
color: '{content.color}',
|
|
|
|
hoverColor: '{content.hover.color}'
|
|
|
|
},
|
|
|
|
row: {
|
|
|
|
background: '{content.background}',
|
|
|
|
hoverBackground: '{content.hover.background}',
|
|
|
|
color: '{content.color}',
|
|
|
|
hoverColor: '{content.hover.color}'
|
|
|
|
},
|
|
|
|
bodyCell: {
|
|
|
|
borderColor: '{datatable.border.color}'
|
|
|
|
},
|
|
|
|
footerCell: {
|
|
|
|
background: '{content.background}',
|
|
|
|
borderColor: '{datatable.border.color}',
|
|
|
|
color: '{content.color}'
|
|
|
|
},
|
|
|
|
footer: {
|
|
|
|
background: '{content.background}',
|
|
|
|
borderColor: '{datatable.border.color}',
|
|
|
|
color: '{content.color}'
|
|
|
|
},
|
|
|
|
resizeIndicatorColor: '{primary.color}',
|
|
|
|
sortIcon: {
|
|
|
|
color: '{text.muted.color}',
|
|
|
|
hoverColor: '{text.hover.muted.color}'
|
|
|
|
},
|
|
|
|
nodeToggleButton: {
|
|
|
|
hoverBackground: '{content.hover.background}',
|
|
|
|
highlightHoverBackground: '{content.background}',
|
|
|
|
color: '{text.color}',
|
|
|
|
hoverColor: '{text.muted.color}'
|
|
|
|
},
|
2024-02-20 20:46:42 +00:00
|
|
|
colorScheme: {
|
|
|
|
light: {
|
2024-05-04 21:57:50 +00:00
|
|
|
root: {
|
|
|
|
borderColor: '{content.border.color}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
row: {
|
2024-05-04 21:57:50 +00:00
|
|
|
stripedBackground: '{surface.50}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
bodyCell: {
|
2024-03-13 11:13:29 +00:00
|
|
|
selectedBorderColor: '{primary.100}'
|
2024-02-20 20:46:42 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
dark: {
|
2024-05-04 21:57:50 +00:00
|
|
|
root: {
|
|
|
|
borderColor: '{surface.800}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
row: {
|
2024-05-04 21:57:50 +00:00
|
|
|
stripedBackground: '{surface.950}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
bodyCell: {
|
2024-03-13 11:13:29 +00:00
|
|
|
selectedBorderColor: '{primary.900}'
|
2024-02-19 22:53:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|