From 2272438e659a46a826b0cc5b5bc134eb241081ce Mon Sep 17 00:00:00 2001 From: LitoMore Date: Tue, 10 Mar 2026 14:40:38 +0800 Subject: [PATCH] docs: fix custom badge color (#1335) ### PR Checklist - [x] The PR title follows [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) - [x] Is this closing an open issue? If so, link it, else include a proper description of the changes and reason behind them. - [x] Does the PR have changes to the frontend? If so, include screenshots or a recording of the changes.
If it affect colors, please include screenshots/recording in both light and dark mode. - [x] Does the PR have changes to the backend? If so, make sure tests are added.
And if changing dababase queries, be sure you have ran `sqlx prepare` and committed the changes in the `.sqlx` directory. ### Description I made a typo in the previous PR https://github.com/jsr-io/jsr/pull/681. It should be `f7df1e` rather than `f7fd1e`. --- frontend/docs/badges.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/docs/badges.md b/frontend/docs/badges.md index 7991fc580..bd836033f 100644 --- a/frontend/docs/badges.md +++ b/frontend/docs/badges.md @@ -149,12 +149,12 @@ These badges can be customized by adding query parameters to the URL, for example: ``` -https://jsr.io/badges/@luca?logoColor=f7fd1e&color=f7fd1e&labelColor=083344 +https://jsr.io/badges/@luca?logoColor=f7df1e&color=f7df1e&labelColor=083344 ``` Here's how it looks: -[![JSR Scope](https://jsr.io/badges/@luca?logoColor=f7fd1e&color=f7fd1e&labelColor=083344)](https://jsr.io/@luca) +[![JSR Scope](https://jsr.io/badges/@luca?logoColor=f7df1e&color=f7df1e&labelColor=083344)](https://jsr.io/@luca) The supported style-related query parameters can be found in the [Shields.io documentation](https://shields.io/badges/endpoint-badge#:~:text=Query%20Parameters).