pleroma-fe/src/components/root.style.js

45 lines
1.1 KiB
JavaScript
Raw Normal View History

export default {
name: 'Root',
selector: ':root',
validInnerComponents: [
'Underlay',
2024-02-11 21:11:28 +00:00
'Modals',
'Popover',
'TopBar',
'Scrollbar',
2024-02-21 23:10:24 +00:00
'ScrollbarElement',
2024-02-22 16:38:45 +00:00
'MobileDrawer',
2024-02-27 20:02:25 +00:00
'Alert',
2024-02-22 16:38:45 +00:00
'Button' // mobile post button
2024-02-22 16:04:28 +00:00
],
defaultRules: [
{
directives: {
// These are here just to establish order,
// themes should override those
'--bg': 'color | #121a24',
'--fg': 'color | #182230',
'--text': 'color | #b9b9ba',
'--link': 'color | #d8a070',
2024-03-04 17:53:45 +00:00
'--accent': 'color | #d8a070',
'--cRed': 'color | #FF0000',
'--cBlue': 'color | #0095ff',
'--cGreen': 'color | #0fa00f',
'--cOrange': 'color | #ffa500',
// Fonts
2024-02-22 16:38:45 +00:00
'--font': 'generic | sans-serif',
'--monoFont': 'generic | monospace',
// Fallback no-background-image color
// (also useful in some other places like scrollbars)
2024-03-04 17:53:45 +00:00
'--wallpaper': 'color | --bg, -2',
// Selection colors
'--selectionBackground': 'color | --accent',
'--selectionText': 'color | $textColor(--accent, --text)'
2024-02-22 16:04:28 +00:00
}
}
]
}