Skip to content

Commit cb8852f

Browse files
committed
feat: update section card colors to match completion badge theme
1 parent 410833e commit cb8852f

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/config/sections.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@ export const sections = {
88
id: "css",
99
title: "CSS",
1010
description: "Styling, layout, and animations",
11-
color: "#264de4",
11+
color: "#7c4dff",
1212
order: 1
1313
},
1414
html: {
1515
id: "html",
1616
title: "HTML",
1717
description: "Semantic markup and native elements",
18-
color: "#e34c26",
18+
color: "#9b59b6",
1919
order: 2
2020
},
2121
tailwind: {
2222
id: "tailwind",
2323
title: "Tailwind CSS",
2424
description: "Utility-first CSS framework",
25-
color: "#06b6d4",
25+
color: "#00bcd4",
2626
order: 3
2727
}
2828
};

src/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,19 +139,19 @@ <h3 data-i18n="landingBenefit3Title">Master Real Skills</h3>
139139
<h2 data-i18n="landingPathsTitle">Explore Learning Paths</h2>
140140
<div class="section-cards" id="section-cards">
141141
<a href="#css" class="section-card" data-section="css">
142-
<div class="section-card-icon" style="background: #264de4">CSS</div>
142+
<div class="section-card-icon" style="background: #7c4dff">CSS</div>
143143
<h3>CSS</h3>
144144
<p data-i18n="landingCssDesc">Styling, layout, and animations</p>
145145
<span class="section-card-progress" id="css-progress"></span>
146146
</a>
147147
<a href="#html" class="section-card" data-section="html">
148-
<div class="section-card-icon" style="background: #e34c26">HTML</div>
148+
<div class="section-card-icon" style="background: #9b59b6">HTML</div>
149149
<h3>HTML</h3>
150150
<p data-i18n="landingHtmlDesc">Semantic markup and native elements</p>
151151
<span class="section-card-progress" id="html-progress"></span>
152152
</a>
153153
<a href="#tailwind" class="section-card" data-section="tailwind">
154-
<div class="section-card-icon" style="background: #06b6d4">TW</div>
154+
<div class="section-card-icon" style="background: #00bcd4">TW</div>
155155
<h3>Tailwind CSS</h3>
156156
<p data-i18n="landingTailwindDesc">Utility-first CSS framework</p>
157157
<span class="section-card-progress" id="tailwind-progress"></span>

0 commit comments

Comments
 (0)