From 1480b279241b9b6dab76a89aff0068f175ff29a9 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 20 Feb 2024 12:28:00 -0800 Subject: [PATCH] fix: post graph colors --- .eleventy.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.eleventy.js b/.eleventy.js index b8bed34c..39c5c636 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -35,10 +35,10 @@ export default async function (eleventyConfig) { eleventyConfig.addPlugin(syntaxHighlight) eleventyConfig.addPlugin(tablerIcons) eleventyConfig.addPlugin(postGraph, { - boxColorLight: '#e5e7eb', + boxColorLight: '#d9dee4', highlightColorLight: '#2563eb', textColorLight: '#1f2937', - boxColorDark: '#374151', + boxColorDark: '#4b515d', highlightColorDark: '#60a5fa', textColorDark: '#fff', })