Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ST4 Quick Panel Detail Label Color #68

Open
pkkid opened this issue Apr 4, 2022 · 1 comment
Open

ST4 Quick Panel Detail Label Color #68

pkkid opened this issue Apr 4, 2022 · 1 comment

Comments

@pkkid
Copy link

pkkid commented Apr 4, 2022

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
Copy link

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants