21 lines
322 B
SCSS
21 lines
322 B
SCSS
|
* {
|
||
|
scrollbar-width: thin;
|
||
|
scrollbar-color: rgb(255, 130, 130) rgb(60, 60, 90);
|
||
|
&::selection {
|
||
|
background: rgb(245, 245, 255);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
body {
|
||
|
background: rgb(40, 40, 60);
|
||
|
color: rgb(245, 245, 255);
|
||
|
}
|
||
|
a {
|
||
|
color: rgb(255, 255, 255);
|
||
|
transition: color 0.2s;
|
||
|
&:hover {
|
||
|
color: rgb(255, 130, 130);
|
||
|
}
|
||
|
}
|