https://github.com/angular/angular
Raw File
Tip revision: 61f63cf6fd1779d08137d01074a56a723d4a511d authored by Andrew Kushnir on 12 April 2023, 19:11:17 UTC
release: cut the v16.0.0-rc.0 release
Tip revision: 61f63cf
dark-theme.scss
@use '../app-theme';
@use '@angular/material' as mat;

$ng-io-primary: mat.define-palette(mat.$blue-palette, 700, 600, 900);
$ng-io-accent: mat.define-palette(mat.$red-palette, 700, 600, 800);
$ng-io-warn: mat.define-palette(mat.$red-palette);
$ng-io-theme: mat.define-dark-theme($ng-io-primary, $ng-io-accent, $ng-io-warn);

@include mat.all-legacy-component-themes($ng-io-theme);
@include app-theme.theme($ng-io-theme);
back to top