26 lines
409 B
SCSS
26 lines
409 B
SCSS
|
|
@use 'sass:color';
|
||
|
|
|
||
|
|
@use '@material/theme/color-palette';
|
||
|
|
|
||
|
|
// Svelte Colors!
|
||
|
|
@use '@material/theme/index' as theme with (
|
||
|
|
$primary: #ff3e00,
|
||
|
|
$secondary: #676778,
|
||
|
|
$surface: #fff,
|
||
|
|
$background: #fff,
|
||
|
|
$error: color-palette.$red-900
|
||
|
|
);
|
||
|
|
|
||
|
|
html,
|
||
|
|
body {
|
||
|
|
background-color: theme.$surface;
|
||
|
|
color: theme.$on-surface;
|
||
|
|
}
|
||
|
|
|
||
|
|
a {
|
||
|
|
color: #40b3ff;
|
||
|
|
}
|
||
|
|
a:visited {
|
||
|
|
color: color.scale(#40b3ff, $lightness: -35%);
|
||
|
|
}
|