Skip to content

Commit 6ca7e32

Browse files
authored
Merge pull request #166 from trofoto/bug/fix-selection-colors-in-new-ui-light
Fix selection colors in new UI of light theme #159, it also works with classic UI
2 parents 739c4de + 2347b36 commit 6ca7e32

File tree

4 files changed

+114
-1
lines changed

4 files changed

+114
-1
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@
44

55
## Unreleased
66

7+
### Fixed
8+
- [#159](https://github.com/dinbtechit/vscode-theme/issues/159) by @trofoto
9+
10+
### Changed
11+
- @trofoto - Added colors const for following official light theme style
12+
- @trofoto - change several selection-about colors, including selection color in editor, global selection background color and foreground color. It's more compatible with the Intellij Light theme, also closer with VS code light theme;
13+
714
## 1.10.6 - 2023-10-16
815

916
### Fixed

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
pluginGroup = com.github.dinbtechit.vscodetheme
44
pluginName = VSCode Theme
55
# SemVer format -> https://semver.org
6-
pluginVersion = 1.10.6
6+
pluginVersion = 1.10.7
77

88
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
99
pluginSinceBuild = 223

src/main/resources/themes/vscode_light.theme.json

+104
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,113 @@
33
"dark": false,
44
"author": "Dinesh Srinivasan",
55
"editorScheme": "/themes/vscode_light_modern.xml",
6+
7+
"colors": {
8+
"Grey1": "#000000",
9+
"Grey2": "#27282E",
10+
"Grey3": "#383A42",
11+
"Grey4": "#494B57",
12+
"Grey5": "#5A5D6B",
13+
"Grey6": "#6C707E",
14+
"Grey7": "#818594",
15+
"Grey8": "#A8ADBD",
16+
"Grey9": "#C9CCD6",
17+
"Grey10": "#D3D5DB",
18+
"Grey11": "#DFE1E5",
19+
"Grey12": "#EBECF0",
20+
"Grey13": "#F7F8FA",
21+
"Grey14": "#FFFFFF",
22+
"windowsPopupBorder": "#B9BDC9",
23+
24+
"Blue1": "#2E55A3",
25+
"Blue2": "#315FBD",
26+
"Blue3": "#3369D6",
27+
"Blue4": "#3574F0",
28+
"Blue5": "#4682FA",
29+
"Blue6": "#588CF3",
30+
"Blue7": "#709CF5",
31+
"Blue8": "#88ADF7",
32+
"Blue9": "#A0BDF8",
33+
"Blue10": "#C2D6FC",
34+
"Blue11": "#D4E2FF",
35+
"Blue12": "#EDF3FF",
36+
"Blue13": "#F5F8FE",
37+
38+
"Green1": "#1E6B33",
39+
"Green2": "#1F7536",
40+
"Green3": "#1F8039",
41+
"Green4": "#208A3C",
42+
"Green5": "#369650",
43+
"Green6": "#55A76A",
44+
"Green7": "#89C398",
45+
"Green8": "#AFDBB8",
46+
"Green9": "#C5E5CC",
47+
"Green10": "#E6F7E9",
48+
"Green11": "#F2FCF3",
49+
50+
"Yellow1": "#A46704",
51+
"Yellow2": "#C27D04",
52+
"Yellow3": "#DF9303",
53+
"Yellow4": "#FFAF0F",
54+
"Yellow5": "#FDBD3D",
55+
"Yellow6": "#FED277",
56+
"Yellow7": "#FEE6B1",
57+
"Yellow8": "#FFF1D1",
58+
"Yellow9": "#FFF6DE",
59+
"Yellow10": "#FFFAEB",
60+
61+
"Red1": "#AD2B38",
62+
"Red2": "#BC303E",
63+
"Red3": "#CC3645",
64+
"Red4": "#DB3B4B",
65+
"Red5": "#E55765",
66+
"Red6": "#E46A76",
67+
"Red7": "#ED99A1",
68+
"Red8": "#F2B6BB",
69+
"Red9": "#FAD4D8",
70+
"Red10": "#FFF2F3",
71+
"Red11": "#FFF7F7",
72+
73+
"Orange1": "#A14916",
74+
"Orange2": "#B85516",
75+
"Orange3": "#CE6117",
76+
"Orange4": "#E56D17",
77+
"Orange5": "#EC8F4C",
78+
"Orange6": "#F2B181",
79+
"Orange7": "#F9D2B6",
80+
"Orange8": "#FCE6D6",
81+
"Orange9": "#FFF4EB",
82+
83+
"Teal1": "#096A6E",
84+
"Teal2": "#077A7F",
85+
"Teal3": "#058B90",
86+
"Teal4": "#039BA1",
87+
"Teal5": "#3FB3B8",
88+
"Teal6": "#7BCCCF",
89+
"Teal7": "#B6E4E5",
90+
"Teal8": "#DAF4F5",
91+
"Teal9": "#F2FCFC",
92+
93+
"Purple1": "#55339C",
94+
"Purple2": "#643CB8",
95+
"Purple3": "#7444D4",
96+
"Purple4": "#834DF0",
97+
"Purple5": "#A177F4",
98+
"Purple6": "#BFA1F8",
99+
"Purple7": "#DCCBFB",
100+
"Purple8": "#EFE5FF",
101+
"Purple9": "#FAF5FF"
102+
},
103+
6104
"ui": {
7105
"*": {
106+
"selectionBackground": "Blue11",
107+
"lightSelectionBackground": "Blue11",
108+
"selectionInactiveBackground": "Grey11",
109+
"selectionForeground": "Grey1",
110+
"selectionInactiveForeground": "Grey1",
8111

112+
"hoverBackground": "Blue12"
9113
},
10114

11115
"Editor": {

src/main/resources/themes/vscode_light_modern.xml

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
<colors>
1010
<option name="GUTTER_BACKGROUND" value="ffffff"/>
1111
<option name="LINE_NUMBERS_COLOR" value="3b3b3b"/>
12+
<option name="SELECTION_BACKGROUND" value="a6d2ff" />
13+
<option name="SELECTION_FOREGROUND" value="" />
1214
</colors>
1315
<attributes>
1416
<option name="BAD_CHARACTER">

0 commit comments

Comments
 (0)