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",
"version": "24.7.0",
"version": "24.7.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "coryd.dev",
"version": "24.7.0",
"version": "24.7.1",
"license": "MIT",
"dependencies": {
"@cdransf/api-text": "^1.5.0",

View file

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

View file

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

View file

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