Skip to content

Commit

Permalink
Use opacity of 10% for "File Colors" UI theme keys
Browse files Browse the repository at this point in the history
The "File Colors" (1) are used to distingush between project files,
folders or packages of specific scopes. Unfortunately the theme API
doesn't allow (yet) to specify the target for the color like e.g.
background or only foreground.
With the previous colors (100% opacity) this resulted in too bright
highlighted backgrounds making most labels unreadable and destroying
the themes overall appearance.

They color's opacity has now been changed to 10% which is still enough
to be recognizable and doesn't affects the readability of labels.

References:
  (1) https://www.jetbrains.com/help/idea/settings-file-colors.html

GH-47
  • Loading branch information
arcticicestudio committed May 23, 2019
1 parent d1cb66a commit 1806169
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/nord.theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,12 +124,12 @@
"underlineColor": "#88c0d0"
},
"FileColor": {
"Blue": "#88c0d0",
"Green": "#a3be8c",
"Orange": "#d08770",
"Rose": "#bf616a",
"Violet": "#b48ead",
"Yellow": "#ebcb8b"
"Blue": "#88c0d01a",
"Green": "#a3be8c1a",
"Orange": "#d087701a",
"Rose": "#bf616a1a",
"Violet": "#b48ead1a",
"Yellow": "#ebcb8b1a"
},
"Group": {
"disabledSeparatorColor": "#3b4252"
Expand Down

0 comments on commit 1806169

Please sign in to comment.