mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-01-20 11:38:59 +00:00
14 lines
358 B
SCSS
14 lines
358 B
SCSS
|
@import '~@angular/material/theming';
|
||
|
|
||
|
// Include non-theme styles for core.
|
||
|
@include mat-core();
|
||
|
|
||
|
// Define a theme.
|
||
|
$primary: mat-palette($mat-cyan, 700, 500, 900);
|
||
|
$accent: mat-palette($mat-blue-grey, A200, A100, A400);
|
||
|
|
||
|
$theme: mat-dark-theme($primary, $accent);
|
||
|
|
||
|
// Include all theme styles for the components.
|
||
|
@include angular-material-theme($theme);
|