You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I saw in this comment on #1025 that you want to limit the available colors for tabs and panels to those of Firefox containers.
Could you at least add a way for users to select custom colors, either using a color picker or just by allowing users to enter a hex color code in a field?
I've looked at the code and it should be very easy to implement this feature.
In tab.vue#L104, if the value of tab.customColor is not a valid browser.ColorName, check if it is a valid HEX color and return that hex color if the check passes. Something like this:
Then you just need to add an option in all the custom color dialogs (context menu, "configure panel in sidebar", "configure panel", ...) allowing the user to input a hex code.
Description
I saw in this comment on #1025 that you want to limit the available colors for tabs and panels to those of Firefox containers.
Could you at least add a way for users to select custom colors, either using a color picker or just by allowing users to enter a hex color code in a field?
I've looked at the code and it should be very easy to implement this feature.
In tab.vue#L104, if the value of
tab.customColor
is not a validbrowser.ColorName
, check if it is a valid HEX color and return that hex color if the check passes. Something like this:Then you just need to add an option in all the custom color dialogs (context menu, "configure panel in sidebar", "configure panel", ...) allowing the user to input a hex code.
Example
I added the following in the devtools:
The text was updated successfully, but these errors were encountered: