Sublime Forum

Command status dialog colour

#1

Hello,

Is there a way to change the background colour/text colour of the command status dialog? Its really hard to read what’s on there when in dark mode.

0 Likes

#2

Try this section of the theme docs: https://www.sublimemerge.com/docs/themes#elements-quick_panel

0 Likes

#3

It looks like its dialog thats used in the command status and not quick panel

Not sure how to change the text colour within the dialog though

0 Likes

#4

Hi @Dvin,

The text shown is a hint_label. As an example:

{
	"class": "hint_label",
	"fg": "var(red)"
},

Additionally you can target it in different success states using:

"parents": [{"class": "success_output"}],

or

"parents": [{"class": "error_output"}],

Hope this helps!
- Dylan

1 Like

#5

@djohnston that helps! thanks

0 Likes