25 lines
No EOL
442 B
CSS
25 lines
No EOL
442 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%);
|
|
|
|
--accent-color: #fab387;
|
|
--other-accent: #f5a97f;
|
|
--gray: #6e738d;
|
|
--overlay: #c6d0f5;
|
|
|
|
color: white;
|
|
}
|
|
|
|
a:link {
|
|
color: #89b4fa
|
|
}
|
|
|
|
a:visited {
|
|
color: #b4befe
|
|
}
|
|
|
|
a:hover {
|
|
color: #89dceb
|
|
} |