Parent theme system
Mosaic introduces a concept of "themes"
Create a parent theme
{
"mosaic": {
"type": "theme",
"themeAlias": "Parent"
}
}Use a parent theme
{
"name": "@me/child-theme",
"dependencies": {
"@example/parent-theme": "1.0.1"
},
"mosaic": {
"type": "theme",
"parentTheme": "@example/parent-theme"
}
}Last updated