Change link colours

This commit is contained in:
Dave Gallant
2023-03-25 17:59:10 -04:00
parent 210a55934d
commit 7b6eb962df
59 changed files with 942 additions and 114 deletions

View File

@@ -1,10 +1,10 @@
/* Markdown */
:root{
--maincolor: rgb(111, 119, 140);
--bordercl:rebeccapurple;
--maincolor: #a15bc2;
--bordercl: #a15bc2;
--callouctcolor:dodgerblue;
--hovercolor:navy;
--darkMaincolor: #50fa7b;
--hovercolor: #a15bc2;
--darkMaincolor: #a15bc2;
}
html {
color: #232333;
@@ -14,6 +14,7 @@ html {
}
body{
display: block;
background-color: #f8f8f8;
margin: 8px;
}
* {
@@ -111,7 +112,7 @@ pre {
}
.highlight pre ::selection {
background: rgba(255, 255, 255, 0.2);
background: var(--maincolor);
color: inherit;
}