using monospace font instead of Roboto etc
This commit is contained in:
parent
ca4fdec52b
commit
d3fcec8e56
2 changed files with 6 additions and 4 deletions
|
@ -2,14 +2,15 @@
|
|||
/* DON'T EDIT THIS FILE; EDIT THE SCSS/SASS INSTEAD */
|
||||
/* ------------------------------------------------ */
|
||||
* {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #ff8282 #3c3c5a; }
|
||||
scrollbar-color: #ff8282 #3c3c5a;
|
||||
scrollbar-width: thin; }
|
||||
*::selection {
|
||||
background: #f5f5ff; }
|
||||
|
||||
body {
|
||||
background: #28283c;
|
||||
color: #f5f5ff; }
|
||||
color: #f5f5ff;
|
||||
font-family: monospace, 'Lucida Console', 'Monaco'; }
|
||||
|
||||
a {
|
||||
color: white;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
* {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: rgb(255, 130, 130) rgb(60, 60, 90);
|
||||
scrollbar-width: thin;
|
||||
&::selection {
|
||||
background: rgb(245, 245, 255);
|
||||
}
|
||||
|
@ -10,6 +10,7 @@
|
|||
body {
|
||||
background: rgb(40, 40, 60);
|
||||
color: rgb(245, 245, 255);
|
||||
font-family: monospace, 'Lucida Console', 'Monaco';
|
||||
}
|
||||
a {
|
||||
color: rgb(255, 255, 255);
|
||||
|
|
Reference in a new issue