chore: cleanup

This commit is contained in:
Cory Dransfeldt 2024-09-05 15:10:49 -07:00
parent 058e0d5e32
commit eab2308793
No known key found for this signature in database
5 changed files with 9 additions and 13 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.7.0", "version": "24.7.1",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.7.0", "version": "24.7.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.5.0", "@cdransf/api-text": "^1.5.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.7.0", "version": "24.7.1",
"description": "The source for my personal site. Built using 11ty (and other tools).", "description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -1,6 +1,5 @@
:root { :root {
/* colors */ /* colors */
--blue-50: #eff5ff;
--blue-100: #e2ecff; --blue-100: #e2ecff;
--blue-200: #c5d8ff; --blue-200: #c5d8ff;
--blue-300: #a8c4ff; --blue-300: #a8c4ff;
@ -10,7 +9,6 @@
--blue-700: #2458d4; --blue-700: #2458d4;
--blue-800: #1d4bac; --blue-800: #1d4bac;
--blue-900: #1c3e91; --blue-900: #1c3e91;
--blue-950: #183275;
--gray-50: #f6f7f8; --gray-50: #f6f7f8;
--gray-100: #eceef1; --gray-100: #eceef1;
@ -23,7 +21,7 @@
--gray-800: #626d7f; --gray-800: #626d7f;
--gray-900: #545e71; --gray-900: #545e71;
--gray-950: #4a5365; --gray-950: #4a5365;
--gray-darkest: #1a1d22; --gray-1000: #1a1d22;
--white: #fff; --white: #fff;
--black: #000; --black: #000;
@ -34,7 +32,7 @@
/* base theme */ /* base theme */
--color-lightest: var(--gray-50); --color-lightest: var(--gray-50);
--color-darkest: var(--gray-darkest); --color-darkest: var(--gray-1000);
--text-color: var(--color-darkest); --text-color: var(--color-darkest);
--background-color: var(--color-lightest); --background-color: var(--color-lightest);
--text-color-inverted: var(--color-lightest); --text-color-inverted: var(--color-lightest);

View file

@ -34,7 +34,6 @@
--font-mono: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, ui-monospace, monospace; --font-mono: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, ui-monospace, monospace;
--blue-50: #eff5ff;
--blue-100: #e2ecff; --blue-100: #e2ecff;
--blue-200: #c5d8ff; --blue-200: #c5d8ff;
--blue-300: #a8c4ff; --blue-300: #a8c4ff;
@ -44,7 +43,6 @@
--blue-700: #2458d4; --blue-700: #2458d4;
--blue-800: #1d4bac; --blue-800: #1d4bac;
--blue-900: #1c3e91; --blue-900: #1c3e91;
--blue-950: #183275;
--gray-50: #f6f7f8; --gray-50: #f6f7f8;
--gray-100: #eceef1; --gray-100: #eceef1;
@ -57,7 +55,7 @@
--gray-800: #626d7f; --gray-800: #626d7f;
--gray-900: #545e71; --gray-900: #545e71;
--gray-950: #4a5365; --gray-950: #4a5365;
--gray-darkest: #1a1d22; --gray-1000: #1a1d22;
--white: #fff; --white: #fff;
--black: #000; --black: #000;
@ -69,7 +67,7 @@
--accent-color: var(--blue-600); --accent-color: var(--blue-600);
--accent-color-hover: var(--blue-800); --accent-color-hover: var(--blue-800);
--color-lightest: var(--gray-50); --color-lightest: var(--gray-50);
--color-darkest: var(--gray-darkest); --color-darkest: var(--gray-1000);
--text-color: var(--color-darkest); --text-color: var(--color-darkest);
--background-color: var(--color-lightest); --background-color: var(--color-lightest);

View file

@ -19,14 +19,14 @@ pre[class*="language-"] {
padding: var(--spacing-lg); padding: var(--spacing-lg);
margin: var(--sizing-xl) 0; margin: var(--sizing-xl) 0;
overflow: auto; overflow: auto;
background: var(--gray-darkest); background: var(--gray-1000);
border: 1px solid var(--gray-200); border: 1px solid var(--gray-200);
} }
:not(pre) > code[class*="language-"] { :not(pre) > code[class*="language-"] {
padding: var(--spacing-xs); padding: var(--spacing-xs);
white-space: normal; white-space: normal;
background: var(--gray-darkest); background: var(--gray-1000);
border-radius: var(--border-radius-slight); border-radius: var(--border-radius-slight);
} }