2017-01-16 103 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); 

附: https://github.com/jelbourn/material2-app/blob/master/src/material2-app-theme.scss

+0

它不工作,因爲上面的代碼語言SCSS不是CSS。 – mojtab23

+0

@ mojtab23不支持CSS中的變量(至少廣泛)。 SCSS是覆蓋CSS的唯一方法。 – 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

相關問題