Refactored file upload tokens

pull/5701/head
Cagatay Civici 2024-05-04 19:14:05 +03:00
parent 4e16e5098e
commit b2a5787d4a
2 changed files with 12 additions and 30 deletions

View File

@ -1,32 +1,14 @@
export default { export default {
colorScheme: { root: {
light: { background: '{content.background}',
root: { borderColor: '{content.border.color}',
background: '{surface.0}', color: '{content.color}'
borderColor: '{surface.200}', },
color: '{surface.700}' content: {
}, highlightBackground: '{highlight.background}',
content: { highlightBorderColor: '{highlight.color}'
highlightBackground: '{highlight.background}', },
highlightBorderColor: '{highlight.color}' file: {
}, borderColor: '{content.border.color}'
file: {
borderColor: '{surface.200}'
}
},
dark: {
root: {
background: '{surface.900}',
borderColor: '{surface.700}',
color: '{surface.0}'
},
content: {
highlightBackground: '{highlight.background}',
highlightBorderColor: '{highlight.color}'
},
file: {
borderColor: '{surface.700}'
}
}
} }
}; };

View File

@ -2,6 +2,6 @@ export default {
root: { root: {
background: '{content.background}', background: '{content.background}',
borderColor: '{content.border.color}', borderColor: '{content.border.color}',
color: '{text.color}' color: '{content.color}'
} }
}; };