Fixed #5667 - Remove base option from theme config

This commit is contained in:
Mert Sincan 2024-05-01 09:26:48 +01:00
parent 6d688ef675
commit 0979dde96d
438 changed files with 10872 additions and 11957 deletions

View file

@ -0,0 +1,52 @@
export default {
colorScheme: {
light: {
root: {
background: '{surface.0}',
color: '{surface.700}'
},
node: {
hoverBackground: '{surface.100}',
color: '{surface.700}',
hoverColor: '{surface.800}'
},
nodeIcon: {
color: '{surface.500}',
hoverColor: '{surface.600}'
},
toggle: {
hoverBackground: '{surface.100}',
highlightHoverBackground: '{surface.0}',
color: '{surface.500}',
hoverColor: '{surface.600}'
},
filterIcon: {
color: '{surface.400}'
}
},
dark: {
root: {
background: '{surface.900}',
color: '{surface.0}'
},
node: {
hoverBackground: '{surface.800}',
color: '{surface.0}',
hoverColor: '{surface.0}'
},
nodeIcon: {
color: '{surface.400}',
hoverColor: '{surface.300}'
},
toggle: {
hoverBackground: '{surface.800}',
highlightHoverBackground: '{surface.900}',
color: '{surface.400}',
hoverColor: '{surface.300}'
},
filterIcon: {
color: '{surface.400}'
}
}
}
};

View file

@ -0,0 +1,6 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts"
}