Changing font color in the developer tools

I need to change the color (amber) to something brighter. It used to have a bright color but one of the updates ( long time ago) has changed it to this and I have never bother fixing it. It seems I need to now since it is getting harder to see. I think it is in the theme yaml file, but I don’t know which code is it.

These are the dark theme variables I use for the code editor colours:

# Code editor
  codemirror-property: '#ff8000' # orange, variables
  codemirror-string: '#e0b400' # yellow, string
  codemirror-keyword: '#e45e65' # red
  codemirror-number: '#039be5' # blue
  codemirror-comment: '#0da035' # green

2 Likes

Really useful info Tom. Perhaps I can piggyback a question onto this.

I have been trying to solve a theme issue for a while where when editing an automation, a selected line has the same text and background color

What theme variables cover these fields?

Thanks

I’m not sure and I don’t use the UI editor. If you right click on the area you are interested in and select “Inspect” the CSS might reveal the variable you need. Form a quick look it could just be:

card-background-color

Thanks, I’ll give that a try.