From f732243f8ffe27daaa83df22dc6f8ec580072055 Mon Sep 17 00:00:00 2001 From: martin-mfg <2026226+martin-mfg@users.noreply.github.com> Date: Sun, 23 Aug 2026 20:57:23 +0200 Subject: [PATCH 01/15] Revert "intermediate fix for docs (#507)" This reverts commit 8c78a825b553702077a4e55cf28269440cedf544. --- .github/CONTRIBUTING.md | 8 +- README.md | 6 +- docs/advanced_documentation.md | 752 ----------------------------- docs/deploy.md | 204 -------- docs/fork.md | 98 ---- docs/frontend-screenshot.png | Bin 107178 -> 0 bytes packages/core/src/themes/README.md | 226 --------- 7 files changed, 7 insertions(+), 1287 deletions(-) delete mode 100644 docs/advanced_documentation.md delete mode 100644 docs/deploy.md delete mode 100644 docs/fork.md delete mode 100644 docs/frontend-screenshot.png delete mode 100644 packages/core/src/themes/README.md diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 85092a33e4865..1c8ef1cbe3e83 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -19,13 +19,13 @@ root-relative path (`/api?username=...`), so those images only load with the bac pnpm run dev:backend # card endpoints on :9000, proxied by the frontend dev server ``` -It needs a [Personal Access Token](../docs/deploy.md#first-step-get-your-personal-access-token-pat) in `apps/backend/.env` (the SQL database is optional): +It needs a [Personal Access Token](https://github-stats-extended.vercel.app/frontend/docs/deploy/#first-step-get-your-personal-access-token-pat) in `apps/backend/.env` (the SQL database is optional): ``` PAT_1=your_token_here ``` -You can also deploy to Vercel and test there, as described in the [deployment guide](../docs/deploy.md). +You can also deploy to Vercel and test there, as described in the [deployment guide](https://github-stats-extended.vercel.app/frontend/docs/deploy/). ## Tests @@ -61,11 +61,11 @@ Never edit the generated files by hand — change the `.graphql` file and regene ## Themes Contribution -We have stopped the addition of new themes to decrease maintenance efforts. If you are considering contributing your theme just because you are using it personally, then instead of adding it to our theme collection, you can use card [customization options](../docs/advanced_documentation.md#customization). +We have stopped the addition of new themes to decrease maintenance efforts. If you are considering contributing your theme just because you are using it personally, then instead of adding it to our theme collection, you can use card [customization options](https://github-stats-extended.vercel.app/frontend/docs/customization/common-options/). ## Translations Contribution -GitHub-Stats-Extended supports multiple languages. If we are missing your language, you can contribute it! You can check the currently supported languages [here](../docs/advanced_documentation.md#available-locales). +GitHub-Stats-Extended supports multiple languages. If we are missing your language, you can contribute it! You can check the currently supported languages [here](https://github-stats-extended.vercel.app/frontend/docs/customization/locales/). To contribute your language you need to edit the [packages/core/src/translations.ts](../packages/core/src/translations.ts) file and add a new property to each object where the key is the language code in [ISO 639-1 standard](https://www.andiamo.co.uk/resources/iso-language-codes/) and the value is the translated string. diff --git a/README.md b/README.md index c4006cf2444d8..1e716680ca4af 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ -GitHub-Stats-Extended is the [extended, actively maintained successor](docs/fork.md) of [github-readme-stats](https://github.com/anuraghazra/github-readme-stats). It generates [various stats cards](#card-types) about your GitHub contributions, your top languages and more. You can [customize](#documentation) the cards via multiple parameters. +GitHub-Stats-Extended is the [extended, actively maintained successor](https://github-stats-extended.vercel.app/frontend/docs/fork/) of [github-readme-stats](https://github.com/anuraghazra/github-readme-stats). It generates [various stats cards](#card-types) about your GitHub contributions, your top languages and more. You can [customize](#documentation) the cards via multiple parameters. ## Table of Contents @@ -35,7 +35,7 @@ To migrate from [github-readme-stats](https://github.com/anuraghazra/github-read + https://github-stats-extended.vercel.app/api?username=octocat&theme=radical ``` -GitHub-Stats-Extended aims to be fully compatible with github-readme-stats. For details see [Compatibility Notes](docs/fork.md#compatibility-notes). +GitHub-Stats-Extended aims to be fully compatible with github-readme-stats. For details see [Compatibility Notes](https://github-stats-extended.vercel.app/frontend/docs/fork/#compatibility-notes). ## Card Types @@ -65,7 +65,7 @@ GitHub-Stats-Extended aims to be fully compatible with github-readme-stats. For ## Documentation -The [card wizard](https://github-stats-extended.vercel.app/frontend) offers some essential customization options. For more advanced customization and other project info check out the [advanced documentation](docs/advanced_documentation.md). +The [card wizard](https://github-stats-extended.vercel.app/frontend) offers some essential customization options. For more advanced customization and other project info check out the [documentation](https://github-stats-extended.vercel.app/frontend/docs/cards/stats/). ## Acknowledgements diff --git a/docs/advanced_documentation.md b/docs/advanced_documentation.md deleted file mode 100644 index 01d2acb36f522..0000000000000 --- a/docs/advanced_documentation.md +++ /dev/null @@ -1,752 +0,0 @@ -# Advanced Customization - -## Table of Contents - -- [GitHub Stats Card](#github-stats-card) -- [GitHub Extra Pins](#github-extra-pins) -- [GitHub Gist Pins](#github-gist-pins) -- [Top Languages Card](#top-languages-card) -- [WakaTime Stats Card](#wakatime-stats-card) -- [All Demos](#all-demos) -- [Quick Tip (Align The Cards)](#quick-tip-align-the-cards) - -## GitHub Stats Card - -> [!WARNING] -> By default, the stats card only shows statistics like stars, commits, and pull requests from public repositories. To show private statistics on the stats card, [allow GitHub-Stats-Extended to access your private contributions](fork.md#private-contributions-support) or [deploy your own instance](deploy.md). - -> [!NOTE] -> Available ranks are S (top 1%), A+ (12.5%), A (25%), A- (37.5%), B+ (50%), B (62.5%), B- (75%), C+ (87.5%) and C (everyone). This ranking scheme is based on the [Japanese academic grading](https://wikipedia.org/wiki/Academic_grading_in_Japan) system. The global percentile is calculated as a weighted sum of percentiles for each statistic (number of commits, pull requests, reviews, issues, stars, and followers), based on the cumulative distribution function of the [exponential](https://wikipedia.org/wiki/exponential_distribution) and the [log-normal](https://wikipedia.org/wiki/Log-normal_distribution) distributions. The implementation can be investigated at [calculateRank.ts](https://github.com/stats-organization/github-stats-extended/blob/master/packages/core/src/calculateRank.ts). The circle around the rank shows 100 minus the global percentile. - -### Hiding individual stats - -You can pass a query parameter `&hide=` to hide any specific stats with comma-separated values. - -> Options: `&hide=stars,commits,prs,issues,contribs` - -```md -![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&hide=contribs,prs) -``` - -### Showing additional individual stats - -You can pass a query parameter `&show=` to show any specific additional stats with comma-separated values. - -> Options: `&show=reviews,discussions_started,discussions_answered,prs_merged,prs_merged_percentage,prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented` - -```md -![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show=reviews,discussions_started,discussions_answered,prs_merged,prs_merged_percentage,prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented) -``` - -### Showing icons - -To enable icons, you can pass `&show_icons=true` in the query param, like so: - -```md -![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true) -``` - -### Filtering by repository and owner - -To compute your stats for only a specific repository, you can pass a query parameter `&repo=/`. You can also specify a comma-separated list of multiple repositories, e.g. `&repo=userA/repositoryA,organizationB/repositoryB`. And you can select all repositories owned by specific organizations or users by providing a comma-separated list of owners via the `owner` query parameter, e.g. `&owner=userA,organizationB,organizationC`. The `repo` and `owner` filters are supported by the following items: `commits` (when used with `&include_all_commits=true`), `prs_authored`, `prs_commented`, `prs_reviewed`, `issues_authored` and `issues_commented`. Note that most of these items are not displayed by default, but [you can enable them individually](#showing-additional-individual-stats). - -(Some of these mentioned items are similar to other items which are included by default, e.g. `issues_authored` is similar to `issues`. The difference is how these values are fetched - [via GraphQL or via REST API](https://github.com/anuraghazra/github-readme-stats/discussions/1770#number-of-commits-is-incorrect). The default items use GraphQL, but filtering by repository works better via REST API.) - -Alternatively, you can use the `role` parameter to specify a comma-separated list of [roles](https://docs.github.com/en/graphql/reference/enums#repositoryaffiliation). The stats will include all repositories in which the user has the specified role. By default, only repositories where the user is OWNER will be included, but you could e.g. set `&role=OWNER,ORGANIZATION_MEMBER,COLLABORATOR`. The `role` parameter is supported by all items except the following: `commits` (when used with `&include_all_commits=true`), `prs_authored`, `prs_commented`, `prs_reviewed`, `issues_authored` and `issues_commented`. - -### Showing commits count for specified year - -You can specify a year and fetch only the commits that were made in that year by passing `&commits_year=YYYY` to the parameter. - -```md -![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&commits_year=2020) -``` - -### Themes - -With inbuilt themes, you can customize the look of the card without doing any [manual customization](#customization). - -Use `&theme=THEME_NAME` parameter like so : - -```md -![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=radical) -``` - -#### All inbuilt themes - -GitHub Stats Extended comes with several built-in themes (e.g. `dark`, `radical`, `merko`, `gruvbox`, `tokyonight`, `onedark`, `cobalt`, `synthwave`, `highcontrast`, `dracula`). - -GitHub Stats Extended Themes - -You can look at a preview for [all available themes](../packages/core/src/themes/README.md) or checkout the [theme config file](../packages/core/src/themes/index.ts). Please note that we paused the addition of new themes to decrease maintenance efforts; all pull requests related to new themes will be closed. - -#### Responsive Card Theme - -[![Anurag's GitHub stats-Dark](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=dark#gh-dark-mode-only)](https://github.com/stats-organization/github-stats-extended#responsive-card-theme#gh-dark-mode-only) -[![Anurag's GitHub stats-Light](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=default#gh-light-mode-only)](https://github.com/stats-organization/github-stats-extended#responsive-card-theme#gh-light-mode-only) - -Since GitHub will re-upload the cards and serve them from their [CDN](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/about-anonymized-urls), we can not infer the browser/GitHub theme on the server side. There are, however, four methods you can use to create dynamics themes on the client side. - -##### Use GitHub's new media feature (recommended) - -You can use [GitHub's new media feature](https://github.blog/changelog/2022-05-19-specify-theme-context-for-images-in-markdown-beta/) in HTML to specify whether to display images for light or dark themes. This is done using the HTML `` element in combination with the `prefers-color-scheme` media feature. - - -```html - - - - - -``` - -
-:eyes: Show example - - - - - - - -
- -##### Use GitHub's theme context tag - -You can use [GitHub's theme context](https://github.blog/changelog/2021-11-24-specify-theme-context-for-images-in-markdown/) tags to switch the theme based on the user GitHub theme automatically. This is done by appending `#gh-dark-mode-only` or `#gh-light-mode-only` to the end of an image URL. This tag will define whether the image specified in the markdown is only shown to viewers using a light or a dark GitHub theme: - -```md -[![Anurag's GitHub stats-Dark](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=dark#gh-dark-mode-only)](https://github.com/stats-organization/github-stats-extended#gh-dark-mode-only) -[![Anurag's GitHub stats-Light](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=default#gh-light-mode-only)](https://github.com/stats-organization/github-stats-extended#gh-light-mode-only) -``` - -
-:eyes: Show example - -[![Anurag's GitHub stats-Dark](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=dark#gh-dark-mode-only)](https://github.com/stats-organization/github-stats-extended#gh-dark-mode-only) -[![Anurag's GitHub stats-Light](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=default#gh-light-mode-only)](https://github.com/stats-organization/github-stats-extended#gh-light-mode-only) - -
- -##### Use the transparent theme - -We have included a `transparent` theme that has a transparent background. This theme is optimized to look good on GitHub's dark and light default themes. You can enable this theme using the `&theme=transparent` parameter like so: - -```md -![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=transparent) -``` - -
-:eyes: Show example - -![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=transparent) - -
- -##### Add transparent alpha channel to a themes bg\_color - -You can use the `bg_color` parameter to make any of [the available themes](../packages/core/src/themes/README.md) transparent. This is done by setting the `bg_color` to a color with a transparent alpha channel (i.e. `bg_color=00000000`): - -```md -![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&bg_color=00000000) -``` - -
-:eyes: Show example - -![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&bg_color=00000000) - -
- -### Customization - -You can customize the appearance of all your cards however you wish with URL parameters. - -#### Common Options - -| Name | Description | Type | Default value | -| --------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------- | ------------- | -| `title_color` | Card's title color. | string (hex color) | `2f80ed` | -| `text_color` | Body text color. | string (hex color) | `434d58` | -| `icon_color` | Icons color if available. | string (hex color) | `4c71f2` | -| `border_color` | Card's border color. Does not apply when `hide_border` is enabled. | string (hex color) | `e4e2e2` | -| `bg_color` | Card's background color. | string (hex color or a gradient in the form of _angle,start,end_) | `fffefe` | -| `hide_border` | Hides the card's border. | boolean | `false` | -| `theme` | Name of the theme, choose from [all available themes](../packages/core/src/themes/README.md). | enum | `default` | -| `cache_seconds` | Sets the cache header manually (min: 21600, max: 86400). | integer | `21600` | -| `locale` | Sets the language in the card, you can check full list of available locales [here](#available-locales). | enum | `en` | -| `border_radius` | Corner rounding on the card. | number | `4.5` | - -> [!WARNING] -> We use caching to decrease the load on our servers (see ). Cards generated by [https://github-stats-extended.vercel.app/](https://github-stats-extended.vercel.app/frontend) are cached for a few hours or days, depending on server load. If you want the data on your cards to be updated more often you can [deploy your own instance](deploy.md) and set [environment variable](deploy.md#available-environment-variables) `CACHE_SECONDS` to a value of your choosing. Or you can use the [GitHub Action workflow](https://github.com/stats-organization/github-readme-stats-action). - -##### Gradient in bg\_color - -You can provide multiple comma-separated values in the bg\_color option to render a gradient with the following format: - - &bg_color=DEG,COLOR1,COLOR2,COLOR3...COLOR10 - -##### Available locales - -Here is a list of all available locales: - - - -
- -| Code | Locale | -| ------- | ---------------- | -| `ar` | Arabic | -| `az` | Azerbaijani | -| `be` | Belarusian | -| `bn` | Bengali | -| `bg` | Bulgarian | -| `my` | Burmese | -| `ca` | Catalan | -| `cn` | Chinese | -| `zh-tw` | Chinese (Taiwan) | -| `cs` | Czech | -| `nl` | Dutch | -| `en` | English | -| `fil` | Filipino | -| `fi` | Finnish | -| `fr` | French | -| `de` | German | - - - -| Code | Locale | -| ------- | --------------------- | -| `el` | Greek | -| `he` | Hebrew | -| `hi` | Hindi | -| `hu` | Hungarian | -| `id` | Indonesian | -| `it` | Italian | -| `ja` | Japanese | -| `kr` | Korean | -| `ml` | Malayalam | -| `np` | Nepali | -| `no` | Norwegian | -| `fa` | Persian (Farsi) | -| `pl` | Polish | -| `pt-br` | Portuguese (Brazil) | -| `pt-pt` | Portuguese (Portugal) | -| `ro` | Romanian | - - - -| Code | Locale | -| --------- | ------------------ | -| `ru` | Russian | -| `sa` | Sanskrit | -| `sr` | Serbian (Cyrillic) | -| `sr-latn` | Serbian (Latin) | -| `sk` | Slovak | -| `es` | Spanish | -| `sw` | Swahili | -| `se` | Swedish | -| `ta` | Tamil | -| `th` | Thai | -| `tr` | Turkish | -| `uk-ua` | Ukrainian | -| `ur` | Urdu | -| `uz` | Uzbek | -| `vi` | Vietnamese | - -
- -If we don't support your language, please consider contributing! You can find more information about how to do it in our [contributing guidelines](../.github/CONTRIBUTING.md#translations-contribution). - -#### Stats Card Exclusive Options - -| Name | Description | Type | Default value | -| --------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------- | ----------------------------------- | -| `hide` | Hides the [specified items](#hiding-individual-stats) from stats. | string (comma-separated values) | `null` | -| `hide_title` | Hides the title of your stats card. | boolean | `false` | -| `card_width` | Sets the card's width manually. | number | `500px (approx.)` | -| `hide_rank` | Hides the rank and automatically resizes the card width. | boolean | `false` | -| `rank_icon` | Shows alternative rank icon (i.e. `github`, `percentile` or `default`). | enum | `default` | -| `show_icons` | Shows icons near all stats. | boolean | `false` | -| `include_all_commits` | Count total commits instead of just the current year commits. | boolean | `false` | -| `line_height` | Sets the line height between text. | integer | `25` | -| `exclude_repo` | Excludes specified repositories. Affects only the count for "Total Stars Earned". | string (comma-separated values) | `null` | -| `repo` | Count only stats from the specified repositories. Affects only [certain items](#filtering-by-repository-and-owner). | string (comma-separated values) | `null` | -| `owner` | Count only stats from the specified organizations or users. Affects only [certain items](#filtering-by-repository-and-owner). | string (comma-separated values) | `null` | -| `role` | Include repositories where the user has one of the specified [roles](https://docs.github.com/en/graphql/reference/enums#repositoryaffiliation) (OWNER, ORGANIZATION_MEMBER, COLLABORATOR). | string (comma-separated values) | `OWNER` | -| `custom_title` | Sets a custom title for the card. | string | ` GitHub Stats` | -| `text_bold` | Uses bold text. | boolean | `true` | -| `disable_animations` | Disables all animations in the card. | boolean | `false` | -| `ring_color` | Color of the rank circle. | string (hex color) | `2f80ed` | -| `number_format` | Switches between two available formats for displaying the card values: `short` (i.e. `6.6k`) and `long` (i.e. `6626`). | enum | `short` | -| `number_precision` | Enforce the number of digits after the decimal point for `short` number format. Must be an integer between 0 and 2. Will be ignored for `long` number format. | integer (0, 1 or 2) | `null` | -| `show` | Shows [additional items](#showing-additional-individual-stats) on stats card (i.e. `reviews`, `discussions_started`, `discussions_answered`, `prs_merged` or `prs_merged_percentage`. And the following, which support the `repo` and `owner` filters: `prs_authored`, `prs_commented`, `prs_reviewed`, `issues_authored` or `issues_commented`). | string (comma-separated values) | `null` | -| `commits_year` | Filters and counts only commits made in the specified year. | integer _(YYYY)_ | ` (one year to date)` | - -> [!WARNING] -> Custom title should be URI-escaped, as specified in [Percent Encoding](https://en.wikipedia.org/wiki/Percent-encoding) (i.e: `Anurag's GitHub Stats` should become `Anurag%27s%20GitHub%20Stats`). You can use [urlencoder.org](https://www.urlencoder.org/) to help you do this automatically. - -> [!NOTE] -> When hide\_rank=`true`, the minimum card width is 270 px + the title length and padding. - ---- - -## GitHub Extra Pins - -GitHub extra pins allow you to pin more than 6 repositories in your profile using a GitHub profile readme. - -Yay! You are no longer limited to 6 pinned repositories. - -### Usage - -Copy-paste this code into your readme and change the links. - -Endpoint: `api/pin?username=anuraghazra&repo=type-trident` - -```md -[![Readme Card](https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=type-trident)](https://github.com/anuraghazra/type-trident) -``` - -### Options - -You can customize the appearance and behavior of the pinned repository card using the [common options](#common-options) and exclusive options listed in the table below. - -| Name | Description | Type | Default value | -| ------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------- | ------------------ | -| `show_owner` | Shows the repo's owner name. | boolean | `false` | -| `browser_rendering` | Compute text wrapping of repository description natively in the browser, instead of computing it server-side. | boolean | `false` | -| `description_lines_count` | Manually set the number of lines for the description. Specified value will be clamped between 1 and 3. If this parameter is not specified, the number of lines will be automatically adjusted according to the actual length of the description. | number | `null` | -| `card_width` | Sets the card's width manually. | number | `400px (approx.)` | -| `show_icons` | Shows icons near all stats enabled via `show`. | boolean | `true` | -| `line_height` | Sets the line height between stats enabled via `show`. | integer | `22` | -| `text_bold` | Uses bold text for all stats enabled via `show`. | boolean | `false` | -| `number_format` | Switches between two available formats for displaying the numbers for all stats enabled via `show`: `short` (i.e. `6.6k`) and `long` (i.e. `6626`). | enum | `short` | -| `show` | Shows [additional items](#showing-additional-individual-stats) on stats card (i.e. `prs_authored`, `prs_commented`, `prs_reviewed`, `issues_authored` or `issues_commented`). | string (comma-separated values) | `null` | - -### Demo - -![Readme Card](https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats) - -Use [show\_owner](#options) query option to include the repo's owner username: - -![Readme Card](https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&show_owner=true) - -Use [show](#options) query option to display the user's contributions to the repository: - -![Readme Card](https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&show=prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented) - -You can also specify the `repo` parameter in the form `/` to pin a repository from any user or organization, not just your own. This allows you to showcase repositories you contributed to, regardless of ownership. - -![Readme Card](https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=statykjs/statyk&show_owner=true&show=prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented) - -## GitHub Gist Pins - -GitHub gist pins allow you to pin gists in your GitHub profile using a GitHub profile readme. - -### Usage - -Copy-paste this code into your readme and change the links. - -Endpoint: `api/gist?id=bbfce31e0217a3689c8d961a356cb10d` - -```md -[![Gist Card](https://github-stats-extended.vercel.app/api/gist?id=bbfce31e0217a3689c8d961a356cb10d)](https://gist.github.com/Yizack/bbfce31e0217a3689c8d961a356cb10d/) -``` - -### Options - -You can customize the appearance and behavior of the gist card using the [common options](#common-options) and exclusive options listed in the table below. - -| Name | Description | Type | Default value | -| ------------------- | ------------------------------------------------------------------------------------------------------- | ------- | ------------- | -| `show_owner` | Shows the gist's owner name. | boolean | `false` | -| `browser_rendering` | Compute text wrapping of gist description natively in the browser, instead of computing it server-side. | boolean | `false` | - -### Demo - -![Gist Card](https://github-stats-extended.vercel.app/api/gist?id=bbfce31e0217a3689c8d961a356cb10d) - -Use [show\_owner](#options-1) query option to include the gist's owner username - -![Gist Card](https://github-stats-extended.vercel.app/api/gist?id=bbfce31e0217a3689c8d961a356cb10d&show_owner=true) - -## Top Languages Card - -The top languages card shows your most frequently used languages. - -> [!WARNING] -> By default, the language card shows language results only from public repositories. To include languages used in private repositories, [allow GitHub-Stats-Extended to access your private contributions](fork.md#private-contributions-support) or [deploy your own instance](deploy.md). - -> [!WARNING] -> This card shows language usage only inside your own non-forked repositories, not depending on who the author of the commits is. It does not include your contributions into another users/organizations repositories. Currently there are no way to get this data from GitHub API. If you want this behavior to be improved you can support [this feature request](https://github.com/orgs/community/discussions/18230) created by [@rickstaa](https://github.com/rickstaa) inside GitHub Community. - -> [!WARNING] -> Currently this card shows data only about first 1000 repositories. This is because GitHub API limitations which cause downtimes of public instances (see [#1471](https://github.com/anuraghazra/github-readme-stats/issues/1471)). In future this behavior will be improved by releasing GitHub action or providing environment variables for user's own instances. - -### Usage - -Copy-paste this code into your readme and change the links. - -Endpoint: `api/top-langs?username=anuraghazra` - -```md -[![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra)](https://github.com/stats-organization/github-stats-extended) -``` - -### Options - -You can customize the appearance and behavior of the top languages card using the [common options](#common-options) and exclusive options listed in the table below. - -| Name | Description | Type | Default value | -| -------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------- | --------------------------------------------------- | -| `hide` | Hides the [specified languages](#hide-individual-languages) from card. | string (comma-separated values) | `null` | -| `hide_title` | Hides the title of your card. | boolean | `false` | -| `layout` | Switches between five available layouts `normal` & `compact` & `donut` & `donut-vertical` & `pie`. | enum | `normal` | -| `card_width` | Sets the card's width manually. | number | `300` | -| `langs_count` | Shows more languages on the card, between 1-20. | integer | `5` for `normal` and `donut`, `6` for other layouts | -| `exclude_repo` | Excludes specified repositories. | string (comma-separated values) | `null` | -| `role` | Include repositories where the user has one of the specified [roles](https://docs.github.com/en/graphql/reference/enums#repositoryaffiliation) (OWNER, ORGANIZATION_MEMBER, COLLABORATOR). | string (comma-separated values) | `OWNER` | -| `custom_title` | Sets a custom title for the card. | string | `Most Used Languages` | -| `disable_animations` | Disables all animations in the card. | boolean | `false` | -| `prog_bar_bg_color` | Background color of the bars. (Applies only to `normal` layout.) | string (hex color) | `#ddd` | -| `hide_progress` | Uses the compact layout option, hides percentages, and removes the bars. | boolean | `false` | -| `hide_values` | Hides language percentages or bytes while keeping the progress bars or chart. | boolean | `false` | -| `size_weight` | Configures language stats algorithm (see [Language stats algorithm](#language-stats-algorithm)). | integer | `1` | -| `count_weight` | Configures language stats algorithm (see [Language stats algorithm](#language-stats-algorithm)). | integer | `0` | -| `stats_format` | Switches between two available formats for language's stats `percentages` and `bytes`. | enum | `percentages` | - -> [!WARNING] -> Language names and custom title should be URI-escaped, as specified in [Percent Encoding](https://en.wikipedia.org/wiki/Percent-encoding) (i.e: `c++` should become `c%2B%2B`, `jupyter notebook` should become `jupyter%20notebook`, `Most Used Languages` should become `Most%20Used%20Languages`, etc.) You can use [urlencoder.org](https://www.urlencoder.org/) to help you do this automatically. - -### Language stats algorithm - -We use the following algorithm to calculate the languages percentages on the language card: - -```js -ranking_index = (byte_count ^ size_weight) * (repo_count ^ count_weight); -``` - -By default, only the byte count is used for determining the languages percentages shown on the language card (i.e. `size_weight=1` and `count_weight=0`). You can, however, use the `&size_weight=` and `&count_weight=` options to weight the language usage calculation. The values must be positive real numbers. [More details about the algorithm can be found here](https://github.com/anuraghazra/github-readme-stats/issues/1600#issuecomment-1046056305). - -- `&size_weight=1&count_weight=0` - _(default)_ Orders by byte count. -- `&size_weight=0.5&count_weight=0.5` - _(recommended)_ Uses both byte and repo count for ranking - - `&size_weight=0&count_weight=1` - Orders by repo count - -```md -![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&size_weight=0.5&count_weight=0.5) -``` - -If the percentages still look wrong to you, these two comments cover most of the reasons why, and are worth reading before opening an issue: - -- -- - -### Exclude individual repositories - -You can use the `&exclude_repo=repo1,repo2` parameter to exclude individual repositories. - -```md -![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&exclude_repo=github-readme-stats,anuraghazra.github.io) -``` - -### Hide individual languages - -You can use `&hide=language1,language2` parameter to hide individual languages. - -```md -![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&hide=javascript,html) -``` - -Language names with spaces or symbols need to be [percent-encoded](#options-2), so Jupyter Notebook becomes `&hide=jupyter%20notebook` and C++ becomes `&hide=c%2B%2B`. - -### Show more languages - -You can use the `&langs_count=` option to increase or decrease the number of languages shown on the card. Valid values are integers between 1 and 20 (inclusive). By default it was set to `5` for `normal` & `donut` and `6` for other layouts. - -```md -![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&langs_count=8) -``` - -### Compact Language Card Layout - -You can use the `&layout=compact` option to change the card design. - -```md -![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&layout=compact) -``` - -### Donut Chart Language Card Layout - -You can use the `&layout=donut` option to change the card design. - -```md -[![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&layout=donut)](https://github.com/stats-organization/github-stats-extended) -``` - -### Donut Vertical Chart Language Card Layout - -You can use the `&layout=donut-vertical` option to change the card design. - -```md -[![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&layout=donut-vertical)](https://github.com/stats-organization/github-stats-extended) -``` - -### Pie Chart Language Card Layout - -You can use the `&layout=pie` option to change the card design. - -```md -[![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&layout=pie)](https://github.com/stats-organization/github-stats-extended) -``` - -### Hide Progress Bars - -You can use the `&hide_progress=true` option to hide the percentages and the progress bars (layout will be automatically set to `compact`). - -```md -![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&hide_progress=true) -``` - -### Change format of language's stats - -You can use the `&stats_format=bytes` option to display the stats in bytes instead of percentage. - -```md -![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&stats_format=bytes) -``` - -### Demo - -![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra) - -#### Compact layout - -![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&layout=compact) - -#### Donut Chart layout - -[![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&layout=donut)](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&layout=donut) - -#### Donut Vertical Chart layout - -[![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&layout=donut-vertical)](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&layout=donut-vertical) - -#### Pie Chart layout - -[![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&layout=pie)](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&layout=pie) - -#### Hidden progress bars - -[![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&hide_progress=true)](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&hide_progress=true) - -#### Display bytes instead of percentage - -[![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&stats_format=bytes)](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&stats_format=bytes) - -## WakaTime Stats Card - -> [!WARNING] -> Please be aware that we currently only show data from WakaTime profiles that are public. You therefore have to make sure that **BOTH** `Display code time publicly` and `Display languages, editors, os, categories publicly` are enabled. - -> [!WARNING] -> In case you just created a new WakaTime account, then it might take up to 24 hours until your stats will become visible on the WakaTime stats card. - -Change the `?username=` value to your [WakaTime](https://wakatime.com) username. - -```md -[![Alan's WakaTime stats](https://github-stats-extended.vercel.app/api/wakatime?username=alan)](https://wakatime.com/@alan) -``` - -### Options - -You can customize the appearance and behavior of the WakaTime stats card using the [common options](#common-options) and exclusive options listed in the table below. - -| Name | Description | Type | Default value | -| -------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------- | ---------------- | -| `hide` | Hides the languages specified from the card. | string (comma-separated values) | `null` | -| `hide_title` | Hides the title of your card. | boolean | `false` | -| `card_width` | Sets the card's width manually. | number | `495` | -| `line_height` | Sets the line height between text. | integer | `25` | -| `hide_progress` | Hides the progress bar and percentage. | boolean | `false` | -| `custom_title` | Sets a custom title for the card. | string | `WakaTime Stats` | -| `layout` | Switches between two available layouts `default` & `compact`. | enum | `default` | -| `langs_count` | Limits the number of languages on the card, defaults to all reported languages. | integer | `null` | -| `api_domain` | Sets a custom API domain for the card, e.g. to use services like [Hakatime](https://github.com/mujx/hakatime) or [Wakapi](https://github.com/muety/wakapi) | string | `wakatime.com` | -| `display_format` | Sets the WakaTime stats display format. Choose `time` to display time-based stats or `percent` to show percentages. | enum | `time` | -| `disable_animations` | Disables all animations in the card. | boolean | `false` | - -> [!WARNING] -> Custom title should be URI-escaped, as specified in [Percent Encoding](https://en.wikipedia.org/wiki/Percent-encoding) (i.e: `WakaTime Stats` should become `WakaTime%20Stats`). You can use [urlencoder.org](https://www.urlencoder.org/) to help you do this automatically. - -### Demo - -![Alan's WakaTime stats](https://github-stats-extended.vercel.app/api/wakatime?username=alan) - -![Alan's WakaTime stats](https://github-stats-extended.vercel.app/api/wakatime?username=alan&card_width=315&hide_progress=true) - -#### Compact layout - -![Alan's WakaTime stats](https://github-stats-extended.vercel.app/api/wakatime?username=alan&layout=compact) - ---- - -## All Demos - -### Default - -![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra) - -### Hiding specific stats - -![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&hide=contribs,issues) - -### Showing additional stats - -![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&show=reviews,discussions_started,discussions_answered,prs_merged,prs_merged_percentage,prs_commented,prs_reviewed,issues_commented) - -### Showing stats for a specific repository - -![Anurag's GitHub stats for anuraghazra/github-readme-stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&repo=anuraghazra/github-readme-stats&hide=prs,issues,stars,commits,contribs&show=prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented&hide_rank=true&custom_title=Anurag%27s%20Stats%20for%20github-readme-stats&card_width=370) - -### Showing stats for a specific organization - -![Anurag's GitHub stats for razorpay](https://github-stats-extended.vercel.app/api?username=anuraghazra&owner=razorpay&hide=prs,issues,stars,commits,contribs&show=prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented&hide_rank=true&custom_title=Anurag%27s%20Stats%20for%20razorpay&card_width=370) - -### Showing icons - -![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&hide=issues&show_icons=true) - -### Shows GitHub logo instead rank level - -![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&rank_icon=github) - -### Shows user rank percentile instead of rank level - -![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&rank_icon=percentile) - -### Customize Border Color - -![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&border_color=2e4058) - -### Include All Commits - -![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&include_all_commits=true) - -### Themes - -Choose from any of the [default themes](#themes) - -![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=radical) - -### Gradient - -![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&bg_color=30,e96443,904e95&title_color=fff&text_color=fff) - -### Customizing stats card - -![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api/?username=anuraghazra&show_icons=true&title_color=fff&icon_color=79ff97&text_color=9f9f9f&bg_color=151515) - -### Setting card locale - -![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api/?username=anuraghazra&locale=es) - -### Customizing repo card - -![Customized Card](https://github-stats-extended.vercel.app/api/pin?username=anuraghazra&repo=github-readme-stats&title_color=fff&icon_color=f9f9f9&text_color=9f9f9f&bg_color=151515) - -### Gist card - -![Gist Card](https://github-stats-extended.vercel.app/api/gist?id=bbfce31e0217a3689c8d961a356cb10d) - -### Customizing gist card - -![Gist Card](https://github-stats-extended.vercel.app/api/gist?id=bbfce31e0217a3689c8d961a356cb10d&theme=calm) - -### Top languages - -![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra) - -### WakaTime card - -![Alan's WakaTime stats](https://github-stats-extended.vercel.app/api/wakatime?username=alan) - ---- - -## Quick Tip (Align The Cards) - -By default, GitHub does not lay out the cards side by side. To do that, you can use such approaches: - -### Stats and top languages cards - - -```html - - - - - - -``` - -
-:eyes: Show example - - - - - - - - -
- -### Pinning repositories - -```html - - - - - - -``` - -
-:eyes: Show example - - - - - - - - -
diff --git a/docs/deploy.md b/docs/deploy.md deleted file mode 100644 index b3de00cbfa62c..0000000000000 --- a/docs/deploy.md +++ /dev/null @@ -1,204 +0,0 @@ -# Run It Yourself - -We cache generated cards for a few hours or days to avoid potential rate-limiting in the GitHub API or on Vercel. If you want to set your own cache duration or you want to include private contributions in your stats without granting our hosted version of GitHub-Stats-Extended access to your private contributions, you can run GitHub-Stats-Extended on your own. - -GitHub Actions is the simplest setup with static SVGs stored in your repo but less frequent updates, while self-hosting GitHub-Stats-Extended on Vercel takes more work and can serve fresher stats (with caching). - -## GitHub Action - -With [github-readme-stats-action](https://github.com/stats-organization/github-readme-stats-action) you can generate static cards in your GitHub Actions workflow, commit them to your profile repository, and embed them directly from there. This avoids any per-request API calls. - -Create `/.github/workflows/grs.yml` in your profile repo (`USERNAME/USERNAME`): - -```yaml -name: Update README cards - -on: - schedule: - - cron: "0 0 * * *" # Runs once daily at midnight - workflow_dispatch: - -jobs: - build: - runs-on: ubuntu-latest - - permissions: - contents: write - - steps: - - uses: actions/checkout@v6 - - - name: Generate stats card - uses: stats-organization/github-readme-stats-action@v2 - with: - card: stats - options: username=${{ github.repository_owner }}&show_icons=true - path: profile/stats.svg - token: ${{ secrets.GITHUB_TOKEN }} - - - name: Commit cards - run: | - git config user.name "github-actions[bot]" - git config user.email "41898282+github-actions[bot]@users.noreply.github.com" - git add profile/*.svg - git commit -m "Update README cards" || exit 0 - git push -``` - -Then embed from your [profile README](https://docs.github.com/en/account-and-profile/how-tos/profile-customization/managing-your-profile-readme#adding-a-profile-readme): - -```md -![Stats](./profile/stats.svg) -``` - -See more options and examples in the [GitHub Readme Stats Action README](https://github.com/stats-organization/github-readme-stats-action#readme). - -## Self-hosted on Vercel - -Running your own instance avoids public rate limits and gives you full control over caching, tokens, and private stats. - -### First step: get your Personal Access Token (PAT) - -For deploying your own instance of GitHub Stats Extended, you will need to create a GitHub Personal Access Token (PAT). Below are the steps to create one and the scopes you need to select for both classic and fine-grained tokens. - -Selecting the right scopes for your token is important in case you want to display private contributions on your cards. - -#### Classic token - -- Go to [Account → Settings → Developer Settings → Personal access tokens → Tokens (classic)](https://github.com/settings/tokens). - - Click on `Generate new token → Generate new token (classic)`. - - Scopes to select: - - repo - - read:user - - Click on `Generate token` and copy it. - -#### Fine-grained token - -> [!WARNING]\ -> This limits the scope of commits to public repositories only. - -- Go to [Account → Settings → Developer Settings → Personal access tokens → Fine-grained tokens](https://github.com/settings/personal-access-tokens). - - Click on `Generate new token → Generate new token`. - - Enter a token name - - Select an expiration date - - Select `All repositories` - - Scopes to select under `Permissions`: - - Commit statuses: read-only - - Contents: read-only - - Issues: read-only - - Metadata: read-only (added automatically when selecting above scopes) - - Pull requests: read-only - - Click on `Generate token` and copy it. - -### On Vercel - -Click on the deploy button to get started! - -[![Deploy to Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https://github.com/stats-organization/github-stats-extended&root-directory=apps/backend) - -Recommended: Step-by-step guide on setting up your own Vercel instance - -1. Go to [vercel.com](https://vercel.com/). -2. Click on `Log in`. - ![](https://files.catbox.moe/pcxk33.png) -3. Sign in with GitHub by pressing `Continue with GitHub`. - ![](https://files.catbox.moe/b9oxey.png) -4. Sign in to GitHub and allow access to all repositories if prompted. -5. Fork this repo. Disable "Copy the `master` branch only". -6. Go back to your [Vercel dashboard](https://vercel.com/dashboard). -7. To import a project, click the `Add New...` button and select the `Project` option. - ![](https://files.catbox.moe/3n76fh.png) -8. Search for the forked Git Repository and import it by clicking the `Import` button. -9. Create a Personal Access Token (PAT) as described in the [previous section](#first-step-get-your-personal-access-token-pat). -10. Add the PAT as an environment variable named `PAT_1` (as shown). - ![](https://files.catbox.moe/0yclio.png) - Note: For enhanced security, you can add a variable as a sensitive variable. To do this: - 1. Go to `Environment Variables` in `Project Settings`, then choose `Add Environment Variable`. - ![](https://files.catbox.moe/heprjw.jpg) - 2. Uncheck `Deployment` from `Environments` - ![](https://files.catbox.moe/tiqgd0.jpg) - 3. Now you can make the variable `Sensitive` by checking the checkbox. - ![](https://files.catbox.moe/mla5no.jpg) -11. As `Root directory` select the `apps/backend` folder. -12. Click deploy. -13. Point your Vercel project at the `release` branch instead of `master`. - `master` contains unreleased, potentially unstable code, while `release` contains the latest stable release. - 1. In your Vercel project settings, go to `Environments → Production` and change the tracked branch from `master` to `release`. - 2. Go to `Deployments → ... → Create Deployment`, select `release` and click `Deploy to production`. -14. See your domains to use the API! - -### Optional steps - -#### Add an SQL database - -Add an SQL database, either through an integration such as ["Nile"](https://vercel.com/marketplace/nile), or by manually setting the environment variable `POSTGRES_URL`. - -#### Use your own OAuth App - -[Create your own OAuth App](https://github.com/settings/developers) and set the environment variables `OAUTH_REDIRECT_URI`, `OAUTH_CLIENT_ID` and `OAUTH_CLIENT_SECRET` on Vercel accordingly. - -#### Silence the turbo build warning - -Set the environment variable `TURBO_PLATFORM_ENV_DISABLED` to `true` to disable the build-time warning from [turbo](https://turborepo.dev/) about environment variables missing from `turbo.json`. This warning is not relevant in our project. - -### Available environment variables - -GitHub Stats Extended provides several environment variables that can be used to customize the behavior of your self-hosted instance. These include: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameDescriptionSupported values
CACHE_SECONDSSets the cache duration in seconds for the generated cards. This variable takes precedence over the default cache timings for the public instance. If this variable is not set, the default cache duration is 24 hours (86,400 seconds).Any positive integer or 0 to disable caching
UPDATE_AFTER_HOURSSets the duration in hours after which the server proactively regenerates a previously requested card. Defaults to 11 hours.Any int or float
DELETE_AFTER_HOURSSets the duration in hours after which the server stops proactively regenerating a previously requested card if it hasn't been requested again in the meantime. Defaults to 8 days, i.e. 192 hours.Any int or float
WHITELISTA comma-separated list of GitHub usernames that are allowed to access your instance. If this variable is not set, all usernames are allowed.Comma-separated GitHub usernames
GIST_WHITELISTA comma-separated list of GitHub Gist IDs that are allowed to be accessed on your instance. If this variable is not set, all Gist IDs are allowed.Comma-separated GitHub Gist IDs
EXCLUDE_REPOA comma-separated list of repositories that will be excluded from stats and top languages cards on your instance. This allows repository exclusion without exposing repository names in public URLs. This enhances privacy for self-hosted instances that include private repositories in stats cards.Comma-separated repository names
FETCH_MULTI_PAGE_STARSEnables fetching all starred repositories for accurate star counts, especially for users with more than 100 repositories. This may increase response times and API points usage, so it is limited to 10 fetches - i.e. 1000 repos - on the public instance.true or false or a maximum number of fetches
- -See [the Vercel documentation](https://vercel.com/docs/concepts/projects/environment-variables) on adding these environment variables to your Vercel instance. - -> [!WARNING] -> Please remember to redeploy your instance after making any changes to the environment variables so that the updates take effect. The changes will not be applied to the previous deployments. - -### Keep your fork up to date - -You can keep your fork, and thus your private Vercel instance up to date with the upstream using GitHub's [Sync Fork button](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/syncing-a-fork). You can also use the [pull](https://github.com/wei/pull) package created by [@wei](https://github.com/wei) to automate this process. - -As a prerequisite, GitHub has to know that your personal GitHub-Stats-Extended repo is a fork of https://github.com/stats-organization/github-stats-extended. This only works if you follow the "Step-by-step guide on setting up your own Vercel instance" above, instead of clicking the Vercel "Deploy" button above. diff --git a/docs/fork.md b/docs/fork.md deleted file mode 100644 index 145a3f2e929c3..0000000000000 --- a/docs/fork.md +++ /dev/null @@ -1,98 +0,0 @@ -# Fork Information - -This project is an actively maintained fork and extension of [github-readme-stats](https://github.com/anuraghazra/github-readme-stats). - -## Key Differences - -Compared to [github-readme-stats](https://github.com/anuraghazra/github-readme-stats), this project adds the following changes: - -### Frontend for easy, visual configuration of cards - -GitHub-Stats-Extended adds a frontend which allows users to visually configure stats cards. It is hosted at https://github-stats-extended.vercel.app/frontend. - -![frontend screenshot](frontend-screenshot.png) - -The frontend is based on [GitHub Trends](https://github.com/avgupta456/github-trends) by [@avgupta456](https://github.com/avgupta456). - -### Aggregate stats across organizations - -To include stars from repos which are not owned by you, but where you are a collaborator or organization member, add `&role=OWNER,ORGANIZATION_MEMBER,COLLABORATOR` to your stats card url. To include such repos in your language stats, you can also add the same parameter to your top languages card url. - -See [here](advanced_documentation.md#filtering-by-repository-and-owner) for full feature documentation. - -The resolution of this most requested feature in github-readme-stats was [originally implemented](https://github.com/anuraghazra/github-readme-stats/issues/1#issuecomment-855681098) by [@developStorm](https://github.com/developStorm). - -### Improved performance and latency - -GitHub-Stats-Extended proactively precomputes and caches cards. This solves the problem where [cards wouldn't load on the first try](https://github.com/anuraghazra/github-readme-stats/issues/2603). It also gives GitHub-Stats-Extended more time while generating cards in the background, which allows it to fetch more repo data: - -### Multi-page fetching for accurate star counts - -GitHub-Stats-Extended fetches up to 1000 of your starred repositories to accurately compute your stars count. In github-readme-stats, this is limited to 100 repos because github-readme-stats doesn't have the above-mentioned performance improvements. - -### Customization of top languages card - -GitHub-Stats-Extended allows you to display your top languages without any numbers via the `hide_values` parameter. And the `prog_bar_bg_color` parameter allows you to customize the background color of the progress bars, e.g. by setting it to white: - -![anuraghazra's top languages without numbers](https://github-stats-extended.vercel.app/api/top-langs?username=anuraghazra&langs_count=4&hide_values=true&prog_bar_bg_color=fff) - -### Private contributions support - -GitHub-Stats-Extended can include private contributions in your stats cards. You no longer have to deploy your own instance for that. Just log into the [GitHub-Stats-Extended Wizard](https://github-stats-extended.vercel.app/frontend) via the "GitHub Private Access" button (or click "Upgrade to Private Access" if already logged in). This will allow GitHub-Stats-Extended to see your private contributions. - -### Display contributions to specific repositories or organizations - -GitHub-Stats-Extended adds the ability to show contribution stats for specific repositories and organizations. - -Especially for regular contributors in open source projects it might make sense to display an overview of their own contributions to these projects on their GitHub profile. - -See [here](advanced_documentation.md#filtering-by-repository-and-owner) for full feature documentation. - ---- - -anuraghazra's contributions to github-readme-stats: - -![anuraghazra's contributions to github-readme-stats](https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&show=prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented) - -Add `&show=prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented` to your repo card url to display your contributions to the pinned repository. - ---- - -anurag's contributions to razorpay: - -![anurag's contributions to razorpay](https://github-stats-extended.vercel.app/api?username=anuraghazra&owner=razorpay&hide=prs,issues,stars,commits,contribs&show=prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented&hide_rank=true&custom_title=anurag%27s%20contributions%20to%20razorpay&card_width=333) - -Add `&repo=userA/repoA,orgB/repoB` or `&owner=userC,orgD` to your profile stats url to filter your contributions by repo or organization. (The screenshot above uses further customization options.) - -### Other - -GitHub-Stats-Extended adds various other, minor improvements. For example, the repo card now supports the `card_width` parameter. - -## Why This Fork Exists - -[github-readme-stats](https://github.com/anuraghazra/github-readme-stats) is a great project, which unfortunately saw its development slow down in the past years, with [highly requested features](https://github.com/anuraghazra/github-readme-stats/issues/1935) getting delayed for a long time. - -One of the valued maintainers [wrote](https://github.com/anuraghazra/github-readme-stats/pull/3911#issuecomment-3377726545): - -> I joined the project as collaborator in the middle of 2023 and there was just a few guys in the team while hundreds of PRs, issues and discussions pending to be reviewed. -> -> The volume is overwhelming for the small team, especially taking into account that right now I'm alone online and working only sometimes when I have a free hours, so it took some time to get to your PR. - -So [@martin-mfg](https://github.com/martin-mfg) decided to fork the project, implement some of the highly requested features and make the enhanced project available to everyone. Since the initial release of this fork @martin-mfg joined forces with the maintainers of [github-readme-stats](https://github.com/anuraghazra/github-readme-stats) and GitHub-Stats-Extended is now becoming the successor of github-readme-stats. - -## Compatibility Notes - -GitHub-Stats-Extended aims to be fully compatible with [github-readme-stats](https://github.com/anuraghazra/github-readme-stats). Additional functionality introduced in this fork has to be explicitly enabled via some parameter. - -So you can change an existing stats card url from [github-readme-stats](https://github.com/anuraghazra/github-readme-stats) to GitHub-Stats-Extended simply by changing the domain from `github-readme-stats.vercel.app` to `github-stats-extended.vercel.app`. The card will look the same. - -There is only one exception to this: GitHub-Stats-Extended improves line wrapping for multi-line gist and repository descriptions. -This should be an improvement for existing cards, but it still changes their appearance a bit. - -Previously, line wrapping happened simply after 59 characters, with special handling for Chinese characters: - -character-based - -GitHub-Stats-Extended now takes the actual width of each character into account: - -new-server-side-calculation diff --git a/docs/frontend-screenshot.png b/docs/frontend-screenshot.png deleted file mode 100644 index 0cd7c5a1a5e70625bc01d23807fe92d7f14e482b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 107178 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 diff --git a/packages/core/src/themes/README.md b/packages/core/src/themes/README.md deleted file mode 100644 index b58b7071e5baa..0000000000000 --- a/packages/core/src/themes/README.md +++ /dev/null @@ -1,226 +0,0 @@ -## Available Themes - - - -With inbuilt themes, you can customize the look of the card without doing any manual customization. - -Use `?theme=THEME_NAME` parameter like so: - -```md -![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&theme=dark&show_icons=true) -``` - -## Stats - -> These themes work with all five of our cards: Stats Card, Repo Card, Gist Card, Top Languages Card, and WakaTime Card. - -| | | | -| :------------------------------------------------------------: | :------------------------------------------------------------: | :------------------------------------------------------------------: | -| `default` ![default][default] | `transparent` ![transparent][transparent] | `shadow_red` ![shadow_red][shadow_red] | -| `shadow_green` ![shadow_green][shadow_green] | `shadow_blue` ![shadow_blue][shadow_blue] | `dark` ![dark][dark] | -| `radical` ![radical][radical] | `merko` ![merko][merko] | `gruvbox` ![gruvbox][gruvbox] | -| `gruvbox_light` ![gruvbox_light][gruvbox_light] | `tokyonight` ![tokyonight][tokyonight] | `onedark` ![onedark][onedark] | -| `cobalt` ![cobalt][cobalt] | `synthwave` ![synthwave][synthwave] | `highcontrast` ![highcontrast][highcontrast] | -| `dracula` ![dracula][dracula] | `prussian` ![prussian][prussian] | `monokai` ![monokai][monokai] | -| `vue` ![vue][vue] | `vue-dark` ![vue-dark][vue-dark] | `shades-of-purple` ![shades-of-purple][shades-of-purple] | -| `nightowl` ![nightowl][nightowl] | `buefy` ![buefy][buefy] | `blue-green` ![blue-green][blue-green] | -| `algolia` ![algolia][algolia] | `great-gatsby` ![great-gatsby][great-gatsby] | `darcula` ![darcula][darcula] | -| `bear` ![bear][bear] | `solarized-dark` ![solarized-dark][solarized-dark] | `solarized-light` ![solarized-light][solarized-light] | -| `chartreuse-dark` ![chartreuse-dark][chartreuse-dark] | `nord` ![nord][nord] | `gotham` ![gotham][gotham] | -| `material-palenight` ![material-palenight][material-palenight] | `graywhite` ![graywhite][graywhite] | `vision-friendly-dark` ![vision-friendly-dark][vision-friendly-dark] | -| `ayu-mirage` ![ayu-mirage][ayu-mirage] | `midnight-purple` ![midnight-purple][midnight-purple] | `calm` ![calm][calm] | -| `flag-india` ![flag-india][flag-india] | `omni` ![omni][omni] | `react` ![react][react] | -| `jolly` ![jolly][jolly] | `maroongold` ![maroongold][maroongold] | `yeblu` ![yeblu][yeblu] | -| `blueberry` ![blueberry][blueberry] | `slateorange` ![slateorange][slateorange] | `kacho_ga` ![kacho_ga][kacho_ga] | -| `outrun` ![outrun][outrun] | `ocean_dark` ![ocean_dark][ocean_dark] | `city_lights` ![city_lights][city_lights] | -| `github_dark` ![github_dark][github_dark] | `github_dark_dimmed` ![github_dark_dimmed][github_dark_dimmed] | `discord_old_blurple` ![discord_old_blurple][discord_old_blurple] | -| `aura_dark` ![aura_dark][aura_dark] | `panda` ![panda][panda] | `noctis_minimus` ![noctis_minimus][noctis_minimus] | -| `cobalt2` ![cobalt2][cobalt2] | `swift` ![swift][swift] | `aura` ![aura][aura] | -| `apprentice` ![apprentice][apprentice] | `moltack` ![moltack][moltack] | `codeSTACKr` ![codeSTACKr][codeSTACKr] | -| `rose_pine` ![rose_pine][rose_pine] | `catppuccin_latte` ![catppuccin_latte][catppuccin_latte] | `catppuccin_mocha` ![catppuccin_mocha][catppuccin_mocha] | -| `date_night` ![date_night][date_night] | `one_dark_pro` ![one_dark_pro][one_dark_pro] | `rose` ![rose][rose] | -| `holi` ![holi][holi] | `neon` ![neon][neon] | `blue_navy` ![blue_navy][blue_navy] | -| `calm_pink` ![calm_pink][calm_pink] | `ambient_gradient` ![ambient_gradient][ambient_gradient] | | - -## Repo Card - -> These themes work with all five of our cards: Stats Card, Repo Card, Gist Card, Top Languages Card, and WakaTime Card. - -| | | | -| :-----------------------------------------------------------------: | :-----------------------------------------------------------------: | :-----------------------------------------------------------------------: | -| `default_repocard` ![default_repocard][default_repocard_repo] | `transparent` ![transparent][transparent_repo] | `shadow_red` ![shadow_red][shadow_red_repo] | -| `shadow_green` ![shadow_green][shadow_green_repo] | `shadow_blue` ![shadow_blue][shadow_blue_repo] | `dark` ![dark][dark_repo] | -| `radical` ![radical][radical_repo] | `merko` ![merko][merko_repo] | `gruvbox` ![gruvbox][gruvbox_repo] | -| `gruvbox_light` ![gruvbox_light][gruvbox_light_repo] | `tokyonight` ![tokyonight][tokyonight_repo] | `onedark` ![onedark][onedark_repo] | -| `cobalt` ![cobalt][cobalt_repo] | `synthwave` ![synthwave][synthwave_repo] | `highcontrast` ![highcontrast][highcontrast_repo] | -| `dracula` ![dracula][dracula_repo] | `prussian` ![prussian][prussian_repo] | `monokai` ![monokai][monokai_repo] | -| `vue` ![vue][vue_repo] | `vue-dark` ![vue-dark][vue-dark_repo] | `shades-of-purple` ![shades-of-purple][shades-of-purple_repo] | -| `nightowl` ![nightowl][nightowl_repo] | `buefy` ![buefy][buefy_repo] | `blue-green` ![blue-green][blue-green_repo] | -| `algolia` ![algolia][algolia_repo] | `great-gatsby` ![great-gatsby][great-gatsby_repo] | `darcula` ![darcula][darcula_repo] | -| `bear` ![bear][bear_repo] | `solarized-dark` ![solarized-dark][solarized-dark_repo] | `solarized-light` ![solarized-light][solarized-light_repo] | -| `chartreuse-dark` ![chartreuse-dark][chartreuse-dark_repo] | `nord` ![nord][nord_repo] | `gotham` ![gotham][gotham_repo] | -| `material-palenight` ![material-palenight][material-palenight_repo] | `graywhite` ![graywhite][graywhite_repo] | `vision-friendly-dark` ![vision-friendly-dark][vision-friendly-dark_repo] | -| `ayu-mirage` ![ayu-mirage][ayu-mirage_repo] | `midnight-purple` ![midnight-purple][midnight-purple_repo] | `calm` ![calm][calm_repo] | -| `flag-india` ![flag-india][flag-india_repo] | `omni` ![omni][omni_repo] | `react` ![react][react_repo] | -| `jolly` ![jolly][jolly_repo] | `maroongold` ![maroongold][maroongold_repo] | `yeblu` ![yeblu][yeblu_repo] | -| `blueberry` ![blueberry][blueberry_repo] | `slateorange` ![slateorange][slateorange_repo] | `kacho_ga` ![kacho_ga][kacho_ga_repo] | -| `outrun` ![outrun][outrun_repo] | `ocean_dark` ![ocean_dark][ocean_dark_repo] | `city_lights` ![city_lights][city_lights_repo] | -| `github_dark` ![github_dark][github_dark_repo] | `github_dark_dimmed` ![github_dark_dimmed][github_dark_dimmed_repo] | `discord_old_blurple` ![discord_old_blurple][discord_old_blurple_repo] | -| `aura_dark` ![aura_dark][aura_dark_repo] | `panda` ![panda][panda_repo] | `noctis_minimus` ![noctis_minimus][noctis_minimus_repo] | -| `cobalt2` ![cobalt2][cobalt2_repo] | `swift` ![swift][swift_repo] | `aura` ![aura][aura_repo] | -| `apprentice` ![apprentice][apprentice_repo] | `moltack` ![moltack][moltack_repo] | `codeSTACKr` ![codeSTACKr][codeSTACKr_repo] | -| `rose_pine` ![rose_pine][rose_pine_repo] | `catppuccin_latte` ![catppuccin_latte][catppuccin_latte_repo] | `catppuccin_mocha` ![catppuccin_mocha][catppuccin_mocha_repo] | -| `date_night` ![date_night][date_night_repo] | `one_dark_pro` ![one_dark_pro][one_dark_pro_repo] | `rose` ![rose][rose_repo] | -| `holi` ![holi][holi_repo] | `neon` ![neon][neon_repo] | `blue_navy` ![blue_navy][blue_navy_repo] | -| `calm_pink` ![calm_pink][calm_pink_repo] | `ambient_gradient` ![ambient_gradient][ambient_gradient_repo] | | - -[default]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=default -[default_repocard]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=default_repocard -[transparent]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=transparent -[shadow_red]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=shadow_red -[shadow_green]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=shadow_green -[shadow_blue]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=shadow_blue -[dark]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=dark -[radical]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=radical -[merko]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=merko -[gruvbox]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=gruvbox -[gruvbox_light]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=gruvbox_light -[tokyonight]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=tokyonight -[onedark]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=onedark -[cobalt]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=cobalt -[synthwave]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=synthwave -[highcontrast]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=highcontrast -[dracula]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=dracula -[prussian]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=prussian -[monokai]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=monokai -[vue]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=vue -[vue-dark]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=vue-dark -[shades-of-purple]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=shades-of-purple -[nightowl]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=nightowl -[buefy]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=buefy -[blue-green]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=blue-green -[algolia]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=algolia -[great-gatsby]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=great-gatsby -[darcula]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=darcula -[bear]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=bear -[solarized-dark]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=solarized-dark -[solarized-light]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=solarized-light -[chartreuse-dark]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=chartreuse-dark -[nord]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=nord -[gotham]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=gotham -[material-palenight]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=material-palenight -[graywhite]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=graywhite -[vision-friendly-dark]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=vision-friendly-dark -[ayu-mirage]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=ayu-mirage -[midnight-purple]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=midnight-purple -[calm]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=calm -[flag-india]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=flag-india -[omni]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=omni -[react]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=react -[jolly]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=jolly -[maroongold]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=maroongold -[yeblu]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=yeblu -[blueberry]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=blueberry -[slateorange]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=slateorange -[kacho_ga]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=kacho_ga -[outrun]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=outrun -[ocean_dark]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=ocean_dark -[city_lights]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=city_lights -[github_dark]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=github_dark -[github_dark_dimmed]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=github_dark_dimmed -[discord_old_blurple]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=discord_old_blurple -[aura_dark]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=aura_dark -[panda]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=panda -[noctis_minimus]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=noctis_minimus -[cobalt2]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=cobalt2 -[swift]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=swift -[aura]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=aura -[apprentice]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=apprentice -[moltack]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=moltack -[codeSTACKr]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=codeSTACKr -[rose_pine]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=rose_pine -[catppuccin_latte]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=catppuccin_latte -[catppuccin_mocha]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=catppuccin_mocha -[date_night]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=date_night -[one_dark_pro]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=one_dark_pro -[rose]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=rose -[holi]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=holi -[neon]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=neon -[blue_navy]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=blue_navy -[calm_pink]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=calm_pink -[ambient_gradient]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=ambient_gradient -[default_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=default -[default_repocard_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=default_repocard -[transparent_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=transparent -[shadow_red_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=shadow_red -[shadow_green_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=shadow_green -[shadow_blue_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=shadow_blue -[dark_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=dark -[radical_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=radical -[merko_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=merko -[gruvbox_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=gruvbox -[gruvbox_light_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=gruvbox_light -[tokyonight_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=tokyonight -[onedark_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=onedark -[cobalt_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=cobalt -[synthwave_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=synthwave -[highcontrast_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=highcontrast -[dracula_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=dracula -[prussian_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=prussian -[monokai_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=monokai -[vue_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=vue -[vue-dark_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=vue-dark -[shades-of-purple_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=shades-of-purple -[nightowl_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=nightowl -[buefy_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=buefy -[blue-green_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=blue-green -[algolia_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=algolia -[great-gatsby_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=great-gatsby -[darcula_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=darcula -[bear_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=bear -[solarized-dark_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=solarized-dark -[solarized-light_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=solarized-light -[chartreuse-dark_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=chartreuse-dark -[nord_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=nord -[gotham_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=gotham -[material-palenight_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=material-palenight -[graywhite_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=graywhite -[vision-friendly-dark_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=vision-friendly-dark -[ayu-mirage_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=ayu-mirage -[midnight-purple_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=midnight-purple -[calm_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=calm -[flag-india_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=flag-india -[omni_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=omni -[react_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=react -[jolly_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=jolly -[maroongold_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=maroongold -[yeblu_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=yeblu -[blueberry_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=blueberry -[slateorange_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=slateorange -[kacho_ga_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=kacho_ga -[outrun_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=outrun -[ocean_dark_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=ocean_dark -[city_lights_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=city_lights -[github_dark_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=github_dark -[github_dark_dimmed_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=github_dark_dimmed -[discord_old_blurple_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=discord_old_blurple -[aura_dark_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=aura_dark -[panda_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=panda -[noctis_minimus_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=noctis_minimus -[cobalt2_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=cobalt2 -[swift_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=swift -[aura_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=aura -[apprentice_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=apprentice -[moltack_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=moltack -[codeSTACKr_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=codeSTACKr -[rose_pine_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=rose_pine -[catppuccin_latte_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=catppuccin_latte -[catppuccin_mocha_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=catppuccin_mocha -[date_night_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=date_night -[one_dark_pro_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=one_dark_pro -[rose_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=rose -[holi_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=holi -[neon_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=neon -[blue_navy_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=blue_navy -[calm_pink_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=calm_pink -[ambient_gradient_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=ambient_gradient From 1841a1bb194206dcf27b210b9f4a57e71dbf87df Mon Sep 17 00:00:00 2001 From: martin-mfg <2026226+martin-mfg@users.noreply.github.com> Date: Mon, 24 Aug 2026 14:27:16 +0200 Subject: [PATCH 02/15] apply documentation updates from #488 plus a bit extra --- README.md | 56 +++++++++++++-- .../src/content/docs/docs/cards/gist-pin.md | 6 +- .../src/content/docs/docs/cards/repo-pin.md | 12 ++-- .../src/content/docs/docs/cards/stats.md | 50 +++++++------- .../content/docs/docs/cards/top-languages.md | 35 +++++++--- .../src/content/docs/docs/cards/wakatime.md | 9 ++- .../docs/docs/customization/aligning-cards.md | 65 +++++++++++------ .../docs/docs/customization/common-options.md | 26 +++---- .../docs/docs/customization/theming.md | 69 +++++++++++++++---- apps/frontend/src/content/docs/docs/demos.md | 42 +++++++---- apps/frontend/src/content/docs/docs/fork.md | 31 +++++++-- 11 files changed, 290 insertions(+), 111 deletions(-) diff --git a/README.md b/README.md index 1e716680ca4af..a87e84e724b36 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,15 @@ GitHub Stats Extended Logo

GitHub Stats Extended

Dynamically generate GitHub stats for your READMEs.

-
+ + + + + + GitHub-Stats-Extended is the [extended, actively maintained successor](https://github-stats-extended.vercel.app/frontend/docs/fork/) of [github-readme-stats](https://github.com/anuraghazra/github-readme-stats). It generates [various stats cards](#card-types) about your GitHub contributions, your top languages and more. You can [customize](#documentation) the cards via multiple parameters. @@ -41,23 +49,59 @@ GitHub-Stats-Extended aims to be fully compatible with github-readme-stats. For - Show your GitHub statistics: - ![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra) + + + Anurag's GitHub stats + - ...your top languages...: - ![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&langs_count=4) + + + Top Langs + - ...and development time: - [![Alan's WakaTime stats](https://github-stats-extended.vercel.app/api/wakatime?username=alan&langs_count=6)](https://wakatime.com/@alan) + + + + Alan's WakaTime stats + + - Pin more than 6 repos in your GitHub profile: - [![Readme Card](https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats)](https://github.com/anuraghazra/github-readme-stats) + + + + Readme Card + + - Pin Gists in your GitHub profile: - [![Gist Card](https://github-stats-extended.vercel.app/api/gist?id=bbfce31e0217a3689c8d961a356cb10d)](https://gist.github.com/Yizack/bbfce31e0217a3689c8d961a356cb10d) + + + + Gist Card + + - Customize all the cards: diff --git a/apps/frontend/src/content/docs/docs/cards/gist-pin.md b/apps/frontend/src/content/docs/docs/cards/gist-pin.md index 842f113919678..cb0277fbaa89c 100644 --- a/apps/frontend/src/content/docs/docs/cards/gist-pin.md +++ b/apps/frontend/src/content/docs/docs/cards/gist-pin.md @@ -25,8 +25,10 @@ You can customize the appearance and behavior of the gist card using the [common ## Demo -![Gist Card](/api/gist?id=bbfce31e0217a3689c8d961a356cb10d) +Gist Card +Gist Card Use [show\_owner](#options) query option to include the gist's owner username -![Gist Card](/api/gist?id=bbfce31e0217a3689c8d961a356cb10d&show_owner=true) +Gist Card +Gist Card diff --git a/apps/frontend/src/content/docs/docs/cards/repo-pin.md b/apps/frontend/src/content/docs/docs/cards/repo-pin.md index af09a9240cbef..c307642a7eed6 100644 --- a/apps/frontend/src/content/docs/docs/cards/repo-pin.md +++ b/apps/frontend/src/content/docs/docs/cards/repo-pin.md @@ -34,16 +34,20 @@ You can customize the appearance and behavior of the pinned repository card usin ## Demo -![Readme Card](/api/pin?username=anuraghazra&repo=github-readme-stats) +Readme Card +Readme Card Use [show\_owner](#options) query option to include the repo's owner username: -![Readme Card](/api/pin?username=anuraghazra&repo=github-readme-stats&show_owner=true) +Readme Card +Readme Card Use [show](#options) query option to display the user's contributions to the repository: -![Readme Card](/api/pin?username=anuraghazra&repo=github-readme-stats&show=prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented) +Readme Card +Readme Card You can also specify the `repo` parameter in the form `/` to pin a repository from any user or organization, not just your own. This allows you to showcase repositories you contributed to, regardless of ownership. -![Readme Card](/api/pin?username=anuraghazra&repo=statykjs/statyk&show_owner=true&show=prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented) +Readme Card +Readme Card diff --git a/apps/frontend/src/content/docs/docs/cards/stats.md b/apps/frontend/src/content/docs/docs/cards/stats.md index ee171084f0107..bfea846b4f8e6 100644 --- a/apps/frontend/src/content/docs/docs/cards/stats.md +++ b/apps/frontend/src/content/docs/docs/cards/stats.md @@ -26,10 +26,10 @@ You can pass a query parameter `&hide=` to hide any specific stats with comma-se You can pass a query parameter `&show=` to show any specific additional stats with comma-separated values. -> Options: `&show=reviews,discussions_started,discussions_answered,prs_merged,prs_merged_percentage,prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented` +> Options: `&show=contributions,reviews,discussions_started,discussions_answered,prs_merged,prs_merged_percentage,prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented` ```md -![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show=reviews,discussions_started,discussions_answered,prs_merged,prs_merged_percentage,prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented) +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show=contributions,reviews,discussions_started,discussions_answered,prs_merged,prs_merged_percentage,prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented) ``` ## Showing icons @@ -60,28 +60,30 @@ You can specify a year and fetch only the commits that were made in that year by You can customize the appearance and behavior of the stats card using the [common options](/frontend/docs/customization/common-options/) and the exclusive options listed in the table below. -| Name | Description | Type | Default value | -| --------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------- | ----------------------------------- | -| `hide` | Hides the [specified items](#hiding-individual-stats) from stats. | string (comma-separated values) | `null` | -| `hide_title` | Hides the title of your stats card. | boolean | `false` | -| `card_width` | Sets the card's width manually. | number | `500px (approx.)` | -| `hide_rank` | Hides the rank and automatically resizes the card width. | boolean | `false` | -| `rank_icon` | Shows alternative rank icon (i.e. `github`, `percentile` or `default`). | enum | `default` | -| `show_icons` | Shows icons near all stats. | boolean | `false` | -| `include_all_commits` | Count total commits instead of just the current year commits. | boolean | `false` | -| `line_height` | Sets the line height between text. | integer | `25` | -| `exclude_repo` | Excludes specified repositories. Affects only the count for "Total Stars Earned". | string (comma-separated values) | `null` | -| `repo` | Count only stats from the specified repositories. Affects only [certain items](#filtering-by-repository-and-owner). | string (comma-separated values) | `null` | -| `owner` | Count only stats from the specified organizations or users. Affects only [certain items](#filtering-by-repository-and-owner). | string (comma-separated values) | `null` | -| `role` | Include repositories where the user has one of the specified [roles](https://docs.github.com/en/graphql/reference/repos#enum-repositoryaffiliation) (OWNER, ORGANIZATION_MEMBER, COLLABORATOR). | string (comma-separated values) | `OWNER` | -| `custom_title` | Sets a custom title for the card. | string | ` GitHub Stats` | -| `text_bold` | Uses bold text. | boolean | `true` | -| `disable_animations` | Disables all animations in the card. | boolean | `false` | -| `ring_color` | Color of the rank circle. | string (hex color) | `2f80ed` | -| `number_format` | Switches between two available formats for displaying the card values: `short` (i.e. `6.6k`) and `long` (i.e. `6626`). | enum | `short` | -| `number_precision` | Enforce the number of digits after the decimal point for `short` number format. Must be an integer between 0 and 2. Will be ignored for `long` number format. | integer (0, 1 or 2) | `null` | -| `show` | Shows [additional items](#showing-additional-individual-stats) on stats card (i.e. `reviews`, `discussions_started`, `discussions_answered`, `prs_merged` or `prs_merged_percentage`. And the following, which support the `repo` and `owner` filters: `prs_authored`, `prs_commented`, `prs_reviewed`, `issues_authored` or `issues_commented`). | string (comma-separated values) | `null` | -| `commits_year` | Filters and counts only commits made in the specified year. | integer _(YYYY)_ | ` (one year to date)` | +| Name | Description | Type | Default value | +| ------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------- | ----------------------------------- | +| `hide` | Hides the [specified items](#hiding-individual-stats) from stats. | string (comma-separated values) | `null` | +| `hide_title` | Hides the title of your stats card. | boolean | `false` | +| `card_width` | Sets the card's width manually. | number | `500px (approx.)` | +| `hide_rank` | Hides the rank and automatically resizes the card width. | boolean | `false` | +| `rank_icon` | Shows alternative rank icon (i.e. `github`, `percentile` or `default`). | enum | `default` | +| `show_icons` | Shows icons near all stats. | boolean | `false` | +| `include_all_commits` | Count total commits instead of just the current year commits. | boolean | `false` | +| `line_height` | Sets the line height between text. | integer | `25` | +| `exclude_repo` | Excludes specified repositories. Affects only the count for "Total Stars Earned". | string (comma-separated values) | `null` | +| `repo` | Count only stats from the specified repositories. Affects only [certain items](#filtering-by-repository-and-owner). | string (comma-separated values) | `null` | +| `owner` | Count only stats from the specified organizations or users. Affects only [certain items](#filtering-by-repository-and-owner). | string (comma-separated values) | `null` | +| `role` | Include repositories where the user has one of the specified [roles](https://docs.github.com/en/graphql/reference/repos#enum-repositoryaffiliation) (OWNER, ORGANIZATION_MEMBER, COLLABORATOR). | string (comma-separated values) | `OWNER` | +| `custom_title` | Sets a custom title for the card. | string | ` GitHub Stats` | +| `text_bold` | Uses bold text. | boolean | `true` | +| `disable_animations` | Disables all animations in the card. | boolean | `false` | +| `ring_color`1 | Color of the rank circle. | string (hex color) | `2f80ed` | +| `number_format` | Switches between two available formats for displaying the card values: `short` (i.e. `6.6k`) and `long` (i.e. `6626`). | enum | `short` | +| `number_precision` | Enforce the number of digits after the decimal point for `short` number format. Must be an integer between 0 and 2. Will be ignored for `long` number format. | integer (0, 1 or 2) | `null` | +| `show` | Shows [additional items](#showing-additional-individual-stats) on the stats card (i.e. `contributions`, `reviews`, `discussions_started`, `discussions_answered`, `prs_merged` or `prs_merged_percentage`. And the following, which support the `repo` and `owner` filters: `prs_authored`, `prs_commented`, `prs_reviewed`, `issues_authored` or `issues_commented`). | string (comma-separated values) | `null` | +| `commits_year` | Filters and counts only commits made in the specified year. | integer _(YYYY)_ | ` (one year to date)` | + +1: This parameter supports light and dark mode. You can use `ring_color_light` and `ring_color_dark` to specify different colors for light and dark mode. :::caution[Warning] Custom title should be URI-escaped, as specified in [Percent Encoding](https://en.wikipedia.org/wiki/Percent-encoding) (i.e: `Anurag's GitHub Stats` should become `Anurag%27s%20GitHub%20Stats`). You can use [urlencoder.org](https://www.urlencoder.org/) to help you do this automatically. diff --git a/apps/frontend/src/content/docs/docs/cards/top-languages.md b/apps/frontend/src/content/docs/docs/cards/top-languages.md index 878b2a6de5e6b..b5293ceb48db8 100644 --- a/apps/frontend/src/content/docs/docs/cards/top-languages.md +++ b/apps/frontend/src/content/docs/docs/cards/top-languages.md @@ -41,13 +41,15 @@ You can customize the appearance and behavior of the top languages card using th | `role` | Include repositories where the user has one of the specified [roles](https://docs.github.com/en/graphql/reference/repos#enum-repositoryaffiliation) (OWNER, ORGANIZATION_MEMBER, COLLABORATOR). | string (comma-separated values) | `OWNER` | | `custom_title` | Sets a custom title for the card. | string | `Most Used Languages` | | `disable_animations` | Disables all animations in the card. | boolean | `false` | -| `prog_bar_bg_color` | Background color of the bars. (Applies only to `normal` layout.) | string (hex color) | `#ddd` | +| `prog_bar_bg_color`1 | Background color of the bars. (Applies only to `normal` layout.) | string (hex color) | `#ddd` | | `hide_progress` | Uses the compact layout option, hides percentages, and removes the bars. | boolean | `false` | | `hide_values` | Hides language percentages or bytes while keeping the progress bars or chart. | boolean | `false` | | `size_weight` | Configures language stats algorithm (see [Language stats algorithm](#language-stats-algorithm)). | integer | `1` | | `count_weight` | Configures language stats algorithm (see [Language stats algorithm](#language-stats-algorithm)). | integer | `0` | | `stats_format` | Switches between two available formats for language's stats `percentages` and `bytes`. | enum | `percentages` | +1: This parameter supports light and dark mode. You can use `prog_bar_bg_color_light` and `prog_bar_bg_color_dark` to specify different colors for light and dark mode. + :::caution[Warning] Language names and custom title should be URI-escaped, as specified in [Percent Encoding](https://en.wikipedia.org/wiki/Percent-encoding) (i.e: `c++` should become `c%2B%2B`, `jupyter notebook` should become `jupyter%20notebook`, `Most Used Languages` should become `Most%20Used%20Languages`, etc.) You can use [urlencoder.org](https://www.urlencoder.org/) to help you do this automatically. ::: @@ -151,28 +153,45 @@ You can use the `&stats_format=bytes` option to display the stats in bytes inste ## Demo -![Top Langs](/api/top-langs?username=anuraghazra) +Top Langs +Top Langs ### Compact layout -![Top Langs](/api/top-langs?username=anuraghazra&layout=compact) +Top Langs +Top Langs ### Donut Chart layout -[![Top Langs](/api/top-langs?username=anuraghazra&layout=donut)](/api/top-langs?username=anuraghazra&layout=donut) + + Top Langs + Top Langs + ### Donut Vertical Chart layout -[![Top Langs](/api/top-langs?username=anuraghazra&layout=donut-vertical)](/api/top-langs?username=anuraghazra&layout=donut-vertical) + + Top Langs + Top Langs + ### Pie Chart layout -[![Top Langs](/api/top-langs?username=anuraghazra&layout=pie)](/api/top-langs?username=anuraghazra&layout=pie) + + Top Langs + Top Langs + ### Hidden progress bars -[![Top Langs](/api/top-langs?username=anuraghazra&hide_progress=true)](/api/top-langs?username=anuraghazra&hide_progress=true) + + Top Langs + Top Langs + ### Display bytes instead of percentage -[![Top Langs](/api/top-langs?username=anuraghazra&stats_format=bytes)](/api/top-langs?username=anuraghazra&stats_format=bytes) + + Top Langs + Top Langs + diff --git a/apps/frontend/src/content/docs/docs/cards/wakatime.md b/apps/frontend/src/content/docs/docs/cards/wakatime.md index 6757ca156ddec..ca44b3b6bc0b1 100644 --- a/apps/frontend/src/content/docs/docs/cards/wakatime.md +++ b/apps/frontend/src/content/docs/docs/cards/wakatime.md @@ -42,10 +42,13 @@ Custom title should be URI-escaped, as specified in [Percent Encoding](https://e ## Demo -![Alan's WakaTime stats](/api/wakatime?username=alan) +Alan's WakaTime stats +Alan's WakaTime stats -![Alan's WakaTime stats](/api/wakatime?username=alan&card_width=315&hide_progress=true) +Alan's WakaTime stats +Alan's WakaTime stats ### Compact layout -![Alan's WakaTime stats](/api/wakatime?username=alan&layout=compact) +Alan's WakaTime stats +Alan's WakaTime stats diff --git a/apps/frontend/src/content/docs/docs/customization/aligning-cards.md b/apps/frontend/src/content/docs/docs/customization/aligning-cards.md index 11ac84bade595..f581e0867f8b7 100644 --- a/apps/frontend/src/content/docs/docs/customization/aligning-cards.md +++ b/apps/frontend/src/content/docs/docs/customization/aligning-cards.md @@ -9,18 +9,22 @@ By default, GitHub does not lay out the cards side by side. To do that, you can ```html - + + + + - + + + + ``` @@ -29,10 +33,12 @@ By default, GitHub does not lay out the cards side by side. To do that, you can @@ -40,18 +46,31 @@ By default, GitHub does not lay out the cards side by side. To do that, you can ## Pinning repositories + ```html - + + + + - + + + + ``` @@ -60,10 +79,12 @@ By default, GitHub does not lay out the cards side by side. To do that, you can diff --git a/apps/frontend/src/content/docs/docs/customization/common-options.md b/apps/frontend/src/content/docs/docs/customization/common-options.md index f1b535437630d..ffddc281ea5a4 100644 --- a/apps/frontend/src/content/docs/docs/customization/common-options.md +++ b/apps/frontend/src/content/docs/docs/customization/common-options.md @@ -4,18 +4,20 @@ title: Common Options Every card accepts the options below, on top of the exclusive options listed on its own page. -| Name | Description | Type | Default value | -| --------------- | -------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------- | ------------- | -| `title_color` | Card's title color. | string (hex color) | `2f80ed` | -| `text_color` | Body text color. | string (hex color) | `434d58` | -| `icon_color` | Icons color if available. | string (hex color) | `4c71f2` | -| `border_color` | Card's border color. Does not apply when `hide_border` is enabled. | string (hex color) | `e4e2e2` | -| `bg_color` | Card's background color. | string (hex color or a gradient in the form of _angle,start,end_) | `fffefe` | -| `hide_border` | Hides the card's border. | boolean | `false` | -| `theme` | Name of the theme, choose from [all available themes](/frontend/docs/customization/themes/). | enum | `default` | -| `cache_seconds` | Sets the cache header manually (min: 21600, max: 86400). | integer | `21600` | -| `locale` | Sets the language in the card, you can check full list of available locales [here](/frontend/docs/customization/locales/). | enum | `en` | -| `border_radius` | Corner rounding on the card. | number | `4.5` | +| Name | Description | Type | Default value | +| -------------------------- | -------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------- | ------------- | +| `title_color`1 | Card's title color. | string (hex color) | `2f80ed` | +| `text_color`1 | Body text color. | string (hex color) | `434d58` | +| `icon_color`1 | Icons color if available. | string (hex color) | `4c71f2` | +| `border_color`1 | Card's border color. Does not apply when `hide_border` is enabled. | string (hex color) | `e4e2e2` | +| `bg_color`1 | Card's background color. | string (hex color or a gradient in the form of _angle,start,end_) | `fffefe` | +| `hide_border` | Hides the card's border. | boolean | `false` | +| `theme`1 | Name of the theme, choose from [all available themes](/frontend/docs/customization/themes/). | enum | `default` | +| `cache_seconds` | Sets the cache header manually (min: 21600, max: 86400). | integer | `21600` | +| `locale` | Sets the language in the card, you can check full list of available locales [here](/frontend/docs/customization/locales/). | enum | `en` | +| `border_radius` | Corner rounding on the card. | number | `4.5` | + +1: These parameters support light and dark mode. You can use `*_light` and `*_dark` variants to specify different values for light and dark mode. For example, `title_color_light` and `title_color_dark` will set the title color for light and dark mode respectively. :::caution[Warning] We use caching to decrease the load on our servers (see [this discussion](https://github.com/anuraghazra/github-readme-stats/issues/1471#issuecomment-1271551425)). Cards generated by [https://github-stats-extended.vercel.app/](https://github-stats-extended.vercel.app/frontend) are usually cached for a few days. If you need your card data to update more frequently, you can [deploy your own instance](/frontend/docs/deploy/) and set the [`CACHE_SECONDS`](/frontend/docs/deploy/#available-environment-variables) environment variable to your preferred value. Alternatively, you can use the [GitHub Actions workflow](/frontend/docs/deploy/#github-action) to update your cards on a schedule. diff --git a/apps/frontend/src/content/docs/docs/customization/theming.md b/apps/frontend/src/content/docs/docs/customization/theming.md index 31044477442a0..ec446bc973083 100644 --- a/apps/frontend/src/content/docs/docs/customization/theming.md +++ b/apps/frontend/src/content/docs/docs/customization/theming.md @@ -12,44 +12,65 @@ Use `&theme=THEME_NAME` parameter like so : ## All inbuilt themes -GitHub Stats Extended comes with several built-in themes (e.g. `dark`, `radical`, `merko`, `gruvbox`, `tokyonight`, `onedark`, `cobalt`, `synthwave`, `highcontrast`, `dracula`). +GitHub Stats Extended comes with several built-in themes (e.g. `radical`, `merko`, `gruvbox`, `tokyonight`, `onedark`, `cobalt`, `synthwave`, `highcontrast`, `dracula`). GitHub Stats Extended Themes +We recommend using `light_github` for light mode and `dark_github` for dark mode. These themes match GitHub's default light and dark themes, ensuring that your stats card looks consistent with the rest of your profile. For repository cards and gist cards we recommend using `light_github_repocard` and `dark_github_repocard`, which use a different icon color. + You can look at a preview for [all available themes](/frontend/docs/customization/themes/) or checkout the [theme config file](https://github.com/stats-organization/github-stats-extended/blob/master/packages/core/src/themes/index.ts). Please note that we paused the addition of new themes to decrease maintenance efforts; all pull requests related to new themes will be closed. -## Responsive Card Theme +## Light and Dark Mode -Anurag's GitHub stats -Anurag's GitHub stats +Anurag's GitHub stats +Anurag's GitHub stats -Since GitHub will re-upload the cards and serve them from their [CDN](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/about-anonymized-urls), we can not infer the browser/GitHub theme on the server side. There are, however, four methods you can use to create dynamics themes on the client side. +There are several methods you can use to create dynamic themes on the client side. -### Use GitHub's new media feature (recommended) +### Use GitHub's media feature (recommended) -You can use [GitHub's new media feature](https://github.blog/changelog/2022-05-19-specify-theme-context-for-images-in-markdown-beta/) in HTML to specify whether to display images for light or dark themes. This is done using the HTML `` element in combination with the `prefers-color-scheme` media feature. +You can use [GitHub's media feature](https://github.blog/changelog/2022-05-19-specify-theme-context-for-images-in-markdown-beta/) in HTML to specify which image to display in light or dark mode. This is done using the HTML `` element in combination with the `prefers-color-scheme` media feature. ```html - + ``` For example the image at the top of the Responsive Card Theme section works like this - it follows the theme you set for this page. +##### Set light and dark mode in one card + +Use the `theme_light` and `theme_dark` or `*_light` / `*_dark` color parameters to embed both modes in a single card URL. See [Light & Dark Mode Parameters](#light--dark-mode-parameters) below for full details. The card will then display in light mode or dark mode based on your browser / operating system settings. + +This approach doesn't use any GitHub-specific features, so it works even when embedding the card outside of GitHub. Or on your GitHub sponsorship page, which doesn't support the other, GitHub-specific approaches. + +However, unlike with the "media" feature or the theme context tag, if a user chooses a GitHub theme different from their browser/OS setting, the card will not be able to detect this. Since GitHub re-uploads the cards and serves them from their [CDN](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/about-anonymized-urls), we can not infer the GitHub theme with this approach, only the browser/OS theme. + +```md +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme_light=light_github&theme_dark=dark_github) +``` + +
+:eyes: Show example + +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme_light=light_github&theme_dark=dark_github) + +
+ ### Use GitHub's theme context tag -You can use [GitHub's theme context](https://github.blog/changelog/2021-11-24-specify-theme-context-for-images-in-markdown/) tags to switch the theme based on the user GitHub theme automatically. This is done by appending `#gh-dark-mode-only` or `#gh-light-mode-only` to the end of an image URL. This tag will define whether the image specified in the markdown is only shown to viewers using a light or a dark GitHub theme: +You can use [GitHub's theme context](https://github.blog/changelog/2021-11-24-specify-theme-context-for-images-in-markdown/) tags to switch the theme based on the user's GitHub theme. This is done by appending `#gh-dark-mode-only` or `#gh-light-mode-only` to the end of an image URL. This tag will define whether the image specified in the markdown is only shown to viewers using a light or a dark GitHub theme: ```md -[![Anurag's GitHub stats-Dark](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=dark#gh-dark-mode-only)](https://github.com/stats-organization/github-stats-extended#gh-dark-mode-only) -[![Anurag's GitHub stats-Light](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=default#gh-light-mode-only)](https://github.com/stats-organization/github-stats-extended#gh-light-mode-only) +[![Anurag's GitHub stats-Dark](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=dark_github#gh-dark-mode-only)](https://github.com/stats-organization/github-stats-extended#gh-dark-mode-only) +[![Anurag's GitHub stats-Light](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=light_github#gh-light-mode-only)](https://github.com/stats-organization/github-stats-extended#gh-light-mode-only) ``` For example the image at the top of the Responsive Card Theme section works like this - it follows the theme you set for this page. @@ -83,3 +104,27 @@ You can use the `bg_color` parameter to make any of [the available themes](/fron ![Anurag's GitHub stats](/api?username=anuraghazra&show_icons=true&bg_color=00000000) + +#### Light & Dark Mode Parameters + +You can use the `theme_light`, `theme_dark`, and `*_light` / `*_dark` color parameters to customize the look of your card for different modes. + +**Priority (lowest → highest):** + +- default theme +- `theme` +- `theme_light` / `theme_dark` +- general color parameters +- `*_light` / `*_dark` color parameters + +for example: + +```md +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme_light=light_github&theme_dark=dark_github) +``` + +You can mix different parameter types. For example, set a light theme and a dark theme, but choose a custom title color: + +```md +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme_light=light_github&theme_dark=dark_github&title_color=aabbcc) +``` diff --git a/apps/frontend/src/content/docs/docs/demos.md b/apps/frontend/src/content/docs/docs/demos.md index 268796ae5b17f..5993626fcdbe3 100644 --- a/apps/frontend/src/content/docs/docs/demos.md +++ b/apps/frontend/src/content/docs/docs/demos.md @@ -4,43 +4,53 @@ title: Demo Gallery ## Default -![Anurag's GitHub stats](/api?username=anuraghazra) +Anurag's GitHub stats +Anurag's GitHub stats ## Hiding specific stats -![Anurag's GitHub stats](/api?username=anuraghazra&hide=contribs,issues) +Anurag's GitHub stats +Anurag's GitHub stats ## Showing additional stats -![Anurag's GitHub stats](/api?username=anuraghazra&show_icons=true&show=reviews,discussions_started,discussions_answered,prs_merged,prs_merged_percentage,prs_commented,prs_reviewed,issues_commented) +Anurag's GitHub stats +Anurag's GitHub stats ## Showing stats for a specific repository -![Anurag's GitHub stats for anuraghazra/github-readme-stats](/api?username=anuraghazra&repo=anuraghazra/github-readme-stats&hide=prs,issues,stars,commits,contribs&show=prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented&hide_rank=true&custom_title=Anurag%27s%20Stats%20for%20github-readme-stats&card_width=370) +Anurag's GitHub stats for anuraghazra/github-readme-stats +Anurag's GitHub stats for anuraghazra/github-readme-stats ## Showing stats for a specific organization -![Anurag's GitHub stats for razorpay](/api?username=anuraghazra&owner=razorpay&hide=prs,issues,stars,commits,contribs&show=prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented&hide_rank=true&custom_title=Anurag%27s%20Stats%20for%20razorpay&card_width=370) +Anurag's GitHub stats for razorpay +Anurag's GitHub stats for razorpay ## Showing icons -![Anurag's GitHub stats](/api?username=anuraghazra&hide=issues&show_icons=true) +Anurag's GitHub stats +Anurag's GitHub stats ## Shows GitHub logo instead rank level -![Anurag's GitHub stats](/api?username=anuraghazra&rank_icon=github) +Anurag's GitHub stats +Anurag's GitHub stats ## Shows user rank percentile instead of rank level -![Anurag's GitHub stats](/api?username=anuraghazra&rank_icon=percentile) +Anurag's GitHub stats +Anurag's GitHub stats ## Customize Border Color -![Anurag's GitHub stats](/api?username=anuraghazra&border_color=2e4058) +Anurag's GitHub stats +Anurag's GitHub stats ## Include All Commits -![Anurag's GitHub stats](/api?username=anuraghazra&include_all_commits=true) +Anurag's GitHub stats +Anurag's GitHub stats ## Themes @@ -58,7 +68,8 @@ Choose from any of the [default themes](/frontend/docs/customization/themes/) ## Setting card locale -![Anurag's GitHub stats](/api?username=anuraghazra&locale=es) +Anurag's GitHub stats +Anurag's GitHub stats ## Customizing repo card @@ -66,7 +77,8 @@ Choose from any of the [default themes](/frontend/docs/customization/themes/) ## Gist card -![Gist Card](/api/gist?id=bbfce31e0217a3689c8d961a356cb10d) +Gist Card +Gist Card ## Customizing gist card @@ -74,8 +86,10 @@ Choose from any of the [default themes](/frontend/docs/customization/themes/) ## Top languages -![Top Langs](/api/top-langs?username=anuraghazra) +Top Langs +Top Langs ## WakaTime card -![Alan's WakaTime stats](/api/wakatime?username=alan) +Alan's WakaTime stats +Alan's WakaTime stats diff --git a/apps/frontend/src/content/docs/docs/fork.md b/apps/frontend/src/content/docs/docs/fork.md index d1e57e1cd0f95..da4e77e150760 100644 --- a/apps/frontend/src/content/docs/docs/fork.md +++ b/apps/frontend/src/content/docs/docs/fork.md @@ -32,11 +32,32 @@ GitHub-Stats-Extended proactively precomputes and caches cards. This solves the GitHub-Stats-Extended fetches up to 1000 of your starred repositories to accurately compute your stars count. In github-readme-stats, this is limited to 100 repos because github-readme-stats doesn't have the above-mentioned performance improvements. +### Light and dark mode in a single card URL + +GitHub-Stats-Extended adds `theme_light`, `theme_dark`, and `*_light` / `*_dark` color parameter variants (e.g. `title_color_light`, `title_color_dark`) that let you embed both light and dark mode in a single card URL. The card will automatically switch between the two based on the viewer's browser or OS theme setting. + +```md +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&theme_light=light_github&theme_dark=dark_github) +``` + +This approach works on any platform, not just GitHub - and on GitHub sponsorship pages, which don't support the other approaches to light/dark theming. See [Set light and dark mode in one card](/frontend/docs/customization/theming/#set-light-and-dark-mode-in-one-card) for full documentation. + +### GitHub-themed light and dark themes + +GitHub-Stats-Extended adds `light_github` and `dark_github` [themes](/frontend/docs/customization/themes/) that exactly match GitHub's default light and dark UI colors. For repo and gist cards, use `light_github_repocard` and `dark_github_repocard` instead, which use a different icon color. + +### New Contributions stat + +GitHub-Stats-Extended adds an optional stat showing the total number of [contributions](https://docs.github.com/en/account-and-profile/reference/profile-contributions-reference#what-counts-as-a-contribution) (commits, pull requests, issues, etc.) across all years of a user's GitHub history. Add `&show=contributions` to your stats card URL to enable it. Whether private contributions are counted depends on [your GitHub profile visibility settings](https://docs.github.com/en/account-and-profile/how-tos/contribution-settings/manage-visibility-settings-for-private-contributions-and-achievements#changing-the-visibility-of-your-private-contributions). + +Note that the pre-existing "Contributed to" stat indicates the number of repositories a user has contributed to, not the number of contributions. + ### Customization of top languages card -GitHub-Stats-Extended allows you to display your top languages without any numbers via the `hide_values` parameter. And the `prog_bar_bg_color` parameter allows you to customize the background color of the progress bars, e.g. by setting it to white: +GitHub-Stats-Extended allows you to display your top languages without any numbers via the `hide_values` parameter. And the `prog_bar_bg_color` parameter allows you to customize the background color of the progress bars, e.g. by setting it to transparent: -![anuraghazra's top languages without numbers](/api/top-langs?username=anuraghazra&langs_count=4&hide_values=true&prog_bar_bg_color=fff) +anuraghazra's top languages without numbers +anuraghazra's top languages without numbers ### Private contributions support @@ -54,7 +75,8 @@ See [here](/frontend/docs/cards/stats/#filtering-by-repository-and-owner) for fu anuraghazra's contributions to github-readme-stats: -![anuraghazra's contributions to github-readme-stats](/api/pin?username=anuraghazra&repo=github-readme-stats&show=prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented) +anuraghazra's contributions to github-readme-stats +anuraghazra's contributions to github-readme-stats Add `&show=prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented` to your repo card url to display your contributions to the pinned repository. @@ -62,7 +84,8 @@ Add `&show=prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commen anurag's contributions to razorpay: -![anurag's contributions to razorpay](/api?username=anuraghazra&owner=razorpay&hide=prs,issues,stars,commits,contribs&show=prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented&hide_rank=true&custom_title=anurag%27s%20contributions%20to%20razorpay&card_width=333) +anurag's contributions to razorpay +anurag's contributions to razorpay Add `&repo=userA/repoA,orgB/repoB` or `&owner=userC,orgD` to your profile stats url to filter your contributions by repo or organization. (The screenshot above uses further customization options.) From cad861a1c01b4d00ba93b08fdcf25577dd77b778 Mon Sep 17 00:00:00 2001 From: martin-mfg <2026226+martin-mfg@users.noreply.github.com> Date: Mon, 24 Aug 2026 19:39:55 +0200 Subject: [PATCH 03/15] pnpm:format, fix emoji --- .../src/content/docs/docs/cards/stats.md | 42 +++++++++---------- .../content/docs/docs/cards/top-languages.md | 34 +++++++-------- .../docs/docs/customization/theming.md | 2 +- 3 files changed, 39 insertions(+), 39 deletions(-) diff --git a/apps/frontend/src/content/docs/docs/cards/stats.md b/apps/frontend/src/content/docs/docs/cards/stats.md index bfea846b4f8e6..a7ec08a8e9538 100644 --- a/apps/frontend/src/content/docs/docs/cards/stats.md +++ b/apps/frontend/src/content/docs/docs/cards/stats.md @@ -60,28 +60,28 @@ You can specify a year and fetch only the commits that were made in that year by You can customize the appearance and behavior of the stats card using the [common options](/frontend/docs/customization/common-options/) and the exclusive options listed in the table below. -| Name | Description | Type | Default value | -| ------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------- | ----------------------------------- | -| `hide` | Hides the [specified items](#hiding-individual-stats) from stats. | string (comma-separated values) | `null` | -| `hide_title` | Hides the title of your stats card. | boolean | `false` | -| `card_width` | Sets the card's width manually. | number | `500px (approx.)` | -| `hide_rank` | Hides the rank and automatically resizes the card width. | boolean | `false` | -| `rank_icon` | Shows alternative rank icon (i.e. `github`, `percentile` or `default`). | enum | `default` | -| `show_icons` | Shows icons near all stats. | boolean | `false` | -| `include_all_commits` | Count total commits instead of just the current year commits. | boolean | `false` | -| `line_height` | Sets the line height between text. | integer | `25` | -| `exclude_repo` | Excludes specified repositories. Affects only the count for "Total Stars Earned". | string (comma-separated values) | `null` | -| `repo` | Count only stats from the specified repositories. Affects only [certain items](#filtering-by-repository-and-owner). | string (comma-separated values) | `null` | -| `owner` | Count only stats from the specified organizations or users. Affects only [certain items](#filtering-by-repository-and-owner). | string (comma-separated values) | `null` | -| `role` | Include repositories where the user has one of the specified [roles](https://docs.github.com/en/graphql/reference/repos#enum-repositoryaffiliation) (OWNER, ORGANIZATION_MEMBER, COLLABORATOR). | string (comma-separated values) | `OWNER` | -| `custom_title` | Sets a custom title for the card. | string | ` GitHub Stats` | -| `text_bold` | Uses bold text. | boolean | `true` | -| `disable_animations` | Disables all animations in the card. | boolean | `false` | -| `ring_color`1 | Color of the rank circle. | string (hex color) | `2f80ed` | -| `number_format` | Switches between two available formats for displaying the card values: `short` (i.e. `6.6k`) and `long` (i.e. `6626`). | enum | `short` | -| `number_precision` | Enforce the number of digits after the decimal point for `short` number format. Must be an integer between 0 and 2. Will be ignored for `long` number format. | integer (0, 1 or 2) | `null` | +| Name | Description | Type | Default value | +| ------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------- | ----------------------------------- | +| `hide` | Hides the [specified items](#hiding-individual-stats) from stats. | string (comma-separated values) | `null` | +| `hide_title` | Hides the title of your stats card. | boolean | `false` | +| `card_width` | Sets the card's width manually. | number | `500px (approx.)` | +| `hide_rank` | Hides the rank and automatically resizes the card width. | boolean | `false` | +| `rank_icon` | Shows alternative rank icon (i.e. `github`, `percentile` or `default`). | enum | `default` | +| `show_icons` | Shows icons near all stats. | boolean | `false` | +| `include_all_commits` | Count total commits instead of just the current year commits. | boolean | `false` | +| `line_height` | Sets the line height between text. | integer | `25` | +| `exclude_repo` | Excludes specified repositories. Affects only the count for "Total Stars Earned". | string (comma-separated values) | `null` | +| `repo` | Count only stats from the specified repositories. Affects only [certain items](#filtering-by-repository-and-owner). | string (comma-separated values) | `null` | +| `owner` | Count only stats from the specified organizations or users. Affects only [certain items](#filtering-by-repository-and-owner). | string (comma-separated values) | `null` | +| `role` | Include repositories where the user has one of the specified [roles](https://docs.github.com/en/graphql/reference/repos#enum-repositoryaffiliation) (OWNER, ORGANIZATION_MEMBER, COLLABORATOR). | string (comma-separated values) | `OWNER` | +| `custom_title` | Sets a custom title for the card. | string | ` GitHub Stats` | +| `text_bold` | Uses bold text. | boolean | `true` | +| `disable_animations` | Disables all animations in the card. | boolean | `false` | +| `ring_color`1 | Color of the rank circle. | string (hex color) | `2f80ed` | +| `number_format` | Switches between two available formats for displaying the card values: `short` (i.e. `6.6k`) and `long` (i.e. `6626`). | enum | `short` | +| `number_precision` | Enforce the number of digits after the decimal point for `short` number format. Must be an integer between 0 and 2. Will be ignored for `long` number format. | integer (0, 1 or 2) | `null` | | `show` | Shows [additional items](#showing-additional-individual-stats) on the stats card (i.e. `contributions`, `reviews`, `discussions_started`, `discussions_answered`, `prs_merged` or `prs_merged_percentage`. And the following, which support the `repo` and `owner` filters: `prs_authored`, `prs_commented`, `prs_reviewed`, `issues_authored` or `issues_commented`). | string (comma-separated values) | `null` | -| `commits_year` | Filters and counts only commits made in the specified year. | integer _(YYYY)_ | ` (one year to date)` | +| `commits_year` | Filters and counts only commits made in the specified year. | integer _(YYYY)_ | ` (one year to date)` | 1: This parameter supports light and dark mode. You can use `ring_color_light` and `ring_color_dark` to specify different colors for light and dark mode. diff --git a/apps/frontend/src/content/docs/docs/cards/top-languages.md b/apps/frontend/src/content/docs/docs/cards/top-languages.md index b5293ceb48db8..707e343c0951c 100644 --- a/apps/frontend/src/content/docs/docs/cards/top-languages.md +++ b/apps/frontend/src/content/docs/docs/cards/top-languages.md @@ -30,23 +30,23 @@ Endpoint: `api/top-langs?username=anuraghazra` You can customize the appearance and behavior of the top languages card using the [common options](/frontend/docs/customization/common-options/) and exclusive options listed in the table below. -| Name | Description | Type | Default value | -| -------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------- | --------------------------------------------------- | -| `hide` | Hides the [specified languages](#hide-individual-languages) from card. | string (comma-separated values) | `null` | -| `hide_title` | Hides the title of your card. | boolean | `false` | -| `layout` | Switches between five available layouts `normal` & `compact` & `donut` & `donut-vertical` & `pie`. | enum | `normal` | -| `card_width` | Sets the card's width manually. | number | `300` | -| `langs_count` | Shows more languages on the card, between 1-20. | integer | `5` for `normal` and `donut`, `6` for other layouts | -| `exclude_repo` | Excludes specified repositories. | string (comma-separated values) | `null` | -| `role` | Include repositories where the user has one of the specified [roles](https://docs.github.com/en/graphql/reference/repos#enum-repositoryaffiliation) (OWNER, ORGANIZATION_MEMBER, COLLABORATOR). | string (comma-separated values) | `OWNER` | -| `custom_title` | Sets a custom title for the card. | string | `Most Used Languages` | -| `disable_animations` | Disables all animations in the card. | boolean | `false` | -| `prog_bar_bg_color`1 | Background color of the bars. (Applies only to `normal` layout.) | string (hex color) | `#ddd` | -| `hide_progress` | Uses the compact layout option, hides percentages, and removes the bars. | boolean | `false` | -| `hide_values` | Hides language percentages or bytes while keeping the progress bars or chart. | boolean | `false` | -| `size_weight` | Configures language stats algorithm (see [Language stats algorithm](#language-stats-algorithm)). | integer | `1` | -| `count_weight` | Configures language stats algorithm (see [Language stats algorithm](#language-stats-algorithm)). | integer | `0` | -| `stats_format` | Switches between two available formats for language's stats `percentages` and `bytes`. | enum | `percentages` | +| Name | Description | Type | Default value | +| ------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------- | --------------------------------------------------- | +| `hide` | Hides the [specified languages](#hide-individual-languages) from card. | string (comma-separated values) | `null` | +| `hide_title` | Hides the title of your card. | boolean | `false` | +| `layout` | Switches between five available layouts `normal` & `compact` & `donut` & `donut-vertical` & `pie`. | enum | `normal` | +| `card_width` | Sets the card's width manually. | number | `300` | +| `langs_count` | Shows more languages on the card, between 1-20. | integer | `5` for `normal` and `donut`, `6` for other layouts | +| `exclude_repo` | Excludes specified repositories. | string (comma-separated values) | `null` | +| `role` | Include repositories where the user has one of the specified [roles](https://docs.github.com/en/graphql/reference/repos#enum-repositoryaffiliation) (OWNER, ORGANIZATION_MEMBER, COLLABORATOR). | string (comma-separated values) | `OWNER` | +| `custom_title` | Sets a custom title for the card. | string | `Most Used Languages` | +| `disable_animations` | Disables all animations in the card. | boolean | `false` | +| `prog_bar_bg_color`1 | Background color of the bars. (Applies only to `normal` layout.) | string (hex color) | `#ddd` | +| `hide_progress` | Uses the compact layout option, hides percentages, and removes the bars. | boolean | `false` | +| `hide_values` | Hides language percentages or bytes while keeping the progress bars or chart. | boolean | `false` | +| `size_weight` | Configures language stats algorithm (see [Language stats algorithm](#language-stats-algorithm)). | integer | `1` | +| `count_weight` | Configures language stats algorithm (see [Language stats algorithm](#language-stats-algorithm)). | integer | `0` | +| `stats_format` | Switches between two available formats for language's stats `percentages` and `bytes`. | enum | `percentages` | 1: This parameter supports light and dark mode. You can use `prog_bar_bg_color_light` and `prog_bar_bg_color_dark` to specify different colors for light and dark mode. diff --git a/apps/frontend/src/content/docs/docs/customization/theming.md b/apps/frontend/src/content/docs/docs/customization/theming.md index ec446bc973083..19dd3a02990d4 100644 --- a/apps/frontend/src/content/docs/docs/customization/theming.md +++ b/apps/frontend/src/content/docs/docs/customization/theming.md @@ -58,7 +58,7 @@ However, unlike with the "media" feature or the theme context tag, if a user cho ```
-:eyes: Show example +👀 Show example ![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme_light=light_github&theme_dark=dark_github) From 2275d0d4dba253441f18a08eeeaed839eabd4a14 Mon Sep 17 00:00:00 2001 From: martin-mfg <2026226+martin-mfg@users.noreply.github.com> Date: Mon, 24 Aug 2026 19:44:20 +0200 Subject: [PATCH 04/15] fix headings in theming.md --- apps/frontend/src/content/docs/docs/customization/theming.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/frontend/src/content/docs/docs/customization/theming.md b/apps/frontend/src/content/docs/docs/customization/theming.md index 19dd3a02990d4..552f4318fe2d5 100644 --- a/apps/frontend/src/content/docs/docs/customization/theming.md +++ b/apps/frontend/src/content/docs/docs/customization/theming.md @@ -45,7 +45,7 @@ You can use [GitHub's media feature](https://github.blog/changelog/2022-05-19-sp For example the image at the top of the Responsive Card Theme section works like this - it follows the theme you set for this page. -##### Set light and dark mode in one card +### Set light and dark mode in one card Use the `theme_light` and `theme_dark` or `*_light` / `*_dark` color parameters to embed both modes in a single card URL. See [Light & Dark Mode Parameters](#light--dark-mode-parameters) below for full details. The card will then display in light mode or dark mode based on your browser / operating system settings. @@ -105,7 +105,7 @@ You can use the `bg_color` parameter to make any of [the available themes](/fron
-#### Light & Dark Mode Parameters +## Light & Dark Mode Parameters You can use the `theme_light`, `theme_dark`, and `*_light` / `*_dark` color parameters to customize the look of your card for different modes. From 6bd0f6ae186df8824051322497b94d40596d06ae Mon Sep 17 00:00:00 2001 From: martin-mfg <2026226+martin-mfg@users.noreply.github.com> Date: Tue, 25 Aug 2026 14:06:00 +0200 Subject: [PATCH 05/15] Reapply "intermediate fix for docs (#507)" This reverts commit f732243f8ffe27daaa83df22dc6f8ec580072055. --- .github/CONTRIBUTING.md | 8 +- README.md | 6 +- docs/advanced_documentation.md | 752 +++++++++++++++++++++++++++++ docs/deploy.md | 204 ++++++++ docs/fork.md | 98 ++++ docs/frontend-screenshot.png | Bin 0 -> 107178 bytes packages/core/src/themes/README.md | 226 +++++++++ 7 files changed, 1287 insertions(+), 7 deletions(-) create mode 100644 docs/advanced_documentation.md create mode 100644 docs/deploy.md create mode 100644 docs/fork.md create mode 100644 docs/frontend-screenshot.png create mode 100644 packages/core/src/themes/README.md diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 1c8ef1cbe3e83..85092a33e4865 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -19,13 +19,13 @@ root-relative path (`/api?username=...`), so those images only load with the bac pnpm run dev:backend # card endpoints on :9000, proxied by the frontend dev server ``` -It needs a [Personal Access Token](https://github-stats-extended.vercel.app/frontend/docs/deploy/#first-step-get-your-personal-access-token-pat) in `apps/backend/.env` (the SQL database is optional): +It needs a [Personal Access Token](../docs/deploy.md#first-step-get-your-personal-access-token-pat) in `apps/backend/.env` (the SQL database is optional): ``` PAT_1=your_token_here ``` -You can also deploy to Vercel and test there, as described in the [deployment guide](https://github-stats-extended.vercel.app/frontend/docs/deploy/). +You can also deploy to Vercel and test there, as described in the [deployment guide](../docs/deploy.md). ## Tests @@ -61,11 +61,11 @@ Never edit the generated files by hand — change the `.graphql` file and regene ## Themes Contribution -We have stopped the addition of new themes to decrease maintenance efforts. If you are considering contributing your theme just because you are using it personally, then instead of adding it to our theme collection, you can use card [customization options](https://github-stats-extended.vercel.app/frontend/docs/customization/common-options/). +We have stopped the addition of new themes to decrease maintenance efforts. If you are considering contributing your theme just because you are using it personally, then instead of adding it to our theme collection, you can use card [customization options](../docs/advanced_documentation.md#customization). ## Translations Contribution -GitHub-Stats-Extended supports multiple languages. If we are missing your language, you can contribute it! You can check the currently supported languages [here](https://github-stats-extended.vercel.app/frontend/docs/customization/locales/). +GitHub-Stats-Extended supports multiple languages. If we are missing your language, you can contribute it! You can check the currently supported languages [here](../docs/advanced_documentation.md#available-locales). To contribute your language you need to edit the [packages/core/src/translations.ts](../packages/core/src/translations.ts) file and add a new property to each object where the key is the language code in [ISO 639-1 standard](https://www.andiamo.co.uk/resources/iso-language-codes/) and the value is the translated string. diff --git a/README.md b/README.md index a87e84e724b36..9a77577671491 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ -GitHub-Stats-Extended is the [extended, actively maintained successor](https://github-stats-extended.vercel.app/frontend/docs/fork/) of [github-readme-stats](https://github.com/anuraghazra/github-readme-stats). It generates [various stats cards](#card-types) about your GitHub contributions, your top languages and more. You can [customize](#documentation) the cards via multiple parameters. +GitHub-Stats-Extended is the [extended, actively maintained successor](docs/fork.md) of [github-readme-stats](https://github.com/anuraghazra/github-readme-stats). It generates [various stats cards](#card-types) about your GitHub contributions, your top languages and more. You can [customize](#documentation) the cards via multiple parameters. ## Table of Contents @@ -43,7 +43,7 @@ To migrate from [github-readme-stats](https://github.com/anuraghazra/github-read + https://github-stats-extended.vercel.app/api?username=octocat&theme=radical ``` -GitHub-Stats-Extended aims to be fully compatible with github-readme-stats. For details see [Compatibility Notes](https://github-stats-extended.vercel.app/frontend/docs/fork/#compatibility-notes). +GitHub-Stats-Extended aims to be fully compatible with github-readme-stats. For details see [Compatibility Notes](docs/fork.md#compatibility-notes). ## Card Types @@ -109,7 +109,7 @@ GitHub-Stats-Extended aims to be fully compatible with github-readme-stats. For ## Documentation -The [card wizard](https://github-stats-extended.vercel.app/frontend) offers some essential customization options. For more advanced customization and other project info check out the [documentation](https://github-stats-extended.vercel.app/frontend/docs/cards/stats/). +The [card wizard](https://github-stats-extended.vercel.app/frontend) offers some essential customization options. For more advanced customization and other project info check out the [advanced documentation](docs/advanced_documentation.md). ## Acknowledgements diff --git a/docs/advanced_documentation.md b/docs/advanced_documentation.md new file mode 100644 index 0000000000000..01d2acb36f522 --- /dev/null +++ b/docs/advanced_documentation.md @@ -0,0 +1,752 @@ +# Advanced Customization + +## Table of Contents + +- [GitHub Stats Card](#github-stats-card) +- [GitHub Extra Pins](#github-extra-pins) +- [GitHub Gist Pins](#github-gist-pins) +- [Top Languages Card](#top-languages-card) +- [WakaTime Stats Card](#wakatime-stats-card) +- [All Demos](#all-demos) +- [Quick Tip (Align The Cards)](#quick-tip-align-the-cards) + +## GitHub Stats Card + +> [!WARNING] +> By default, the stats card only shows statistics like stars, commits, and pull requests from public repositories. To show private statistics on the stats card, [allow GitHub-Stats-Extended to access your private contributions](fork.md#private-contributions-support) or [deploy your own instance](deploy.md). + +> [!NOTE] +> Available ranks are S (top 1%), A+ (12.5%), A (25%), A- (37.5%), B+ (50%), B (62.5%), B- (75%), C+ (87.5%) and C (everyone). This ranking scheme is based on the [Japanese academic grading](https://wikipedia.org/wiki/Academic_grading_in_Japan) system. The global percentile is calculated as a weighted sum of percentiles for each statistic (number of commits, pull requests, reviews, issues, stars, and followers), based on the cumulative distribution function of the [exponential](https://wikipedia.org/wiki/exponential_distribution) and the [log-normal](https://wikipedia.org/wiki/Log-normal_distribution) distributions. The implementation can be investigated at [calculateRank.ts](https://github.com/stats-organization/github-stats-extended/blob/master/packages/core/src/calculateRank.ts). The circle around the rank shows 100 minus the global percentile. + +### Hiding individual stats + +You can pass a query parameter `&hide=` to hide any specific stats with comma-separated values. + +> Options: `&hide=stars,commits,prs,issues,contribs` + +```md +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&hide=contribs,prs) +``` + +### Showing additional individual stats + +You can pass a query parameter `&show=` to show any specific additional stats with comma-separated values. + +> Options: `&show=reviews,discussions_started,discussions_answered,prs_merged,prs_merged_percentage,prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented` + +```md +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show=reviews,discussions_started,discussions_answered,prs_merged,prs_merged_percentage,prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented) +``` + +### Showing icons + +To enable icons, you can pass `&show_icons=true` in the query param, like so: + +```md +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true) +``` + +### Filtering by repository and owner + +To compute your stats for only a specific repository, you can pass a query parameter `&repo=/`. You can also specify a comma-separated list of multiple repositories, e.g. `&repo=userA/repositoryA,organizationB/repositoryB`. And you can select all repositories owned by specific organizations or users by providing a comma-separated list of owners via the `owner` query parameter, e.g. `&owner=userA,organizationB,organizationC`. The `repo` and `owner` filters are supported by the following items: `commits` (when used with `&include_all_commits=true`), `prs_authored`, `prs_commented`, `prs_reviewed`, `issues_authored` and `issues_commented`. Note that most of these items are not displayed by default, but [you can enable them individually](#showing-additional-individual-stats). + +(Some of these mentioned items are similar to other items which are included by default, e.g. `issues_authored` is similar to `issues`. The difference is how these values are fetched - [via GraphQL or via REST API](https://github.com/anuraghazra/github-readme-stats/discussions/1770#number-of-commits-is-incorrect). The default items use GraphQL, but filtering by repository works better via REST API.) + +Alternatively, you can use the `role` parameter to specify a comma-separated list of [roles](https://docs.github.com/en/graphql/reference/enums#repositoryaffiliation). The stats will include all repositories in which the user has the specified role. By default, only repositories where the user is OWNER will be included, but you could e.g. set `&role=OWNER,ORGANIZATION_MEMBER,COLLABORATOR`. The `role` parameter is supported by all items except the following: `commits` (when used with `&include_all_commits=true`), `prs_authored`, `prs_commented`, `prs_reviewed`, `issues_authored` and `issues_commented`. + +### Showing commits count for specified year + +You can specify a year and fetch only the commits that were made in that year by passing `&commits_year=YYYY` to the parameter. + +```md +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&commits_year=2020) +``` + +### Themes + +With inbuilt themes, you can customize the look of the card without doing any [manual customization](#customization). + +Use `&theme=THEME_NAME` parameter like so : + +```md +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=radical) +``` + +#### All inbuilt themes + +GitHub Stats Extended comes with several built-in themes (e.g. `dark`, `radical`, `merko`, `gruvbox`, `tokyonight`, `onedark`, `cobalt`, `synthwave`, `highcontrast`, `dracula`). + +GitHub Stats Extended Themes + +You can look at a preview for [all available themes](../packages/core/src/themes/README.md) or checkout the [theme config file](../packages/core/src/themes/index.ts). Please note that we paused the addition of new themes to decrease maintenance efforts; all pull requests related to new themes will be closed. + +#### Responsive Card Theme + +[![Anurag's GitHub stats-Dark](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=dark#gh-dark-mode-only)](https://github.com/stats-organization/github-stats-extended#responsive-card-theme#gh-dark-mode-only) +[![Anurag's GitHub stats-Light](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=default#gh-light-mode-only)](https://github.com/stats-organization/github-stats-extended#responsive-card-theme#gh-light-mode-only) + +Since GitHub will re-upload the cards and serve them from their [CDN](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/about-anonymized-urls), we can not infer the browser/GitHub theme on the server side. There are, however, four methods you can use to create dynamics themes on the client side. + +##### Use GitHub's new media feature (recommended) + +You can use [GitHub's new media feature](https://github.blog/changelog/2022-05-19-specify-theme-context-for-images-in-markdown-beta/) in HTML to specify whether to display images for light or dark themes. This is done using the HTML `` element in combination with the `prefers-color-scheme` media feature. + + +```html + + + + + +``` + +
+:eyes: Show example + + + + + + + +
+ +##### Use GitHub's theme context tag + +You can use [GitHub's theme context](https://github.blog/changelog/2021-11-24-specify-theme-context-for-images-in-markdown/) tags to switch the theme based on the user GitHub theme automatically. This is done by appending `#gh-dark-mode-only` or `#gh-light-mode-only` to the end of an image URL. This tag will define whether the image specified in the markdown is only shown to viewers using a light or a dark GitHub theme: + +```md +[![Anurag's GitHub stats-Dark](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=dark#gh-dark-mode-only)](https://github.com/stats-organization/github-stats-extended#gh-dark-mode-only) +[![Anurag's GitHub stats-Light](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=default#gh-light-mode-only)](https://github.com/stats-organization/github-stats-extended#gh-light-mode-only) +``` + +
+:eyes: Show example + +[![Anurag's GitHub stats-Dark](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=dark#gh-dark-mode-only)](https://github.com/stats-organization/github-stats-extended#gh-dark-mode-only) +[![Anurag's GitHub stats-Light](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=default#gh-light-mode-only)](https://github.com/stats-organization/github-stats-extended#gh-light-mode-only) + +
+ +##### Use the transparent theme + +We have included a `transparent` theme that has a transparent background. This theme is optimized to look good on GitHub's dark and light default themes. You can enable this theme using the `&theme=transparent` parameter like so: + +```md +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=transparent) +``` + +
+:eyes: Show example + +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=transparent) + +
+ +##### Add transparent alpha channel to a themes bg\_color + +You can use the `bg_color` parameter to make any of [the available themes](../packages/core/src/themes/README.md) transparent. This is done by setting the `bg_color` to a color with a transparent alpha channel (i.e. `bg_color=00000000`): + +```md +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&bg_color=00000000) +``` + +
+:eyes: Show example + +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&bg_color=00000000) + +
+ +### Customization + +You can customize the appearance of all your cards however you wish with URL parameters. + +#### Common Options + +| Name | Description | Type | Default value | +| --------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------- | ------------- | +| `title_color` | Card's title color. | string (hex color) | `2f80ed` | +| `text_color` | Body text color. | string (hex color) | `434d58` | +| `icon_color` | Icons color if available. | string (hex color) | `4c71f2` | +| `border_color` | Card's border color. Does not apply when `hide_border` is enabled. | string (hex color) | `e4e2e2` | +| `bg_color` | Card's background color. | string (hex color or a gradient in the form of _angle,start,end_) | `fffefe` | +| `hide_border` | Hides the card's border. | boolean | `false` | +| `theme` | Name of the theme, choose from [all available themes](../packages/core/src/themes/README.md). | enum | `default` | +| `cache_seconds` | Sets the cache header manually (min: 21600, max: 86400). | integer | `21600` | +| `locale` | Sets the language in the card, you can check full list of available locales [here](#available-locales). | enum | `en` | +| `border_radius` | Corner rounding on the card. | number | `4.5` | + +> [!WARNING] +> We use caching to decrease the load on our servers (see ). Cards generated by [https://github-stats-extended.vercel.app/](https://github-stats-extended.vercel.app/frontend) are cached for a few hours or days, depending on server load. If you want the data on your cards to be updated more often you can [deploy your own instance](deploy.md) and set [environment variable](deploy.md#available-environment-variables) `CACHE_SECONDS` to a value of your choosing. Or you can use the [GitHub Action workflow](https://github.com/stats-organization/github-readme-stats-action). + +##### Gradient in bg\_color + +You can provide multiple comma-separated values in the bg\_color option to render a gradient with the following format: + + &bg_color=DEG,COLOR1,COLOR2,COLOR3...COLOR10 + +##### Available locales + +Here is a list of all available locales: + + + +
+ +| Code | Locale | +| ------- | ---------------- | +| `ar` | Arabic | +| `az` | Azerbaijani | +| `be` | Belarusian | +| `bn` | Bengali | +| `bg` | Bulgarian | +| `my` | Burmese | +| `ca` | Catalan | +| `cn` | Chinese | +| `zh-tw` | Chinese (Taiwan) | +| `cs` | Czech | +| `nl` | Dutch | +| `en` | English | +| `fil` | Filipino | +| `fi` | Finnish | +| `fr` | French | +| `de` | German | + + + +| Code | Locale | +| ------- | --------------------- | +| `el` | Greek | +| `he` | Hebrew | +| `hi` | Hindi | +| `hu` | Hungarian | +| `id` | Indonesian | +| `it` | Italian | +| `ja` | Japanese | +| `kr` | Korean | +| `ml` | Malayalam | +| `np` | Nepali | +| `no` | Norwegian | +| `fa` | Persian (Farsi) | +| `pl` | Polish | +| `pt-br` | Portuguese (Brazil) | +| `pt-pt` | Portuguese (Portugal) | +| `ro` | Romanian | + + + +| Code | Locale | +| --------- | ------------------ | +| `ru` | Russian | +| `sa` | Sanskrit | +| `sr` | Serbian (Cyrillic) | +| `sr-latn` | Serbian (Latin) | +| `sk` | Slovak | +| `es` | Spanish | +| `sw` | Swahili | +| `se` | Swedish | +| `ta` | Tamil | +| `th` | Thai | +| `tr` | Turkish | +| `uk-ua` | Ukrainian | +| `ur` | Urdu | +| `uz` | Uzbek | +| `vi` | Vietnamese | + +
+ +If we don't support your language, please consider contributing! You can find more information about how to do it in our [contributing guidelines](../.github/CONTRIBUTING.md#translations-contribution). + +#### Stats Card Exclusive Options + +| Name | Description | Type | Default value | +| --------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------- | ----------------------------------- | +| `hide` | Hides the [specified items](#hiding-individual-stats) from stats. | string (comma-separated values) | `null` | +| `hide_title` | Hides the title of your stats card. | boolean | `false` | +| `card_width` | Sets the card's width manually. | number | `500px (approx.)` | +| `hide_rank` | Hides the rank and automatically resizes the card width. | boolean | `false` | +| `rank_icon` | Shows alternative rank icon (i.e. `github`, `percentile` or `default`). | enum | `default` | +| `show_icons` | Shows icons near all stats. | boolean | `false` | +| `include_all_commits` | Count total commits instead of just the current year commits. | boolean | `false` | +| `line_height` | Sets the line height between text. | integer | `25` | +| `exclude_repo` | Excludes specified repositories. Affects only the count for "Total Stars Earned". | string (comma-separated values) | `null` | +| `repo` | Count only stats from the specified repositories. Affects only [certain items](#filtering-by-repository-and-owner). | string (comma-separated values) | `null` | +| `owner` | Count only stats from the specified organizations or users. Affects only [certain items](#filtering-by-repository-and-owner). | string (comma-separated values) | `null` | +| `role` | Include repositories where the user has one of the specified [roles](https://docs.github.com/en/graphql/reference/enums#repositoryaffiliation) (OWNER, ORGANIZATION_MEMBER, COLLABORATOR). | string (comma-separated values) | `OWNER` | +| `custom_title` | Sets a custom title for the card. | string | ` GitHub Stats` | +| `text_bold` | Uses bold text. | boolean | `true` | +| `disable_animations` | Disables all animations in the card. | boolean | `false` | +| `ring_color` | Color of the rank circle. | string (hex color) | `2f80ed` | +| `number_format` | Switches between two available formats for displaying the card values: `short` (i.e. `6.6k`) and `long` (i.e. `6626`). | enum | `short` | +| `number_precision` | Enforce the number of digits after the decimal point for `short` number format. Must be an integer between 0 and 2. Will be ignored for `long` number format. | integer (0, 1 or 2) | `null` | +| `show` | Shows [additional items](#showing-additional-individual-stats) on stats card (i.e. `reviews`, `discussions_started`, `discussions_answered`, `prs_merged` or `prs_merged_percentage`. And the following, which support the `repo` and `owner` filters: `prs_authored`, `prs_commented`, `prs_reviewed`, `issues_authored` or `issues_commented`). | string (comma-separated values) | `null` | +| `commits_year` | Filters and counts only commits made in the specified year. | integer _(YYYY)_ | ` (one year to date)` | + +> [!WARNING] +> Custom title should be URI-escaped, as specified in [Percent Encoding](https://en.wikipedia.org/wiki/Percent-encoding) (i.e: `Anurag's GitHub Stats` should become `Anurag%27s%20GitHub%20Stats`). You can use [urlencoder.org](https://www.urlencoder.org/) to help you do this automatically. + +> [!NOTE] +> When hide\_rank=`true`, the minimum card width is 270 px + the title length and padding. + +--- + +## GitHub Extra Pins + +GitHub extra pins allow you to pin more than 6 repositories in your profile using a GitHub profile readme. + +Yay! You are no longer limited to 6 pinned repositories. + +### Usage + +Copy-paste this code into your readme and change the links. + +Endpoint: `api/pin?username=anuraghazra&repo=type-trident` + +```md +[![Readme Card](https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=type-trident)](https://github.com/anuraghazra/type-trident) +``` + +### Options + +You can customize the appearance and behavior of the pinned repository card using the [common options](#common-options) and exclusive options listed in the table below. + +| Name | Description | Type | Default value | +| ------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------- | ------------------ | +| `show_owner` | Shows the repo's owner name. | boolean | `false` | +| `browser_rendering` | Compute text wrapping of repository description natively in the browser, instead of computing it server-side. | boolean | `false` | +| `description_lines_count` | Manually set the number of lines for the description. Specified value will be clamped between 1 and 3. If this parameter is not specified, the number of lines will be automatically adjusted according to the actual length of the description. | number | `null` | +| `card_width` | Sets the card's width manually. | number | `400px (approx.)` | +| `show_icons` | Shows icons near all stats enabled via `show`. | boolean | `true` | +| `line_height` | Sets the line height between stats enabled via `show`. | integer | `22` | +| `text_bold` | Uses bold text for all stats enabled via `show`. | boolean | `false` | +| `number_format` | Switches between two available formats for displaying the numbers for all stats enabled via `show`: `short` (i.e. `6.6k`) and `long` (i.e. `6626`). | enum | `short` | +| `show` | Shows [additional items](#showing-additional-individual-stats) on stats card (i.e. `prs_authored`, `prs_commented`, `prs_reviewed`, `issues_authored` or `issues_commented`). | string (comma-separated values) | `null` | + +### Demo + +![Readme Card](https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats) + +Use [show\_owner](#options) query option to include the repo's owner username: + +![Readme Card](https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&show_owner=true) + +Use [show](#options) query option to display the user's contributions to the repository: + +![Readme Card](https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&show=prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented) + +You can also specify the `repo` parameter in the form `/` to pin a repository from any user or organization, not just your own. This allows you to showcase repositories you contributed to, regardless of ownership. + +![Readme Card](https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=statykjs/statyk&show_owner=true&show=prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented) + +## GitHub Gist Pins + +GitHub gist pins allow you to pin gists in your GitHub profile using a GitHub profile readme. + +### Usage + +Copy-paste this code into your readme and change the links. + +Endpoint: `api/gist?id=bbfce31e0217a3689c8d961a356cb10d` + +```md +[![Gist Card](https://github-stats-extended.vercel.app/api/gist?id=bbfce31e0217a3689c8d961a356cb10d)](https://gist.github.com/Yizack/bbfce31e0217a3689c8d961a356cb10d/) +``` + +### Options + +You can customize the appearance and behavior of the gist card using the [common options](#common-options) and exclusive options listed in the table below. + +| Name | Description | Type | Default value | +| ------------------- | ------------------------------------------------------------------------------------------------------- | ------- | ------------- | +| `show_owner` | Shows the gist's owner name. | boolean | `false` | +| `browser_rendering` | Compute text wrapping of gist description natively in the browser, instead of computing it server-side. | boolean | `false` | + +### Demo + +![Gist Card](https://github-stats-extended.vercel.app/api/gist?id=bbfce31e0217a3689c8d961a356cb10d) + +Use [show\_owner](#options-1) query option to include the gist's owner username + +![Gist Card](https://github-stats-extended.vercel.app/api/gist?id=bbfce31e0217a3689c8d961a356cb10d&show_owner=true) + +## Top Languages Card + +The top languages card shows your most frequently used languages. + +> [!WARNING] +> By default, the language card shows language results only from public repositories. To include languages used in private repositories, [allow GitHub-Stats-Extended to access your private contributions](fork.md#private-contributions-support) or [deploy your own instance](deploy.md). + +> [!WARNING] +> This card shows language usage only inside your own non-forked repositories, not depending on who the author of the commits is. It does not include your contributions into another users/organizations repositories. Currently there are no way to get this data from GitHub API. If you want this behavior to be improved you can support [this feature request](https://github.com/orgs/community/discussions/18230) created by [@rickstaa](https://github.com/rickstaa) inside GitHub Community. + +> [!WARNING] +> Currently this card shows data only about first 1000 repositories. This is because GitHub API limitations which cause downtimes of public instances (see [#1471](https://github.com/anuraghazra/github-readme-stats/issues/1471)). In future this behavior will be improved by releasing GitHub action or providing environment variables for user's own instances. + +### Usage + +Copy-paste this code into your readme and change the links. + +Endpoint: `api/top-langs?username=anuraghazra` + +```md +[![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra)](https://github.com/stats-organization/github-stats-extended) +``` + +### Options + +You can customize the appearance and behavior of the top languages card using the [common options](#common-options) and exclusive options listed in the table below. + +| Name | Description | Type | Default value | +| -------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------- | --------------------------------------------------- | +| `hide` | Hides the [specified languages](#hide-individual-languages) from card. | string (comma-separated values) | `null` | +| `hide_title` | Hides the title of your card. | boolean | `false` | +| `layout` | Switches between five available layouts `normal` & `compact` & `donut` & `donut-vertical` & `pie`. | enum | `normal` | +| `card_width` | Sets the card's width manually. | number | `300` | +| `langs_count` | Shows more languages on the card, between 1-20. | integer | `5` for `normal` and `donut`, `6` for other layouts | +| `exclude_repo` | Excludes specified repositories. | string (comma-separated values) | `null` | +| `role` | Include repositories where the user has one of the specified [roles](https://docs.github.com/en/graphql/reference/enums#repositoryaffiliation) (OWNER, ORGANIZATION_MEMBER, COLLABORATOR). | string (comma-separated values) | `OWNER` | +| `custom_title` | Sets a custom title for the card. | string | `Most Used Languages` | +| `disable_animations` | Disables all animations in the card. | boolean | `false` | +| `prog_bar_bg_color` | Background color of the bars. (Applies only to `normal` layout.) | string (hex color) | `#ddd` | +| `hide_progress` | Uses the compact layout option, hides percentages, and removes the bars. | boolean | `false` | +| `hide_values` | Hides language percentages or bytes while keeping the progress bars or chart. | boolean | `false` | +| `size_weight` | Configures language stats algorithm (see [Language stats algorithm](#language-stats-algorithm)). | integer | `1` | +| `count_weight` | Configures language stats algorithm (see [Language stats algorithm](#language-stats-algorithm)). | integer | `0` | +| `stats_format` | Switches between two available formats for language's stats `percentages` and `bytes`. | enum | `percentages` | + +> [!WARNING] +> Language names and custom title should be URI-escaped, as specified in [Percent Encoding](https://en.wikipedia.org/wiki/Percent-encoding) (i.e: `c++` should become `c%2B%2B`, `jupyter notebook` should become `jupyter%20notebook`, `Most Used Languages` should become `Most%20Used%20Languages`, etc.) You can use [urlencoder.org](https://www.urlencoder.org/) to help you do this automatically. + +### Language stats algorithm + +We use the following algorithm to calculate the languages percentages on the language card: + +```js +ranking_index = (byte_count ^ size_weight) * (repo_count ^ count_weight); +``` + +By default, only the byte count is used for determining the languages percentages shown on the language card (i.e. `size_weight=1` and `count_weight=0`). You can, however, use the `&size_weight=` and `&count_weight=` options to weight the language usage calculation. The values must be positive real numbers. [More details about the algorithm can be found here](https://github.com/anuraghazra/github-readme-stats/issues/1600#issuecomment-1046056305). + +- `&size_weight=1&count_weight=0` - _(default)_ Orders by byte count. +- `&size_weight=0.5&count_weight=0.5` - _(recommended)_ Uses both byte and repo count for ranking + - `&size_weight=0&count_weight=1` - Orders by repo count + +```md +![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&size_weight=0.5&count_weight=0.5) +``` + +If the percentages still look wrong to you, these two comments cover most of the reasons why, and are worth reading before opening an issue: + +- +- + +### Exclude individual repositories + +You can use the `&exclude_repo=repo1,repo2` parameter to exclude individual repositories. + +```md +![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&exclude_repo=github-readme-stats,anuraghazra.github.io) +``` + +### Hide individual languages + +You can use `&hide=language1,language2` parameter to hide individual languages. + +```md +![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&hide=javascript,html) +``` + +Language names with spaces or symbols need to be [percent-encoded](#options-2), so Jupyter Notebook becomes `&hide=jupyter%20notebook` and C++ becomes `&hide=c%2B%2B`. + +### Show more languages + +You can use the `&langs_count=` option to increase or decrease the number of languages shown on the card. Valid values are integers between 1 and 20 (inclusive). By default it was set to `5` for `normal` & `donut` and `6` for other layouts. + +```md +![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&langs_count=8) +``` + +### Compact Language Card Layout + +You can use the `&layout=compact` option to change the card design. + +```md +![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&layout=compact) +``` + +### Donut Chart Language Card Layout + +You can use the `&layout=donut` option to change the card design. + +```md +[![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&layout=donut)](https://github.com/stats-organization/github-stats-extended) +``` + +### Donut Vertical Chart Language Card Layout + +You can use the `&layout=donut-vertical` option to change the card design. + +```md +[![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&layout=donut-vertical)](https://github.com/stats-organization/github-stats-extended) +``` + +### Pie Chart Language Card Layout + +You can use the `&layout=pie` option to change the card design. + +```md +[![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&layout=pie)](https://github.com/stats-organization/github-stats-extended) +``` + +### Hide Progress Bars + +You can use the `&hide_progress=true` option to hide the percentages and the progress bars (layout will be automatically set to `compact`). + +```md +![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&hide_progress=true) +``` + +### Change format of language's stats + +You can use the `&stats_format=bytes` option to display the stats in bytes instead of percentage. + +```md +![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&stats_format=bytes) +``` + +### Demo + +![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra) + +#### Compact layout + +![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&layout=compact) + +#### Donut Chart layout + +[![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&layout=donut)](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&layout=donut) + +#### Donut Vertical Chart layout + +[![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&layout=donut-vertical)](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&layout=donut-vertical) + +#### Pie Chart layout + +[![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&layout=pie)](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&layout=pie) + +#### Hidden progress bars + +[![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&hide_progress=true)](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&hide_progress=true) + +#### Display bytes instead of percentage + +[![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&stats_format=bytes)](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&stats_format=bytes) + +## WakaTime Stats Card + +> [!WARNING] +> Please be aware that we currently only show data from WakaTime profiles that are public. You therefore have to make sure that **BOTH** `Display code time publicly` and `Display languages, editors, os, categories publicly` are enabled. + +> [!WARNING] +> In case you just created a new WakaTime account, then it might take up to 24 hours until your stats will become visible on the WakaTime stats card. + +Change the `?username=` value to your [WakaTime](https://wakatime.com) username. + +```md +[![Alan's WakaTime stats](https://github-stats-extended.vercel.app/api/wakatime?username=alan)](https://wakatime.com/@alan) +``` + +### Options + +You can customize the appearance and behavior of the WakaTime stats card using the [common options](#common-options) and exclusive options listed in the table below. + +| Name | Description | Type | Default value | +| -------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------- | ---------------- | +| `hide` | Hides the languages specified from the card. | string (comma-separated values) | `null` | +| `hide_title` | Hides the title of your card. | boolean | `false` | +| `card_width` | Sets the card's width manually. | number | `495` | +| `line_height` | Sets the line height between text. | integer | `25` | +| `hide_progress` | Hides the progress bar and percentage. | boolean | `false` | +| `custom_title` | Sets a custom title for the card. | string | `WakaTime Stats` | +| `layout` | Switches between two available layouts `default` & `compact`. | enum | `default` | +| `langs_count` | Limits the number of languages on the card, defaults to all reported languages. | integer | `null` | +| `api_domain` | Sets a custom API domain for the card, e.g. to use services like [Hakatime](https://github.com/mujx/hakatime) or [Wakapi](https://github.com/muety/wakapi) | string | `wakatime.com` | +| `display_format` | Sets the WakaTime stats display format. Choose `time` to display time-based stats or `percent` to show percentages. | enum | `time` | +| `disable_animations` | Disables all animations in the card. | boolean | `false` | + +> [!WARNING] +> Custom title should be URI-escaped, as specified in [Percent Encoding](https://en.wikipedia.org/wiki/Percent-encoding) (i.e: `WakaTime Stats` should become `WakaTime%20Stats`). You can use [urlencoder.org](https://www.urlencoder.org/) to help you do this automatically. + +### Demo + +![Alan's WakaTime stats](https://github-stats-extended.vercel.app/api/wakatime?username=alan) + +![Alan's WakaTime stats](https://github-stats-extended.vercel.app/api/wakatime?username=alan&card_width=315&hide_progress=true) + +#### Compact layout + +![Alan's WakaTime stats](https://github-stats-extended.vercel.app/api/wakatime?username=alan&layout=compact) + +--- + +## All Demos + +### Default + +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra) + +### Hiding specific stats + +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&hide=contribs,issues) + +### Showing additional stats + +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&show=reviews,discussions_started,discussions_answered,prs_merged,prs_merged_percentage,prs_commented,prs_reviewed,issues_commented) + +### Showing stats for a specific repository + +![Anurag's GitHub stats for anuraghazra/github-readme-stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&repo=anuraghazra/github-readme-stats&hide=prs,issues,stars,commits,contribs&show=prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented&hide_rank=true&custom_title=Anurag%27s%20Stats%20for%20github-readme-stats&card_width=370) + +### Showing stats for a specific organization + +![Anurag's GitHub stats for razorpay](https://github-stats-extended.vercel.app/api?username=anuraghazra&owner=razorpay&hide=prs,issues,stars,commits,contribs&show=prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented&hide_rank=true&custom_title=Anurag%27s%20Stats%20for%20razorpay&card_width=370) + +### Showing icons + +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&hide=issues&show_icons=true) + +### Shows GitHub logo instead rank level + +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&rank_icon=github) + +### Shows user rank percentile instead of rank level + +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&rank_icon=percentile) + +### Customize Border Color + +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&border_color=2e4058) + +### Include All Commits + +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&include_all_commits=true) + +### Themes + +Choose from any of the [default themes](#themes) + +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=radical) + +### Gradient + +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&bg_color=30,e96443,904e95&title_color=fff&text_color=fff) + +### Customizing stats card + +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api/?username=anuraghazra&show_icons=true&title_color=fff&icon_color=79ff97&text_color=9f9f9f&bg_color=151515) + +### Setting card locale + +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api/?username=anuraghazra&locale=es) + +### Customizing repo card + +![Customized Card](https://github-stats-extended.vercel.app/api/pin?username=anuraghazra&repo=github-readme-stats&title_color=fff&icon_color=f9f9f9&text_color=9f9f9f&bg_color=151515) + +### Gist card + +![Gist Card](https://github-stats-extended.vercel.app/api/gist?id=bbfce31e0217a3689c8d961a356cb10d) + +### Customizing gist card + +![Gist Card](https://github-stats-extended.vercel.app/api/gist?id=bbfce31e0217a3689c8d961a356cb10d&theme=calm) + +### Top languages + +![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra) + +### WakaTime card + +![Alan's WakaTime stats](https://github-stats-extended.vercel.app/api/wakatime?username=alan) + +--- + +## Quick Tip (Align The Cards) + +By default, GitHub does not lay out the cards side by side. To do that, you can use such approaches: + +### Stats and top languages cards + + +```html + + + + + + +``` + +
+:eyes: Show example + + + + + + + + +
+ +### Pinning repositories + +```html + + + + + + +``` + +
+:eyes: Show example + + + + + + + + +
diff --git a/docs/deploy.md b/docs/deploy.md new file mode 100644 index 0000000000000..b3de00cbfa62c --- /dev/null +++ b/docs/deploy.md @@ -0,0 +1,204 @@ +# Run It Yourself + +We cache generated cards for a few hours or days to avoid potential rate-limiting in the GitHub API or on Vercel. If you want to set your own cache duration or you want to include private contributions in your stats without granting our hosted version of GitHub-Stats-Extended access to your private contributions, you can run GitHub-Stats-Extended on your own. + +GitHub Actions is the simplest setup with static SVGs stored in your repo but less frequent updates, while self-hosting GitHub-Stats-Extended on Vercel takes more work and can serve fresher stats (with caching). + +## GitHub Action + +With [github-readme-stats-action](https://github.com/stats-organization/github-readme-stats-action) you can generate static cards in your GitHub Actions workflow, commit them to your profile repository, and embed them directly from there. This avoids any per-request API calls. + +Create `/.github/workflows/grs.yml` in your profile repo (`USERNAME/USERNAME`): + +```yaml +name: Update README cards + +on: + schedule: + - cron: "0 0 * * *" # Runs once daily at midnight + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + permissions: + contents: write + + steps: + - uses: actions/checkout@v6 + + - name: Generate stats card + uses: stats-organization/github-readme-stats-action@v2 + with: + card: stats + options: username=${{ github.repository_owner }}&show_icons=true + path: profile/stats.svg + token: ${{ secrets.GITHUB_TOKEN }} + + - name: Commit cards + run: | + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" + git add profile/*.svg + git commit -m "Update README cards" || exit 0 + git push +``` + +Then embed from your [profile README](https://docs.github.com/en/account-and-profile/how-tos/profile-customization/managing-your-profile-readme#adding-a-profile-readme): + +```md +![Stats](./profile/stats.svg) +``` + +See more options and examples in the [GitHub Readme Stats Action README](https://github.com/stats-organization/github-readme-stats-action#readme). + +## Self-hosted on Vercel + +Running your own instance avoids public rate limits and gives you full control over caching, tokens, and private stats. + +### First step: get your Personal Access Token (PAT) + +For deploying your own instance of GitHub Stats Extended, you will need to create a GitHub Personal Access Token (PAT). Below are the steps to create one and the scopes you need to select for both classic and fine-grained tokens. + +Selecting the right scopes for your token is important in case you want to display private contributions on your cards. + +#### Classic token + +- Go to [Account → Settings → Developer Settings → Personal access tokens → Tokens (classic)](https://github.com/settings/tokens). + - Click on `Generate new token → Generate new token (classic)`. + - Scopes to select: + - repo + - read:user + - Click on `Generate token` and copy it. + +#### Fine-grained token + +> [!WARNING]\ +> This limits the scope of commits to public repositories only. + +- Go to [Account → Settings → Developer Settings → Personal access tokens → Fine-grained tokens](https://github.com/settings/personal-access-tokens). + - Click on `Generate new token → Generate new token`. + - Enter a token name + - Select an expiration date + - Select `All repositories` + - Scopes to select under `Permissions`: + - Commit statuses: read-only + - Contents: read-only + - Issues: read-only + - Metadata: read-only (added automatically when selecting above scopes) + - Pull requests: read-only + - Click on `Generate token` and copy it. + +### On Vercel + +Click on the deploy button to get started! + +[![Deploy to Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https://github.com/stats-organization/github-stats-extended&root-directory=apps/backend) + +Recommended: Step-by-step guide on setting up your own Vercel instance + +1. Go to [vercel.com](https://vercel.com/). +2. Click on `Log in`. + ![](https://files.catbox.moe/pcxk33.png) +3. Sign in with GitHub by pressing `Continue with GitHub`. + ![](https://files.catbox.moe/b9oxey.png) +4. Sign in to GitHub and allow access to all repositories if prompted. +5. Fork this repo. Disable "Copy the `master` branch only". +6. Go back to your [Vercel dashboard](https://vercel.com/dashboard). +7. To import a project, click the `Add New...` button and select the `Project` option. + ![](https://files.catbox.moe/3n76fh.png) +8. Search for the forked Git Repository and import it by clicking the `Import` button. +9. Create a Personal Access Token (PAT) as described in the [previous section](#first-step-get-your-personal-access-token-pat). +10. Add the PAT as an environment variable named `PAT_1` (as shown). + ![](https://files.catbox.moe/0yclio.png) + Note: For enhanced security, you can add a variable as a sensitive variable. To do this: + 1. Go to `Environment Variables` in `Project Settings`, then choose `Add Environment Variable`. + ![](https://files.catbox.moe/heprjw.jpg) + 2. Uncheck `Deployment` from `Environments` + ![](https://files.catbox.moe/tiqgd0.jpg) + 3. Now you can make the variable `Sensitive` by checking the checkbox. + ![](https://files.catbox.moe/mla5no.jpg) +11. As `Root directory` select the `apps/backend` folder. +12. Click deploy. +13. Point your Vercel project at the `release` branch instead of `master`. + `master` contains unreleased, potentially unstable code, while `release` contains the latest stable release. + 1. In your Vercel project settings, go to `Environments → Production` and change the tracked branch from `master` to `release`. + 2. Go to `Deployments → ... → Create Deployment`, select `release` and click `Deploy to production`. +14. See your domains to use the API! + +### Optional steps + +#### Add an SQL database + +Add an SQL database, either through an integration such as ["Nile"](https://vercel.com/marketplace/nile), or by manually setting the environment variable `POSTGRES_URL`. + +#### Use your own OAuth App + +[Create your own OAuth App](https://github.com/settings/developers) and set the environment variables `OAUTH_REDIRECT_URI`, `OAUTH_CLIENT_ID` and `OAUTH_CLIENT_SECRET` on Vercel accordingly. + +#### Silence the turbo build warning + +Set the environment variable `TURBO_PLATFORM_ENV_DISABLED` to `true` to disable the build-time warning from [turbo](https://turborepo.dev/) about environment variables missing from `turbo.json`. This warning is not relevant in our project. + +### Available environment variables + +GitHub Stats Extended provides several environment variables that can be used to customize the behavior of your self-hosted instance. These include: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionSupported values
CACHE_SECONDSSets the cache duration in seconds for the generated cards. This variable takes precedence over the default cache timings for the public instance. If this variable is not set, the default cache duration is 24 hours (86,400 seconds).Any positive integer or 0 to disable caching
UPDATE_AFTER_HOURSSets the duration in hours after which the server proactively regenerates a previously requested card. Defaults to 11 hours.Any int or float
DELETE_AFTER_HOURSSets the duration in hours after which the server stops proactively regenerating a previously requested card if it hasn't been requested again in the meantime. Defaults to 8 days, i.e. 192 hours.Any int or float
WHITELISTA comma-separated list of GitHub usernames that are allowed to access your instance. If this variable is not set, all usernames are allowed.Comma-separated GitHub usernames
GIST_WHITELISTA comma-separated list of GitHub Gist IDs that are allowed to be accessed on your instance. If this variable is not set, all Gist IDs are allowed.Comma-separated GitHub Gist IDs
EXCLUDE_REPOA comma-separated list of repositories that will be excluded from stats and top languages cards on your instance. This allows repository exclusion without exposing repository names in public URLs. This enhances privacy for self-hosted instances that include private repositories in stats cards.Comma-separated repository names
FETCH_MULTI_PAGE_STARSEnables fetching all starred repositories for accurate star counts, especially for users with more than 100 repositories. This may increase response times and API points usage, so it is limited to 10 fetches - i.e. 1000 repos - on the public instance.true or false or a maximum number of fetches
+ +See [the Vercel documentation](https://vercel.com/docs/concepts/projects/environment-variables) on adding these environment variables to your Vercel instance. + +> [!WARNING] +> Please remember to redeploy your instance after making any changes to the environment variables so that the updates take effect. The changes will not be applied to the previous deployments. + +### Keep your fork up to date + +You can keep your fork, and thus your private Vercel instance up to date with the upstream using GitHub's [Sync Fork button](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/syncing-a-fork). You can also use the [pull](https://github.com/wei/pull) package created by [@wei](https://github.com/wei) to automate this process. + +As a prerequisite, GitHub has to know that your personal GitHub-Stats-Extended repo is a fork of https://github.com/stats-organization/github-stats-extended. This only works if you follow the "Step-by-step guide on setting up your own Vercel instance" above, instead of clicking the Vercel "Deploy" button above. diff --git a/docs/fork.md b/docs/fork.md new file mode 100644 index 0000000000000..145a3f2e929c3 --- /dev/null +++ b/docs/fork.md @@ -0,0 +1,98 @@ +# Fork Information + +This project is an actively maintained fork and extension of [github-readme-stats](https://github.com/anuraghazra/github-readme-stats). + +## Key Differences + +Compared to [github-readme-stats](https://github.com/anuraghazra/github-readme-stats), this project adds the following changes: + +### Frontend for easy, visual configuration of cards + +GitHub-Stats-Extended adds a frontend which allows users to visually configure stats cards. It is hosted at https://github-stats-extended.vercel.app/frontend. + +![frontend screenshot](frontend-screenshot.png) + +The frontend is based on [GitHub Trends](https://github.com/avgupta456/github-trends) by [@avgupta456](https://github.com/avgupta456). + +### Aggregate stats across organizations + +To include stars from repos which are not owned by you, but where you are a collaborator or organization member, add `&role=OWNER,ORGANIZATION_MEMBER,COLLABORATOR` to your stats card url. To include such repos in your language stats, you can also add the same parameter to your top languages card url. + +See [here](advanced_documentation.md#filtering-by-repository-and-owner) for full feature documentation. + +The resolution of this most requested feature in github-readme-stats was [originally implemented](https://github.com/anuraghazra/github-readme-stats/issues/1#issuecomment-855681098) by [@developStorm](https://github.com/developStorm). + +### Improved performance and latency + +GitHub-Stats-Extended proactively precomputes and caches cards. This solves the problem where [cards wouldn't load on the first try](https://github.com/anuraghazra/github-readme-stats/issues/2603). It also gives GitHub-Stats-Extended more time while generating cards in the background, which allows it to fetch more repo data: + +### Multi-page fetching for accurate star counts + +GitHub-Stats-Extended fetches up to 1000 of your starred repositories to accurately compute your stars count. In github-readme-stats, this is limited to 100 repos because github-readme-stats doesn't have the above-mentioned performance improvements. + +### Customization of top languages card + +GitHub-Stats-Extended allows you to display your top languages without any numbers via the `hide_values` parameter. And the `prog_bar_bg_color` parameter allows you to customize the background color of the progress bars, e.g. by setting it to white: + +![anuraghazra's top languages without numbers](https://github-stats-extended.vercel.app/api/top-langs?username=anuraghazra&langs_count=4&hide_values=true&prog_bar_bg_color=fff) + +### Private contributions support + +GitHub-Stats-Extended can include private contributions in your stats cards. You no longer have to deploy your own instance for that. Just log into the [GitHub-Stats-Extended Wizard](https://github-stats-extended.vercel.app/frontend) via the "GitHub Private Access" button (or click "Upgrade to Private Access" if already logged in). This will allow GitHub-Stats-Extended to see your private contributions. + +### Display contributions to specific repositories or organizations + +GitHub-Stats-Extended adds the ability to show contribution stats for specific repositories and organizations. + +Especially for regular contributors in open source projects it might make sense to display an overview of their own contributions to these projects on their GitHub profile. + +See [here](advanced_documentation.md#filtering-by-repository-and-owner) for full feature documentation. + +--- + +anuraghazra's contributions to github-readme-stats: + +![anuraghazra's contributions to github-readme-stats](https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&show=prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented) + +Add `&show=prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented` to your repo card url to display your contributions to the pinned repository. + +--- + +anurag's contributions to razorpay: + +![anurag's contributions to razorpay](https://github-stats-extended.vercel.app/api?username=anuraghazra&owner=razorpay&hide=prs,issues,stars,commits,contribs&show=prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented&hide_rank=true&custom_title=anurag%27s%20contributions%20to%20razorpay&card_width=333) + +Add `&repo=userA/repoA,orgB/repoB` or `&owner=userC,orgD` to your profile stats url to filter your contributions by repo or organization. (The screenshot above uses further customization options.) + +### Other + +GitHub-Stats-Extended adds various other, minor improvements. For example, the repo card now supports the `card_width` parameter. + +## Why This Fork Exists + +[github-readme-stats](https://github.com/anuraghazra/github-readme-stats) is a great project, which unfortunately saw its development slow down in the past years, with [highly requested features](https://github.com/anuraghazra/github-readme-stats/issues/1935) getting delayed for a long time. + +One of the valued maintainers [wrote](https://github.com/anuraghazra/github-readme-stats/pull/3911#issuecomment-3377726545): + +> I joined the project as collaborator in the middle of 2023 and there was just a few guys in the team while hundreds of PRs, issues and discussions pending to be reviewed. +> +> The volume is overwhelming for the small team, especially taking into account that right now I'm alone online and working only sometimes when I have a free hours, so it took some time to get to your PR. + +So [@martin-mfg](https://github.com/martin-mfg) decided to fork the project, implement some of the highly requested features and make the enhanced project available to everyone. Since the initial release of this fork @martin-mfg joined forces with the maintainers of [github-readme-stats](https://github.com/anuraghazra/github-readme-stats) and GitHub-Stats-Extended is now becoming the successor of github-readme-stats. + +## Compatibility Notes + +GitHub-Stats-Extended aims to be fully compatible with [github-readme-stats](https://github.com/anuraghazra/github-readme-stats). Additional functionality introduced in this fork has to be explicitly enabled via some parameter. + +So you can change an existing stats card url from [github-readme-stats](https://github.com/anuraghazra/github-readme-stats) to GitHub-Stats-Extended simply by changing the domain from `github-readme-stats.vercel.app` to `github-stats-extended.vercel.app`. The card will look the same. + +There is only one exception to this: GitHub-Stats-Extended improves line wrapping for multi-line gist and repository descriptions. +This should be an improvement for existing cards, but it still changes their appearance a bit. + +Previously, line wrapping happened simply after 59 characters, with special handling for Chinese characters: + +character-based + +GitHub-Stats-Extended now takes the actual width of each character into account: + +new-server-side-calculation diff --git a/docs/frontend-screenshot.png b/docs/frontend-screenshot.png new file mode 100644 index 0000000000000000000000000000000000000000..0cd7c5a1a5e70625bc01d23807fe92d7f14e482b GIT binary patch literal 107178 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 literal 0 HcmV?d00001 diff --git a/packages/core/src/themes/README.md b/packages/core/src/themes/README.md new file mode 100644 index 0000000000000..b58b7071e5baa --- /dev/null +++ b/packages/core/src/themes/README.md @@ -0,0 +1,226 @@ +## Available Themes + + + +With inbuilt themes, you can customize the look of the card without doing any manual customization. + +Use `?theme=THEME_NAME` parameter like so: + +```md +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&theme=dark&show_icons=true) +``` + +## Stats + +> These themes work with all five of our cards: Stats Card, Repo Card, Gist Card, Top Languages Card, and WakaTime Card. + +| | | | +| :------------------------------------------------------------: | :------------------------------------------------------------: | :------------------------------------------------------------------: | +| `default` ![default][default] | `transparent` ![transparent][transparent] | `shadow_red` ![shadow_red][shadow_red] | +| `shadow_green` ![shadow_green][shadow_green] | `shadow_blue` ![shadow_blue][shadow_blue] | `dark` ![dark][dark] | +| `radical` ![radical][radical] | `merko` ![merko][merko] | `gruvbox` ![gruvbox][gruvbox] | +| `gruvbox_light` ![gruvbox_light][gruvbox_light] | `tokyonight` ![tokyonight][tokyonight] | `onedark` ![onedark][onedark] | +| `cobalt` ![cobalt][cobalt] | `synthwave` ![synthwave][synthwave] | `highcontrast` ![highcontrast][highcontrast] | +| `dracula` ![dracula][dracula] | `prussian` ![prussian][prussian] | `monokai` ![monokai][monokai] | +| `vue` ![vue][vue] | `vue-dark` ![vue-dark][vue-dark] | `shades-of-purple` ![shades-of-purple][shades-of-purple] | +| `nightowl` ![nightowl][nightowl] | `buefy` ![buefy][buefy] | `blue-green` ![blue-green][blue-green] | +| `algolia` ![algolia][algolia] | `great-gatsby` ![great-gatsby][great-gatsby] | `darcula` ![darcula][darcula] | +| `bear` ![bear][bear] | `solarized-dark` ![solarized-dark][solarized-dark] | `solarized-light` ![solarized-light][solarized-light] | +| `chartreuse-dark` ![chartreuse-dark][chartreuse-dark] | `nord` ![nord][nord] | `gotham` ![gotham][gotham] | +| `material-palenight` ![material-palenight][material-palenight] | `graywhite` ![graywhite][graywhite] | `vision-friendly-dark` ![vision-friendly-dark][vision-friendly-dark] | +| `ayu-mirage` ![ayu-mirage][ayu-mirage] | `midnight-purple` ![midnight-purple][midnight-purple] | `calm` ![calm][calm] | +| `flag-india` ![flag-india][flag-india] | `omni` ![omni][omni] | `react` ![react][react] | +| `jolly` ![jolly][jolly] | `maroongold` ![maroongold][maroongold] | `yeblu` ![yeblu][yeblu] | +| `blueberry` ![blueberry][blueberry] | `slateorange` ![slateorange][slateorange] | `kacho_ga` ![kacho_ga][kacho_ga] | +| `outrun` ![outrun][outrun] | `ocean_dark` ![ocean_dark][ocean_dark] | `city_lights` ![city_lights][city_lights] | +| `github_dark` ![github_dark][github_dark] | `github_dark_dimmed` ![github_dark_dimmed][github_dark_dimmed] | `discord_old_blurple` ![discord_old_blurple][discord_old_blurple] | +| `aura_dark` ![aura_dark][aura_dark] | `panda` ![panda][panda] | `noctis_minimus` ![noctis_minimus][noctis_minimus] | +| `cobalt2` ![cobalt2][cobalt2] | `swift` ![swift][swift] | `aura` ![aura][aura] | +| `apprentice` ![apprentice][apprentice] | `moltack` ![moltack][moltack] | `codeSTACKr` ![codeSTACKr][codeSTACKr] | +| `rose_pine` ![rose_pine][rose_pine] | `catppuccin_latte` ![catppuccin_latte][catppuccin_latte] | `catppuccin_mocha` ![catppuccin_mocha][catppuccin_mocha] | +| `date_night` ![date_night][date_night] | `one_dark_pro` ![one_dark_pro][one_dark_pro] | `rose` ![rose][rose] | +| `holi` ![holi][holi] | `neon` ![neon][neon] | `blue_navy` ![blue_navy][blue_navy] | +| `calm_pink` ![calm_pink][calm_pink] | `ambient_gradient` ![ambient_gradient][ambient_gradient] | | + +## Repo Card + +> These themes work with all five of our cards: Stats Card, Repo Card, Gist Card, Top Languages Card, and WakaTime Card. + +| | | | +| :-----------------------------------------------------------------: | :-----------------------------------------------------------------: | :-----------------------------------------------------------------------: | +| `default_repocard` ![default_repocard][default_repocard_repo] | `transparent` ![transparent][transparent_repo] | `shadow_red` ![shadow_red][shadow_red_repo] | +| `shadow_green` ![shadow_green][shadow_green_repo] | `shadow_blue` ![shadow_blue][shadow_blue_repo] | `dark` ![dark][dark_repo] | +| `radical` ![radical][radical_repo] | `merko` ![merko][merko_repo] | `gruvbox` ![gruvbox][gruvbox_repo] | +| `gruvbox_light` ![gruvbox_light][gruvbox_light_repo] | `tokyonight` ![tokyonight][tokyonight_repo] | `onedark` ![onedark][onedark_repo] | +| `cobalt` ![cobalt][cobalt_repo] | `synthwave` ![synthwave][synthwave_repo] | `highcontrast` ![highcontrast][highcontrast_repo] | +| `dracula` ![dracula][dracula_repo] | `prussian` ![prussian][prussian_repo] | `monokai` ![monokai][monokai_repo] | +| `vue` ![vue][vue_repo] | `vue-dark` ![vue-dark][vue-dark_repo] | `shades-of-purple` ![shades-of-purple][shades-of-purple_repo] | +| `nightowl` ![nightowl][nightowl_repo] | `buefy` ![buefy][buefy_repo] | `blue-green` ![blue-green][blue-green_repo] | +| `algolia` ![algolia][algolia_repo] | `great-gatsby` ![great-gatsby][great-gatsby_repo] | `darcula` ![darcula][darcula_repo] | +| `bear` ![bear][bear_repo] | `solarized-dark` ![solarized-dark][solarized-dark_repo] | `solarized-light` ![solarized-light][solarized-light_repo] | +| `chartreuse-dark` ![chartreuse-dark][chartreuse-dark_repo] | `nord` ![nord][nord_repo] | `gotham` ![gotham][gotham_repo] | +| `material-palenight` ![material-palenight][material-palenight_repo] | `graywhite` ![graywhite][graywhite_repo] | `vision-friendly-dark` ![vision-friendly-dark][vision-friendly-dark_repo] | +| `ayu-mirage` ![ayu-mirage][ayu-mirage_repo] | `midnight-purple` ![midnight-purple][midnight-purple_repo] | `calm` ![calm][calm_repo] | +| `flag-india` ![flag-india][flag-india_repo] | `omni` ![omni][omni_repo] | `react` ![react][react_repo] | +| `jolly` ![jolly][jolly_repo] | `maroongold` ![maroongold][maroongold_repo] | `yeblu` ![yeblu][yeblu_repo] | +| `blueberry` ![blueberry][blueberry_repo] | `slateorange` ![slateorange][slateorange_repo] | `kacho_ga` ![kacho_ga][kacho_ga_repo] | +| `outrun` ![outrun][outrun_repo] | `ocean_dark` ![ocean_dark][ocean_dark_repo] | `city_lights` ![city_lights][city_lights_repo] | +| `github_dark` ![github_dark][github_dark_repo] | `github_dark_dimmed` ![github_dark_dimmed][github_dark_dimmed_repo] | `discord_old_blurple` ![discord_old_blurple][discord_old_blurple_repo] | +| `aura_dark` ![aura_dark][aura_dark_repo] | `panda` ![panda][panda_repo] | `noctis_minimus` ![noctis_minimus][noctis_minimus_repo] | +| `cobalt2` ![cobalt2][cobalt2_repo] | `swift` ![swift][swift_repo] | `aura` ![aura][aura_repo] | +| `apprentice` ![apprentice][apprentice_repo] | `moltack` ![moltack][moltack_repo] | `codeSTACKr` ![codeSTACKr][codeSTACKr_repo] | +| `rose_pine` ![rose_pine][rose_pine_repo] | `catppuccin_latte` ![catppuccin_latte][catppuccin_latte_repo] | `catppuccin_mocha` ![catppuccin_mocha][catppuccin_mocha_repo] | +| `date_night` ![date_night][date_night_repo] | `one_dark_pro` ![one_dark_pro][one_dark_pro_repo] | `rose` ![rose][rose_repo] | +| `holi` ![holi][holi_repo] | `neon` ![neon][neon_repo] | `blue_navy` ![blue_navy][blue_navy_repo] | +| `calm_pink` ![calm_pink][calm_pink_repo] | `ambient_gradient` ![ambient_gradient][ambient_gradient_repo] | | + +[default]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=default +[default_repocard]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=default_repocard +[transparent]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=transparent +[shadow_red]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=shadow_red +[shadow_green]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=shadow_green +[shadow_blue]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=shadow_blue +[dark]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=dark +[radical]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=radical +[merko]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=merko +[gruvbox]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=gruvbox +[gruvbox_light]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=gruvbox_light +[tokyonight]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=tokyonight +[onedark]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=onedark +[cobalt]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=cobalt +[synthwave]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=synthwave +[highcontrast]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=highcontrast +[dracula]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=dracula +[prussian]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=prussian +[monokai]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=monokai +[vue]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=vue +[vue-dark]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=vue-dark +[shades-of-purple]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=shades-of-purple +[nightowl]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=nightowl +[buefy]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=buefy +[blue-green]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=blue-green +[algolia]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=algolia +[great-gatsby]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=great-gatsby +[darcula]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=darcula +[bear]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=bear +[solarized-dark]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=solarized-dark +[solarized-light]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=solarized-light +[chartreuse-dark]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=chartreuse-dark +[nord]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=nord +[gotham]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=gotham +[material-palenight]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=material-palenight +[graywhite]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=graywhite +[vision-friendly-dark]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=vision-friendly-dark +[ayu-mirage]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=ayu-mirage +[midnight-purple]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=midnight-purple +[calm]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=calm +[flag-india]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=flag-india +[omni]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=omni +[react]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=react +[jolly]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=jolly +[maroongold]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=maroongold +[yeblu]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=yeblu +[blueberry]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=blueberry +[slateorange]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=slateorange +[kacho_ga]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=kacho_ga +[outrun]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=outrun +[ocean_dark]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=ocean_dark +[city_lights]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=city_lights +[github_dark]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=github_dark +[github_dark_dimmed]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=github_dark_dimmed +[discord_old_blurple]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=discord_old_blurple +[aura_dark]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=aura_dark +[panda]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=panda +[noctis_minimus]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=noctis_minimus +[cobalt2]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=cobalt2 +[swift]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=swift +[aura]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=aura +[apprentice]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=apprentice +[moltack]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=moltack +[codeSTACKr]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=codeSTACKr +[rose_pine]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=rose_pine +[catppuccin_latte]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=catppuccin_latte +[catppuccin_mocha]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=catppuccin_mocha +[date_night]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=date_night +[one_dark_pro]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=one_dark_pro +[rose]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=rose +[holi]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=holi +[neon]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=neon +[blue_navy]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=blue_navy +[calm_pink]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=calm_pink +[ambient_gradient]: https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=ambient_gradient +[default_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=default +[default_repocard_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=default_repocard +[transparent_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=transparent +[shadow_red_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=shadow_red +[shadow_green_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=shadow_green +[shadow_blue_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=shadow_blue +[dark_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=dark +[radical_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=radical +[merko_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=merko +[gruvbox_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=gruvbox +[gruvbox_light_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=gruvbox_light +[tokyonight_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=tokyonight +[onedark_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=onedark +[cobalt_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=cobalt +[synthwave_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=synthwave +[highcontrast_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=highcontrast +[dracula_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=dracula +[prussian_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=prussian +[monokai_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=monokai +[vue_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=vue +[vue-dark_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=vue-dark +[shades-of-purple_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=shades-of-purple +[nightowl_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=nightowl +[buefy_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=buefy +[blue-green_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=blue-green +[algolia_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=algolia +[great-gatsby_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=great-gatsby +[darcula_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=darcula +[bear_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=bear +[solarized-dark_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=solarized-dark +[solarized-light_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=solarized-light +[chartreuse-dark_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=chartreuse-dark +[nord_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=nord +[gotham_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=gotham +[material-palenight_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=material-palenight +[graywhite_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=graywhite +[vision-friendly-dark_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=vision-friendly-dark +[ayu-mirage_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=ayu-mirage +[midnight-purple_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=midnight-purple +[calm_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=calm +[flag-india_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=flag-india +[omni_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=omni +[react_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=react +[jolly_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=jolly +[maroongold_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=maroongold +[yeblu_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=yeblu +[blueberry_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=blueberry +[slateorange_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=slateorange +[kacho_ga_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=kacho_ga +[outrun_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=outrun +[ocean_dark_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=ocean_dark +[city_lights_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=city_lights +[github_dark_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=github_dark +[github_dark_dimmed_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=github_dark_dimmed +[discord_old_blurple_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=discord_old_blurple +[aura_dark_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=aura_dark +[panda_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=panda +[noctis_minimus_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=noctis_minimus +[cobalt2_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=cobalt2 +[swift_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=swift +[aura_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=aura +[apprentice_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=apprentice +[moltack_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=moltack +[codeSTACKr_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=codeSTACKr +[rose_pine_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=rose_pine +[catppuccin_latte_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=catppuccin_latte +[catppuccin_mocha_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=catppuccin_mocha +[date_night_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=date_night +[one_dark_pro_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=one_dark_pro +[rose_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=rose +[holi_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=holi +[neon_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=neon +[blue_navy_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=blue_navy +[calm_pink_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=calm_pink +[ambient_gradient_repo]: https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=ambient_gradient From 4cfde03a3ea35983fa63523c3d9fbad9270f71d4 Mon Sep 17 00:00:00 2001 From: martin-mfg <2026226+martin-mfg@users.noreply.github.com> Date: Tue, 25 Aug 2026 14:09:28 +0200 Subject: [PATCH 06/15] restore README.md from master --- README.md | 56 ++++++------------------------------------------------- 1 file changed, 6 insertions(+), 50 deletions(-) diff --git a/README.md b/README.md index 9a77577671491..c4006cf2444d8 100644 --- a/README.md +++ b/README.md @@ -2,15 +2,7 @@ GitHub Stats Extended Logo

GitHub Stats Extended

Dynamically generate GitHub stats for your READMEs.

-
- - - - - + GitHub-Stats-Extended is the [extended, actively maintained successor](docs/fork.md) of [github-readme-stats](https://github.com/anuraghazra/github-readme-stats). It generates [various stats cards](#card-types) about your GitHub contributions, your top languages and more. You can [customize](#documentation) the cards via multiple parameters. @@ -49,59 +41,23 @@ GitHub-Stats-Extended aims to be fully compatible with github-readme-stats. For - Show your GitHub statistics: - - - Anurag's GitHub stats - + ![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra) - ...your top languages...: - - - Top Langs - + ![Top Langs](https://github-stats-extended.vercel.app/api/top-langs/?username=anuraghazra&langs_count=4) - ...and development time: - - - - Alan's WakaTime stats - - + [![Alan's WakaTime stats](https://github-stats-extended.vercel.app/api/wakatime?username=alan&langs_count=6)](https://wakatime.com/@alan) - Pin more than 6 repos in your GitHub profile: - - - - Readme Card - - + [![Readme Card](https://github-stats-extended.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats)](https://github.com/anuraghazra/github-readme-stats) - Pin Gists in your GitHub profile: - - - - Gist Card - - + [![Gist Card](https://github-stats-extended.vercel.app/api/gist?id=bbfce31e0217a3689c8d961a356cb10d)](https://gist.github.com/Yizack/bbfce31e0217a3689c8d961a356cb10d) - Customize all the cards: From a6623c4ab51f8632e4c1932d0e937d672ddae3db Mon Sep 17 00:00:00 2001 From: Marco Pasqualetti Date: Tue, 25 Aug 2026 19:16:20 +0200 Subject: [PATCH 07/15] docs: drop stale "Responsive Card Theme" cross-references --- apps/frontend/src/content/docs/docs/customization/theming.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/apps/frontend/src/content/docs/docs/customization/theming.md b/apps/frontend/src/content/docs/docs/customization/theming.md index 552f4318fe2d5..c4085d94ebd22 100644 --- a/apps/frontend/src/content/docs/docs/customization/theming.md +++ b/apps/frontend/src/content/docs/docs/customization/theming.md @@ -43,8 +43,6 @@ You can use [GitHub's media feature](https://github.blog/changelog/2022-05-19-sp
``` -For example the image at the top of the Responsive Card Theme section works like this - it follows the theme you set for this page. - ### Set light and dark mode in one card Use the `theme_light` and `theme_dark` or `*_light` / `*_dark` color parameters to embed both modes in a single card URL. See [Light & Dark Mode Parameters](#light--dark-mode-parameters) below for full details. The card will then display in light mode or dark mode based on your browser / operating system settings. @@ -73,8 +71,6 @@ You can use [GitHub's theme context](https://github.blog/changelog/2021-11-24-sp [![Anurag's GitHub stats-Light](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=light_github#gh-light-mode-only)](https://github.com/stats-organization/github-stats-extended#gh-light-mode-only) ``` -For example the image at the top of the Responsive Card Theme section works like this - it follows the theme you set for this page. - ### Use the transparent theme We have included a `transparent` theme that has a transparent background. This theme is optimized to look good on GitHub's dark and light default themes. You can enable this theme using the `&theme=transparent` parameter like so: From 3ed9e70ee8d2062d75d5e699f33d5740465eebf1 Mon Sep 17 00:00:00 2001 From: Marco Pasqualetti Date: Tue, 25 Aug 2026 19:16:59 +0200 Subject: [PATCH 08/15] docs: render light/dark example from the current deployment --- apps/frontend/src/content/docs/docs/customization/theming.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/frontend/src/content/docs/docs/customization/theming.md b/apps/frontend/src/content/docs/docs/customization/theming.md index c4085d94ebd22..cec2c216b3483 100644 --- a/apps/frontend/src/content/docs/docs/customization/theming.md +++ b/apps/frontend/src/content/docs/docs/customization/theming.md @@ -58,7 +58,7 @@ However, unlike with the "media" feature or the theme context tag, if a user cho
👀 Show example -![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme_light=light_github&theme_dark=dark_github) +![Anurag's GitHub stats](/api?username=anuraghazra&show_icons=true&theme_light=light_github&theme_dark=dark_github)
From ef25a976c437b2c3b00db7567c309b7b17de453e Mon Sep 17 00:00:00 2001 From: Marco Pasqualetti Date: Tue, 25 Aug 2026 19:17:39 +0200 Subject: [PATCH 09/15] docs: nest light/dark parameters under the single-card approach --- .../docs/docs/customization/theming.md | 50 +++++++++---------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/apps/frontend/src/content/docs/docs/customization/theming.md b/apps/frontend/src/content/docs/docs/customization/theming.md index cec2c216b3483..48f9c4862677b 100644 --- a/apps/frontend/src/content/docs/docs/customization/theming.md +++ b/apps/frontend/src/content/docs/docs/customization/theming.md @@ -45,7 +45,7 @@ You can use [GitHub's media feature](https://github.blog/changelog/2022-05-19-sp ### Set light and dark mode in one card -Use the `theme_light` and `theme_dark` or `*_light` / `*_dark` color parameters to embed both modes in a single card URL. See [Light & Dark Mode Parameters](#light--dark-mode-parameters) below for full details. The card will then display in light mode or dark mode based on your browser / operating system settings. +Use the `theme_light` and `theme_dark` or `*_light` / `*_dark` color parameters to embed both modes in a single card URL. See [Light & Dark Mode Parameters](#light--dark-mode-parameters) for full details. The card will then display in light mode or dark mode based on your browser / operating system settings. This approach doesn't use any GitHub-specific features, so it works even when embedding the card outside of GitHub. Or on your GitHub sponsorship page, which doesn't support the other, GitHub-specific approaches. @@ -62,6 +62,30 @@ However, unlike with the "media" feature or the theme context tag, if a user cho +### Light & Dark Mode Parameters + +You can use the `theme_light`, `theme_dark`, and `*_light` / `*_dark` color parameters to customize the look of your card for different modes. + +**Priority (lowest → highest):** + +- default theme +- `theme` +- `theme_light` / `theme_dark` +- general color parameters +- `*_light` / `*_dark` color parameters + +for example: + +```md +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme_light=light_github&theme_dark=dark_github) +``` + +You can mix different parameter types. For example, set a light theme and a dark theme, but choose a custom title color: + +```md +![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme_light=light_github&theme_dark=dark_github&title_color=aabbcc) +``` + ### Use GitHub's theme context tag You can use [GitHub's theme context](https://github.blog/changelog/2021-11-24-specify-theme-context-for-images-in-markdown/) tags to switch the theme based on the user's GitHub theme. This is done by appending `#gh-dark-mode-only` or `#gh-light-mode-only` to the end of an image URL. This tag will define whether the image specified in the markdown is only shown to viewers using a light or a dark GitHub theme: @@ -100,27 +124,3 @@ You can use the `bg_color` parameter to make any of [the available themes](/fron ![Anurag's GitHub stats](/api?username=anuraghazra&show_icons=true&bg_color=00000000) - -## Light & Dark Mode Parameters - -You can use the `theme_light`, `theme_dark`, and `*_light` / `*_dark` color parameters to customize the look of your card for different modes. - -**Priority (lowest → highest):** - -- default theme -- `theme` -- `theme_light` / `theme_dark` -- general color parameters -- `*_light` / `*_dark` color parameters - -for example: - -```md -![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme_light=light_github&theme_dark=dark_github) -``` - -You can mix different parameter types. For example, set a light theme and a dark theme, but choose a custom title color: - -```md -![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme_light=light_github&theme_dark=dark_github&title_color=aabbcc) -``` From 221d71e1e9820bb6ea6ae92ca1161c93599a5763 Mon Sep 17 00:00:00 2001 From: Marco Pasqualetti Date: Tue, 25 Aug 2026 19:18:07 +0200 Subject: [PATCH 10/15] docs: distinguish the contributions stat from contribs --- apps/frontend/src/content/docs/docs/cards/stats.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/frontend/src/content/docs/docs/cards/stats.md b/apps/frontend/src/content/docs/docs/cards/stats.md index a7ec08a8e9538..1e6ade47fca86 100644 --- a/apps/frontend/src/content/docs/docs/cards/stats.md +++ b/apps/frontend/src/content/docs/docs/cards/stats.md @@ -32,6 +32,11 @@ You can pass a query parameter `&show=` to show any specific additional stats wi ![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show=contributions,reviews,discussions_started,discussions_answered,prs_merged,prs_merged_percentage,prs_authored,prs_commented,prs_reviewed,issues_authored,issues_commented) ``` +:::note +`contributions` is the total number of contributions across all years, while the +`contribs` item hidden via `&hide=` is the number of repositories contributed to. +::: + ## Showing icons To enable icons, you can pass `&show_icons=true` in the query param, like so: From 755da34360f6148e57856fc25b6c92cf635e094a Mon Sep 17 00:00:00 2001 From: Marco Pasqualetti Date: Tue, 25 Aug 2026 19:18:27 +0200 Subject: [PATCH 11/15] docs: link the light/dark footnote to the precedence rules --- .../src/content/docs/docs/customization/common-options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/frontend/src/content/docs/docs/customization/common-options.md b/apps/frontend/src/content/docs/docs/customization/common-options.md index ffddc281ea5a4..40278d06124bd 100644 --- a/apps/frontend/src/content/docs/docs/customization/common-options.md +++ b/apps/frontend/src/content/docs/docs/customization/common-options.md @@ -17,7 +17,7 @@ Every card accepts the options below, on top of the exclusive options listed on | `locale` | Sets the language in the card, you can check full list of available locales [here](/frontend/docs/customization/locales/). | enum | `en` | | `border_radius` | Corner rounding on the card. | number | `4.5` | -1: These parameters support light and dark mode. You can use `*_light` and `*_dark` variants to specify different values for light and dark mode. For example, `title_color_light` and `title_color_dark` will set the title color for light and dark mode respectively. +1: These parameters support light and dark mode. You can use `*_light` and `*_dark` variants to specify different values for light and dark mode. For example, `title_color_light` and `title_color_dark` will set the title color for light and dark mode respectively. See [Light & Dark Mode Parameters](/frontend/docs/customization/theming/#light--dark-mode-parameters) for the precedence rules. :::caution[Warning] We use caching to decrease the load on our servers (see [this discussion](https://github.com/anuraghazra/github-readme-stats/issues/1471#issuecomment-1271551425)). Cards generated by [https://github-stats-extended.vercel.app/](https://github-stats-extended.vercel.app/frontend) are usually cached for a few days. If you need your card data to update more frequently, you can [deploy your own instance](/frontend/docs/deploy/) and set the [`CACHE_SECONDS`](/frontend/docs/deploy/#available-environment-variables) environment variable to your preferred value. Alternatively, you can use the [GitHub Actions workflow](/frontend/docs/deploy/#github-action) to update your cards on a schedule. From d7a3bcee5322e169c764da957db944cb87877fd6 Mon Sep 17 00:00:00 2001 From: Marco Pasqualetti Date: Tue, 25 Aug 2026 20:56:54 +0200 Subject: [PATCH 12/15] docs: tighten the theming prose --- .../docs/docs/customization/theming.md | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/apps/frontend/src/content/docs/docs/customization/theming.md b/apps/frontend/src/content/docs/docs/customization/theming.md index 48f9c4862677b..eeaec841742aa 100644 --- a/apps/frontend/src/content/docs/docs/customization/theming.md +++ b/apps/frontend/src/content/docs/docs/customization/theming.md @@ -4,7 +4,7 @@ title: Theming With inbuilt themes, you can customize the look of the card without doing any [manual customization](/frontend/docs/customization/common-options/). -Use `&theme=THEME_NAME` parameter like so : +Pass `&theme=THEME_NAME`: ```md ![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=radical) @@ -16,20 +16,22 @@ GitHub Stats Extended comes with several built-in themes (e.g. `radical`, `merko GitHub Stats Extended Themes -We recommend using `light_github` for light mode and `dark_github` for dark mode. These themes match GitHub's default light and dark themes, ensuring that your stats card looks consistent with the rest of your profile. For repository cards and gist cards we recommend using `light_github_repocard` and `dark_github_repocard`, which use a different icon color. +:::tip +Use `light_github` and `dark_github` to match GitHub's own light and dark themes. For repository and gist cards use `light_github_repocard` and `dark_github_repocard`, which differ only in icon color. +::: -You can look at a preview for [all available themes](/frontend/docs/customization/themes/) or checkout the [theme config file](https://github.com/stats-organization/github-stats-extended/blob/master/packages/core/src/themes/index.ts). Please note that we paused the addition of new themes to decrease maintenance efforts; all pull requests related to new themes will be closed. +Preview [all available themes](/frontend/docs/customization/themes/) or read the [theme config file](https://github.com/stats-organization/github-stats-extended/blob/master/packages/core/src/themes/index.ts). We have paused the addition of new themes to reduce maintenance effort; pull requests adding one will be closed. ## Light and Dark Mode Anurag's GitHub stats Anurag's GitHub stats -There are several methods you can use to create dynamic themes on the client side. +There are several ways to switch a card between modes on the client side. ### Use GitHub's media feature (recommended) -You can use [GitHub's media feature](https://github.blog/changelog/2022-05-19-specify-theme-context-for-images-in-markdown-beta/) in HTML to specify which image to display in light or dark mode. This is done using the HTML `` element in combination with the `prefers-color-scheme` media feature. +[GitHub's media feature](https://github.blog/changelog/2022-05-19-specify-theme-context-for-images-in-markdown-beta/) picks the image from a `` element using the `prefers-color-scheme` media query. ```html @@ -45,11 +47,9 @@ You can use [GitHub's media feature](https://github.blog/changelog/2022-05-19-sp ### Set light and dark mode in one card -Use the `theme_light` and `theme_dark` or `*_light` / `*_dark` color parameters to embed both modes in a single card URL. See [Light & Dark Mode Parameters](#light--dark-mode-parameters) for full details. The card will then display in light mode or dark mode based on your browser / operating system settings. +`theme_light` / `theme_dark` and the `*_light` / `*_dark` color parameters put both modes in a single card URL, which then follows the viewer's browser or OS setting. See [Light & Dark Mode Parameters](#light--dark-mode-parameters) for the details. -This approach doesn't use any GitHub-specific features, so it works even when embedding the card outside of GitHub. Or on your GitHub sponsorship page, which doesn't support the other, GitHub-specific approaches. - -However, unlike with the "media" feature or the theme context tag, if a user chooses a GitHub theme different from their browser/OS setting, the card will not be able to detect this. Since GitHub re-uploads the cards and serves them from their [CDN](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/about-anonymized-urls), we can not infer the GitHub theme with this approach, only the browser/OS theme. +Nothing here is GitHub-specific, so it also works outside GitHub — including sponsorship pages, where the other approaches do not. The trade-off: GitHub serves the card from its [CDN](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/about-anonymized-urls), so a GitHub theme that differs from the browser/OS setting cannot be detected. ```md ![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme_light=light_github&theme_dark=dark_github) @@ -64,7 +64,7 @@ However, unlike with the "media" feature or the theme context tag, if a user cho ### Light & Dark Mode Parameters -You can use the `theme_light`, `theme_dark`, and `*_light` / `*_dark` color parameters to customize the look of your card for different modes. +These parameters style each mode separately. **Priority (lowest → highest):** @@ -74,13 +74,13 @@ You can use the `theme_light`, `theme_dark`, and `*_light` / `*_dark` color para - general color parameters - `*_light` / `*_dark` color parameters -for example: +For example: ```md ![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme_light=light_github&theme_dark=dark_github) ``` -You can mix different parameter types. For example, set a light theme and a dark theme, but choose a custom title color: +Types can be mixed — a light and a dark theme, plus one fixed title color: ```md ![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme_light=light_github&theme_dark=dark_github&title_color=aabbcc) @@ -88,7 +88,7 @@ You can mix different parameter types. For example, set a light theme and a dark ### Use GitHub's theme context tag -You can use [GitHub's theme context](https://github.blog/changelog/2021-11-24-specify-theme-context-for-images-in-markdown/) tags to switch the theme based on the user's GitHub theme. This is done by appending `#gh-dark-mode-only` or `#gh-light-mode-only` to the end of an image URL. This tag will define whether the image specified in the markdown is only shown to viewers using a light or a dark GitHub theme: +Appending `#gh-dark-mode-only` or `#gh-light-mode-only` to an image URL shows it only to viewers on that [GitHub theme](https://github.blog/changelog/2021-11-24-specify-theme-context-for-images-in-markdown/): ```md [![Anurag's GitHub stats-Dark](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=dark_github#gh-dark-mode-only)](https://github.com/stats-organization/github-stats-extended#gh-dark-mode-only) @@ -97,7 +97,7 @@ You can use [GitHub's theme context](https://github.blog/changelog/2021-11-24-sp ### Use the transparent theme -We have included a `transparent` theme that has a transparent background. This theme is optimized to look good on GitHub's dark and light default themes. You can enable this theme using the `&theme=transparent` parameter like so: +The `transparent` theme has no background, so it sits well on GitHub's light and dark themes: ```md ![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=transparent) @@ -112,7 +112,7 @@ We have included a `transparent` theme that has a transparent background. This t ### Add transparent alpha channel to a themes bg\_color -You can use the `bg_color` parameter to make any of [the available themes](/frontend/docs/customization/themes/) transparent. This is done by setting the `bg_color` to a color with a transparent alpha channel (i.e. `bg_color=00000000`): +Any of [the available themes](/frontend/docs/customization/themes/) turns transparent when `bg_color` carries an alpha channel (i.e. `bg_color=00000000`): ```md ![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&bg_color=00000000) From ea64f6a0e34de3680f51b4279df9f5777537f54b Mon Sep 17 00:00:00 2001 From: Marco Pasqualetti Date: Tue, 25 Aug 2026 21:15:17 +0200 Subject: [PATCH 13/15] docs: put the light/dark caveats in note callouts --- .../frontend/src/content/docs/docs/customization/theming.md | 6 +++++- apps/frontend/src/content/docs/docs/fork.md | 4 +++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/apps/frontend/src/content/docs/docs/customization/theming.md b/apps/frontend/src/content/docs/docs/customization/theming.md index eeaec841742aa..d05affdf39b75 100644 --- a/apps/frontend/src/content/docs/docs/customization/theming.md +++ b/apps/frontend/src/content/docs/docs/customization/theming.md @@ -49,7 +49,11 @@ There are several ways to switch a card between modes on the client side. `theme_light` / `theme_dark` and the `*_light` / `*_dark` color parameters put both modes in a single card URL, which then follows the viewer's browser or OS setting. See [Light & Dark Mode Parameters](#light--dark-mode-parameters) for the details. -Nothing here is GitHub-specific, so it also works outside GitHub — including sponsorship pages, where the other approaches do not. The trade-off: GitHub serves the card from its [CDN](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/about-anonymized-urls), so a GitHub theme that differs from the browser/OS setting cannot be detected. +Nothing here is GitHub-specific, so it also works outside GitHub — including sponsorship pages, where the other approaches do not. + +:::note +GitHub serves the card from its [CDN](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/about-anonymized-urls), so a GitHub theme that differs from the browser/OS setting cannot be detected. +::: ```md ![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme_light=light_github&theme_dark=dark_github) diff --git a/apps/frontend/src/content/docs/docs/fork.md b/apps/frontend/src/content/docs/docs/fork.md index da4e77e150760..f5ce028e6ebd5 100644 --- a/apps/frontend/src/content/docs/docs/fork.md +++ b/apps/frontend/src/content/docs/docs/fork.md @@ -50,7 +50,9 @@ GitHub-Stats-Extended adds `light_github` and `dark_github` [themes](/frontend/d GitHub-Stats-Extended adds an optional stat showing the total number of [contributions](https://docs.github.com/en/account-and-profile/reference/profile-contributions-reference#what-counts-as-a-contribution) (commits, pull requests, issues, etc.) across all years of a user's GitHub history. Add `&show=contributions` to your stats card URL to enable it. Whether private contributions are counted depends on [your GitHub profile visibility settings](https://docs.github.com/en/account-and-profile/how-tos/contribution-settings/manage-visibility-settings-for-private-contributions-and-achievements#changing-the-visibility-of-your-private-contributions). -Note that the pre-existing "Contributed to" stat indicates the number of repositories a user has contributed to, not the number of contributions. +:::note +The pre-existing "Contributed to" stat indicates the number of repositories a user has contributed to, not the number of contributions. +::: ### Customization of top languages card From f0699811ec67edc95f71a2398242ff44e79e07ea Mon Sep 17 00:00:00 2001 From: Marco Pasqualetti Date: Tue, 25 Aug 2026 21:15:38 +0200 Subject: [PATCH 14/15] docs: tighten the light/dark and contributions prose --- apps/frontend/src/content/docs/docs/cards/stats.md | 6 +++--- .../src/content/docs/docs/cards/top-languages.md | 2 +- .../docs/docs/customization/common-options.md | 2 +- apps/frontend/src/content/docs/docs/fork.md | 12 ++++++------ 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/apps/frontend/src/content/docs/docs/cards/stats.md b/apps/frontend/src/content/docs/docs/cards/stats.md index 1e6ade47fca86..33b4290d06fa5 100644 --- a/apps/frontend/src/content/docs/docs/cards/stats.md +++ b/apps/frontend/src/content/docs/docs/cards/stats.md @@ -33,8 +33,8 @@ You can pass a query parameter `&show=` to show any specific additional stats wi ``` :::note -`contributions` is the total number of contributions across all years, while the -`contribs` item hidden via `&hide=` is the number of repositories contributed to. +`contributions` counts contributions across all years; +the `contribs` item under `&hide=` counts repositories contributed to. ::: ## Showing icons @@ -88,7 +88,7 @@ You can customize the appearance and behavior of the stats card using the [commo | `show` | Shows [additional items](#showing-additional-individual-stats) on the stats card (i.e. `contributions`, `reviews`, `discussions_started`, `discussions_answered`, `prs_merged` or `prs_merged_percentage`. And the following, which support the `repo` and `owner` filters: `prs_authored`, `prs_commented`, `prs_reviewed`, `issues_authored` or `issues_commented`). | string (comma-separated values) | `null` | | `commits_year` | Filters and counts only commits made in the specified year. | integer _(YYYY)_ | ` (one year to date)` | -1: This parameter supports light and dark mode. You can use `ring_color_light` and `ring_color_dark` to specify different colors for light and dark mode. +1: Supports light and dark mode via `ring_color_light` and `ring_color_dark`. :::caution[Warning] Custom title should be URI-escaped, as specified in [Percent Encoding](https://en.wikipedia.org/wiki/Percent-encoding) (i.e: `Anurag's GitHub Stats` should become `Anurag%27s%20GitHub%20Stats`). You can use [urlencoder.org](https://www.urlencoder.org/) to help you do this automatically. diff --git a/apps/frontend/src/content/docs/docs/cards/top-languages.md b/apps/frontend/src/content/docs/docs/cards/top-languages.md index 707e343c0951c..e98898fdcb764 100644 --- a/apps/frontend/src/content/docs/docs/cards/top-languages.md +++ b/apps/frontend/src/content/docs/docs/cards/top-languages.md @@ -48,7 +48,7 @@ You can customize the appearance and behavior of the top languages card using th | `count_weight` | Configures language stats algorithm (see [Language stats algorithm](#language-stats-algorithm)). | integer | `0` | | `stats_format` | Switches between two available formats for language's stats `percentages` and `bytes`. | enum | `percentages` | -1: This parameter supports light and dark mode. You can use `prog_bar_bg_color_light` and `prog_bar_bg_color_dark` to specify different colors for light and dark mode. +1: Supports light and dark mode via `prog_bar_bg_color_light` and `prog_bar_bg_color_dark`. :::caution[Warning] Language names and custom title should be URI-escaped, as specified in [Percent Encoding](https://en.wikipedia.org/wiki/Percent-encoding) (i.e: `c++` should become `c%2B%2B`, `jupyter notebook` should become `jupyter%20notebook`, `Most Used Languages` should become `Most%20Used%20Languages`, etc.) You can use [urlencoder.org](https://www.urlencoder.org/) to help you do this automatically. diff --git a/apps/frontend/src/content/docs/docs/customization/common-options.md b/apps/frontend/src/content/docs/docs/customization/common-options.md index 40278d06124bd..40da81c1cd1bc 100644 --- a/apps/frontend/src/content/docs/docs/customization/common-options.md +++ b/apps/frontend/src/content/docs/docs/customization/common-options.md @@ -17,7 +17,7 @@ Every card accepts the options below, on top of the exclusive options listed on | `locale` | Sets the language in the card, you can check full list of available locales [here](/frontend/docs/customization/locales/). | enum | `en` | | `border_radius` | Corner rounding on the card. | number | `4.5` | -1: These parameters support light and dark mode. You can use `*_light` and `*_dark` variants to specify different values for light and dark mode. For example, `title_color_light` and `title_color_dark` will set the title color for light and dark mode respectively. See [Light & Dark Mode Parameters](/frontend/docs/customization/theming/#light--dark-mode-parameters) for the precedence rules. +1: Support light and dark mode via `*_light` / `*_dark` variants (e.g. `title_color_light`). See [Light & Dark Mode Parameters](/frontend/docs/customization/theming/#light--dark-mode-parameters) for the precedence rules. :::caution[Warning] We use caching to decrease the load on our servers (see [this discussion](https://github.com/anuraghazra/github-readme-stats/issues/1471#issuecomment-1271551425)). Cards generated by [https://github-stats-extended.vercel.app/](https://github-stats-extended.vercel.app/frontend) are usually cached for a few days. If you need your card data to update more frequently, you can [deploy your own instance](/frontend/docs/deploy/) and set the [`CACHE_SECONDS`](/frontend/docs/deploy/#available-environment-variables) environment variable to your preferred value. Alternatively, you can use the [GitHub Actions workflow](/frontend/docs/deploy/#github-action) to update your cards on a schedule. diff --git a/apps/frontend/src/content/docs/docs/fork.md b/apps/frontend/src/content/docs/docs/fork.md index f5ce028e6ebd5..c730fb7893edb 100644 --- a/apps/frontend/src/content/docs/docs/fork.md +++ b/apps/frontend/src/content/docs/docs/fork.md @@ -34,29 +34,29 @@ GitHub-Stats-Extended fetches up to 1000 of your starred repositories to accurat ### Light and dark mode in a single card URL -GitHub-Stats-Extended adds `theme_light`, `theme_dark`, and `*_light` / `*_dark` color parameter variants (e.g. `title_color_light`, `title_color_dark`) that let you embed both light and dark mode in a single card URL. The card will automatically switch between the two based on the viewer's browser or OS theme setting. +GitHub-Stats-Extended adds `theme_light`, `theme_dark` and the `*_light` / `*_dark` color variants (e.g. `title_color_light`), which hold both modes in one card URL. The card then follows the viewer's browser or OS setting. ```md ![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&theme_light=light_github&theme_dark=dark_github) ``` -This approach works on any platform, not just GitHub - and on GitHub sponsorship pages, which don't support the other approaches to light/dark theming. See [Set light and dark mode in one card](/frontend/docs/customization/theming/#set-light-and-dark-mode-in-one-card) for full documentation. +It works anywhere, including GitHub sponsorship pages, where the other light/dark approaches do not. See [Set light and dark mode in one card](/frontend/docs/customization/theming/#set-light-and-dark-mode-in-one-card) for the details. ### GitHub-themed light and dark themes -GitHub-Stats-Extended adds `light_github` and `dark_github` [themes](/frontend/docs/customization/themes/) that exactly match GitHub's default light and dark UI colors. For repo and gist cards, use `light_github_repocard` and `dark_github_repocard` instead, which use a different icon color. +GitHub-Stats-Extended adds `light_github` and `dark_github` [themes](/frontend/docs/customization/themes/) matching GitHub's own UI colors. Repo and gist cards have `light_github_repocard` and `dark_github_repocard`, which differ only in icon color. ### New Contributions stat -GitHub-Stats-Extended adds an optional stat showing the total number of [contributions](https://docs.github.com/en/account-and-profile/reference/profile-contributions-reference#what-counts-as-a-contribution) (commits, pull requests, issues, etc.) across all years of a user's GitHub history. Add `&show=contributions` to your stats card URL to enable it. Whether private contributions are counted depends on [your GitHub profile visibility settings](https://docs.github.com/en/account-and-profile/how-tos/contribution-settings/manage-visibility-settings-for-private-contributions-and-achievements#changing-the-visibility-of-your-private-contributions). +GitHub-Stats-Extended adds an optional stat counting every [contribution](https://docs.github.com/en/account-and-profile/reference/profile-contributions-reference#what-counts-as-a-contribution) — commits, pull requests, issues — across all years of a user's history; enable it with `&show=contributions`. Private contributions count only if [your profile visibility settings](https://docs.github.com/en/account-and-profile/how-tos/contribution-settings/manage-visibility-settings-for-private-contributions-and-achievements#changing-the-visibility-of-your-private-contributions) allow it. :::note -The pre-existing "Contributed to" stat indicates the number of repositories a user has contributed to, not the number of contributions. +The pre-existing "Contributed to" stat counts repositories, not contributions. ::: ### Customization of top languages card -GitHub-Stats-Extended allows you to display your top languages without any numbers via the `hide_values` parameter. And the `prog_bar_bg_color` parameter allows you to customize the background color of the progress bars, e.g. by setting it to transparent: +GitHub-Stats-Extended can show your top languages without numbers via `hide_values`, and `prog_bar_bg_color` sets the bar background — here transparent: anuraghazra's top languages without numbers anuraghazra's top languages without numbers From cd99f70e2db12bed9a0b036e7c5f6d45c2410fb0 Mon Sep 17 00:00:00 2001 From: martin-mfg <2026226+martin-mfg@users.noreply.github.com> Date: Wed, 26 Aug 2026 14:44:09 +0200 Subject: [PATCH 15/15] adaptions --- .../docs/docs/customization/common-options.md | 2 +- .../src/content/docs/docs/customization/theming.md | 10 +++++----- apps/frontend/src/content/docs/docs/fork.md | 12 ++++++------ 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/apps/frontend/src/content/docs/docs/customization/common-options.md b/apps/frontend/src/content/docs/docs/customization/common-options.md index 40da81c1cd1bc..b912daa33b4a2 100644 --- a/apps/frontend/src/content/docs/docs/customization/common-options.md +++ b/apps/frontend/src/content/docs/docs/customization/common-options.md @@ -17,7 +17,7 @@ Every card accepts the options below, on top of the exclusive options listed on | `locale` | Sets the language in the card, you can check full list of available locales [here](/frontend/docs/customization/locales/). | enum | `en` | | `border_radius` | Corner rounding on the card. | number | `4.5` | -1: Support light and dark mode via `*_light` / `*_dark` variants (e.g. `title_color_light`). See [Light & Dark Mode Parameters](/frontend/docs/customization/theming/#light--dark-mode-parameters) for the precedence rules. +1: Supports light and dark mode via `*_light` / `*_dark` variants (e.g. `title_color_light`). See [Light & Dark Mode Parameters](/frontend/docs/customization/theming/#light--dark-mode-parameters) for details. :::caution[Warning] We use caching to decrease the load on our servers (see [this discussion](https://github.com/anuraghazra/github-readme-stats/issues/1471#issuecomment-1271551425)). Cards generated by [https://github-stats-extended.vercel.app/](https://github-stats-extended.vercel.app/frontend) are usually cached for a few days. If you need your card data to update more frequently, you can [deploy your own instance](/frontend/docs/deploy/) and set the [`CACHE_SECONDS`](/frontend/docs/deploy/#available-environment-variables) environment variable to your preferred value. Alternatively, you can use the [GitHub Actions workflow](/frontend/docs/deploy/#github-action) to update your cards on a schedule. diff --git a/apps/frontend/src/content/docs/docs/customization/theming.md b/apps/frontend/src/content/docs/docs/customization/theming.md index d05affdf39b75..1dfd63d0e197c 100644 --- a/apps/frontend/src/content/docs/docs/customization/theming.md +++ b/apps/frontend/src/content/docs/docs/customization/theming.md @@ -49,10 +49,10 @@ There are several ways to switch a card between modes on the client side. `theme_light` / `theme_dark` and the `*_light` / `*_dark` color parameters put both modes in a single card URL, which then follows the viewer's browser or OS setting. See [Light & Dark Mode Parameters](#light--dark-mode-parameters) for the details. -Nothing here is GitHub-specific, so it also works outside GitHub — including sponsorship pages, where the other approaches do not. +This approach is not GitHub-specific, so it also works outside GitHub — including GitHub sponsorship pages, where the other approaches don't work. :::note -GitHub serves the card from its [CDN](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/about-anonymized-urls), so a GitHub theme that differs from the browser/OS setting cannot be detected. +GitHub serves the card from its [CDN](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/about-anonymized-urls), so a GitHub theme that differs from the browser/OS setting cannot be detected by this approach. ::: ```md @@ -84,7 +84,7 @@ For example: ![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme_light=light_github&theme_dark=dark_github) ``` -Types can be mixed — a light and a dark theme, plus one fixed title color: +Parameter types can be mixed — for example a light and a dark theme, plus one fixed title color: ```md ![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme_light=light_github&theme_dark=dark_github&title_color=aabbcc) @@ -92,7 +92,7 @@ Types can be mixed — a light and a dark theme, plus one fixed title color: ### Use GitHub's theme context tag -Appending `#gh-dark-mode-only` or `#gh-light-mode-only` to an image URL shows it only to viewers on that [GitHub theme](https://github.blog/changelog/2021-11-24-specify-theme-context-for-images-in-markdown/): +Appending [`#gh-dark-mode-only` or `#gh-light-mode-only`](https://github.blog/changelog/2021-11-24-specify-theme-context-for-images-in-markdown/) to an image URL shows it only to viewers on that GitHub mode: ```md [![Anurag's GitHub stats-Dark](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=dark_github#gh-dark-mode-only)](https://github.com/stats-organization/github-stats-extended#gh-dark-mode-only) @@ -101,7 +101,7 @@ Appending `#gh-dark-mode-only` or `#gh-light-mode-only` to an image URL shows it ### Use the transparent theme -The `transparent` theme has no background, so it sits well on GitHub's light and dark themes: +The `transparent` theme has no background, so it sits well on GitHub's light and dark modes: ```md ![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&show_icons=true&theme=transparent) diff --git a/apps/frontend/src/content/docs/docs/fork.md b/apps/frontend/src/content/docs/docs/fork.md index c730fb7893edb..2468d91b5676a 100644 --- a/apps/frontend/src/content/docs/docs/fork.md +++ b/apps/frontend/src/content/docs/docs/fork.md @@ -34,29 +34,29 @@ GitHub-Stats-Extended fetches up to 1000 of your starred repositories to accurat ### Light and dark mode in a single card URL -GitHub-Stats-Extended adds `theme_light`, `theme_dark` and the `*_light` / `*_dark` color variants (e.g. `title_color_light`), which hold both modes in one card URL. The card then follows the viewer's browser or OS setting. +GitHub-Stats-Extended adds parameters `theme_light`, `theme_dark` and the `*_light` / `*_dark` color variants (e.g. `title_color_light`), to specify both modes in one card URL. The card then follows the viewer's browser or OS setting. ```md ![Anurag's GitHub stats](https://github-stats-extended.vercel.app/api?username=anuraghazra&theme_light=light_github&theme_dark=dark_github) ``` -It works anywhere, including GitHub sponsorship pages, where the other light/dark approaches do not. See [Set light and dark mode in one card](/frontend/docs/customization/theming/#set-light-and-dark-mode-in-one-card) for the details. +It works everywhere, including GitHub sponsorship pages, where the other light/dark approaches do not. See [Set light and dark mode in one card](/frontend/docs/customization/theming/#set-light-and-dark-mode-in-one-card) for the details. ### GitHub-themed light and dark themes -GitHub-Stats-Extended adds `light_github` and `dark_github` [themes](/frontend/docs/customization/themes/) matching GitHub's own UI colors. Repo and gist cards have `light_github_repocard` and `dark_github_repocard`, which differ only in icon color. +GitHub-Stats-Extended adds `light_github` and `dark_github` [themes](/frontend/docs/customization/themes/) that exactly match GitHub's own UI colors. For repo and gist cards use `light_github_repocard` and `dark_github_repocard`, which differ only in icon color. ### New Contributions stat -GitHub-Stats-Extended adds an optional stat counting every [contribution](https://docs.github.com/en/account-and-profile/reference/profile-contributions-reference#what-counts-as-a-contribution) — commits, pull requests, issues — across all years of a user's history; enable it with `&show=contributions`. Private contributions count only if [your profile visibility settings](https://docs.github.com/en/account-and-profile/how-tos/contribution-settings/manage-visibility-settings-for-private-contributions-and-achievements#changing-the-visibility-of-your-private-contributions) allow it. +GitHub-Stats-Extended adds an optional stat showing the number of [contributions](https://docs.github.com/en/account-and-profile/reference/profile-contributions-reference#what-counts-as-a-contribution) (commits, pull requests, issues, etc.) across all years of a user's history. Enable it with `&show=contributions`. Whether private contributions are counted depends on [your profile visibility settings](https://docs.github.com/en/account-and-profile/how-tos/contribution-settings/manage-visibility-settings-for-private-contributions-and-achievements#changing-the-visibility-of-your-private-contributions). :::note -The pre-existing "Contributed to" stat counts repositories, not contributions. +The pre-existing "Contributed to" stat counts repositories a user has contributed to, not contributions. ::: ### Customization of top languages card -GitHub-Stats-Extended can show your top languages without numbers via `hide_values`, and `prog_bar_bg_color` sets the bar background — here transparent: +GitHub-Stats-Extended can show your top languages without any numbers via the `hide_values` parameter. And the new `prog_bar_bg_color` parameter sets the background color of progress bars, e.g. to transparent: anuraghazra's top languages without numbers anuraghazra's top languages without numbers