Refactored file upload tokens
parent
4e16e5098e
commit
b2a5787d4a
|
@ -1,32 +1,14 @@
|
||||||
export default {
|
export default {
|
||||||
colorScheme: {
|
|
||||||
light: {
|
|
||||||
root: {
|
root: {
|
||||||
background: '{surface.0}',
|
background: '{content.background}',
|
||||||
borderColor: '{surface.200}',
|
borderColor: '{content.border.color}',
|
||||||
color: '{surface.700}'
|
color: '{content.color}'
|
||||||
},
|
},
|
||||||
content: {
|
content: {
|
||||||
highlightBackground: '{highlight.background}',
|
highlightBackground: '{highlight.background}',
|
||||||
highlightBorderColor: '{highlight.color}'
|
highlightBorderColor: '{highlight.color}'
|
||||||
},
|
},
|
||||||
file: {
|
file: {
|
||||||
borderColor: '{surface.200}'
|
borderColor: '{content.border.color}'
|
||||||
}
|
|
||||||
},
|
|
||||||
dark: {
|
|
||||||
root: {
|
|
||||||
background: '{surface.900}',
|
|
||||||
borderColor: '{surface.700}',
|
|
||||||
color: '{surface.0}'
|
|
||||||
},
|
|
||||||
content: {
|
|
||||||
highlightBackground: '{highlight.background}',
|
|
||||||
highlightBorderColor: '{highlight.color}'
|
|
||||||
},
|
|
||||||
file: {
|
|
||||||
borderColor: '{surface.700}'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -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}'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue