19 lines
329 B
CSS
19 lines
329 B
CSS
|
:root {
|
||
|
--accent: 250, 179, 135;
|
||
|
--accent-light: 250, 221, 201;
|
||
|
--accent-dark: 149, 106, 81;
|
||
|
--accent-gradient: linear-gradient(45deg, rgb(var(--accent)), rgb(var(--accent-light)) 30%, white 60%);
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
a:link {
|
||
|
color: #89b4fa
|
||
|
}
|
||
|
|
||
|
a:visited {
|
||
|
color: #b4befe
|
||
|
}
|
||
|
|
||
|
a:hover {
|
||
|
color: #89dceb
|
||
|
}
|