Skip to content

Commit 885fce2

Browse files
committed
fix: Remove logoColor parameter from badge links for consistency in README and Markdown generation
1 parent 039a09c commit 885fce2

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

README.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,6 @@ export GITHUB_TOKEN=$(gh auth token)
9999

100100
<div align="center">
101101

102-
# 📊 Git Insights Dashboard
103-
104102
[![Profile Stats](https://img.shields.io/badge/Git-Insights-blueviolet?style=for-the-badge&logo=github)](https://github.com/awcodify/GitInsights)
105103

106104
</div>
@@ -178,12 +176,12 @@ export GITHUB_TOKEN=$(gh auth token)
178176

179177
<div align="center">
180178

181-
![JavaScript](https://img.shields.io/badge/JavaScript-87.6%25-blue?style=flat-square&logo=javascript&logoColor=white)
182-
![TypeScript](https://img.shields.io/badge/TypeScript-5.1%25-blue?style=flat-square&logo=typescript&logoColor=white)
183-
![SCSS](https://img.shields.io/badge/SCSS-2.0%25-blue?style=flat-square&logo=sass&logoColor=white)
179+
![JavaScript](https://img.shields.io/badge/JavaScript-87.6%25-blue?style=flat-square&logo=javascript)
180+
![TypeScript](https://img.shields.io/badge/TypeScript-5.1%25-blue?style=flat-square&logo=typescript)
181+
![SCSS](https://img.shields.io/badge/SCSS-2.0%25-blue?style=flat-square&logo=sass)
184182

185-
![Go](https://img.shields.io/badge/Go-1.7%25-blue?style=flat-square&logo=go&logoColor=white)
186-
![HTML](https://img.shields.io/badge/HTML-1.2%25-blue?style=flat-square&logo=html5&logoColor=white)
183+
![Go](https://img.shields.io/badge/Go-1.7%25-blue?style=flat-square&logo=go)
184+
![HTML](https://img.shields.io/badge/HTML-1.2%25-blue?style=flat-square&logo=html5)
187185

188186
</div>
189187

@@ -210,7 +208,7 @@ export GITHUB_TOKEN=$(gh auth token)
210208

211209
<div align="center">
212210

213-
<sub>📅 Last updated: Thursday, October 30, 2025 at 9:18 AM</sub>
211+
<sub>📅 Last updated: Thursday, October 30, 2025 at 9:20 AM</sub>
214212

215213
<sub>⚡ Generated with [GitInsights](https://github.com/awcodify/GitInsights)</sub>
216214

presentation/markdown_generator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ func (m *MarkdownGenerator) Generate(stats *domain.ProfileStats) string {
136136
break
137137
}
138138

139-
lines = append(lines, fmt.Sprintf("![%s](https://img.shields.io/badge/%s-%.1f%%25-blue?style=flat-square&logo=%s&logoColor=white)",
139+
lines = append(lines, fmt.Sprintf("![%s](https://img.shields.io/badge/%s-%.1f%%25-blue?style=flat-square&logo=%s)",
140140
lang.Language,
141141
strings.ReplaceAll(lang.Language, " ", "_"),
142142
lang.Percentage,

0 commit comments

Comments
 (0)