diff --git a/themes/README.md b/themes/README.md index 10a8d6e..c7cdb75 100644 --- a/themes/README.md +++ b/themes/README.md @@ -10,12 +10,16 @@ Use `?theme=THEME_NAME` parameter like so :- ## Themes Preview -| Themes | Preview | -| :------------------: | :-------------------------: | -| `default` | ![image][default] | -| `transparent` | ![image][transparent] | -| `dark` | ![image][dark] | -| `highcontrast` | ![image][highcontrast] | +| 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] | Want to add a new theme? Consider reading the [contribution guidelines](/CONTRIBUTING.md#-themes-contribution) :D @@ -23,3 +27,7 @@ Want to add a new theme? Consider reading the [contribution guidelines](/CONTRIB [transparent]: https://github-readme-profile-theta.vercel.app/api?username=FajarKim&theme=transparent [dark]: https://github-readme-profile-theta.vercel.app/api?username=FajarKim&theme=dark [highcontrast]: https://github-readme-profile-theta.vercel.app/api?username=FajarKim&theme=highcontrast +[catppuccin-latte]: https://github-readme-profile-theta.vercel.app/api?username=FajarKim&theme=catppuccin-latte +[catppuccin-frappe]: https://github-readme-profile-theta.vercel.app/api?username=FajarKim&theme=catppuccin-frappe +[catppuccin-macchiato]: https://github-readme-profile-theta.vercel.app/api?username=FajarKim&theme=catppuccin-macchiato +[catppuccin-mocha]: https://github-readme-profile-theta.vercel.app/api?username=FajarKim&theme=catppuccin-mocha diff --git a/themes/index.ts b/themes/index.ts index eb64c3e..ac3f110 100644 --- a/themes/index.ts +++ b/themes/index.ts @@ -28,4 +28,32 @@ export const themes = { stroke_color: "191919", bg_color: "000", }, -} \ No newline at end of file + "catppuccin-latte": { + title_color: "137980", + text_color: "4c4f69", + icon_color: "8839ef", + bg_color: "eff1f5", + username_color: "137980", + }, + "catppuccin-frappe": { + title_color: "81c8be", + text_color: "c6d0f5", + icon_color: "ca9ee6", + bg_color: "303446", + username_color: "81c8be", + }, + "catppuccin-macchiato": { + title_color: "8bd5ca", + text_color: "cad3f5", + icon_color: "c6a0f6", + bg_color: "24273a", + username_color: "8bd5ca", + }, + "catppuccin-mocha": { + title_color: "94e2d5", + text_color: "cdd6f4", + icon_color: "cba6f7", + bg_color: "1e1e2e", + username_color: "94e2d5", + }, +}