<body [ngStyle]="{'background':'blue'}"></body>
I want to set my whole web page of color blue.
I tried using height=100% and width=100% like this<body [ngStyle]="{'background':getColor(),'height':'100%','width':'100%'}"></body>, but still whole web page is blank.
[ngStyle]only works on the element it is specified in. To programmatically change the style of the applications<body></body>- since it is not part o any component - you can do the following:In any component e.g. app.component.ts