2024-02-07 13:53:34 +00:00
|
|
|
export default {
|
|
|
|
name: 'Root',
|
|
|
|
selector: ':root',
|
|
|
|
validInnerComponents: [
|
|
|
|
'Underlay',
|
2024-02-11 21:11:28 +00:00
|
|
|
'Modals',
|
2024-02-12 01:46:40 +00:00
|
|
|
'Popover',
|
2024-02-18 18:11:06 +00:00
|
|
|
'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: {
|
2024-02-28 20:28:15 +00:00
|
|
|
// 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',
|
2024-02-28 20:28:15 +00:00
|
|
|
'--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',
|
2024-02-28 12:57:19 +00:00
|
|
|
'--monoFont': 'generic | monospace',
|
2024-02-28 20:28:15 +00:00
|
|
|
|
|
|
|
// 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
|
|
|
}
|
|
|
|
}
|
2024-02-07 13:53:34 +00:00
|
|
|
]
|
|
|
|
}
|