Fixed mapping

pull/5507/head
Cagatay Civici 2024-02-21 10:59:25 +03:00
parent 4bc3527a38
commit 3bbd74287f
1 changed files with 130 additions and 132 deletions

View File

@ -1,137 +1,135 @@
export default { export default {
variables: { colorScheme: {
colorScheme: { light: {
light: { root: {
root: { background: '{surface.0}',
background: '{surface.0}', borderColor: '{surface.200}',
borderColor: '{surface.200}', color: '{surface.700}'
color: '{surface.700}'
},
header: {
background: '{surface.0}',
borderColor: '{surface.200}',
color: '{surface.700}'
},
navigator: {
backgroundHover: '{surface.100}',
color: '{surface.500}',
colorHover: '{surface.600}'
},
monthPicker: {
backgroundHover: '{surface.100}',
textColor: '{surface.700}',
textColorHover: '{surface.800}'
},
yearPicker: {
backgroundHover: '{surface.100}',
textColor: '{surface.700}',
textColorHover: '{surface.800}'
},
group: {
borderColor: '{surface.200}'
},
date: {
backgroundHover: '{surface.100}',
backgroundSelected: '{highlight.background}',
textColor: '{surface.700}',
textColorHover: '{surface.800}',
textColorSelected: '{highlight.text.color}'
},
today: {
background: '{surface.200}',
textColor: '{surface.900}'
},
month: {
backgroundHover: '{surface.100}',
backgroundSelected: '{highlight.background}',
textColor: '{surface.700}',
textColorHover: '{surface.800}',
textColorSelected: '{highlight.text.color}'
},
year: {
backgroundHover: '{surface.100}',
backgroundSelected: '{highlight.background}',
textColor: '{surface.700}',
textColorHover: '{surface.800}',
textColorSelected: '{highlight.text.color}'
},
buttonbar: {
borderColor: '{surface.200}'
},
timepicker: {
borderColor: '{surface.200}'
},
timepickerSpin: {
backgroundHover: '{surface.100}',
color: '{surface.500}',
colorHover: '{surface.600}'
}
}, },
dark: { header: {
root: { background: '{surface.0}',
background: '{surface.900}', borderColor: '{surface.200}',
borderColor: '{surface.700}', color: '{surface.700}'
color: '{surface.0}' },
}, navigator: {
header: { backgroundHover: '{surface.100}',
background: '{surface.900}', color: '{surface.500}',
borderColor: '{surface.700}', colorHover: '{surface.600}'
color: '{surface.0}' },
}, monthPicker: {
navigator: { backgroundHover: '{surface.100}',
backgroundHover: '{surface.800}', textColor: '{surface.700}',
color: '{surface.400}', textColorHover: '{surface.800}'
colorHover: '{surface.300}' },
}, yearPicker: {
monthPicker: { backgroundHover: '{surface.100}',
backgroundHover: '{surface.800}', textColor: '{surface.700}',
textColor: '{surface.0}', textColorHover: '{surface.800}'
textColorHover: '{surface.0}' },
}, group: {
yearPicker: { borderColor: '{surface.200}'
backgroundHover: '{surface.800}', },
textColor: '{surface.0}', date: {
textColorHover: '{surface.0}' backgroundHover: '{surface.100}',
}, backgroundSelected: '{highlight.background}',
group: { textColor: '{surface.700}',
borderColor: '{surface.700}' textColorHover: '{surface.800}',
}, textColorSelected: '{highlight.text.color}'
date: { },
backgroundHover: '{surface.800}', today: {
backgroundSelected: '{highlight.background}', background: '{surface.200}',
textColor: '{surface.0}', textColor: '{surface.900}'
textColorHover: '{surface.0}', },
textColorSelected: '{highlight.text.color}' month: {
}, backgroundHover: '{surface.100}',
today: { backgroundSelected: '{highlight.background}',
background: '{surface.700}', textColor: '{surface.700}',
textColor: '{surface.0}' textColorHover: '{surface.800}',
}, textColorSelected: '{highlight.text.color}'
month: { },
backgroundHover: '{surface.800}', year: {
backgroundSelected: '{highlight.background}', backgroundHover: '{surface.100}',
textColor: '{surface.0}', backgroundSelected: '{highlight.background}',
textColorHover: '{surface.0}', textColor: '{surface.700}',
textColorSelected: '{highlight.text.color}' textColorHover: '{surface.800}',
}, textColorSelected: '{highlight.text.color}'
year: { },
backgroundHover: '{surface.800}', buttonbar: {
backgroundSelected: '{highlight.background}', borderColor: '{surface.200}'
textColor: '{surface.0}', },
textColorHover: '{surface.0}', timepicker: {
textColorSelected: '{highlight.text.color}' borderColor: '{surface.200}'
}, },
buttonbar: { timepickerSpin: {
borderColor: '{surface.700}' backgroundHover: '{surface.100}',
}, color: '{surface.500}',
timepicker: { colorHover: '{surface.600}'
borderColor: '{surface.700}' }
}, },
timepickerSpin: { dark: {
backgroundHover: '{surface.800}', root: {
color: '{surface.400}', background: '{surface.900}',
colorHover: '{surface.300}' borderColor: '{surface.700}',
} color: '{surface.0}'
},
header: {
background: '{surface.900}',
borderColor: '{surface.700}',
color: '{surface.0}'
},
navigator: {
backgroundHover: '{surface.800}',
color: '{surface.400}',
colorHover: '{surface.300}'
},
monthPicker: {
backgroundHover: '{surface.800}',
textColor: '{surface.0}',
textColorHover: '{surface.0}'
},
yearPicker: {
backgroundHover: '{surface.800}',
textColor: '{surface.0}',
textColorHover: '{surface.0}'
},
group: {
borderColor: '{surface.700}'
},
date: {
backgroundHover: '{surface.800}',
backgroundSelected: '{highlight.background}',
textColor: '{surface.0}',
textColorHover: '{surface.0}',
textColorSelected: '{highlight.text.color}'
},
today: {
background: '{surface.700}',
textColor: '{surface.0}'
},
month: {
backgroundHover: '{surface.800}',
backgroundSelected: '{highlight.background}',
textColor: '{surface.0}',
textColorHover: '{surface.0}',
textColorSelected: '{highlight.text.color}'
},
year: {
backgroundHover: '{surface.800}',
backgroundSelected: '{highlight.background}',
textColor: '{surface.0}',
textColorHover: '{surface.0}',
textColorSelected: '{highlight.text.color}'
},
buttonbar: {
borderColor: '{surface.700}'
},
timepicker: {
borderColor: '{surface.700}'
},
timepickerSpin: {
backgroundHover: '{surface.800}',
color: '{surface.400}',
colorHover: '{surface.300}'
} }
} }
} }