30 lines
465 B
SCSS
30 lines
465 B
SCSS
/*
|
|
Sample:
|
|
|
|
.theme-light .mdc-button {
|
|
--mdc-theme-primary: #7f80ff;
|
|
--mdc-theme-secondary: #76ff03;
|
|
--mdc-theme-surface: #76ff03;
|
|
--mdc-theme-background: #fafbfc;
|
|
}
|
|
|
|
.theme-dark .mdc-button {
|
|
--mdc-theme-primary: #b00800;
|
|
--mdc-theme-secondary: #76ff03;
|
|
--mdc-theme-surface: #76ff03;
|
|
--mdc-theme-background: #576a69;
|
|
}
|
|
*/
|
|
|
|
.default-theme {
|
|
.app {
|
|
background-color: #f4f8f9;
|
|
}
|
|
}
|
|
|
|
.night-theme {
|
|
.app {
|
|
background-color: #1e1f30;
|
|
}
|
|
}
|