vrifox/gitea-theme
Archived
1
0
Fork 0
This repository has been archived on 2022-09-28. You can view files and clone it, but cannot push or open issues or pull requests.
gitea-theme/source/partials/_main.scss

22 lines
376 B
SCSS
Raw Normal View History

2020-09-27 21:09:15 +02:00
* {
scrollbar-color: rgb(255, 130, 130) rgb(60, 60, 90);
scrollbar-width: thin;
2020-09-27 21:09:15 +02:00
&::selection {
background: rgb(245, 245, 255);
}
}
body {
background: rgb(40, 40, 60);
color: rgb(245, 245, 255);
font-family: monospace, 'Lucida Console', 'Monaco';
2020-09-27 21:09:15 +02:00
}
a {
color: rgb(255, 255, 255);
transition: color 0.2s;
&:hover {
color: rgb(255, 130, 130);
}
}