我是棱角分明2材料设计的新手,我看到的是3级主要,重点和警告,为元素提供各自的颜色,这些东西我们可以使用角度材料2来定制应用吗?还有其他课吗?这样我们就可以为我们的目的修改和使用它,或者我们必须通过制作类并附加到元素来从头开始设计我们的应用程序,
此外,我想使用主题,但我知道如何在角度2项目中使用它,我遵循官方文档 this
我在style.css中包含了这一行,但没有发生任何事情
@import '~@angular/material/core/theming/prebuilt/deeppurple-amber.css'
主题btw
的概念是什么?答案 0 :(得分:1)
如果您使用的是angular-cli,我建议您这样做。
创建' custom-theme.scss'在您的应用文件夹中。
@import '~@angular/material/core/theming/all-theme';
// Plus imports for other components in your app.
// Include the base styles for Angular Material core. We include this here so that you only
// have to load a single css file for Angular Material in your app.
@include md-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.
$primary: md-palette($md-indigo);
$accent: md-palette($md-pink, A200, A100, A400);
// The warn palette is optional (defaults to red).
$warn: md-palette($md-red);
// Create the theme object (a Sass map containing all of the palettes).
$theme: md-light-theme($primary, $accent, $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($theme);
在angular-cli.json中,将自定义样式添加到样式中:
app/custom-theme.scss