Skip to content

Updated index.js with my 5 theme suggestions #4309

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions themes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -462,6 +462,41 @@ export const themes = {
icon_color: "ffffff",
bg_color: "35,4158d0,c850c0,ffcc70",
},
tropical_twist: {
title_color: "ff7f11", // Vivid orange
text_color: "1fab89", // Teal green
icon_color: "00b894", // Bright green
border_color: "ff9f1c", // Softer orange
bg_color: "1b1f22", // Dark gray-black for contrast
},
citrus_mint: {
title_color: "ffa41b", // Zesty orange
text_color: "70e000", // Lime green
icon_color: "38b000", // Fresh green
border_color: "ffcb47", // Soft golden-orange
bg_color: "2d2d2d", // Neutral dark background
},
neon_orangeade: {
title_color: "ff6d00", // Vivid neon orange
text_color: "00ff94", // Neon green
icon_color: "00e676", // Bright mint green
border_color: "ffaa00", // Bright orange
bg_color: "1c1c1c", // Deep charcoal for glow effect
},
sunset_garden: {
title_color: "f77f00", // Sunset orange
text_color: "70e000", // Grass green
icon_color: "40916c", // Earthy green
border_color: "e85d04", // Burnt orange
bg_color: "14213d", // Dusk blue-black
},
canyon_leaves: {
title_color: "ff914d", // Canyon orange
text_color: "7ae582", // Soft green
icon_color: "57cc99", // Balanced green
border_color: "ff9f1c", // Muted orange
bg_color: "1e2a2b", // Earthy dark background
}
};

export default themes;
Loading