You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
576 B
CSS
30 lines
576 B
CSS
:root {
|
|
/* Vague palette
|
|
Pink -- #f887ff;
|
|
Red -- #de004e;
|
|
Dark Red -- #860029;
|
|
Purple -- #6629a3;
|
|
Dark Purple -- #29132e;
|
|
*/
|
|
|
|
--background: #000000; /* black */
|
|
--primary-color: #6629a3; /* purple */
|
|
--accent-color: #de004e; /* red */
|
|
--highlight-color: #f887ff; /* pink */
|
|
}
|
|
|
|
body {
|
|
background-color: #000;
|
|
color: var(--primary-color);
|
|
text-align: center;
|
|
}
|
|
|
|
a {color: var(--accent-color);}
|
|
|
|
a:hover {
|
|
color: var(--highlight-color);
|
|
text-decoration: none;
|
|
}
|
|
|
|
#logo {text-align: center;}
|