We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dac5b4 commit 37c32f2Copy full SHA for 37c32f2
packages/ext-angular-boilerplate/README.md
@@ -1,2 +1,33 @@
1
2
ExtAngular
3
+
4
+## Steps to create a new theme
5
6
+In root of new app - Generate new theme
7
+```npx ext-react generate theme --name my-theme
8
+```
9
10
+in webpack.config.js
11
+```javascript
12
+new ExtReactWebpackPlugin({
13
+ theme: 'mt-theme'
14
+})
15
16
17
+```npm start
18
19
20
+Go to newly created theme folder
21
+```cd ext-angular/packages/my-theme
22
23
24
+Create a theme file and add a variable
25
+```cd /sass/src
26
+mkdir Ext
27
+cd Ext
28
+touch Component.scss
29
30
+in Component.scss
31
32
+$base-color: blue;
33
0 commit comments