fix: desaturate section colors for better readability and add section progress bars

This commit is contained in:
2026-01-16 03:58:31 +01:00
parent a98357c713
commit 10354f1b57
3 changed files with 85 additions and 72 deletions

View File

@@ -8,21 +8,21 @@ export const sections = {
id: "css",
title: "CSS",
description: "Styling, layout, and animations",
color: "#7c4dff",
color: "#7b68a6",
order: 1
},
html: {
id: "html",
title: "HTML",
description: "Semantic markup and native elements",
color: "#e91e63",
color: "#c75b7a",
order: 2
},
tailwind: {
id: "tailwind",
title: "Tailwind CSS",
description: "Utility-first CSS framework",
color: "#00bcd4",
color: "#4a9ea8",
order: 3
}
};