From 2bc921c81607b358825ef3f4cb6175e4a56c61b9 Mon Sep 17 00:00:00 2001 From: Griffin Davidson <69946180+griffindavidson@users.noreply.github.com> Date: Wed, 8 Jan 2025 15:49:53 -0800 Subject: [PATCH] fixed theme colors not applying --- blog.html | 2 +- blog.js | 2 +- blog/mac-displays.html | 2 +- blog/mac-displays.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/blog.html b/blog.html index 9f57db3..2224d5a 100644 --- a/blog.html +++ b/blog.html @@ -6,7 +6,7 @@ - + diff --git a/blog.js b/blog.js index 8ee3bbb..5406ea4 100644 --- a/blog.js +++ b/blog.js @@ -51,7 +51,7 @@ function updateThemeColor() { metaThemeColor.setAttribute('content', '#121212'); // Dark mode theme color (black) } else { // Set theme color for light mode - metaThemeColor.setAttribute('content', '#eee'); // Light mode theme color (white) + metaThemeColor.setAttribute('content', '#eeeeee'); // Light mode theme color (white) } } diff --git a/blog/mac-displays.html b/blog/mac-displays.html index 60ecfda..5c2d0b6 100644 --- a/blog/mac-displays.html +++ b/blog/mac-displays.html @@ -11,7 +11,7 @@ - + diff --git a/blog/mac-displays.js b/blog/mac-displays.js index c08ed89..36ef8f0 100644 --- a/blog/mac-displays.js +++ b/blog/mac-displays.js @@ -7,7 +7,7 @@ function updateThemeColor() { metaThemeColor.setAttribute('content', '#121212'); // Dark mode theme color (black) } else { // Set theme color for light mode - metaThemeColor.setAttribute('content', '#eee'); // Light mode theme color (white) + metaThemeColor.setAttribute('content', '#eeeeee'); // Light mode theme color (white) } }