With the latest build it is now possible to easily customize the look of the flexi panel with a few CSS rules.
It seems a good a moment to ask those with more good taste than yours truly to play a bit with the CSS and come up with a proposal for a good and functional look for the default theme.
This is what I landed on for now:
If you are interested, you can copy paste the CSS snippet below in the preferences and have a go at it:
CSS snippet
/* ---- flexi mask panel ---- */
/* header / rail / card-frame shades per state */
@define-color mask_rest rgba(255, 255, 255, 0.15);
@define-color mask_implied rgba(255, 255, 255, 0.4);
@define-color mask_selected_top rgba(255, 255, 255, 0.60);
@define-color mask_selected rgba(255, 255, 255, 0.60);
@define-color mask_hover_top rgba(255, 255, 255, 0.90);
@define-color mask_hover rgba(255, 255, 255, 0.60);
/* background of the controls under an open header */
@define-color mask_card rgba(255, 255, 255, 0.15);
/* background of the whole list container, rails included */
@define-color mask_list_bg rgba(0, 0, 0, 0.4);
/* header names per state */
@define-color mask_text_rest @fg_color;
@define-color mask_text_implied @mask_text_rest;
@define-color mask_text_selected rgba(0, 0, 0, 0.9);
@define-color mask_text_hover rgba(0, 0, 0, 0.9);
/* compact opacity value in headers ("use sliders for opacity" off) */
@define-color mask_text_value alpha(@text_color, 0.85);
@define-color mask_text_value_hover @text_color;
/* slider labels and values in cards */
@define-color mask_text_control @fg_color;
@define-color mask_text_control_hover shade(@fg_color, 1.2);
/* the list container's shape */
#masks-list-box
{
padding: 4px;
border-radius: 6px;
}
Thanks a lot for your help and feedback ![]()


