How to change the NGX-Admin nebular dashboard theme?

1

Hello,  I would like to know if you can change the theme and color of the NGX-Admin nebular dashboard? Thanks in advance.

    
asked by anonymous 20.12.2017 / 16:37

1 answer

0

theme.modules.ts , in block:

const NB_THEME_PROVIDERS = [
...NbThemeModule.forRoot(
   {
      name: '**default | cosmic**',
   },
   [DEFAULT_THEME, COSMIC_THEME],
).providers,
...NbSidebarModule.forRoot().providers,
...NbMenuModule.forRoot().providers,
];
    
21.05.2018 / 18:04