diff --git a/themes/README.md b/themes/README.md index 6ad03d7..52d46b9 100644 --- a/themes/README.md +++ b/themes/README.md @@ -17,7 +17,7 @@ Use `?theme=THEME_NAME` parameter like so :- | `vue-dark` ![vue-dark][vue-dark] | `github_dark` ![github_dark][github_dark] | `github_dark_dimmed` ![github_dark_dimmed][github_dark_dimmed] | | `github_light` ![github_light][github_light] | `whatsapp-light` ![whatsapp-light][whatsapp-light] | `whatsapp-dark` ![whatsapp][whatsapp-dark] | | `buefy` ![buefy][buefy] | `buefy-dark` ![buefy-dark][buefy-dark] | `solarized-light` ![solarized-light][solarized-light] | -| `solarized-dark` ![solarized-dark][solarized-dark] | | | +| `solarized-dark` ![solarized-dark][solarized-dark] | `vision-friendly-dark` ![vision-friendly-dark][vision-friendly-dark] | `deuteranopia-friendly-dark` ![deuteranopia-friendly-dark][deuteranopia-friendly-dark] | Want to add a new theme? Consider reading the [contribution guidelines](/CONTRIBUTING.md#-themes-contribution) :D @@ -40,3 +40,5 @@ Want to add a new theme? Consider reading the [contribution guidelines](/CONTRIB [buefy-dark]: https://github-readme-profile-theta.vercel.app/api?username=FajarKim&theme=buefy-dark [solarized-light]: https://github-readme-profile-theta.vercel.app/api?username=FajarKim&theme=solarized-light [solarized-dark]: https://github-readme-profile-theta.vercel.app/api?username=FajarKim&theme=solarized-dark +[vision-friendly-dark]: https://github-readme-profile-theta.vercel.app/api?username=FajarKim&theme=vision-friendly-dark +[deuteranopia-friendly-dark]: https://github-readme-profile-theta.vercel.app/api?username=FajarKim&theme=deuteranopia-friendly-dark diff --git a/themes/index.ts b/themes/index.ts index b6789f7..b5b36af 100644 --- a/themes/index.ts +++ b/themes/index.ts @@ -146,4 +146,19 @@ export const themes: Themes = { bg_color: "002b36", stroke_color: "004557", }, + "vision-friendly-dark": { + title_color: "ffb000", + icon_color: "785ef0", + text_color: "ffffff", + bg_color: "000000", + stroke_color: "111919", + }, + "deuteranopia-friendly-dark": { + title_color: "f0e442", + icon_color: "56b4e9", + text_color: "009e73", + bg_color: "000000", + stroke_color: "cc79a7", + username_color: "e69f00", + }, }