Skip to content

Commit

Permalink
Merge pull request #93 from dinbtechit/feature/66-VSCode-light-theme
Browse files Browse the repository at this point in the history
Feature/66 vs code light theme
  • Loading branch information
dinbtechit authored Aug 13, 2023
2 parents 2c39bca + 78dc5e1 commit 8f8e9a5
Show file tree
Hide file tree
Showing 5 changed files with 1,744 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
# vscode-theme Changelog

## Unreleased
# Added
- #66 - VSCode Light Modern theme - Initial

## 1.8.6 - 2023-08-07

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.8.6
pluginVersion = 1.9.0

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 211
Expand Down
2 changes: 2 additions & 0 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@
<extensions defaultExtensionNs="com.intellij">
<themeProvider order="first" id="dinbtechit-2179230b863b9b1d9f1eeb27ca4a3a70" path="themes/vscode_dark_modern.theme.json"/>
<themeProvider order="last" id="dinbtechit-7ef0c378d737e162955f3e028dcf9ccb" path="themes/vscode_dark.theme.json"/>
<themeProvider order="last" id="dinbtechit-e4968811e8c127f591d7e670706d4a3c" path="themes/vscode_light.theme.json"/>
<bundledColorScheme id="dinbtechit-7ef0c378d737e162955f3e028dcf9ccb3" path="themes/vscode_dark"/>
<bundledColorScheme id="dinbtechit-7ef0c378d737e162955f3e028dcf9ccb4" path="themes/vscode_dark_brighter"/>
<bundledColorScheme id="dinbtechit-e4968811e8c127f591d7e670706d4a3f" path="themes/vscode_light_modern"/>
<postStartupActivity implementation="com.github.dinbtechit.vscodetheme.startup.VSCodeStartupNotifyActivity"/>
<applicationService
serviceImplementation="com.github.dinbtechit.vscodetheme.settings.VSCodeThemeSettingsStore"/>
Expand Down
41 changes: 41 additions & 0 deletions src/main/resources/themes/vscode_light.theme.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"name": "VSCode Light Modern",
"dark": false,
"author": "Dinesh Srinivasan",
"editorScheme": "/themes/vscode_light_modern.xml",
"ui": {
"*": {
"background": "#F8F8F8"
},

"Component": {
"errorFocusColor": "#843937",
"inactiveErrorFocusColor": "#433239",
"warningFocusColor": "#8F7B2E",
"inactiveWarningFocusColor": "#434136"
},

"Editor": {
"background": "#FFFFFF"
},

"SearchMatch": {
"startBackground": "#f5bc2d",
"endBackground": "#e9b32b"
},

"ToggleButton": {
"onBackground": "#1D7BED"
},
"CompletionPopup": {
"matchForeground": "#148be8"
},

"WelcomeScreen": {
"background": "#FFFFFF",
"SidePanel.background": "#F8F8F8",
"Projects.background": "#FFFFFF",
"Projects.actions.background": "#225DA1"
}
}
}
Loading

0 comments on commit 8f8e9a5

Please sign in to comment.