a simple @magic example theme.
used in the @magic example page
npm install --save --save-exact @magic-themes/example
// config.mjs:
module.exports = {
//... other config
THEME: 'example',
// multiple themes
// THEME: [...other themes, 'example']
}
@magic will then import and use the theme automagically.
you can overwrite any style in this theme with your own.
create /assets/themes/example/index.mjs, any css there will overwrite the theme css
export default vars => ({
body: {
color: vars.colors.orange[900],
},
})
first release
update for @magic > 0.0.55
bump required node version to 14.2.0
- update deps
- remove custom lightswitch style
bump required node version to 14.15.4
- update dependencies
...