Simplified color handling

This commit is contained in:
quest 2022-09-13 21:22:50 -10:00
parent 6406e4262c
commit 89a5bc6c96
No known key found for this signature in database
GPG Key ID: E49B7E0000228DDD
32 changed files with 20 additions and 48 deletions

View File

@ -3,6 +3,4 @@
:root { :root {
--accent: #23B0FF; --accent: #23B0FF;
--background: color-mod(var(--accent) blend(#1D1E28 98%)); --background: color-mod(var(--accent) blend(#1D1E28 98%));
--color: white;
--border-color: rgba(255, 255, 255, .1);
} }

View File

@ -3,6 +3,4 @@
:root { :root {
--accent: #23B0FF; --accent: #23B0FF;
--background: color-mod(var(--accent) blend(#1D1E28 98%)); --background: color-mod(var(--accent) blend(#1D1E28 98%));
--color: white;
--border-color: rgba(255, 255, 255, .1);
} }

View File

@ -3,6 +3,4 @@
:root { :root {
--accent: #78E2A0; --accent: #78E2A0;
--background: color-mod(var(--accent) blend(#1D1E28 98%)); --background: color-mod(var(--accent) blend(#1D1E28 98%));
--color: white;
--border-color: rgba(255, 255, 255, .1);
} }

View File

@ -3,6 +3,4 @@
:root { :root {
--accent: #78E2A0; --accent: #78E2A0;
--background: color-mod(var(--accent) blend(#1D1E28 98%)); --background: color-mod(var(--accent) blend(#1D1E28 98%));
--color: white;
--border-color: rgba(255, 255, 255, .1);
} }

View File

@ -3,6 +3,4 @@
:root { :root {
--accent: lightgrey; --accent: lightgrey;
--background: color-mod(var(--accent) blend(#1D1E28 98%)); --background: color-mod(var(--accent) blend(#1D1E28 98%));
--color: white;
--border-color: rgba(255, 255, 255, .1);
} }

View File

@ -3,6 +3,4 @@
:root { :root {
--accent: lightgrey; --accent: lightgrey;
--background: color-mod(var(--accent) blend(#1D1E28 98%)); --background: color-mod(var(--accent) blend(#1D1E28 98%));
--color: white;
--border-color: rgba(255, 255, 255, .1);
} }

View File

@ -3,6 +3,4 @@
:root { :root {
--accent: #FFA86A; --accent: #FFA86A;
--background: color-mod(var(--accent) blend(#1D1E28 98%)); --background: color-mod(var(--accent) blend(#1D1E28 98%));
--color: white;
--border-color: rgba(255, 255, 255, .1);
} }

View File

@ -3,6 +3,4 @@
:root { :root {
--accent: #FFA86A; --accent: #FFA86A;
--background: color-mod(var(--accent) blend(#1D1E28 98%)); --background: color-mod(var(--accent) blend(#1D1E28 98%));
--color: white;
--border-color: rgba(255, 255, 255, .1);
} }

View File

@ -3,6 +3,4 @@
:root { :root {
--accent: #EE72F1; --accent: #EE72F1;
--background: color-mod(var(--accent) blend(#1D1E28 98%)); --background: color-mod(var(--accent) blend(#1D1E28 98%));
--color: white;
--border-color: rgba(255, 255, 255, .1);
} }

View File

@ -3,6 +3,4 @@
:root { :root {
--accent: #EE72F1; --accent: #EE72F1;
--background: color-mod(var(--accent) blend(#1D1E28 98%)); --background: color-mod(var(--accent) blend(#1D1E28 98%));
--color: white;
--border-color: rgba(255, 255, 255, .1);
} }

View File

@ -3,6 +3,4 @@
:root { :root {
--accent: #FF6266; --accent: #FF6266;
--background: color-mod(var(--accent) blend(#1D1E28 98%)); --background: color-mod(var(--accent) blend(#1D1E28 98%));
--color: white;
--border-color: rgba(255, 255, 255, .1);
} }

View File

@ -3,6 +3,4 @@
:root { :root {
--accent: #FF6266; --accent: #FF6266;
--background: color-mod(var(--accent) blend(#1D1E28 98%)); --background: color-mod(var(--accent) blend(#1D1E28 98%));
--color: white;
--border-color: rgba(255, 255, 255, .1);
} }

View File

@ -3,6 +3,4 @@
:root { :root {
--accent: #ffe658; --accent: #ffe658;
--background: color-mod(var(--accent) blend(#1D1E28 98%)); --background: color-mod(var(--accent) blend(#1D1E28 98%));
--color: white;
--border-color: rgba(255, 255, 255, .1);
} }

View File

@ -3,6 +3,4 @@
:root { :root {
--accent: #ffe658; --accent: #ffe658;
--background: color-mod(var(--accent) blend(#1D1E28 98%)); --background: color-mod(var(--accent) blend(#1D1E28 98%));
--color: white;
--border-color: rgba(255, 255, 255, .1);
} }

View File

@ -16,10 +16,7 @@
font-display: swap; font-display: swap;
} }
body { body,
font-family: 'Fira Code', Monaco, Consolas, Ubuntu Mono, monospace;
}
code, code,
kbd { kbd {
font-family: 'Fira Code', Monaco, Consolas, Ubuntu Mono, monospace !important; font-family: 'Fira Code', Monaco, Consolas, Ubuntu Mono, monospace !important;

View File

@ -1,4 +1,7 @@
:root { :root {
--color: white;
--border-color: rgba(255, 255, 255, .1);
/* variables for js, must be the same as these in @custom-media queries */ /* variables for js, must be the same as these in @custom-media queries */
--phoneWidth: (max-width: 684px); --phoneWidth: (max-width: 684px);
--tabletWidth: (max-width: 900px); --tabletWidth: (max-width: 900px);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long