2017-01-16 8 views

答えて

3

あなたのstyle.cssファイルに次のCSSを追加します。

@import '[email protected]/material/core/theming/all-theme'; 

// NOTE: Theming is currently experimental and not yet publically released! 

@include md-core(); 

$primary: md-palette($md-deep-purple); 
$accent: md-palette($md-amber, A200, A100, A400); 

$theme: md-light-theme($primary, $accent); 

@include angular-material-theme($theme); 

$dark-primary: md-palette($md-pink, 700, 500, 900); 
$dark-accent: md-palette($md-blue-grey, A200, A100, A400); 
$dark-warn: md-palette($md-deep-orange); 

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

@include angular-material-theme($dark-theme); 

P.S.をhttps://github.com/jelbourn/material2-app/blob/master/src/material2-app-theme.scss

+0

に役立つかもしれません。 – mojtab23

+0

@ mojtab23 CSSでの変数のサポートはありません(少なくとも広く)。 CSSを無効にする唯一の方法はSCSSです。 – codef0rmer

+1

これは正解です。カスタムテーマを作成するにはSCSSを使用するか、あらかじめ作成されたダークテーマを使用する必要があります。 – DevVersion

1

現在のリリース:2.0.0-beta.3現在、グローバルsassファイルにベローを追加しました。

@import '[email protected]/material/theming'; 
// Plus imports for other components in your app. 

// Include the common styles for Angular Material. We include this here so that you only 
// have to load a single css file for Angular Material in your app. 
// Be sure that you only ever include this mixin once! 
@include mat-core(); 

// Define the palettes for your theme using the Material Design palettes available in palette.scss 
// (imported above). For each palette, you can optionally specify a default, lighter, and darker 
// hue. 
$dark-primary: mat-palette($mat-blue-grey); 
$dark-accent: mat-palette($mat-amber, A200, A100, A400); 

// The warn palette is optional (defaults to red). 
$dark-warn: mat-palette($mat-deep-orange); 

// Create the theme object (a Sass map containing all of the palettes). 
$cdark-theme: mat-light-theme($dark-primary, $dark-accent, $dark-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($cdark-theme); 

More details

関連する問題