From 9d691bfa9348b1f0db2391e4e8c6bd7e0bf11f23 Mon Sep 17 00:00:00 2001 From: Shaswat Raj Date: Tue, 28 May 2024 17:08:32 +0530 Subject: [PATCH] Add New Themes: Sunset, Ocean, Forest, Desert, and Vintage This PR introduces five new themes to the GitHub Readme Stats: 1. **Sunset** - Background: `#FFCC88` - Title: `#FF6347` - Text: `#6A5ACD` 2. **Ocean** - Background: `#2E8B57` - Title: `#4682B4` - Text: `#00CED1` 3. **Forest** - Background: `#228B22` - Title: `#556B2F` - Text: `#8FBC8F` 4. **Desert** - Background: `#EDC9AF` - Title: `#D2691E` - Text: `#8B4513` 5. **Vintage** - Background: `#F5DEB3` - Title: `#A0522D` - Text: `#8B4513` These themes provide diverse aesthetic options inspired by natural elements and color schemes. --- themes/index.js | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/themes/index.js b/themes/index.js index f5d8d9160fd1b..a59a954d35311 100644 --- a/themes/index.js +++ b/themes/index.js @@ -462,6 +462,31 @@ export const themes = { icon_color: "ffffff", bg_color: "35,4158d0,c850c0,ffcc70", }, + sunset: { + background: "#FFCC88", + title: "#FF6347", + text: "#6A5ACD", + }, + ocean: { + background: "#2E8B57", + title: "#4682B4", + text: "#00CED1", + }, + forest: { + background: "#228B22", + title: "#556B2F", + text: "#8FBC8F", + }, + desert: { + background: "#EDC9AF", + title: "#D2691E", + text: "#8B4513", + }, + vintage: { + background: "#F5DEB3", + title: "#A0522D", + text: "#8B4513", + }, }; export default themes;