mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-09-22 05:50:48 +02:00
41 lines
1 KiB
SCSS
41 lines
1 KiB
SCSS
// @nebular theming framework
|
|
@import '~@nebular/theme/styles/theming';
|
|
// @nebular out of the box themes
|
|
@import '~@nebular/theme/styles/themes';
|
|
|
|
// which themes you what to enable (empty to enable all)
|
|
$nb-enabled-themes: (default, light, cosmic);
|
|
|
|
$nb-themes: nb-register-theme((
|
|
// app wise variables for each theme
|
|
sidebar-header-gap: 2rem,
|
|
sidebar-header-height: initial,
|
|
layout-content-width: 1400px,
|
|
|
|
toggle-layout-color: color-success,
|
|
|
|
font-main: Roboto,
|
|
font-secondary: Exo,
|
|
), default, default);
|
|
|
|
$nb-themes: nb-register-theme((
|
|
// app wise variables for each theme
|
|
sidebar-header-gap: 2rem,
|
|
sidebar-header-height: initial,
|
|
layout-content-width: 1400px,
|
|
|
|
toggle-layout-color: link-color-active,
|
|
|
|
font-main: Roboto,
|
|
font-secondary: Exo,
|
|
), cosmic, cosmic);
|
|
|
|
$nb-themes: nb-register-theme((
|
|
// app wise variables for each theme
|
|
sidebar-header-gap: 2rem,
|
|
sidebar-header-height: initial,
|
|
layout-content-width: 1400px,
|
|
|
|
font-main: Roboto,
|
|
font-secondary: Exo,
|
|
), light, light);
|