rebranding from liquidex.house to riki.house

This commit is contained in:
りき萌 2025-01-05 20:15:10 +01:00
parent 93c24859d0
commit 2d687977c8
87 changed files with 381 additions and 175 deletions

View file

@ -1,42 +1,38 @@
/* Color scheme. */
:root {
/* naturally */
--liquidex-brand-blue: #058ef0;
/* but also: */
--liquidex-brand-red: #eb134a;
--liquidex-brand-yellow: #ffc31f;
--liquidex-brand-green: #06ca4a;
--accent-red: #fb4c9e;
--accent-yellow: #ffac0c;
--accent-green: #0dd292;
--accent-blue: #0577f0;
--accent-purple: #c952f5;
--accent-pink: #ffa8f3;
--text-color-light: #55423e;
--link-color-light: #004ec8;
--link-color-visited-light: #6c2380;
--background-color: rgb(255, 253, 246);
--background-color-tooltip: rgb(226, 223, 214);
--text-color: #55423e;
--background-color: #faeaff;
--background-color-tooltip: color-mix(
in lab,
var(--background-color),
var(--shading-base) 10%
);
--text-color: #302859;
--link-color: #004ec8;
--link-color-visited: #6c2380;
--shaded-background: rgba(0, 0, 0, 5%);
--border-1: rgba(0, 0, 0, 15%);
--border-2: rgba(0, 0, 0, 30%);
--hover: rgba(0, 0, 0, 15%);
--shading-base: #592782;
--shaded-background: rgb(from var(--shading-base) r g b / 5%);
--border-1: rgb(from var(--shading-base) r g b / 15%);
--border-2: rgb(from var(--shading-base) r g b / 30%);
}
@media (prefers-color-scheme: dark) {
:root {
--background-color: rgb(30, 40, 53);
--background-color-tooltip: rgb(23, 31, 41);
--text-color: #d7cdbf;
--background-color: rgb(31, 30, 53);
--text-color: #f7ece5;
--link-color: #93cce8;
--link-color-visited: #f7afde;
--shaded-background: #f7e5df0c;
--border-0: #f7e5df1a;
--border-1: #f7e5df26;
--border-1-and-a-half: #f7e5df3a;
--border-2: #f7e5df4d;
--shading-base: #e4d2ff;
}
}