mirror of
https://github.com/hoppscotch/hoppscotch.git
synced 2026-04-25 08:45:58 +03:00
[GH-ISSUE #5857] [feature]: Allow users to select a custom accent color #2301
Labels
No labels
CodeDay
a11y
browser limited
bug
bug fix
cli
core
critical
design
desktop
discussion
docker
documentation
duplicate
enterprise
feature
feature
fosshack
future
good first issue
hacktoberfest
help wanted
i18n
invalid
major
minor
need information
need testing
not applicable to hoppscotch
not reproducible
pull-request
question
refactor
resolved
sandbox
self-host
spam
stale
testmu
wip
wont fix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hoppscotch#2301
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Sunhaiy on GitHub (Feb 10, 2026).
Original GitHub issue: https://github.com/hoppscotch/hoppscotch/issues/5857
Is there an existing issue for this?
Summary
Introduce a custom color picker in the theme settings to allow users to define their own accent color via HEX/RGB values, instead of being limited to presets.
Why should this be worked on?
Developers love customizing their environment. Allowing a custom HEX/RGB value lets users match Hoppscotch UI with their operating system's accent color (e.g., Windows/macOS system theme) or their company's brand colors.
While the current presets are great, they might not offer the best contrast or visibility for every user's specific monitor setup or eyesight. A custom picker gives users full control over their viewing experience.
Many developer tools (like VS Code or Terminal emulators) allow extensive theming. Adding this feature would align Hoppscotch with the flexibility users expect from modern development tools.
@Sunhaiy commented on GitHub (Feb 10, 2026):
Refactor the theme engine to use CSS Variables (e.g., --accent-color). At runtime, we can calculate different shades (500, 600, etc.) from the user's input using a library like colord and inject them into the :root style.
@nikhilmahato21 commented on GitHub (Feb 26, 2026):
should i work on this