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,42 @@
export default {
colorScheme: {
light: {
root: {
background: '{surface.0}',
borderColor: '{surface.200}',
color: '{surface.700}'
},
item: {
focusBackground: '{surface.100}',
color: '{surface.700}',
focusColor: '{surface.800}',
icon: {
color: '{surface.400}',
focusColor: '{surface.500}'
}
},
separator: {
borderColor: '{surface.200}'
}
},
dark: {
root: {
background: '{surface.900}',
borderColor: '{surface.700}',
color: '{surface.0}'
},
item: {
focusBackground: '{surface.800}',
color: '{surface.0}',
focusColor: '{surface.0}',
icon: {
color: '{surface.500}',
focusColor: '{surface.400}'
}
},
separator: {
borderColor: '{surface.700}'
}
}
}
};