chore: blockquote colors + mock data

This commit is contained in:
Cory Dransfeldt 2024-02-11 08:46:52 -08:00
parent 645501e8ee
commit 747c18e9f5
No known key found for this signature in database
4 changed files with 11 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "5.6.0",
"version": "5.6.1",
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
"type": "module",
"scripts": {

View file

@ -2,6 +2,9 @@ export default [
{
"title": "This website is personal",
"author": "Frills",
"created_at":"2024-02-02T21:10:12.783499+00:00",
"updated_at":"2024-02-03T00:22:28.594852+00:00",
"published_date":1706832000000,
"tags": {
"tech": {
"name": "tech",
@ -26,6 +29,9 @@ export default [
"url": "https://read.readwise.io/read/01hp2d8dggjjmgjg8pjxvdwnpz",
"title": "The power to not",
"author": "neatnik.net",
"created_at": "2024-01-30T17:40:08.899912+00:00",
"updated_at": "2024-01-30T21:26:29.469528+00:00",
"published_date": 1706313600000,
"tags": {
"tech": {
"name": "tech",

View file

@ -27,7 +27,8 @@ blockquote {
font-size: var(--font-size-lg);
line-height: var(--line-height-lg);
padding-left: .875rem;
border-left: .25rem solid var(--text-color);
color: var(--gray-dark);
border-left: .25rem solid var(--gray-dark);
word-break: break-word;
}

View file

@ -39,6 +39,7 @@
--selection-color: var(--accent-color);
--gray-light: var(--gray-200);
--gray-lighter: var(--gray-50);
--gray-dark: var(--gray-700);
--brand-github: #333;
--brand-proton: #6d4aff;
@ -107,6 +108,7 @@
--accent-color-hover: var(--blue-200);
--gray-light: var(--gray-900);
--gray-lighter: var(--gray-950);
--gray-dark: var(--gray-300);
--brand-github: #f5f5f5;
}
}