Css 具有自定义调色板的角度材质自定义主题

Css 具有自定义调色板的角度材质自定义主题,css,node.js,angular,sass,angular-material,Css,Node.js,Angular,Sass,Angular Material,我想应用调色板: 这是我当前的主题文件: @import "~@angular/material/_theming"; @include mat-core(); $app-primary: mat-palette(#46828d); $app-accent: mat-palette(#276c8a); $app-warn: mat-palette(yellow); $app-theme: mat-dark-theme($app-primary, $app-accent, $app-wa

我想应用调色板:

这是我当前的主题文件:

@import "~@angular/material/_theming";

@include mat-core();

$app-primary: mat-palette(#46828d);
$app-accent: mat-palette(#276c8a);
$app-warn: mat-palette(yellow);

$app-theme: mat-dark-theme($app-primary, $app-accent, $app-warn);

@include angular-material-theme($app-theme);
不知道如何使用SASS lol

项目:

像这样尝试

// Create the theme object (a Sass map containing all of the palettes).
$cdx-app-theme: mat-light-theme($cdx-palette-primary, $cdx-palette-accent, $cdx-palette-warn);

// Include theme styles for core and each component used in your app.
// Alternatively, you can import and @include the theme mixins for each component
// that you are using.
@include angular-material-theme($cdx-app-theme);

// Create aliases to use within your app (Do not override the `$cdx-palette-*` properties)
$my-app-palette-primary: mat-palette(#46828d);
$my-app-palette-accent: mat-palette(#276c8a);
$my-app-palette-warn: mat-palette(yellow);

如果您有疑问,请告诉我。

这就是我最终使用自定义调色板创建自定义主题的方式(第9页)


SassError:未定义的变量。
`╷` <代码>6│ $cdx应用程序主题:mat深色主题($cdx调色板主要,$cdx调色板强调,$cdx调色板警告)`│ ^^^^^^^^^^^^^^^^^^^^` ` |` 使用Angular
9.2.0
U必须定义$cdx调色板主、重音和警告
@import "~@angular/material/theming";

@include mat-core();

// generated custom palette
$primary-palette: (
    50 : #e9f0f1,
    100 : #c7d9dd,
    200 : #a2c0c6,
    300 : #7da7af,
    400 : #61949d,
    500 : #45818c,
    600 : #3e7984,
    700 : #366e79,
    800 : #2e646f,
    900 : #1f515c,
    A100 : #9cecff,
    A200 : #69e3ff,
    A400 : #36d9ff,
    A700 : #1dd4ff,
    contrast: (
        50 : #000000,
        100 : #000000,
        200 : #000000,
        300 : #000000,
        400 : #000000,
        500 : #ffffff,
        600 : #ffffff,
        700 : #ffffff,
        800 : #ffffff,
        900 : #ffffff,
        A100 : #000000,
        A200 : #000000,
        A400 : #000000,
        A700 : #000000,
    )
);

$primary: mat-palette($primary-palette);
$secondary: mat-palette($mat-blue);
$warn: mat-palette($mat-yellow);

$theme: mat-dark-theme($primary, $secondary, $warn);

// apply the dark theme
@include angular-material-theme($theme);