diff --git a/README.md b/README.md
index db94e7e..842bf70 100644
--- a/README.md
+++ b/README.md
@@ -34,9 +34,9 @@ The webpage offers a variety of features including a blog, bookmarks, ways to re
| Dark Olive Green Text | ![#2E4033](https://via.placeholder.com/10/2E4033?text=+) `#2E4033` |
| Sage Green Secondary Text | ![#5F7A6D](https://via.placeholder.com/10/5F7A6D?text=+) `#5F7A6D` |
| Mint Green Accents | ![#88A597](https://via.placeholder.com/10/88A597?text=+) `#88A597` |
-| Mint Green Accents (for hover states) | ![#88A597](https://via.placeholder.com/10/88A597?text=+) `#88A597` |
-| Darker Moss Green Links | ![#3B6656](https://via.placeholder.com/10/3B6656?text=+) `#3B6656` |
-| Light Mint Blockquote | ![#CCE3CC](https://via.placeholder.com/10/CCE3CC?text=+) `#CCE3CC` |
+| Dark Mint Green | ![#789085](https://via.placeholder.com/10/789085?text=+) `#789085` |
+| Spring Green | ![#00CC6A](https://via.placeholder.com/10/00CC6A?text=+) `#00CC6A` |
+| Light Mint | ![#CCE3CC](https://via.placeholder.com/10/CCE3CC?text=+) `#CCE3CC` |
### Dark mode
diff --git a/src/components/Footer.astro b/src/components/Footer.astro
index 1770f5a..a9bd2a5 100644
--- a/src/components/Footer.astro
+++ b/src/components/Footer.astro
@@ -10,8 +10,8 @@ const today = new Date();
const updateSvgForTheme = () => {
const currentTheme = document.documentElement.classList.contains("dark") ? "dark" : "light";
- const strokeColor = currentTheme === "dark" ? "#89b4fa" : "#3B6656";
- const hoverColor = currentTheme === "dark" ? "#b4c0f4" : "#88A597";
+ const strokeColor = currentTheme === "dark" ? "#89b4fa" : "#00CC6A";
+ const hoverColor = currentTheme === "dark" ? "#b4c0f4" : "#789085";
const addHoverEffect = (svg, strokeOrFill) => {
const paths = svg.querySelectorAll("path");
@@ -55,15 +55,15 @@ const today = new Date();