-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththeme.scss
110 lines (97 loc) · 2.29 KB
/
theme.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
@import '~@angular/material/theming';
// Be sure that you only ever include 'mat-core' mixin once!
// it should not be included for each theme.
@include mat-core();
// define a real custom palette (using http://mcg.mbitson.com)
$bv-brand: (
50 : #e1ebf3,
100 : #b3cde1,
200 : #80abcd,
300 : #4d89b9,
400 : #2770aa,
500 : #01579b,
600 : #014f93,
700 : #014689,
800 : #013c7f,
900 : #002c6d,
A100 : #9cbbff,
A200 : #6998ff,
A400 : #3674ff,
A700 : #1d63ff,
contrast: (
50 : #000000,
100 : #000000,
200 : #000000,
300 : #ffffff,
400 : #ffffff,
500 : #ffffff,
600 : #ffffff,
700 : #ffffff,
800 : #ffffff,
900 : #ffffff,
A100 : #000000,
A200 : #000000,
A400 : #ffffff,
A700 : #ffffff,
)
);
$bv-orange: (
50 : #ffffff,
100 : #ffffff,
200 : #ffffff,
300 : #ffffff,
400 : #ffffff,
500 : #ffffff,
600 : #ffffff,
700 : #ffffff,
800 : #ffffff,
900 : #ffffff,
A100 : #ffffff,
A200 : #ffffff,
A400 : #ffffff,
A700 : #ffffff,
contrast: (
50 : #000000,
100 : #000000,
200 : #000000,
300 : #000000,
400 : #000000,
500 : #000000,
600 : #000000,
700 : #000000,
800 : #000000,
900 : #000000,
A100 : #000000,
A200 : #000000,
A400 : #000000,
A700 : #000000,
)
);
// mandatory stuff for theming
$bv-palette-primary: mat-palette($bv-brand);
$bv-palette-accent: mat-palette($bv-orange);
// include the custom theme components into a theme object
$bv-theme: mat-light-theme($bv-palette-primary, $bv-palette-accent);
// include the custom theme object into the angular material theme
@include angular-material-theme($bv-theme);
.delete-button{
background-color: rgba(255, 0, 0, 0.7);
color: white;
}
.mat-accent .mat-slider-track-fill {
background-color: #01579b !important;
}
.mat-slider-thumb-label {
background-color: #01579b !important;
}
.mat-slider-thumb {
background-color: #01579b !important;
}
.mat-checkbox-inner-container{
color: #01579b !important;
border: rgba(0, 0, 0, 0.616) solid 1px;
background-color: white;
}
.mat-checkbox-label{
color:rgb(0, 0, 0);
}