changed colors to match my new color scheme

This commit is contained in:
Vri 2022-01-07 21:26:29 +01:00
parent 8a49bb109a
commit e8b1c28664
Signed by: vrifox
GPG key ID: D40098E5B60B2197

View file

@ -1,9 +1,15 @@
:root { :root {
--background: rgb(30, 40, 50); --background: hsl(210, 21%, 15%);
--border: rgb(50, 60, 70); --border: hsl(210, 21%, 20%);
--text: rgb(235, 245, 255); --text: hsl(210, 21%, 95%);
--text-2: rgb(165, 175, 185); --text-2: hsl(210, 21%, 80%);
--vrifox-red: rgb(255, 130, 130); --vriish-red: hsl(0, 100%, 75%);
--rose: hsl(0, 100%, 75%);
--orange: hsl(25, 100%, 75%);
--gold: hsl(50, 100%, 75%);
--emerald: hsl(130, 100%, 75%);
--sky: hsl(215, 100%, 75%);
--purpur: hsl(275, 100%, 75%);
} }
@media (prefers-color-scheme: light) { @media (prefers-color-scheme: light) {
:root { :root {
@ -16,13 +22,13 @@
* { * {
box-sizing: border-box; box-sizing: border-box;
scrollbar-color: var(--vrifox-red) var(--background); scrollbar-color: var(--vriish-red) var(--background);
scrollbar-width: thin; scrollbar-width: thin;
&::-webkit-scrollbar { &::-webkit-scrollbar {
background: var(--background); background: var(--background);
width: 6px; width: 6px;
} }
&::-webkit-scrollbar-thumb { background: var(--vrifox-red); } &::-webkit-scrollbar-thumb { background: var(--vriish-red); }
} }
html { html {
@ -47,7 +53,7 @@ h1, h2, h3, h4, h5, h6 {
a { a {
color: var(--text); color: var(--text);
text-decoration: underline; text-decoration: underline;
text-decoration-color: var(--vrifox-red); text-decoration-color: var(--vriish-red);
text-underline-offset: 3px; text-underline-offset: 3px;
transition: text-decoration-color .2s; transition: text-decoration-color .2s;
&:hover { text-decoration-color: var(--text); } &:hover { text-decoration-color: var(--text); }
@ -59,7 +65,7 @@ center {
} }
pre { pre {
border: 1px solid var(--vrifox-red); border: 1px solid var(--vriish-red);
border-radius: 4px; border-radius: 4px;
overflow: auto; overflow: auto;
padding: 10px 15px; padding: 10px 15px;
@ -99,7 +105,7 @@ header, footer {
text-decoration-thickness: 2px !important; text-decoration-thickness: 2px !important;
text-underline-offset: 6px; text-underline-offset: 6px;
margin: 0 15px; margin: 0 15px;
&:hover { text-decoration-color: var(--vrifox-red); } &:hover { text-decoration-color: var(--vriish-red); }
} }
} }
header { header {
@ -109,7 +115,7 @@ header {
font-size: 1em; font-size: 1em;
margin: 0; margin: 0;
a { a {
color: var(--vrifox-red); color: var(--vriish-red);
} }
} }
nav { nav {
@ -145,7 +151,7 @@ main {
animation: rainbow-swoosh; animation: rainbow-swoosh;
animation-duration: 30000s; animation-duration: 30000s;
animation-iteration-count: infinite; animation-iteration-count: infinite;
background-image: linear-gradient(135deg, #c940f9 14.29%, #ff1e00 14.29%, #ff1e00 28.57%, #ffa500 28.57%, #ffa500 42.86%, #ffe047 42.86%, #ffe047 57.14%, #67dc91 57.14%, #67dc91 71.43%, #67a1ed 71.43%, #67a1ed 85.71%, #c940f9 85.71%); background-image: linear-gradient(135deg, var(--purpur) 14.29%, var(--rose) 14.29%, var(--rose) 28.57%, var(--orange) 28.57%, var(--orange) 42.86%, var(--gold) 42.86%, var(--gold) 57.14%, var(--emerald) 57.14%, var(--emerald) 71.43%, var(--sky) 71.43%, var(--sky) 85.71%, var(--purpur) 85.71%);
background-clip: text; background-clip: text;
-webkit-background-clip: text; -webkit-background-clip: text;
color: transparent; color: transparent;