From 3d984424501701c0e5b445e39653f087f69bee9b Mon Sep 17 00:00:00 2001 From: FajarKim Date: Fri, 13 Oct 2023 18:41:34 +0700 Subject: [PATCH] feat: Added github_light theme --- themes/README.md | 2 ++ themes/index.ts | 7 +++++++ 2 files changed, 9 insertions(+) diff --git a/themes/README.md b/themes/README.md index 07784b1..85495d2 100644 --- a/themes/README.md +++ b/themes/README.md @@ -24,6 +24,7 @@ Use `?theme=THEME_NAME` parameter like so :- | `vue-dark` | ![image][vue-dark] | | `github_dark` | ![image][github_dark] | | `github_dark_dimmed` | ![image][github_dark_dimmed] | +| `github_light` | ![image][github_light] | Want to add a new theme? Consider reading the [contribution guidelines](/CONTRIBUTING.md#-themes-contribution) :D @@ -39,3 +40,4 @@ Want to add a new theme? Consider reading the [contribution guidelines](/CONTRIB [vue-dark]: https://github-readme-profile-theta.vercel.app/api?username=FajarKim&theme=vue-dark [github_dark]: https://github-readme-profile-theta.vercel.app/api?username=FajarKim&theme=github_dark [github_dark_dimmed]: https://github-readme-profile-theta.vercel.app/api?username=FajarKim&theme=github_dark_dimmed +[github_light]: https://github-readme-profile-theta.vercel.app/api?username=FajarKim&theme=github_light diff --git a/themes/index.ts b/themes/index.ts index e700553..3836fe9 100644 --- a/themes/index.ts +++ b/themes/index.ts @@ -86,4 +86,11 @@ export const themes = { bg_color: "24292F", border_color: "373E47", }, + github_light: { + title_color: "1F6FEB", + icon_color: "39D353", + text_color: "24292F", + bg_color: "FFFFFF", + border_color: "39D353", + }, }