Change background color to a more blueish grey
Signed-off-by: trivernis <trivernis@protonmail.com>pull/14/head
parent
fbe516a7df
commit
bb725f6dfb
@ -1,40 +0,0 @@
|
|||||||
@use 'sass:map';
|
|
||||||
@use '@angular/material' as mat;
|
|
||||||
|
|
||||||
@mixin color($theme) {
|
|
||||||
$color-config: mat.get-color-config($theme);
|
|
||||||
$primary-palette: map.get($color-config, 'primary');
|
|
||||||
$warn-palette: map.get($color-config, 'warn');
|
|
||||||
|
|
||||||
body {
|
|
||||||
background-color: darken(#303030, 5);
|
|
||||||
color: white
|
|
||||||
}
|
|
||||||
|
|
||||||
.warn {
|
|
||||||
background-color: mat.get-color-from-palette($warn-palette);
|
|
||||||
color: white
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin typography($theme) {
|
|
||||||
// Get the typography config from the theme.
|
|
||||||
$typography-config: mat.get-typography-config($theme);
|
|
||||||
|
|
||||||
body {
|
|
||||||
font-family: mat.font-family($typography-config);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin theme($theme) {
|
|
||||||
$color-config: mat.get-color-config($theme);
|
|
||||||
@if $color-config != null {
|
|
||||||
@include color($theme);
|
|
||||||
}
|
|
||||||
|
|
||||||
$typography-config: mat.get-typography-config($theme);
|
|
||||||
@if $typography-config != null {
|
|
||||||
@include typography($theme);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue