2024-06-27 21:30:56 +00:00
|
|
|
|
|
|
|
:root {
|
|
|
|
/* ByeCorps colour scheme. Use sparsely on this site. */
|
|
|
|
--byecorps-blue: #1b5652;
|
|
|
|
--byecorps-white: #e6feff;
|
|
|
|
|
|
|
|
/* ByeCorps ID colour scheme. Use on this site. */
|
|
|
|
--black-bean: #330f0a;
|
|
|
|
--dark-slate-gray: #394f49;
|
|
|
|
--fern-green: #65743a;
|
|
|
|
--flax: #efdd8d;
|
|
|
|
--mindaro: #f4fdaf;
|
2024-07-01 21:15:51 +00:00
|
|
|
|
|
|
|
--grey-5: #adb5bd;
|
|
|
|
|
|
|
|
--red-2: #ffc9c9;
|
|
|
|
--red-3: #ffa8a8;
|
|
|
|
--red-7: #f03e3e;
|
|
|
|
--red-9: #c92a2a;
|
|
|
|
|
|
|
|
--link-fg: var(--dark-slate-gray);
|
|
|
|
--error-fg: var(--red-9);
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (prefers-color-scheme: dark) {
|
|
|
|
:root {
|
|
|
|
--link-fg: var(--flax);
|
|
|
|
--error-fg: var(--red-3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.error-fg {
|
|
|
|
color: var(--error-fg);
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: var(--link-fg);
|
2024-06-27 21:30:56 +00:00
|
|
|
}
|