22 lines
596 B
JavaScript
22 lines
596 B
JavaScript
|
export default {
|
||
|
root: {
|
||
|
background: '{content.background}',
|
||
|
color: '{content.color}'
|
||
|
},
|
||
|
node: {
|
||
|
hoverBackground: '{content.hover.background}',
|
||
|
color: '{text.color}',
|
||
|
hoverColor: '{text.hover.color}'
|
||
|
},
|
||
|
nodeIcon: {
|
||
|
color: '{text.muted.color}',
|
||
|
hoverColor: '{text.hover.muted.color}'
|
||
|
},
|
||
|
nodeToggleButton: {
|
||
|
hoverBackground: '{content.hover.background}',
|
||
|
highlightHoverBackground: '{content.background}',
|
||
|
color: '{text.muted.color}',
|
||
|
hoverColor: '{text.hover.muted.color}'
|
||
|
}
|
||
|
};
|