IntelliJ Themes: updated themes to newest versions (used IJThemesUpdater)

This commit is contained in:
Karl Tauber
2025-02-13 18:55:08 +01:00
parent 6c8f813e53
commit 76f436726f
28 changed files with 10426 additions and 2798 deletions

View File

@@ -16,6 +16,7 @@ FlatLaf Change Log
- Extras: `FlatSVGIcon` color filters now can access painting component to - Extras: `FlatSVGIcon` color filters now can access painting component to
implement component state based color mappings. (issue #906) implement component state based color mappings. (issue #906)
- Linux: Added `libflatlaf-linux-arm64.so` for Linux on ARM64. (issue #899) - Linux: Added `libflatlaf-linux-arm64.so` for Linux on ARM64. (issue #899)
- IntelliJ Themes: Updated to latest versions.
#### Fixed bugs #### Fixed bugs

View File

@@ -25,24 +25,32 @@ class IJThemeInfo
{ {
final String name; final String name;
final String resourceName; final String resourceName;
final boolean discontinued;
final boolean dark; final boolean dark;
final String license; final String license;
final String licenseFile; final String licenseFile;
final String pluginUrl;
final String sourceCodeUrl; final String sourceCodeUrl;
final String sourceCodePath; final String sourceCodePath;
final File themeFile; final File themeFile;
final String lafClassName; final String lafClassName;
IJThemeInfo( String name, String resourceName, boolean dark, IJThemeInfo( String name, boolean dark, String lafClassName ) {
this( name, null, false, dark, null, null, null, null, null, null, lafClassName );
}
IJThemeInfo( String name, String resourceName, boolean discontinued, boolean dark,
String license, String licenseFile, String license, String licenseFile,
String sourceCodeUrl, String sourceCodePath, String pluginUrl, String sourceCodeUrl, String sourceCodePath,
File themeFile, String lafClassName ) File themeFile, String lafClassName )
{ {
this.name = name; this.name = name;
this.resourceName = resourceName; this.resourceName = resourceName;
this.discontinued = discontinued;
this.dark = dark; this.dark = dark;
this.license = license; this.license = license;
this.licenseFile = licenseFile; this.licenseFile = licenseFile;
this.pluginUrl = pluginUrl;
this.sourceCodeUrl = sourceCodeUrl; this.sourceCodeUrl = sourceCodeUrl;
this.sourceCodePath = sourceCodePath; this.sourceCodePath = sourceCodePath;
this.themeFile = themeFile; this.themeFile = themeFile;

View File

@@ -56,13 +56,16 @@ class IJThemesManager
String resourceName = e.getKey(); String resourceName = e.getKey();
Map<String, String> value = (Map<String, String>) e.getValue(); Map<String, String> value = (Map<String, String>) e.getValue();
String name = value.get( "name" ); String name = value.get( "name" );
boolean discontinued = Boolean.parseBoolean( value.get( "discontinued" ) );
boolean dark = Boolean.parseBoolean( value.get( "dark" ) ); boolean dark = Boolean.parseBoolean( value.get( "dark" ) );
String license = value.get( "license" ); String license = value.get( "license" );
String licenseFile = value.get( "licenseFile" ); String licenseFile = value.get( "licenseFile" );
String pluginUrl = value.get( "pluginUrl" );
String sourceCodeUrl = value.get( "sourceCodeUrl" ); String sourceCodeUrl = value.get( "sourceCodeUrl" );
String sourceCodePath = value.get( "sourceCodePath" ); String sourceCodePath = value.get( "sourceCodePath" );
bundledThemes.add( new IJThemeInfo( name, resourceName, dark, license, licenseFile, sourceCodeUrl, sourceCodePath, null, null ) ); bundledThemes.add( new IJThemeInfo( name, resourceName, discontinued, dark,
license, licenseFile, pluginUrl, sourceCodeUrl, sourceCodePath, null, null ) );
} }
} }
@@ -85,7 +88,7 @@ class IJThemesManager
String name = fname.endsWith( ".properties" ) String name = fname.endsWith( ".properties" )
? StringUtils.removeTrailing( fname, ".properties" ) ? StringUtils.removeTrailing( fname, ".properties" )
: StringUtils.removeTrailing( fname, ".theme.json" ); : StringUtils.removeTrailing( fname, ".theme.json" );
moreThemes.add( new IJThemeInfo( name, null, false, null, null, null, null, f, null ) ); moreThemes.add( new IJThemeInfo( name, null, false, false, null, null, null, null, null, f, null ) );
lastModifiedMap.put( f, f.lastModified() ); lastModifiedMap.put( f, f.lastModified() );
} }
} }

View File

@@ -179,18 +179,18 @@ public class IJThemesPanel
// add core themes at beginning // add core themes at beginning
categories.put( themes.size(), "Core Themes" ); categories.put( themes.size(), "Core Themes" );
if( showLight ) if( showLight )
themes.add( new IJThemeInfo( "FlatLaf Light", null, false, null, null, null, null, null, FlatLightLaf.class.getName() ) ); themes.add( new IJThemeInfo( "FlatLaf Light", false, FlatLightLaf.class.getName() ) );
if( showDark ) if( showDark )
themes.add( new IJThemeInfo( "FlatLaf Dark", null, true, null, null, null, null, null, FlatDarkLaf.class.getName() ) ); themes.add( new IJThemeInfo( "FlatLaf Dark", true, FlatDarkLaf.class.getName() ) );
if( showLight ) if( showLight )
themes.add( new IJThemeInfo( "FlatLaf IntelliJ", null, false, null, null, null, null, null, FlatIntelliJLaf.class.getName() ) ); themes.add( new IJThemeInfo( "FlatLaf IntelliJ", false, FlatIntelliJLaf.class.getName() ) );
if( showDark ) if( showDark )
themes.add( new IJThemeInfo( "FlatLaf Darcula", null, true, null, null, null, null, null, FlatDarculaLaf.class.getName() ) ); themes.add( new IJThemeInfo( "FlatLaf Darcula", true, FlatDarculaLaf.class.getName() ) );
if( showLight ) if( showLight )
themes.add( new IJThemeInfo( "FlatLaf macOS Light", null, false, null, null, null, null, null, FlatMacLightLaf.class.getName() ) ); themes.add( new IJThemeInfo( "FlatLaf macOS Light", false, FlatMacLightLaf.class.getName() ) );
if( showDark ) if( showDark )
themes.add( new IJThemeInfo( "FlatLaf macOS Dark", null, true, null, null, null, null, null, FlatMacDarkLaf.class.getName() ) ); themes.add( new IJThemeInfo( "FlatLaf macOS Dark", true, FlatMacDarkLaf.class.getName() ) );
// add themes from directory // add themes from directory
categories.put( themes.size(), "Current Directory" ); categories.put( themes.size(), "Current Directory" );

View File

@@ -38,6 +38,9 @@ public class IJThemesUpdater
themesManager.loadBundledThemes(); themesManager.loadBundledThemes();
for( IJThemeInfo ti : themesManager.bundledThemes ) { for( IJThemeInfo ti : themesManager.bundledThemes ) {
if( ti.discontinued )
continue;
if( ti.sourceCodeUrl == null || ti.sourceCodePath == null ) { if( ti.sourceCodeUrl == null || ti.sourceCodePath == null ) {
System.out.println( " " + ti.name + " NOT downloaded. Needs manual update from release on JetBrains Plugin portal." ); System.out.println( " " + ti.name + " NOT downloaded. Needs manual update from release on JetBrains Plugin portal." );
continue; continue;

View File

@@ -3,6 +3,7 @@
"name": "Arc", "name": "Arc",
"license": "MIT", "license": "MIT",
"licenseFile": "arc-themes.LICENSE.txt", "licenseFile": "arc-themes.LICENSE.txt",
"pluginUrl": "https://plugins.jetbrains.com/plugin/12451-arc-theme",
"sourceCodeUrl": "https://gitlab.com/zlamalp/arc-theme-idea", "sourceCodeUrl": "https://gitlab.com/zlamalp/arc-theme-idea",
"sourceCodePath": "blob/master/arc-theme-idea-light/resources/arc-theme.theme.json" "sourceCodePath": "blob/master/arc-theme-idea-light/resources/arc-theme.theme.json"
}, },
@@ -10,6 +11,7 @@
"name": "Arc - Orange", "name": "Arc - Orange",
"license": "MIT", "license": "MIT",
"licenseFile": "arc-themes.LICENSE.txt", "licenseFile": "arc-themes.LICENSE.txt",
"pluginUrl": "https://plugins.jetbrains.com/plugin/12451-arc-theme",
"sourceCodeUrl": "https://gitlab.com/zlamalp/arc-theme-idea", "sourceCodeUrl": "https://gitlab.com/zlamalp/arc-theme-idea",
"sourceCodePath": "blob/master/arc-theme-idea-light/resources/arc-theme-orange.theme.json" "sourceCodePath": "blob/master/arc-theme-idea-light/resources/arc-theme-orange.theme.json"
}, },
@@ -18,6 +20,7 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "arc-themes.LICENSE.txt", "licenseFile": "arc-themes.LICENSE.txt",
"pluginUrl": "https://plugins.jetbrains.com/plugin/15175-arc-theme-dark",
"sourceCodeUrl": "https://gitlab.com/zlamalp/arc-theme-idea", "sourceCodeUrl": "https://gitlab.com/zlamalp/arc-theme-idea",
"sourceCodePath": "blob/master/arc-theme-idea-dark/resources/arc_theme_dark.theme.json" "sourceCodePath": "blob/master/arc-theme-idea-dark/resources/arc_theme_dark.theme.json"
}, },
@@ -26,6 +29,7 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "arc-themes.LICENSE.txt", "licenseFile": "arc-themes.LICENSE.txt",
"pluginUrl": "https://plugins.jetbrains.com/plugin/15175-arc-theme-dark",
"sourceCodeUrl": "https://gitlab.com/zlamalp/arc-theme-idea", "sourceCodeUrl": "https://gitlab.com/zlamalp/arc-theme-idea",
"sourceCodePath": "blob/master/arc-theme-idea-dark/resources/arc_theme_dark_orange.theme.json" "sourceCodePath": "blob/master/arc-theme-idea-dark/resources/arc_theme_dark_orange.theme.json"
}, },
@@ -34,6 +38,7 @@
"dark": true, "dark": true,
"license": "Apache License 2.0", "license": "Apache License 2.0",
"licenseFile": "arc-themes.LICENSE.txt", "licenseFile": "arc-themes.LICENSE.txt",
"pluginUrl": "https://plugins.jetbrains.com/plugin/12280-carbon",
"sourceCodeUrl": "https://github.com/luisfer0793/theme-carbon", "sourceCodeUrl": "https://github.com/luisfer0793/theme-carbon",
"sourceCodePath": "blob/master/resources/matte_carbon_basics.theme.json" "sourceCodePath": "blob/master/resources/matte_carbon_basics.theme.json"
}, },
@@ -42,6 +47,7 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "Cobalt_2.LICENSE.txt", "licenseFile": "Cobalt_2.LICENSE.txt",
"pluginUrl": "https://plugins.jetbrains.com/plugin/10745-cobalt-2",
"sourceCodeUrl": "https://github.com/ngehlert/cobalt2", "sourceCodeUrl": "https://github.com/ngehlert/cobalt2",
"sourceCodePath": "blob/master/Cobalt2-UI-Theme/resources/Cobalt_2.theme.json" "sourceCodePath": "blob/master/Cobalt2-UI-Theme/resources/Cobalt_2.theme.json"
}, },
@@ -49,6 +55,7 @@
"name": "Cyan light", "name": "Cyan light",
"license": "MIT", "license": "MIT",
"licenseFile": "Cyan.LICENSE.txt", "licenseFile": "Cyan.LICENSE.txt",
"pluginUrl": "https://plugins.jetbrains.com/plugin/12102-cyan-light-theme",
"sourceCodeUrl": "https://github.com/OlyaB/CyanTheme", "sourceCodeUrl": "https://github.com/OlyaB/CyanTheme",
"sourceCodePath": "blob/master/src/Cyan.theme.json" "sourceCodePath": "blob/master/src/Cyan.theme.json"
}, },
@@ -57,6 +64,7 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "DarkFlatTheme.LICENSE.txt", "licenseFile": "DarkFlatTheme.LICENSE.txt",
"pluginUrl": "https://plugins.jetbrains.com/plugin/12165-dark-flat-theme",
"sourceCodeUrl": "https://github.com/nerzhulart/DarkFlatTheme", "sourceCodeUrl": "https://github.com/nerzhulart/DarkFlatTheme",
"sourceCodePath": "blob/master/src/DarkFlatTheme.theme.json" "sourceCodePath": "blob/master/src/DarkFlatTheme.theme.json"
}, },
@@ -65,6 +73,7 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "DarkPurple.LICENSE.txt", "licenseFile": "DarkPurple.LICENSE.txt",
"pluginUrl": "https://plugins.jetbrains.com/plugin/12100-dark-purple-theme",
"sourceCodeUrl": "https://github.com/OlyaB/DarkPurpleTheme", "sourceCodeUrl": "https://github.com/OlyaB/DarkPurpleTheme",
"sourceCodePath": "blob/master/src/DarkPurple.theme.json" "sourceCodePath": "blob/master/src/DarkPurple.theme.json"
}, },
@@ -73,6 +82,7 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "Dracula.LICENSE.txt", "licenseFile": "Dracula.LICENSE.txt",
"pluginUrl": "https://plugins.jetbrains.com/plugin/12275-dracula-theme",
"sourceCodeUrl": "https://github.com/dracula/jetbrains", "sourceCodeUrl": "https://github.com/dracula/jetbrains",
"sourceCodePath": "blob/master/src/main/resources/themes/Dracula.theme.json" "sourceCodePath": "blob/master/src/main/resources/themes/Dracula.theme.json"
}, },
@@ -81,6 +91,7 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "Gradianto.LICENSE.txt", "licenseFile": "Gradianto.LICENSE.txt",
"pluginUrl": "https://plugins.jetbrains.com/plugin/12334-gradianto",
"sourceCodeUrl": "https://github.com/thvardhan/Gradianto", "sourceCodeUrl": "https://github.com/thvardhan/Gradianto",
"sourceCodePath": "blob/master/src/main/resources/Gradianto_dark_fuchsia.theme.json" "sourceCodePath": "blob/master/src/main/resources/Gradianto_dark_fuchsia.theme.json"
}, },
@@ -89,6 +100,7 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "Gradianto.LICENSE.txt", "licenseFile": "Gradianto.LICENSE.txt",
"pluginUrl": "https://plugins.jetbrains.com/plugin/12334-gradianto",
"sourceCodeUrl": "https://github.com/thvardhan/Gradianto", "sourceCodeUrl": "https://github.com/thvardhan/Gradianto",
"sourceCodePath": "blob/master/src/main/resources/Gradianto_deep_ocean.theme.json" "sourceCodePath": "blob/master/src/main/resources/Gradianto_deep_ocean.theme.json"
}, },
@@ -97,6 +109,7 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "Gradianto.LICENSE.txt", "licenseFile": "Gradianto.LICENSE.txt",
"pluginUrl": "https://plugins.jetbrains.com/plugin/12334-gradianto",
"sourceCodeUrl": "https://github.com/thvardhan/Gradianto", "sourceCodeUrl": "https://github.com/thvardhan/Gradianto",
"sourceCodePath": "blob/master/src/main/resources/Gradianto_midnight_blue.theme.json" "sourceCodePath": "blob/master/src/main/resources/Gradianto_midnight_blue.theme.json"
}, },
@@ -105,6 +118,7 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "Gradianto.LICENSE.txt", "licenseFile": "Gradianto.LICENSE.txt",
"pluginUrl": "https://plugins.jetbrains.com/plugin/12334-gradianto",
"sourceCodeUrl": "https://github.com/thvardhan/Gradianto", "sourceCodeUrl": "https://github.com/thvardhan/Gradianto",
"sourceCodePath": "blob/master/src/main/resources/Gradianto_Nature_Green.theme.json" "sourceCodePath": "blob/master/src/main/resources/Gradianto_Nature_Green.theme.json"
}, },
@@ -112,6 +126,7 @@
"name": "Gray", "name": "Gray",
"license": "MIT", "license": "MIT",
"licenseFile": "Gray.LICENSE.txt", "licenseFile": "Gray.LICENSE.txt",
"pluginUrl": "https://plugins.jetbrains.com/plugin/12103-gray-theme",
"sourceCodeUrl": "https://github.com/OlyaB/GreyTheme", "sourceCodeUrl": "https://github.com/OlyaB/GreyTheme",
"sourceCodePath": "blob/master/src/Gray.theme.json" "sourceCodePath": "blob/master/src/Gray.theme.json"
}, },
@@ -120,6 +135,7 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "gruvbox_theme.LICENSE.txt", "licenseFile": "gruvbox_theme.LICENSE.txt",
"pluginUrl": "https://plugins.jetbrains.com/plugin/12310-gruvbox-theme",
"sourceCodeUrl": "https://github.com/Vincent-P/gruvbox-intellij-theme", "sourceCodeUrl": "https://github.com/Vincent-P/gruvbox-intellij-theme",
"sourceCodePath": "blob/master/src/main/resources/gruvbox_dark_hard.theme.json" "sourceCodePath": "blob/master/src/main/resources/gruvbox_dark_hard.theme.json"
}, },
@@ -128,6 +144,7 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "gruvbox_theme.LICENSE.txt", "licenseFile": "gruvbox_theme.LICENSE.txt",
"pluginUrl": "https://plugins.jetbrains.com/plugin/12310-gruvbox-theme",
"sourceCodeUrl": "https://github.com/Vincent-P/gruvbox-intellij-theme", "sourceCodeUrl": "https://github.com/Vincent-P/gruvbox-intellij-theme",
"sourceCodePath": "blob/master/src/main/resources/gruvbox_dark_medium.theme.json" "sourceCodePath": "blob/master/src/main/resources/gruvbox_dark_medium.theme.json"
}, },
@@ -136,6 +153,7 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "gruvbox_theme.LICENSE.txt", "licenseFile": "gruvbox_theme.LICENSE.txt",
"pluginUrl": "https://plugins.jetbrains.com/plugin/12310-gruvbox-theme",
"sourceCodeUrl": "https://github.com/Vincent-P/gruvbox-intellij-theme", "sourceCodeUrl": "https://github.com/Vincent-P/gruvbox-intellij-theme",
"sourceCodePath": "blob/master/src/main/resources/gruvbox_dark_soft.theme.json" "sourceCodePath": "blob/master/src/main/resources/gruvbox_dark_soft.theme.json"
}, },
@@ -144,6 +162,7 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "Hiberbee.LICENSE.txt", "licenseFile": "Hiberbee.LICENSE.txt",
"pluginUrl": "https://plugins.jetbrains.com/plugin/12118-hiberbee-theme",
"sourceCodeUrl": "https://github.com/Hiberbee/themes", "sourceCodeUrl": "https://github.com/Hiberbee/themes",
"sourceCodePath": "blob/latest/src/intellij/src/main/resources/themes/HiberbeeDark.theme.json" "sourceCodePath": "blob/latest/src/intellij/src/main/resources/themes/HiberbeeDark.theme.json"
}, },
@@ -159,6 +178,7 @@
"name": "Light Flat", "name": "Light Flat",
"license": "MIT", "license": "MIT",
"licenseFile": "LightFlatTheme.LICENSE.txt", "licenseFile": "LightFlatTheme.LICENSE.txt",
"pluginUrl": "https://plugins.jetbrains.com/plugin/12169-light-flat-theme",
"sourceCodeUrl": "https://github.com/nerzhulart/LightFlatTheme", "sourceCodeUrl": "https://github.com/nerzhulart/LightFlatTheme",
"sourceCodePath": "blob/master/src/LightFlatTheme.theme.json" "sourceCodePath": "blob/master/src/LightFlatTheme.theme.json"
}, },
@@ -167,6 +187,7 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "MaterialTheme.LICENSE.txt", "licenseFile": "MaterialTheme.LICENSE.txt",
"pluginUrl": "https://plugins.jetbrains.com/plugin/12134-material-design-dark-theme",
"sourceCodeUrl": "https://github.com/xinkunZ/NotReallyMDTheme", "sourceCodeUrl": "https://github.com/xinkunZ/NotReallyMDTheme",
"sourceCodePath": "blob/master/src/main/resources/MaterialTheme.theme.json" "sourceCodePath": "blob/master/src/main/resources/MaterialTheme.theme.json"
}, },
@@ -175,11 +196,13 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "Monocai.LICENSE.txt", "licenseFile": "Monocai.LICENSE.txt",
"sourceCodeUrl": "https://github.com/bmikaili/intellij-monocai-theme", "pluginUrl": "https://plugins.jetbrains.com/plugin/12163-monocai-color-theme",
"sourceCodeUrl": "https://github.com/TheEggi/intellij-monocai-theme",
"sourceCodePath": "blob/master/resources/Monocai.theme.json" "sourceCodePath": "blob/master/resources/Monocai.theme.json"
}, },
"Monokai_Pro.default.theme.json": { "Monokai_Pro.default.theme.json": {
"name": "Monokai Pro", "name": "Monokai Pro",
"discontinued": true,
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "Monokai_Pro.LICENSE.txt", "licenseFile": "Monokai_Pro.LICENSE.txt",
@@ -190,7 +213,8 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "nord.LICENSE.txt", "licenseFile": "nord.LICENSE.txt",
"sourceCodeUrl": "https://github.com/arcticicestudio/nord-jetbrains", "pluginUrl": "https://plugins.jetbrains.com/plugin/10321-nord",
"sourceCodeUrl": "https://github.com/nordtheme/jetbrains",
"sourceCodePath": "blob/main/src/nord.theme.json" "sourceCodePath": "blob/main/src/nord.theme.json"
}, },
"one_dark.theme.json": { "one_dark.theme.json": {
@@ -198,11 +222,13 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "one_dark.LICENSE.txt", "licenseFile": "one_dark.LICENSE.txt",
"pluginUrl": "https://plugins.jetbrains.com/plugin/11938-one-dark-theme",
"sourceCodeUrl": "https://github.com/one-dark/jetbrains-one-dark-theme", "sourceCodeUrl": "https://github.com/one-dark/jetbrains-one-dark-theme",
"sourceCodePath": "blob/master/buildSrc/templates/oneDark.template.theme.json" "sourceCodePath": "blob/master/buildSrc/templates/oneDark.template.theme.json"
}, },
"SolarizedDark.theme.json": { "SolarizedDark.theme.json": {
"name": "Solarized Dark", "name": "Solarized Dark",
"discontinued": true,
"dark": true, "dark": true,
"license": "The Unlicense", "license": "The Unlicense",
"licenseFile": "Solarized.LICENSE.txt", "licenseFile": "Solarized.LICENSE.txt",
@@ -211,6 +237,7 @@
}, },
"SolarizedLight.theme.json": { "SolarizedLight.theme.json": {
"name": "Solarized Light", "name": "Solarized Light",
"discontinued": true,
"license": "The Unlicense", "license": "The Unlicense",
"licenseFile": "Solarized.LICENSE.txt", "licenseFile": "Solarized.LICENSE.txt",
"sourceCodeUrl": "https://github.com/4lex4/intellij-platform-solarized", "sourceCodeUrl": "https://github.com/4lex4/intellij-platform-solarized",
@@ -221,6 +248,7 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "Spacegray.LICENSE.txt", "licenseFile": "Spacegray.LICENSE.txt",
"pluginUrl": "https://plugins.jetbrains.com/plugin/12122-spacegray-theme",
"sourceCodeUrl": "https://github.com/mturlo/intellij-spacegray", "sourceCodeUrl": "https://github.com/mturlo/intellij-spacegray",
"sourceCodePath": "blob/master/src/Spacegray.theme.json" "sourceCodePath": "blob/master/src/Spacegray.theme.json"
}, },
@@ -229,6 +257,7 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "vuesion_theme.LICENSE.txt", "licenseFile": "vuesion_theme.LICENSE.txt",
"pluginUrl": "https://plugins.jetbrains.com/plugin/12226-vuesion-theme",
"sourceCodeUrl": "https://github.com/vuesion/intellij-theme", "sourceCodeUrl": "https://github.com/vuesion/intellij-theme",
"sourceCodePath": "blob/master/resources/META-INF/vuesion_theme.theme.json" "sourceCodePath": "blob/master/resources/META-INF/vuesion_theme.theme.json"
}, },
@@ -237,6 +266,7 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "Xcode-Dark.LICENSE.txt", "licenseFile": "Xcode-Dark.LICENSE.txt",
"pluginUrl": "https://plugins.jetbrains.com/plugin/13106-xcode-dark-theme",
"sourceCodeUrl": "https://github.com/antelle/intellij-xcode-dark-theme", "sourceCodeUrl": "https://github.com/antelle/intellij-xcode-dark-theme",
"sourceCodePath": "blob/master/resources/Xcode-Dark.theme.json" "sourceCodePath": "blob/master/resources/Xcode-Dark.theme.json"
}, },
@@ -246,7 +276,8 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt", "licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite", "pluginUrl": "https://plugins.jetbrains.com/plugin/8006-material-theme-ui",
"sourceCodeUrl": "https://github.com/AtomMaterialUI/material-theme-ui-lite",
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Arc Dark.theme.json" "sourceCodePath": "blob/master/src/main/resources/themes/regular/Arc Dark.theme.json"
}, },
"material-theme-ui-lite/Atom One Dark.theme.json": { "material-theme-ui-lite/Atom One Dark.theme.json": {
@@ -254,14 +285,16 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt", "licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite", "pluginUrl": "https://plugins.jetbrains.com/plugin/8006-material-theme-ui",
"sourceCodeUrl": "https://github.com/AtomMaterialUI/material-theme-ui-lite",
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Atom One Dark.theme.json" "sourceCodePath": "blob/master/src/main/resources/themes/regular/Atom One Dark.theme.json"
}, },
"material-theme-ui-lite/Atom One Light.theme.json": { "material-theme-ui-lite/Atom One Light.theme.json": {
"name": "Material Theme UI Lite / Atom One Light", "name": "Material Theme UI Lite / Atom One Light",
"license": "MIT", "license": "MIT",
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt", "licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite", "pluginUrl": "https://plugins.jetbrains.com/plugin/8006-material-theme-ui",
"sourceCodeUrl": "https://github.com/AtomMaterialUI/material-theme-ui-lite",
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Atom One Light.theme.json" "sourceCodePath": "blob/master/src/main/resources/themes/regular/Atom One Light.theme.json"
}, },
"material-theme-ui-lite/Dracula.theme.json": { "material-theme-ui-lite/Dracula.theme.json": {
@@ -269,14 +302,16 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt", "licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite", "pluginUrl": "https://plugins.jetbrains.com/plugin/8006-material-theme-ui",
"sourceCodeUrl": "https://github.com/AtomMaterialUI/material-theme-ui-lite",
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Dracula.theme.json" "sourceCodePath": "blob/master/src/main/resources/themes/regular/Dracula.theme.json"
}, },
"material-theme-ui-lite/GitHub.theme.json": { "material-theme-ui-lite/GitHub.theme.json": {
"name": "Material Theme UI Lite / GitHub", "name": "Material Theme UI Lite / GitHub",
"license": "MIT", "license": "MIT",
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt", "licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite", "pluginUrl": "https://plugins.jetbrains.com/plugin/8006-material-theme-ui",
"sourceCodeUrl": "https://github.com/AtomMaterialUI/material-theme-ui-lite",
"sourceCodePath": "blob/master/src/main/resources/themes/regular/GitHub.theme.json" "sourceCodePath": "blob/master/src/main/resources/themes/regular/GitHub.theme.json"
}, },
"material-theme-ui-lite/GitHub Dark.theme.json": { "material-theme-ui-lite/GitHub Dark.theme.json": {
@@ -284,14 +319,16 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt", "licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite", "pluginUrl": "https://plugins.jetbrains.com/plugin/8006-material-theme-ui",
"sourceCodeUrl": "https://github.com/AtomMaterialUI/material-theme-ui-lite",
"sourceCodePath": "blob/master/src/main/resources/themes/regular/GitHub Dark.theme.json" "sourceCodePath": "blob/master/src/main/resources/themes/regular/GitHub Dark.theme.json"
}, },
"material-theme-ui-lite/Light Owl.theme.json": { "material-theme-ui-lite/Light Owl.theme.json": {
"name": "Material Theme UI Lite / Light Owl", "name": "Material Theme UI Lite / Light Owl",
"license": "MIT", "license": "MIT",
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt", "licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite", "pluginUrl": "https://plugins.jetbrains.com/plugin/8006-material-theme-ui",
"sourceCodeUrl": "https://github.com/AtomMaterialUI/material-theme-ui-lite",
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Light Owl.theme.json" "sourceCodePath": "blob/master/src/main/resources/themes/regular/Light Owl.theme.json"
}, },
"material-theme-ui-lite/Material Darker.theme.json": { "material-theme-ui-lite/Material Darker.theme.json": {
@@ -299,7 +336,8 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt", "licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite", "pluginUrl": "https://plugins.jetbrains.com/plugin/8006-material-theme-ui",
"sourceCodeUrl": "https://github.com/AtomMaterialUI/material-theme-ui-lite",
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Material Darker.theme.json" "sourceCodePath": "blob/master/src/main/resources/themes/regular/Material Darker.theme.json"
}, },
"material-theme-ui-lite/Material Deep Ocean.theme.json": { "material-theme-ui-lite/Material Deep Ocean.theme.json": {
@@ -307,14 +345,16 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt", "licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite", "pluginUrl": "https://plugins.jetbrains.com/plugin/8006-material-theme-ui",
"sourceCodeUrl": "https://github.com/AtomMaterialUI/material-theme-ui-lite",
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Material Deep Ocean.theme.json" "sourceCodePath": "blob/master/src/main/resources/themes/regular/Material Deep Ocean.theme.json"
}, },
"material-theme-ui-lite/Material Lighter.theme.json": { "material-theme-ui-lite/Material Lighter.theme.json": {
"name": "Material Theme UI Lite / Material Lighter", "name": "Material Theme UI Lite / Material Lighter",
"license": "MIT", "license": "MIT",
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt", "licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite", "pluginUrl": "https://plugins.jetbrains.com/plugin/8006-material-theme-ui",
"sourceCodeUrl": "https://github.com/AtomMaterialUI/material-theme-ui-lite",
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Material Lighter.theme.json" "sourceCodePath": "blob/master/src/main/resources/themes/regular/Material Lighter.theme.json"
}, },
"material-theme-ui-lite/Material Oceanic.theme.json": { "material-theme-ui-lite/Material Oceanic.theme.json": {
@@ -322,7 +362,8 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt", "licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite", "pluginUrl": "https://plugins.jetbrains.com/plugin/8006-material-theme-ui",
"sourceCodeUrl": "https://github.com/AtomMaterialUI/material-theme-ui-lite",
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Material Oceanic.theme.json" "sourceCodePath": "blob/master/src/main/resources/themes/regular/Material Oceanic.theme.json"
}, },
"material-theme-ui-lite/Material Palenight.theme.json": { "material-theme-ui-lite/Material Palenight.theme.json": {
@@ -330,7 +371,8 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt", "licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite", "pluginUrl": "https://plugins.jetbrains.com/plugin/8006-material-theme-ui",
"sourceCodeUrl": "https://github.com/AtomMaterialUI/material-theme-ui-lite",
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Material Palenight.theme.json" "sourceCodePath": "blob/master/src/main/resources/themes/regular/Material Palenight.theme.json"
}, },
"material-theme-ui-lite/Monokai Pro.theme.json": { "material-theme-ui-lite/Monokai Pro.theme.json": {
@@ -338,7 +380,8 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt", "licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite", "pluginUrl": "https://plugins.jetbrains.com/plugin/8006-material-theme-ui",
"sourceCodeUrl": "https://github.com/AtomMaterialUI/material-theme-ui-lite",
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Monokai Pro.theme.json" "sourceCodePath": "blob/master/src/main/resources/themes/regular/Monokai Pro.theme.json"
}, },
"material-theme-ui-lite/Moonlight.theme.json": { "material-theme-ui-lite/Moonlight.theme.json": {
@@ -346,7 +389,8 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt", "licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite", "pluginUrl": "https://plugins.jetbrains.com/plugin/8006-material-theme-ui",
"sourceCodeUrl": "https://github.com/AtomMaterialUI/material-theme-ui-lite",
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Moonlight.theme.json" "sourceCodePath": "blob/master/src/main/resources/themes/regular/Moonlight.theme.json"
}, },
"material-theme-ui-lite/Night Owl.theme.json": { "material-theme-ui-lite/Night Owl.theme.json": {
@@ -354,7 +398,8 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt", "licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite", "pluginUrl": "https://plugins.jetbrains.com/plugin/8006-material-theme-ui",
"sourceCodeUrl": "https://github.com/AtomMaterialUI/material-theme-ui-lite",
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Night Owl.theme.json" "sourceCodePath": "blob/master/src/main/resources/themes/regular/Night Owl.theme.json"
}, },
"material-theme-ui-lite/Solarized Dark.theme.json": { "material-theme-ui-lite/Solarized Dark.theme.json": {
@@ -362,14 +407,16 @@
"dark": true, "dark": true,
"license": "MIT", "license": "MIT",
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt", "licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite", "pluginUrl": "https://plugins.jetbrains.com/plugin/8006-material-theme-ui",
"sourceCodeUrl": "https://github.com/AtomMaterialUI/material-theme-ui-lite",
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Solarized Dark.theme.json" "sourceCodePath": "blob/master/src/main/resources/themes/regular/Solarized Dark.theme.json"
}, },
"material-theme-ui-lite/Solarized Light.theme.json": { "material-theme-ui-lite/Solarized Light.theme.json": {
"name": "Material Theme UI Lite / Solarized Light", "name": "Material Theme UI Lite / Solarized Light",
"license": "MIT", "license": "MIT",
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt", "licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite", "pluginUrl": "https://plugins.jetbrains.com/plugin/8006-material-theme-ui",
"sourceCodeUrl": "https://github.com/AtomMaterialUI/material-theme-ui-lite",
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Solarized Light.theme.json" "sourceCodePath": "blob/master/src/main/resources/themes/regular/Solarized Light.theme.json"
} }
} }

View File

@@ -258,7 +258,7 @@
}, },
"ToolWindow": { "ToolWindow": {
"Button": { "Button": {
"selectedBackground": "secondaryAccentColor", "selectedBackground": "hoverBackground",
"hoverBackground": "hoverBackground" "hoverBackground": "hoverBackground"
}, },
"Header": { "Header": {

View File

@@ -1,29 +1,8 @@
{ {
"author": "thvardhan",
"dark": true,
"editorScheme": "/Gradianto_Nature_Green.xml",
"icons": {
"ColorPalette": {
"Checkbox.Border.Default": "#3f765a",
"Checkbox.Border.Default.Dark": "#3f765a",
"Checkbox.Background.Default.Dark": "#3f765a",
"Checkbox.Foreground.Selected.Dark": "#00d679",
"Checkbox.Background.Disabled": "#274439",
"Checkbox.Background.Disabled.Dark": "#1e3b2f",
"Objects.Grey": "#e3e3e3c0",
"Objects.Blue": "#4fc3f7c0",
"Objects.RedStatus": "#ff5722c0",
"Objects.Red": "#e07483c0",
"Objects.Pink": "#de6dc2c0",
"Objects.Yellow": "#ffca57c0",
"Objects.Green": "#76da84c0",
"Objects.Purple": "#d199ffc0",
"Objects.BlackText": "#2e2e2ec0",
"Objects.YellowDark": "#ffca1ec0",
"Objects.GreenAndroid": "#18e66bc0"
}
},
"name": "Gradianto Nature Green", "name": "Gradianto Nature Green",
"dark": true,
"author": "thvardhan",
"editorScheme": "/Gradianto_Nature_Green.xml",
"ui": { "ui": {
"*": { "*": {
"background": "#20403f", "background": "#20403f",
@@ -282,5 +261,26 @@
} }
}, },
"EditorPane.inactiveBackground": "#254a39ff" "EditorPane.inactiveBackground": "#254a39ff"
},
"icons": {
"ColorPalette": {
"Checkbox.Border.Default": "#3f765a",
"Checkbox.Border.Default.Dark": "#3f765a",
"Checkbox.Background.Default.Dark": "#3f765a",
"Checkbox.Foreground.Selected.Dark": "#00d679",
"Checkbox.Background.Disabled": "#274439",
"Checkbox.Background.Disabled.Dark": "#1e3b2f",
"Objects.Grey": "#e3e3e3c0",
"Objects.Blue": "#4fc3f7c0",
"Objects.RedStatus": "#ff5722c0",
"Objects.Red": "#e07483c0",
"Objects.Pink": "#de6dc2c0",
"Objects.Yellow": "#ffca57c0",
"Objects.Green": "#76da84c0",
"Objects.Purple": "#d199ffc0",
"Objects.BlackText": "#2e2e2ec0",
"Objects.YellowDark": "#ffca1ec0",
"Objects.GreenAndroid": "#18e66bc0"
}
} }
} }

View File

@@ -31,6 +31,7 @@
"separatorColor": "#4b2665" "separatorColor": "#4b2665"
}, },
"Tree": { "Tree": {
"selectionInactiveBackground": "#57376d",
"hoverBackground": "#71468f", "hoverBackground": "#71468f",
"hoverInactiveBackground": "#71468f" "hoverInactiveBackground": "#71468f"

View File

@@ -2,45 +2,8 @@
"name": "Hiberbee Dark", "name": "Hiberbee Dark",
"author": "Vlad Volkov", "author": "Vlad Volkov",
"dark": true, "dark": true,
"editorScheme": "/colors/Dark.icls", "parentTheme": "Darcula",
"icons": { "editorScheme": "Hiberbee Dark",
"ColorPalette": {
"#2b2d30": "#323130",
"#3574f0": "#ffb900",
"#3c3f41": "#323130",
"#43494a": "#424140",
"#6B6B6B": "#525150",
"#134d80": "#202635",
"#a1a3a4": "light7",
"#A7A7A7": "light4",
"#3D6185": "#ffb900",
"Actions.GreyInline.Dark": "light4",
"Checkbox.Background.Disabled.Dark": "#323130",
"Checkbox.Background.Default.Dark": "#424140",
"Checkbox.Background.Selected.Dark": "#424140",
"Checkbox.Focus.Thin.Selected.Dark": "#525150",
"Checkbox.Focus.Wide.Dark": "#525150",
"Checkbox.Foreground.Selected.Dark": "#ffb900",
"Checkbox.Border.Selected": "#ffb900",
"Checkbox.Border.Default.Dark": "dark9",
"Checkbox.Border.Disabled.Dark": "dark7",
"Checkbox.Border.Selected.Dark": "dark10",
"Actions.Blue": "blue",
"Actions.Green": "green",
"Actions.Grey": "dark10",
"Actions.Red": "red",
"Actions.Yellow": "yellow",
"Objects.Blue": "blue",
"Objects.Green": "green",
"Objects.Pink": "#ff6188",
"Objects.Purple": "#9380ff",
"Objects.Red": "#e81123",
"Objects.RedStatus": "#e81123",
"Objects.Grey": "#c9c8c7",
"Objects.Yellow": "#FFB900",
"Objects.YellowDark": "#ff8c00"
}
},
"colors": { "colors": {
"dark1": "#070605", "dark1": "#070605",
"dark2": "#121110", "dark2": "#121110",
@@ -54,14 +17,20 @@
"dark10": "#525150", "dark10": "#525150",
"accent": "#ffb900", "accent": "#ffb900",
"green": "#92D923", "green": "#92D923",
"greenDark": "#92D923a0", "greenDark": "#92D923CC",
"blueDark": "#253047a0", "blueDark": "#253047CC",
"blue": "#409cff", "blue": "#409cff",
"red": "#d70751", "red": "#ff5454",
"redDark": "#260b08a0", "redDark": "#320f0f",
"yellow": "#ffb900", "yellow": "#ffb900",
"yellowLight": "#f5d277", "yellowLight": "#f5d277",
"yellowDark": "#ffb900a0", "yellowDark": "#ffb900a0",
"redBg": "#320f0f",
"violetBg": "#302030",
"orangeBg": "#403018",
"yellowBg": "#303018",
"blueBg": "#253047",
"greenBg": "#203020",
"light1": "#6f6e6d", "light1": "#6f6e6d",
"light2": "#7f7e7d", "light2": "#7f7e7d",
"light3": "#8f8e8d", "light3": "#8f8e8d",
@@ -75,10 +44,12 @@
}, },
"ui": { "ui": {
"*": { "*": {
"shadow": "dark2",
"darkShadow": "dark1",
"background": "dark6", "background": "dark6",
"borderColor": "dark8", "borderColor": "dark8",
"disabledBackground": "dark7", "disabledBackground": "dark7",
"disabledForeground": "light5", "disabledForeground": "light7",
"disabledText": "light3", "disabledText": "light3",
"focusedBorderColor": "dark10", "focusedBorderColor": "dark10",
"foreground": "light7", "foreground": "light7",
@@ -93,7 +64,17 @@
"selectionBackground": "dark4", "selectionBackground": "dark4",
"selectionForeground": "light8", "selectionForeground": "light8",
"selectionInactiveBackground": "dark6", "selectionInactiveBackground": "dark6",
"separatorColor": "dark10", "separatorColor": "dark8",
"warningForeground": "light6",
"errorForeground": "light6",
"errorBackground": "redBg",
"errorBorderColor": "#f25022",
"warningBorderColor": "yellow",
"infoBorderColor": "blue",
"successBorderColor": "green",
"warningBackground": "yellowBg",
"successBackground": "greenBg",
"infoBackground": "blueBg",
"shortcutForeground": "light10" "shortcutForeground": "light10"
}, },
"ActionButton": { "ActionButton": {
@@ -102,6 +83,10 @@
"pressedBackground": "dark4", "pressedBackground": "dark4",
"pressedBorderColor": "dark7" "pressedBorderColor": "dark7"
}, },
"Borders": {
"ContrastBorderColor": "dark10",
"color": "dark9"
},
"Button": { "Button": {
"default": { "default": {
"endBackground": "dark8", "endBackground": "dark8",
@@ -121,12 +106,13 @@
"startBackground": "dark8", "startBackground": "dark8",
"startBorderColor": "dark9" "startBorderColor": "dark9"
}, },
"Borders": { "CheckBox": {
"ContrastBorderColor": "dark10", "select": "light10"
"color": "dark9" },
"CheckBoxMenuItem": {
"background": "dark6",
"selectionBackground": "dark4"
}, },
"CheckBox": { "select": "light10" },
"CheckBoxMenuItem": { "background": "dark7", "selectionBackground": "dark4" },
"ColorChooser": { "ColorChooser": {
"foreground": "light6", "foreground": "light6",
"background": "dark6" "background": "dark6"
@@ -146,15 +132,19 @@
}, },
"CompletionPopup": { "CompletionPopup": {
"Advertiser": { "Advertiser": {
"background": "dark7", "background": "dark4",
"foreground": "light4" "foreground": "light4"
}, },
"selectionBackground": "dark4", "selectionInnerInsets": "2,4,2,4",
"foreground": "light8", "Body.insets": "1,1,1,1",
"selectionBackground": "dark5",
"foreground": "light6",
"matchForeground": "accent" "matchForeground": "accent"
}, },
"ComplexPopup": { "ComplexPopup": {
"TextField.borderInsets": "1,1,1,1",
"Header": { "Header": {
"insets": "4,0,4,0",
"background": "dark5" "background": "dark5"
} }
}, },
@@ -164,9 +154,11 @@
"errorFocusColor": "red", "errorFocusColor": "red",
"iconColor": "accent", "iconColor": "accent",
"focusColor": "dark10", "focusColor": "dark10",
"focusedBorderColor": "dark9", "focusWidth": 2,
"inactiveErrorFocusColor": "redDark", "arc": 0,
"inactiveWarningFocusColor": "yellowDark", "focusedBorderColor": "dark10",
"inactiveErrorFocusColor": "#ff545480",
"inactiveWarningFocusColor": "#ffb90080",
"infoForeground": "light3", "infoForeground": "light3",
"warningFocusColor": "yellow" "warningFocusColor": "yellow"
}, },
@@ -190,7 +182,7 @@
"DefaultTabs": { "DefaultTabs": {
"underlineHeight": 1, "underlineHeight": 1,
"background": "dark7", "background": "dark7",
"inactiveUnderlineColor": "yellowDark", "inactiveUnderlineColor": "#ffb90080",
"underlineColor": "accent", "underlineColor": "accent",
"underlinedTabBackground": "dark5" "underlinedTabBackground": "dark5"
}, },
@@ -220,13 +212,16 @@
"background": "dark6" "background": "dark6"
}, },
"FileColor": { "FileColor": {
"Gray": "dark7", "Gray": "dark8",
"Blue": "blueDark", "Blue": "blueBg",
"Green": "#232d28", "Green": "greenBg",
"Orange": "#2d2823", "Orange": "orangeBg",
"Rose": "redDark", "Rose": "redBg",
"Violet": "#2D232D", "Violet": "violetBg",
"Yellow": "#3b3b19" "Yellow": "yellowBg"
},
"Focus": {
"color": "dark10"
}, },
"FormattedTextField": { "FormattedTextField": {
"background": "dark8", "background": "dark8",
@@ -235,6 +230,8 @@
"inactiveBackground": "dark7", "inactiveBackground": "dark7",
"selectionForeground": "yellow" "selectionForeground": "yellow"
}, },
"FormattedTextField.selectionBackground": "dark4",
"GotItTooltip.arc": 4,
"GutterTooltip": { "GutterTooltip": {
"lineSeparatorColor": "dark9", "lineSeparatorColor": "dark9",
"infoForeground": "light3" "infoForeground": "light3"
@@ -255,11 +252,11 @@
}, },
"Label": { "Label": {
"errorForeground": "red", "errorForeground": "red",
"successForeground": "green", "successForeground": "blue",
"infoForeground": "light3",
"selectedForeground": "yellow", "selectedForeground": "yellow",
"foreground": "light6", "foreground": "light6",
"background": "dark7", "background": "dark6"
"infoForeground": "light3"
}, },
"Link": { "Link": {
"activeForeground": "accent", "activeForeground": "accent",
@@ -269,70 +266,72 @@
"pressedForeground": "light4" "pressedForeground": "light4"
}, },
"List": { "List": {
"Tag": { "Button.leftRightInset": 1,
"background": "dark6"
},
"background": "dark7", "background": "dark7",
"hoverInactiveBackground": "dark6", "hoverInactiveBackground": "dark6",
"hoverBackground": "dark5", "hoverBackground": "dark5",
"selectionBackground": "dark4", "selectionBackground": "dark4",
"Button.separatorColor": "dark6",
"Button.separatorInset": 0,
"selectionInactiveBackground": "dark5" "selectionInactiveBackground": "dark5"
}, },
"List.Button.separatorColor": "dark6",
"MemoryIndicator": { "MemoryIndicator": {
"allocatedBackground": "dark7", "allocatedBackground": "dark7",
"usedBackground": "redDark" "usedBackground": "redBg"
}, },
"Menu": { "Menu": {
"Selection.arc": 0,
"Selection.outerInsets": "1,0,1,0",
"Selection.innerInsets": "4,4,4,4",
"background": "dark6",
"borderColor": "dark9", "borderColor": "dark9",
"background": "dark7", "borderInsets": "1,1,1,1",
"separatorColor": "dark8", "separatorColor": "dark9",
"disabledBackground": "dark8",
"selectionBackground": "dark5",
"acceleratorSelectionForeground": "light10", "acceleratorSelectionForeground": "light10",
"acceleratorForeground": "light10" "acceleratorForeground": "light9"
},
"MenuItem": {
"background": "dark6"
}, },
"Notification": { "Notification": {
"ToolWindow": { "ToolWindow": {
"errorBackground": "dark5", "errorBackground": "redBg",
"errorBorderColor": "dark10", "errorForeground": "light8",
"errorForeground": "light6", "errorBorderColor": "red",
"warningBackground": "orangeBg",
"warningBorderColor": "yellow",
"warningForeground": "light8",
"informativeBackground": "blueDark", "informativeBackground": "blueDark",
"informativeBorderColor": "blue", "informativeBorderColor": "blue",
"informativeForeground": "light6", "informativeForeground": "light4"
"warningBackground": "yellowDark",
"warningBorderColor": "yellow",
"warningForeground": "light6"
}, },
"borderColor": "dark10", "borderColor": "dark9",
"background": "blueDark", "background": "blueDark",
"arc": 12, "Button": {
"Button.background": "dark8", "background": "dark8",
"borderColor": "dark10",
"Button.borderColor": "dark10",
"linkForeground": "accent",
"Button.foreground": "light10",
"errorBackground": "redDark",
"errorBorderColor": "dark10",
"MoreButton.foreground": "light6",
"errorForeground": "light10",
"foreground": "light10" "foreground": "light10"
}, },
"linkForeground": "accent",
"errorBackground": "redBg",
"MoreButton.foreground": "blue",
"errorForeground": "light8",
"foreground": "light8"
},
"NotificationsToolwindow": { "NotificationsToolwindow": {
"newNotification.background": "dark5", "newNotification.background": "dark5",
"Notification.hoverBackground": "dark6", "Notification.hoverBackground": "dark6",
"newNotification.hoverBackground": "dark4" "newNotification.hoverBackground": "dark4"
}, },
"Panel": {
"background": "dark6",
"foreground": "light6"
},
"ParameterInfo": { "ParameterInfo": {
"background": "dark5", "background": "dark5",
"currentOverloadBackground": "light7", "disabledForeground": "light4",
"currentParameterForeground": "light5", "currentOverloadBackground": "dark7",
"currentParameterForeground": "light7",
"foreground": "light6", "foreground": "light6",
"infoForeground": "light3", "infoForeground": "light3",
"lineSeparatorColor": "dark9" "lineSeparatorColor": "dark8"
}, },
"PasswordField": { "PasswordField": {
"capsLockIconColor": "red", "capsLockIconColor": "red",
@@ -368,10 +367,9 @@
"Popup": { "Popup": {
"borderColor": "dark9", "borderColor": "dark9",
"inactiveBorderColor": "dark8", "inactiveBorderColor": "dark8",
"innerBorderColor": "dark9",
"Advertiser": { "Advertiser": {
"background": "dark4", "background": "dark4",
"borderColor": "dark7", "borderColor": "dark9",
"foreground": "light4" "foreground": "light4"
}, },
"Header": { "Header": {
@@ -380,11 +378,32 @@
"inactiveForeground": "light6", "inactiveForeground": "light6",
"inactiveBackground": "dark6" "inactiveBackground": "dark6"
}, },
"Body": {
"topInsetNoHeader": 2,
"bottomInsetBeforeAd": 2,
"bottomInsetNoAd": 2
},
"separatorInsets": "2,0,2,0",
"Selection": {
"arc": 0,
"innerInsets": "4,8,4,8",
"leftRightInset": 1
},
"innerBorderColor": "dark9",
"separatorColor": "dark8" "separatorColor": "dark8"
}, },
"PopupMenu": { "PopupMenu": {
"background": "dark7", "borderWidth": 0,
"foreground": "light7" "Selection.arc": 0,
"Selection.innerInsets": "4,8,4,8",
"Selection.outerInsets": "2,0,2,0",
"background": "dark6",
"borderInsets": "1,1,1,1",
"foreground": "light6"
},
"PopupMenuSeparator": {
"stripeIndent": 0,
"height": 1
}, },
"ProgressBar": { "ProgressBar": {
"failedColor": "red", "failedColor": "red",
@@ -399,34 +418,40 @@
"RadioButtonMenuItem": { "RadioButtonMenuItem": {
"background": "dark9", "background": "dark9",
"foreground": "light6", "foreground": "light6",
"acceleratorForeground": "blueDark",
"selectionForeground": "yellow" "selectionForeground": "yellow"
}, },
"RunWidget": { "RunWidget": {
"background": "dark6", "pressedBackground": "dark5",
"pressedBackground": "dark4", "hoverBackground": "dark4",
"runModeIconColor": "light10", "stopBackground": "redBg",
"iconColor": "accent",
"runIconColor": "greenDark",
"runningIconColor": "light10",
"runningBackground": "dark5" "runningBackground": "dark5"
}, },
"ScrollBar": { "ScrollBar": {
"hoverThumbColor": "dark10" "hoverThumbColor": "dark10"
}, },
"ScrollPane": {
"background": "dark6",
"foreground": "light6"
},
"SearchEverywhere": { "SearchEverywhere": {
"Advertiser": { "Advertiser": {
"background": "dark4", "background": "dark4",
"foreground": "light3" "foreground": "light4"
}, },
"Header": { "Header": {
"background": "dark5" "background": "dark5"
}, },
"List": { "List": {
"separatorForeground": "dark9", "separatorForeground": "light2",
"settingsBackground": "dark5" "settingsBackground": "dark5"
}, },
"SearchField": { "SearchField": {
"background": "dark8", "background": "dark8",
"borderColor": "dark10", "borderColor": "dark9",
"infoForeground": "light3" "infoForeground": "light4"
}, },
"Tab": { "Tab": {
"selectedBackground": "dark3", "selectedBackground": "dark3",
@@ -449,37 +474,50 @@
"SidePanel": { "SidePanel": {
"background": "dark7" "background": "dark7"
}, },
"Slider": {
"buttonBorderColor": "dark9",
"focus": "dark10",
"shadow": "dark2",
"buttonColor": "dark7",
"tickColor": "dark10",
"trackColor": "dark8"
},
"SpeedSearch": { "SpeedSearch": {
"borderColor": "dark9", "borderColor": "dark9",
"errorForeground": "red", "errorForeground": "red",
"foreground": "yellow" "foreground": "yellow"
}, },
"SplitPane": { "SplitPane": {
"background": "dark", "background": "dark6",
"highlight": "yellow" "highlight": "yellow"
}, },
"ComboPopup.border": "1,1,1,1,525150",
"TabbedPane": { "TabbedPane": {
"contentAreaColor": "dark7", "contentAreaColor": "dark7",
"disabledForeground": "light3", "disabledForeground": "light3",
"disabledUnderlineColor": "light3", "disabledUnderlineColor": "light3",
"focusColor": "dark4",
"focus": "dark9", "focus": "dark9",
"focusColor": "dark4",
"underlineColor": "accent" "underlineColor": "accent"
}, },
"Table": { "Table": {
"background": "dark7",
"alternativeRowBackground": "dark6", "alternativeRowBackground": "dark6",
"background": "dark7",
"dropLineColor": "dark10", "dropLineColor": "dark10",
"dropLineShortColor": "dark10", "dropLineShortColor": "dark10",
"focusCellBackground": "dark5", "focusCellBackground": "dark4",
"focusCellForeground": "yellow", "focusCellForeground": "yellow",
"lightSelectionBackground": "dark5",
"gridColor": "dark9", "gridColor": "dark9",
"lightSelectionBackground": "dark8",
"sortIconColor": "yellow", "sortIconColor": "yellow",
"selectionBackground": "dark4",
"stripeColor": "dark9" "stripeColor": "dark9"
}, },
"TableHeader": { "TableHeader": {
"background": "dark5", "background": "dark5",
"separatorColor": "dark9",
"cellBorder": "dark8",
"focusCellBackground": "dark4",
"bottomSeparatorColor": "dark9" "bottomSeparatorColor": "dark9"
}, },
"TextArea": { "TextArea": {
@@ -501,7 +539,7 @@
"background": "dark6", "background": "dark6",
"inactiveBackground": "dark7", "inactiveBackground": "dark7",
"inactiveForeground": "light3", "inactiveForeground": "light3",
"selectionBackground": "dark4" "selectionBackground": "dark5"
}, },
"TitlePane": { "TitlePane": {
"background": "dark5" "background": "dark5"
@@ -509,10 +547,11 @@
"ToggleButton": { "ToggleButton": {
"buttonColor": "dark8", "buttonColor": "dark8",
"disabledText": "light2", "disabledText": "light2",
"offBackground": "dark4", "borderColor": "dark9",
"offBackground": "dark6",
"offForeground": "light6", "offForeground": "light6",
"onBackground": "yellow", "onBackground": "yellow",
"onForeground": "dark1" "onForeground": "dark2"
}, },
"ToolBar": { "ToolBar": {
"background": "dark5", "background": "dark5",
@@ -522,7 +561,8 @@
"Actions.background": "dark5", "Actions.background": "dark5",
"Actions.infoForeground": "light3", "Actions.infoForeground": "light3",
"background": "dark5", "background": "dark5",
"infoForeground": "light2" "foreground": "light5",
"infoForeground": "light3"
}, },
"ToolWindow": { "ToolWindow": {
"Button": { "Button": {
@@ -531,10 +571,12 @@
"selectedForeground": "yellow" "selectedForeground": "yellow"
}, },
"Header": { "Header": {
"padding": "0,1,0,1",
"background": "dark4", "background": "dark4",
"inactiveBackground": "dark5" "inactiveBackground": "dark5"
}, },
"HeaderTab": { "HeaderTab": {
"padding": "0,0,0,0",
"underlineHeight": 1, "underlineHeight": 1,
"hoverInactiveBackground": "dark5", "hoverInactiveBackground": "dark5",
"inactiveUnderlineColor": "yellowDark", "inactiveUnderlineColor": "yellowDark",
@@ -544,11 +586,7 @@
}, },
"background": "dark7" "background": "dark7"
}, },
"GotItTooltip.arc": 4,
"Tree": { "Tree": {
"Selection": {
"arc": 4
},
"background": "dark7", "background": "dark7",
"errorForeground": "red", "errorForeground": "red",
"foreground": "light7", "foreground": "light7",
@@ -556,16 +594,12 @@
"hoverInactiveBackground": "dark5", "hoverInactiveBackground": "dark5",
"modifiedItemForeground": "blue", "modifiedItemForeground": "blue",
"selectionBackground": "dark5", "selectionBackground": "dark5",
"Selection.arc": 0,
"selectionInactiveBackground": "dark6" "selectionInactiveBackground": "dark6"
}, },
"ScrollPane": {
"background": "dark6",
"foreground": "light6"
},
"ValidationTooltip": { "ValidationTooltip": {
"errorBackground": "redDark", "errorBackground": "dark4",
"errorBorderColor": "red", "warningBackground": "dark4",
"warningBackground": "yellowDark",
"warningBorderColor": "yellow" "warningBorderColor": "yellow"
}, },
"VersionControl": { "VersionControl": {
@@ -597,6 +631,7 @@
}, },
"Projects": { "Projects": {
"actions.selectionBackground": "dark5", "actions.selectionBackground": "dark5",
"actions.background": "dark6",
"background": "dark7", "background": "dark7",
"actions.selectionBorderColor": "dark10", "actions.selectionBorderColor": "dark10",
"selectionBackground": "dark5", "selectionBackground": "dark5",

View File

@@ -220,7 +220,6 @@
"Header.inactiveBackground": "#7f7e7f", "Header.inactiveBackground": "#7f7e7f",
"Advertiser": { "Advertiser": {
"foreground": "#727072", "foreground": "#727072",
"background": "#403e42",
"borderColor": "#7f7e7f", "borderColor": "#7f7e7f",
"borderInsets": "4,8,3,0" "borderInsets": "4,8,3,0"
} }