sdras / inbedby7pm

My other theme was for Night Owls like myself. This theme was requested for by the "In Bed by 7pm" crowd

Home Page:https://marketplace.visualstudio.com/items?itemName=sdras.inbedby7pm

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Background color of selections

davidwessman opened this issue · comments

Hello and thank you for a great theme.

This is found on version 0.3.3.

When selecting text in for example the Find & Replace fields, the background color of the selection is very similar to the background color of the input. I tracked it down to the setting selection.background but I do not know what color would be great.

I cannot see my selection with default settings:
With default selection.background color - cannot see the selection.

I see it with override "selection.background": "#ff0000":
overridden

Please let me know if I can help and thank you for your work! 🙂

Here's some settings you can try.

Taken from mjcrouch in a comment from another issue.

  "workbench.colorCustomizations": {
    "[In Bed by 7pm]": {
      "tab.unfocusedInactiveForeground": "#545869",
      "selection.background": "#f3ff486b",
      "editor.selectionBackground": "#363d53dd",
      "editor.selectionHighlightBackground": "#363d53dd",
      "editor.inactiveSelectionBackground": "#303649a4",
      "editor.findMatchBackground": "#f3ff486b",
      "editor.findMatchHighlightBackground": "#f3ff482a"
    }
  }

I am just tagging in on this one as I came looking for a solution to this exact thing. 👍

If anyone else comes here, I was having issues with the editorSuggestWidget (intellisense modal), and the Command Pallet active background color (was not high enough contrast to tell which item was selected, these are my settings.

I also changed a few things related to selection as I also found that to be annoyingly low contrast:

  "workbench.colorCustomizations": {
    "[In Bed by 7pm]": {
      "tab.unfocusedInactiveForeground": "#545869",
      "selection.background": "#a377ddae",
      "editor.selectionBackground": "#4c72f060",
      "editor.selectionHighlightBackground": "#4c72f0aa",
      "editor.inactiveSelectionBackground": "#303649a4",
      "editor.findMatchBackground": "#a377ddae",
      "editor.findMatchHighlightBackground": "#f3ff482a",
      "quickInputList.focusBackground": "#a377ddae",
      "editorSuggestWidget.selectedBackground": "#a377ddae"
    }
  },

Here are some screens of what it looks like:

Screenshot 2023-02-17 at 1 37 39 PM
Screenshot 2023-02-17 at 1 37 28 PM
Screenshot 2023-02-17 at 1 36 44 PM
Screenshot 2023-02-17 at 1 36 31 PM