Briles / gruvbox

🎨 Sublime Text themes & color schemes with pastel 'retro groove' colors
MIT License
272 stars 8 forks source link

ST4 Quick Panel Detail Label Color #68

Open pkkid opened 2 years ago

pkkid commented 2 years ago

I know this is a theme designed for ST3, and for the most part things still look great in ST4. One style that really stood out to me as jarring was the quick_panel_detail_label which had no style and defaulted to #00f which terrible on a dark background. As a workaround for now, I copied the gruvbox.sublime-theme file from the package into my Packages/User directory and added the following under rules. I'm sure there is a better solution using variables for a final fix this gets updated to ST4.

    {
      "class": "quick_panel_detail_label",
      "link_color": "#333333"
    },

Before: 2022-04-03 - ST4 Before

After: 2022-04-03 - ST4 After

rpbaptist commented 1 year ago

Thank you for the reference.

For anyone else arriving here, you don't have to copy the file, there's a built in override option:

Command panel > UI: Customize Theme:

  "rules":
  [
    {
      "class": "quick_panel_detail_label",
      "link_color": "var(blue)"
    },

  ]

You can use any of the defined vars from the left standard theme config.