annotate src/ugly-aesthetics.scss @ 509:041468f553e1
tip master
Merge pull request #57 from LucasThompson/fix/session-stack-max-call-stack
Fix accidental recursion in PersistentStack
author |
Lucas Thompson <LucasThompson@users.noreply.github.com> |
date |
Mon, 27 Nov 2017 11:04:30 +0000 |
parents |
7714e4fc1e57 |
children |
|
rev |
line source |
dev@275
|
1 @import '~@angular/material/theming';
|
dev@275
|
2 // Plus imports for other components in your app.
|
dev@275
|
3
|
dev@275
|
4 // Include the common styles for Angular Material. We include this here so that you only
|
dev@275
|
5 // have to load a single css file for Angular Material in your app.
|
dev@275
|
6 // Be sure that you only ever include this mixin once!
|
dev@275
|
7 @include mat-core();
|
dev@275
|
8
|
dev@278
|
9 // Generated with http://mcg.mbitson.com - seeded with base colour of #0868ac
|
dev@278
|
10 // The contrast colours are taken from $mat-indigo
|
dev@278
|
11 $md-ugly-blue: map-merge($mat-indigo, (
|
dev@278
|
12 50 : #e1edf5,
|
dev@278
|
13 100 : #b5d2e6,
|
dev@278
|
14 200 : #84b4d6,
|
dev@278
|
15 300 : #5295c5,
|
dev@278
|
16 400 : #2d7fb8,
|
dev@278
|
17 500 : #0868ac,
|
dev@278
|
18 600 : #0760a5,
|
dev@278
|
19 700 : #06559b,
|
dev@278
|
20 800 : #044b92,
|
dev@278
|
21 900 : #023a82,
|
dev@278
|
22 A100 : #afccff,
|
dev@278
|
23 A200 : #7cabff,
|
dev@278
|
24 A400 : #498bff,
|
dev@278
|
25 A700 : #307bff,
|
dev@278
|
26 ));
|
dev@278
|
27
|
dev@275
|
28 // Define the palettes for your theme using the Material Design palettes available in palette.scss
|
dev@275
|
29 // (imported above). For each palette, you can optionally specify a default, lighter, and darker
|
dev@275
|
30 // hue.
|
dev@278
|
31 $candy-app-primary: mat-palette($md-ugly-blue);
|
dev@275
|
32 $candy-app-accent: mat-palette($mat-pink, A200, A100, A400);
|
dev@275
|
33
|
dev@275
|
34 // The warn palette is optional (defaults to red).
|
dev@275
|
35 $candy-app-warn: mat-palette($mat-red);
|
dev@275
|
36
|
dev@275
|
37 // Create the theme object (a Sass map containing all of the palettes).
|
dev@275
|
38 $candy-app-theme: mat-light-theme($candy-app-primary, $candy-app-accent, $candy-app-warn);
|
dev@275
|
39
|
dev@275
|
40 // Include theme styles for core and each component used in your app.
|
dev@275
|
41 // Alternatively, you can import and @include the theme mixins for each component
|
dev@275
|
42 // that you are using.
|
dev@275
|
43 @include angular-material-theme($candy-app-theme);
|