Page 1 of 1

How can set default theme color

Posted: 23 May 2019, 15:34
by DBDev1
How can set default theme color

Re: How can set default theme color

Posted: 24 May 2019, 10:06
by merve7
Hi,
There are some ways to set default color;
Firstly you can change stylesheet in index.html (line 12) ;

Code: Select all

  <link id="theme-css" rel="stylesheet" type="text/css" href="assets/theme/blue/theme-accent.css"> // you can set other */theme-*.css
Secondly you can add theme stylesheet in angular.json(line 24) like;

Code: Select all

"styles": [
    "node_modules/primeng/resources/primeng.min.css",
    //other style files
    "src/assets/theme/cyan/theme-accent.css",
     "src/styles.scss"
],