Skip to content

Commit

Permalink
Merge pull request #168 from trofoto/bug/fix-project-and-run-widget-c…
Browse files Browse the repository at this point in the history
…olor-in-light-theme

Fix icon color of RunWidget and background color of RecentProject of new UI
  • Loading branch information
dinbtechit authored Nov 9, 2023
2 parents 069ae46 + 203984d commit 4a9dbd3
Show file tree
Hide file tree
Showing 3 changed files with 82 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

## Unreleased

### Fixed:
- VScode Light Modern — The icon color of RunWidge is too light to see; by @trofoto
- VScode Light Modern — The background color of RecentProject is too dark. by @trofoto

## 1.10.7 - 2023-10-30

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
pluginGroup = com.github.dinbtechit.vscodetheme
pluginName = VSCode Theme
# SemVer format -> https://semver.org
pluginVersion = 1.10.7
pluginVersion = 1.10.8

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 223
Expand Down
77 changes: 77 additions & 0 deletions src/main/resources/themes/vscode_light.theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,83 @@
"SidePanel.background": "#F8F8F8",
"Projects.background": "#FFFFFF",
"Projects.actions.background": "#225DA1"
},

"RecentProject": {
"Color1": {
"MainToolbarGradientStart": "#F5D4C1",
"Avatar": {
"Start": "#E08855",
"End": "#E9806F"
}
},
"Color2": {
"MainToolbarGradientStart": "#EEE2BD",
"Avatar": {
"Start": "#B08B14",
"End": "#BB7F19"
}
},
"Color3": {
"MainToolbarGradientStart": "#DBE7C9",
"Avatar": {
"Start": "#A1A359",
"End": "#87AA59"
}
},
"Color4": {
"MainToolbarGradientStart": "#CADFEA",
"Avatar": {
"Start": "#3B92B8",
"End": "#6183EC"
}
},
"Color5": {
"MainToolbarGradientStart": "#DBD8EF",
"Avatar": {
"Start": "#3574F0",
"End": "#7A64F0"
}
},
"Color6": {
"MainToolbarGradientStart": "#EED7F5",
"Avatar": {
"Start": "#C84D8F",
"End": "#A956CF"
}
},
"Color7": {
"MainToolbarGradientStart": "#DFCCF4",
"Avatar": {
"Start": "#955AE0",
"End": "#A84DE0"
}
},
"Color8": {
"MainToolbarGradientStart": "#BEE4E1",
"Avatar": {
"Start": "#24A394",
"End": "#279CCD"
}
},
"Color9": {
"MainToolbarGradientStart": "#CCEBD1",
"Avatar": {
"Start": "#5FAD65",
"End": "#3D968B"
}
}
},

"RunWidget" : {
"foreground": "Grey1",
"runningBackground": "Green5",
"stopBackground": "Red5",
"hoverBackground": "#00000022",
"pressedBackground": "#00000028",
"iconColor": "Grey6",
"runIconColor": "Green5",
"runningIconColor": "Grey14"
}
}
}

0 comments on commit 4a9dbd3

Please sign in to comment.