Ups theme updated

This commit is contained in:
TulkasOrome 2025-05-21 13:51:30 +10:00
parent 603d3f876c
commit c2a24c7b69
7 changed files with 268 additions and 24 deletions

View file

@ -38,6 +38,7 @@ import { DEFAULT_THEME } from './styles/theme.default';
import { COSMIC_THEME } from './styles/theme.cosmic';
import { CORPORATE_THEME } from './styles/theme.corporate';
import { DARK_THEME } from './styles/theme.dark';
import { MARKETSOFT_THEME } from './styles/theme.marketsoft'; // Import the new theme
const NB_MODULES = [
NbLayoutModule,
@ -82,11 +83,11 @@ export class ThemeModule {
providers: [
...NbThemeModule.forRoot(
{
name: 'default',
name: 'marketsoft', // Set marketsoft as the default theme
},
[ DEFAULT_THEME, COSMIC_THEME, CORPORATE_THEME, DARK_THEME ],
[ DEFAULT_THEME, COSMIC_THEME, CORPORATE_THEME, DARK_THEME, MARKETSOFT_THEME ], // Add MARKETSOFT_THEME to the themes array
).providers,
],
};
}
}
}