This section explains about how to use the custom styles generated by Theme Editor to an Essential JS2 Angular components.
Create an angular application with Essential JS 2 Angular Components using documentation.
Generate custom CSS file using theme-studio.
Add the generated Custom CSS file in your created Angular application inside ./src/
.
Add Custom CSS file path in ./angular.json
file under architect/build/options/styles
property like below
"styles": [
"src/styles.css",
"src/custom-material.css"
],
Then Run your Angular application and you will get Essential JS 2 Angular Components with custom styles.