From 421cf7f4f9367df5a624c4274ec707cb479c692d Mon Sep 17 00:00:00 2001 From: Rangga Fajar Oktariansyah <86386385+FajarKim@users.noreply.github.com> Date: Fri, 13 Oct 2023 20:48:50 +0700 Subject: [PATCH] feat: Added solarized-light and solarized-dark themes (#19) * feat: Added solarized-light and solarized-dark themes * docs(theme): fixed table preview themes --- themes/README.md | 29 ++++++++++------------------- themes/index.ts | 14 ++++++++++++++ 2 files changed, 24 insertions(+), 19 deletions(-) diff --git a/themes/README.md b/themes/README.md index 11d6eac..6ad03d7 100644 --- a/themes/README.md +++ b/themes/README.md @@ -10,25 +10,14 @@ Use `?theme=THEME_NAME` parameter like so :- ## Themes Preview -| Themes | Preview | -| :------------------: | :--------------------------: | -| `default` | ![image][default] | -| `transparent` | ![image][transparent] | -| `dark` | ![image][dark] | -| `highcontrast` | ![image][highcontrast] | -| `catppuccin-latte` | ![image][catppuccin-latte] | -| `catppuccin-frappe` | ![image][catppuccin-frappe] | -|`catppuccin-macchiato`|![image][catppuccin-macchiato]| -| `catppuccin-mocha` | ![image][catppuccin-mocha] | -| `vue` | ![image][vue] | -| `vue-dark` | ![image][vue-dark] | -| `github_dark` | ![image][github_dark] | -| `github_dark_dimmed` | ![image][github_dark_dimmed] | -| `github_light` | ![image][github_light] | -| `whatsapp-light` | ![image][whatsapp-light] | -| `whatsapp-dark` | ![image][whatsapp-dark] | -| `buefy` | ![image][buefy] | -| `buefy-dark` | ![image][buefy-dark] | +| `deafult` ![default][default] | `transparent` ![transparent][transparent] | `dark` ![dark][dark] | +| :---------------: | :---------------: | :---------------: | +| `highcontrast` ![highcontrast][highcontrast] | `catppuccin-latte` ![catppuccin-latte][catppuccin-latte] | `catppuccin-frappe` ![catppuccin-frappe][catppuccin-frappe] | +| `catppuccin-macchiato` ![catppuccin-macchiato][catppuccin-macchiato] | `catppuccin-mocha` ![catppuccin-mocha][catppuccin-mocha] | `vue` ![vue][vue] | +| `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] | | | Want to add a new theme? Consider reading the [contribution guidelines](/CONTRIBUTING.md#-themes-contribution) :D @@ -49,3 +38,5 @@ Want to add a new theme? Consider reading the [contribution guidelines](/CONTRIB [whatsapp-dark]: https://github-readme-profile-theta.vercel.app/api?username=FajarKim&theme=whatsapp-dark [buefy]: https://github-readme-profile-theta.vercel.app/api?username=FajarKim&theme=buefy [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 diff --git a/themes/index.ts b/themes/index.ts index e6f97bd..0906e6a 100644 --- a/themes/index.ts +++ b/themes/index.ts @@ -132,4 +132,18 @@ export const themes: Themes = { icon_color: "FF3860", bg_color: "1A1B27", }, + "solarized-light": { + title_color: "268bd2", + icon_color: "b58900", + text_color: "859900", + bg_color: "fdf6e3", + stroke_color: "fdf0ce", + }, + "solarized-dark": { + title_color: "268bd2", + icon_color: "b58900", + text_color: "859900", + bg_color: "002b36", + stroke_color: "004557", + }, }