@sencha/ext-angular-boilerplate
v7.3.0
Published
ext-angular-boilerplate
Readme
ExtAngular
Steps to create a new theme
In root of new app - Generate new theme
npx ext-angular generate theme --name my-themein webpack.config.js
new ExtWebpackPlugin({
framework: 'angular',
toolkit: 'modern',
theme: 'my-theme'
})Go to newly created theme folder
cd ext-angular/packages/my-themeCreate a theme file and add a variable
cd sass/src
mkdir Ext
cd Ext
touch Component.scssin Component.scss (save the file after editing)
$base-color: blue;at the root of the app, start application in development mode
npm startmake a change in Component.scss (save the file after editing)
$base-color: red;app should now have red titlebar
