Refactored tokens of Data components

This commit is contained in:
Cagatay Civici 2024-05-05 00:57:50 +03:00
parent 0d488b1ba9
commit c617766c77
14 changed files with 227 additions and 431 deletions

View file

@ -1,36 +1,16 @@
export default {
colorScheme: {
light: {
header: {
background: '{surface.0}',
borderColor: '{surface.200}',
color: '{surface.700}'
},
content: {
background: '{surface.0}',
color: '{surface.700}'
},
footer: {
background: '{surface.0}',
borderColor: '{surface.200}',
color: '{surface.700}'
}
},
dark: {
header: {
background: '{surface.900}',
borderColor: '{surface.700}',
color: '{surface.0}'
},
content: {
background: '{surface.900}',
color: '{surface.0}'
},
footer: {
background: '{surface.900}',
borderColor: '{surface.700}',
color: '{surface.0}'
}
}
header: {
background: '{content.background}',
borderColor: '{content.border.color}',
color: '{content.color}'
},
content: {
background: '{content.background}',
color: '{content.color}'
},
footer: {
background: '{content.background}',
borderColor: '{content.border.color}',
color: '{content.color}'
}
};