diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ce85e1e..4d4a2014 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ FlatLaf Change Log - Extras: `FlatSVGIcon` color filters now can access painting component to implement component state based color mappings. (issue #906) - Linux: Added `libflatlaf-linux-arm64.so` for Linux on ARM64. (issue #899) +- IntelliJ Themes: Updated to latest versions. #### Fixed bugs diff --git a/flatlaf-demo/src/main/java/com/formdev/flatlaf/demo/intellijthemes/IJThemeInfo.java b/flatlaf-demo/src/main/java/com/formdev/flatlaf/demo/intellijthemes/IJThemeInfo.java index 40e0bc03..90913b00 100644 --- a/flatlaf-demo/src/main/java/com/formdev/flatlaf/demo/intellijthemes/IJThemeInfo.java +++ b/flatlaf-demo/src/main/java/com/formdev/flatlaf/demo/intellijthemes/IJThemeInfo.java @@ -25,24 +25,32 @@ class IJThemeInfo { final String name; final String resourceName; + final boolean discontinued; final boolean dark; final String license; final String licenseFile; + final String pluginUrl; final String sourceCodeUrl; final String sourceCodePath; final File themeFile; 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 sourceCodeUrl, String sourceCodePath, + String pluginUrl, String sourceCodeUrl, String sourceCodePath, File themeFile, String lafClassName ) { this.name = name; this.resourceName = resourceName; + this.discontinued = discontinued; this.dark = dark; this.license = license; this.licenseFile = licenseFile; + this.pluginUrl = pluginUrl; this.sourceCodeUrl = sourceCodeUrl; this.sourceCodePath = sourceCodePath; this.themeFile = themeFile; diff --git a/flatlaf-demo/src/main/java/com/formdev/flatlaf/demo/intellijthemes/IJThemesManager.java b/flatlaf-demo/src/main/java/com/formdev/flatlaf/demo/intellijthemes/IJThemesManager.java index ece63854..90194dbb 100644 --- a/flatlaf-demo/src/main/java/com/formdev/flatlaf/demo/intellijthemes/IJThemesManager.java +++ b/flatlaf-demo/src/main/java/com/formdev/flatlaf/demo/intellijthemes/IJThemesManager.java @@ -56,13 +56,16 @@ class IJThemesManager String resourceName = e.getKey(); Map value = (Map) e.getValue(); String name = value.get( "name" ); + boolean discontinued = Boolean.parseBoolean( value.get( "discontinued" ) ); boolean dark = Boolean.parseBoolean( value.get( "dark" ) ); String license = value.get( "license" ); String licenseFile = value.get( "licenseFile" ); + String pluginUrl = value.get( "pluginUrl" ); String sourceCodeUrl = value.get( "sourceCodeUrl" ); 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" ) ? StringUtils.removeTrailing( fname, ".properties" ) : 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() ); } } diff --git a/flatlaf-demo/src/main/java/com/formdev/flatlaf/demo/intellijthemes/IJThemesPanel.java b/flatlaf-demo/src/main/java/com/formdev/flatlaf/demo/intellijthemes/IJThemesPanel.java index 360ac0a1..3b452434 100644 --- a/flatlaf-demo/src/main/java/com/formdev/flatlaf/demo/intellijthemes/IJThemesPanel.java +++ b/flatlaf-demo/src/main/java/com/formdev/flatlaf/demo/intellijthemes/IJThemesPanel.java @@ -179,18 +179,18 @@ public class IJThemesPanel // add core themes at beginning categories.put( themes.size(), "Core Themes" ); 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 ) - 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 ) - 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 ) - 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 ) - 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 ) - 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 categories.put( themes.size(), "Current Directory" ); diff --git a/flatlaf-demo/src/main/java/com/formdev/flatlaf/demo/intellijthemes/IJThemesUpdater.java b/flatlaf-demo/src/main/java/com/formdev/flatlaf/demo/intellijthemes/IJThemesUpdater.java index c5936919..b3ac899d 100644 --- a/flatlaf-demo/src/main/java/com/formdev/flatlaf/demo/intellijthemes/IJThemesUpdater.java +++ b/flatlaf-demo/src/main/java/com/formdev/flatlaf/demo/intellijthemes/IJThemesUpdater.java @@ -38,6 +38,9 @@ public class IJThemesUpdater themesManager.loadBundledThemes(); for( IJThemeInfo ti : themesManager.bundledThemes ) { + if( ti.discontinued ) + continue; + if( ti.sourceCodeUrl == null || ti.sourceCodePath == null ) { System.out.println( " " + ti.name + " NOT downloaded. Needs manual update from release on JetBrains Plugin portal." ); continue; diff --git a/flatlaf-demo/src/main/resources/com/formdev/flatlaf/demo/intellijthemes/themes.json b/flatlaf-demo/src/main/resources/com/formdev/flatlaf/demo/intellijthemes/themes.json index 54241237..251a0911 100644 --- a/flatlaf-demo/src/main/resources/com/formdev/flatlaf/demo/intellijthemes/themes.json +++ b/flatlaf-demo/src/main/resources/com/formdev/flatlaf/demo/intellijthemes/themes.json @@ -3,6 +3,7 @@ "name": "Arc", "license": "MIT", "licenseFile": "arc-themes.LICENSE.txt", + "pluginUrl": "https://plugins.jetbrains.com/plugin/12451-arc-theme", "sourceCodeUrl": "https://gitlab.com/zlamalp/arc-theme-idea", "sourceCodePath": "blob/master/arc-theme-idea-light/resources/arc-theme.theme.json" }, @@ -10,6 +11,7 @@ "name": "Arc - Orange", "license": "MIT", "licenseFile": "arc-themes.LICENSE.txt", + "pluginUrl": "https://plugins.jetbrains.com/plugin/12451-arc-theme", "sourceCodeUrl": "https://gitlab.com/zlamalp/arc-theme-idea", "sourceCodePath": "blob/master/arc-theme-idea-light/resources/arc-theme-orange.theme.json" }, @@ -18,6 +20,7 @@ "dark": true, "license": "MIT", "licenseFile": "arc-themes.LICENSE.txt", + "pluginUrl": "https://plugins.jetbrains.com/plugin/15175-arc-theme-dark", "sourceCodeUrl": "https://gitlab.com/zlamalp/arc-theme-idea", "sourceCodePath": "blob/master/arc-theme-idea-dark/resources/arc_theme_dark.theme.json" }, @@ -26,6 +29,7 @@ "dark": true, "license": "MIT", "licenseFile": "arc-themes.LICENSE.txt", + "pluginUrl": "https://plugins.jetbrains.com/plugin/15175-arc-theme-dark", "sourceCodeUrl": "https://gitlab.com/zlamalp/arc-theme-idea", "sourceCodePath": "blob/master/arc-theme-idea-dark/resources/arc_theme_dark_orange.theme.json" }, @@ -34,6 +38,7 @@ "dark": true, "license": "Apache License 2.0", "licenseFile": "arc-themes.LICENSE.txt", + "pluginUrl": "https://plugins.jetbrains.com/plugin/12280-carbon", "sourceCodeUrl": "https://github.com/luisfer0793/theme-carbon", "sourceCodePath": "blob/master/resources/matte_carbon_basics.theme.json" }, @@ -42,6 +47,7 @@ "dark": true, "license": "MIT", "licenseFile": "Cobalt_2.LICENSE.txt", + "pluginUrl": "https://plugins.jetbrains.com/plugin/10745-cobalt-2", "sourceCodeUrl": "https://github.com/ngehlert/cobalt2", "sourceCodePath": "blob/master/Cobalt2-UI-Theme/resources/Cobalt_2.theme.json" }, @@ -49,6 +55,7 @@ "name": "Cyan light", "license": "MIT", "licenseFile": "Cyan.LICENSE.txt", + "pluginUrl": "https://plugins.jetbrains.com/plugin/12102-cyan-light-theme", "sourceCodeUrl": "https://github.com/OlyaB/CyanTheme", "sourceCodePath": "blob/master/src/Cyan.theme.json" }, @@ -57,6 +64,7 @@ "dark": true, "license": "MIT", "licenseFile": "DarkFlatTheme.LICENSE.txt", + "pluginUrl": "https://plugins.jetbrains.com/plugin/12165-dark-flat-theme", "sourceCodeUrl": "https://github.com/nerzhulart/DarkFlatTheme", "sourceCodePath": "blob/master/src/DarkFlatTheme.theme.json" }, @@ -65,6 +73,7 @@ "dark": true, "license": "MIT", "licenseFile": "DarkPurple.LICENSE.txt", + "pluginUrl": "https://plugins.jetbrains.com/plugin/12100-dark-purple-theme", "sourceCodeUrl": "https://github.com/OlyaB/DarkPurpleTheme", "sourceCodePath": "blob/master/src/DarkPurple.theme.json" }, @@ -73,6 +82,7 @@ "dark": true, "license": "MIT", "licenseFile": "Dracula.LICENSE.txt", + "pluginUrl": "https://plugins.jetbrains.com/plugin/12275-dracula-theme", "sourceCodeUrl": "https://github.com/dracula/jetbrains", "sourceCodePath": "blob/master/src/main/resources/themes/Dracula.theme.json" }, @@ -81,6 +91,7 @@ "dark": true, "license": "MIT", "licenseFile": "Gradianto.LICENSE.txt", + "pluginUrl": "https://plugins.jetbrains.com/plugin/12334-gradianto", "sourceCodeUrl": "https://github.com/thvardhan/Gradianto", "sourceCodePath": "blob/master/src/main/resources/Gradianto_dark_fuchsia.theme.json" }, @@ -89,6 +100,7 @@ "dark": true, "license": "MIT", "licenseFile": "Gradianto.LICENSE.txt", + "pluginUrl": "https://plugins.jetbrains.com/plugin/12334-gradianto", "sourceCodeUrl": "https://github.com/thvardhan/Gradianto", "sourceCodePath": "blob/master/src/main/resources/Gradianto_deep_ocean.theme.json" }, @@ -97,6 +109,7 @@ "dark": true, "license": "MIT", "licenseFile": "Gradianto.LICENSE.txt", + "pluginUrl": "https://plugins.jetbrains.com/plugin/12334-gradianto", "sourceCodeUrl": "https://github.com/thvardhan/Gradianto", "sourceCodePath": "blob/master/src/main/resources/Gradianto_midnight_blue.theme.json" }, @@ -105,6 +118,7 @@ "dark": true, "license": "MIT", "licenseFile": "Gradianto.LICENSE.txt", + "pluginUrl": "https://plugins.jetbrains.com/plugin/12334-gradianto", "sourceCodeUrl": "https://github.com/thvardhan/Gradianto", "sourceCodePath": "blob/master/src/main/resources/Gradianto_Nature_Green.theme.json" }, @@ -112,6 +126,7 @@ "name": "Gray", "license": "MIT", "licenseFile": "Gray.LICENSE.txt", + "pluginUrl": "https://plugins.jetbrains.com/plugin/12103-gray-theme", "sourceCodeUrl": "https://github.com/OlyaB/GreyTheme", "sourceCodePath": "blob/master/src/Gray.theme.json" }, @@ -120,6 +135,7 @@ "dark": true, "license": "MIT", "licenseFile": "gruvbox_theme.LICENSE.txt", + "pluginUrl": "https://plugins.jetbrains.com/plugin/12310-gruvbox-theme", "sourceCodeUrl": "https://github.com/Vincent-P/gruvbox-intellij-theme", "sourceCodePath": "blob/master/src/main/resources/gruvbox_dark_hard.theme.json" }, @@ -128,6 +144,7 @@ "dark": true, "license": "MIT", "licenseFile": "gruvbox_theme.LICENSE.txt", + "pluginUrl": "https://plugins.jetbrains.com/plugin/12310-gruvbox-theme", "sourceCodeUrl": "https://github.com/Vincent-P/gruvbox-intellij-theme", "sourceCodePath": "blob/master/src/main/resources/gruvbox_dark_medium.theme.json" }, @@ -136,6 +153,7 @@ "dark": true, "license": "MIT", "licenseFile": "gruvbox_theme.LICENSE.txt", + "pluginUrl": "https://plugins.jetbrains.com/plugin/12310-gruvbox-theme", "sourceCodeUrl": "https://github.com/Vincent-P/gruvbox-intellij-theme", "sourceCodePath": "blob/master/src/main/resources/gruvbox_dark_soft.theme.json" }, @@ -144,6 +162,7 @@ "dark": true, "license": "MIT", "licenseFile": "Hiberbee.LICENSE.txt", + "pluginUrl": "https://plugins.jetbrains.com/plugin/12118-hiberbee-theme", "sourceCodeUrl": "https://github.com/Hiberbee/themes", "sourceCodePath": "blob/latest/src/intellij/src/main/resources/themes/HiberbeeDark.theme.json" }, @@ -159,6 +178,7 @@ "name": "Light Flat", "license": "MIT", "licenseFile": "LightFlatTheme.LICENSE.txt", + "pluginUrl": "https://plugins.jetbrains.com/plugin/12169-light-flat-theme", "sourceCodeUrl": "https://github.com/nerzhulart/LightFlatTheme", "sourceCodePath": "blob/master/src/LightFlatTheme.theme.json" }, @@ -167,6 +187,7 @@ "dark": true, "license": "MIT", "licenseFile": "MaterialTheme.LICENSE.txt", + "pluginUrl": "https://plugins.jetbrains.com/plugin/12134-material-design-dark-theme", "sourceCodeUrl": "https://github.com/xinkunZ/NotReallyMDTheme", "sourceCodePath": "blob/master/src/main/resources/MaterialTheme.theme.json" }, @@ -175,11 +196,13 @@ "dark": true, "license": "MIT", "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" }, "Monokai_Pro.default.theme.json": { "name": "Monokai Pro", + "discontinued": true, "dark": true, "license": "MIT", "licenseFile": "Monokai_Pro.LICENSE.txt", @@ -190,7 +213,8 @@ "dark": true, "license": "MIT", "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" }, "one_dark.theme.json": { @@ -198,11 +222,13 @@ "dark": true, "license": "MIT", "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", "sourceCodePath": "blob/master/buildSrc/templates/oneDark.template.theme.json" }, "SolarizedDark.theme.json": { "name": "Solarized Dark", + "discontinued": true, "dark": true, "license": "The Unlicense", "licenseFile": "Solarized.LICENSE.txt", @@ -211,6 +237,7 @@ }, "SolarizedLight.theme.json": { "name": "Solarized Light", + "discontinued": true, "license": "The Unlicense", "licenseFile": "Solarized.LICENSE.txt", "sourceCodeUrl": "https://github.com/4lex4/intellij-platform-solarized", @@ -221,6 +248,7 @@ "dark": true, "license": "MIT", "licenseFile": "Spacegray.LICENSE.txt", + "pluginUrl": "https://plugins.jetbrains.com/plugin/12122-spacegray-theme", "sourceCodeUrl": "https://github.com/mturlo/intellij-spacegray", "sourceCodePath": "blob/master/src/Spacegray.theme.json" }, @@ -229,6 +257,7 @@ "dark": true, "license": "MIT", "licenseFile": "vuesion_theme.LICENSE.txt", + "pluginUrl": "https://plugins.jetbrains.com/plugin/12226-vuesion-theme", "sourceCodeUrl": "https://github.com/vuesion/intellij-theme", "sourceCodePath": "blob/master/resources/META-INF/vuesion_theme.theme.json" }, @@ -237,6 +266,7 @@ "dark": true, "license": "MIT", "licenseFile": "Xcode-Dark.LICENSE.txt", + "pluginUrl": "https://plugins.jetbrains.com/plugin/13106-xcode-dark-theme", "sourceCodeUrl": "https://github.com/antelle/intellij-xcode-dark-theme", "sourceCodePath": "blob/master/resources/Xcode-Dark.theme.json" }, @@ -246,7 +276,8 @@ "dark": true, "license": "MIT", "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" }, "material-theme-ui-lite/Atom One Dark.theme.json": { @@ -254,14 +285,16 @@ "dark": true, "license": "MIT", "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" }, "material-theme-ui-lite/Atom One Light.theme.json": { "name": "Material Theme UI Lite / Atom One Light", "license": "MIT", "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" }, "material-theme-ui-lite/Dracula.theme.json": { @@ -269,14 +302,16 @@ "dark": true, "license": "MIT", "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" }, "material-theme-ui-lite/GitHub.theme.json": { "name": "Material Theme UI Lite / GitHub", "license": "MIT", "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" }, "material-theme-ui-lite/GitHub Dark.theme.json": { @@ -284,14 +319,16 @@ "dark": true, "license": "MIT", "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" }, "material-theme-ui-lite/Light Owl.theme.json": { "name": "Material Theme UI Lite / Light Owl", "license": "MIT", "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" }, "material-theme-ui-lite/Material Darker.theme.json": { @@ -299,7 +336,8 @@ "dark": true, "license": "MIT", "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" }, "material-theme-ui-lite/Material Deep Ocean.theme.json": { @@ -307,14 +345,16 @@ "dark": true, "license": "MIT", "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" }, "material-theme-ui-lite/Material Lighter.theme.json": { "name": "Material Theme UI Lite / Material Lighter", "license": "MIT", "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" }, "material-theme-ui-lite/Material Oceanic.theme.json": { @@ -322,7 +362,8 @@ "dark": true, "license": "MIT", "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" }, "material-theme-ui-lite/Material Palenight.theme.json": { @@ -330,7 +371,8 @@ "dark": true, "license": "MIT", "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" }, "material-theme-ui-lite/Monokai Pro.theme.json": { @@ -338,7 +380,8 @@ "dark": true, "license": "MIT", "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" }, "material-theme-ui-lite/Moonlight.theme.json": { @@ -346,7 +389,8 @@ "dark": true, "license": "MIT", "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" }, "material-theme-ui-lite/Night Owl.theme.json": { @@ -354,7 +398,8 @@ "dark": true, "license": "MIT", "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" }, "material-theme-ui-lite/Solarized Dark.theme.json": { @@ -362,14 +407,16 @@ "dark": true, "license": "MIT", "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" }, "material-theme-ui-lite/Solarized Light.theme.json": { "name": "Material Theme UI Lite / Solarized Light", "license": "MIT", "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" } } diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/Dracula.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/Dracula.theme.json index ba77bfcf..b0f9df84 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/Dracula.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/Dracula.theme.json @@ -258,7 +258,7 @@ }, "ToolWindow": { "Button": { - "selectedBackground": "secondaryAccentColor", + "selectedBackground": "hoverBackground", "hoverBackground": "hoverBackground" }, "Header": { diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/Gradianto_Nature_Green.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/Gradianto_Nature_Green.theme.json index c245a7a9..a5b4b2c4 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/Gradianto_Nature_Green.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/Gradianto_Nature_Green.theme.json @@ -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", + "dark": true, + "author": "thvardhan", + "editorScheme": "/Gradianto_Nature_Green.xml", "ui": { "*": { "background": "#20403f", @@ -282,5 +261,26 @@ } }, "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" + } } } \ No newline at end of file diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/Gradianto_dark_fuchsia.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/Gradianto_dark_fuchsia.theme.json index ad651e73..a86f81df 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/Gradianto_dark_fuchsia.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/Gradianto_dark_fuchsia.theme.json @@ -31,6 +31,7 @@ "separatorColor": "#4b2665" }, "Tree": { + "selectionInactiveBackground": "#57376d", "hoverBackground": "#71468f", "hoverInactiveBackground": "#71468f" diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/HiberbeeDark.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/HiberbeeDark.theme.json index 9e6fef9e..061b8fec 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/HiberbeeDark.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/HiberbeeDark.theme.json @@ -2,45 +2,8 @@ "name": "Hiberbee Dark", "author": "Vlad Volkov", "dark": true, - "editorScheme": "/colors/Dark.icls", - "icons": { - "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" - } - }, + "parentTheme": "Darcula", + "editorScheme": "Hiberbee Dark", "colors": { "dark1": "#070605", "dark2": "#121110", @@ -54,14 +17,20 @@ "dark10": "#525150", "accent": "#ffb900", "green": "#92D923", - "greenDark": "#92D923a0", - "blueDark": "#253047a0", + "greenDark": "#92D923CC", + "blueDark": "#253047CC", "blue": "#409cff", - "red": "#d70751", - "redDark": "#260b08a0", + "red": "#ff5454", + "redDark": "#320f0f", "yellow": "#ffb900", "yellowLight": "#f5d277", "yellowDark": "#ffb900a0", + "redBg": "#320f0f", + "violetBg": "#302030", + "orangeBg": "#403018", + "yellowBg": "#303018", + "blueBg": "#253047", + "greenBg": "#203020", "light1": "#6f6e6d", "light2": "#7f7e7d", "light3": "#8f8e8d", @@ -75,10 +44,12 @@ }, "ui": { "*": { + "shadow": "dark2", + "darkShadow": "dark1", "background": "dark6", "borderColor": "dark8", "disabledBackground": "dark7", - "disabledForeground": "light5", + "disabledForeground": "light7", "disabledText": "light3", "focusedBorderColor": "dark10", "foreground": "light7", @@ -93,7 +64,17 @@ "selectionBackground": "dark4", "selectionForeground": "light8", "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" }, "ActionButton": { @@ -102,6 +83,10 @@ "pressedBackground": "dark4", "pressedBorderColor": "dark7" }, + "Borders": { + "ContrastBorderColor": "dark10", + "color": "dark9" + }, "Button": { "default": { "endBackground": "dark8", @@ -121,12 +106,13 @@ "startBackground": "dark8", "startBorderColor": "dark9" }, - "Borders": { - "ContrastBorderColor": "dark10", - "color": "dark9" + "CheckBox": { + "select": "light10" + }, + "CheckBoxMenuItem": { + "background": "dark6", + "selectionBackground": "dark4" }, - "CheckBox": { "select": "light10" }, - "CheckBoxMenuItem": { "background": "dark7", "selectionBackground": "dark4" }, "ColorChooser": { "foreground": "light6", "background": "dark6" @@ -146,15 +132,19 @@ }, "CompletionPopup": { "Advertiser": { - "background": "dark7", + "background": "dark4", "foreground": "light4" }, - "selectionBackground": "dark4", - "foreground": "light8", + "selectionInnerInsets": "2,4,2,4", + "Body.insets": "1,1,1,1", + "selectionBackground": "dark5", + "foreground": "light6", "matchForeground": "accent" }, "ComplexPopup": { + "TextField.borderInsets": "1,1,1,1", "Header": { + "insets": "4,0,4,0", "background": "dark5" } }, @@ -164,9 +154,11 @@ "errorFocusColor": "red", "iconColor": "accent", "focusColor": "dark10", - "focusedBorderColor": "dark9", - "inactiveErrorFocusColor": "redDark", - "inactiveWarningFocusColor": "yellowDark", + "focusWidth": 2, + "arc": 0, + "focusedBorderColor": "dark10", + "inactiveErrorFocusColor": "#ff545480", + "inactiveWarningFocusColor": "#ffb90080", "infoForeground": "light3", "warningFocusColor": "yellow" }, @@ -190,7 +182,7 @@ "DefaultTabs": { "underlineHeight": 1, "background": "dark7", - "inactiveUnderlineColor": "yellowDark", + "inactiveUnderlineColor": "#ffb90080", "underlineColor": "accent", "underlinedTabBackground": "dark5" }, @@ -220,13 +212,16 @@ "background": "dark6" }, "FileColor": { - "Gray": "dark7", - "Blue": "blueDark", - "Green": "#232d28", - "Orange": "#2d2823", - "Rose": "redDark", - "Violet": "#2D232D", - "Yellow": "#3b3b19" + "Gray": "dark8", + "Blue": "blueBg", + "Green": "greenBg", + "Orange": "orangeBg", + "Rose": "redBg", + "Violet": "violetBg", + "Yellow": "yellowBg" + }, + "Focus": { + "color": "dark10" }, "FormattedTextField": { "background": "dark8", @@ -235,6 +230,8 @@ "inactiveBackground": "dark7", "selectionForeground": "yellow" }, + "FormattedTextField.selectionBackground": "dark4", + "GotItTooltip.arc": 4, "GutterTooltip": { "lineSeparatorColor": "dark9", "infoForeground": "light3" @@ -255,11 +252,11 @@ }, "Label": { "errorForeground": "red", - "successForeground": "green", + "successForeground": "blue", + "infoForeground": "light3", "selectedForeground": "yellow", "foreground": "light6", - "background": "dark7", - "infoForeground": "light3" + "background": "dark6" }, "Link": { "activeForeground": "accent", @@ -269,70 +266,72 @@ "pressedForeground": "light4" }, "List": { - "Tag": { - "background": "dark6" - }, + "Button.leftRightInset": 1, "background": "dark7", "hoverInactiveBackground": "dark6", "hoverBackground": "dark5", "selectionBackground": "dark4", + "Button.separatorColor": "dark6", + "Button.separatorInset": 0, "selectionInactiveBackground": "dark5" }, + "List.Button.separatorColor": "dark6", "MemoryIndicator": { "allocatedBackground": "dark7", - "usedBackground": "redDark" + "usedBackground": "redBg" }, "Menu": { + "Selection.arc": 0, + "Selection.outerInsets": "1,0,1,0", + "Selection.innerInsets": "4,4,4,4", + "background": "dark6", "borderColor": "dark9", - "background": "dark7", - "separatorColor": "dark8", - "disabledBackground": "dark8", - "selectionBackground": "dark5", + "borderInsets": "1,1,1,1", + "separatorColor": "dark9", "acceleratorSelectionForeground": "light10", - "acceleratorForeground": "light10" + "acceleratorForeground": "light9" + }, + "MenuItem": { + "background": "dark6" }, "Notification": { "ToolWindow": { - "errorBackground": "dark5", - "errorBorderColor": "dark10", - "errorForeground": "light6", + "errorBackground": "redBg", + "errorForeground": "light8", + "errorBorderColor": "red", + "warningBackground": "orangeBg", + "warningBorderColor": "yellow", + "warningForeground": "light8", "informativeBackground": "blueDark", "informativeBorderColor": "blue", - "informativeForeground": "light6", - "warningBackground": "yellowDark", - "warningBorderColor": "yellow", - "warningForeground": "light6" + "informativeForeground": "light4" }, - "borderColor": "dark10", + "borderColor": "dark9", "background": "blueDark", - "arc": 12, - "Button.background": "dark8", - - "Button.borderColor": "dark10", + "Button": { + "background": "dark8", + "borderColor": "dark10", + "foreground": "light10" + }, "linkForeground": "accent", - "Button.foreground": "light10", - "errorBackground": "redDark", - "errorBorderColor": "dark10", - "MoreButton.foreground": "light6", - "errorForeground": "light10", - "foreground": "light10" + "errorBackground": "redBg", + "MoreButton.foreground": "blue", + "errorForeground": "light8", + "foreground": "light8" }, "NotificationsToolwindow": { "newNotification.background": "dark5", "Notification.hoverBackground": "dark6", "newNotification.hoverBackground": "dark4" }, - "Panel": { - "background": "dark6", - "foreground": "light6" - }, "ParameterInfo": { "background": "dark5", - "currentOverloadBackground": "light7", - "currentParameterForeground": "light5", + "disabledForeground": "light4", + "currentOverloadBackground": "dark7", + "currentParameterForeground": "light7", "foreground": "light6", "infoForeground": "light3", - "lineSeparatorColor": "dark9" + "lineSeparatorColor": "dark8" }, "PasswordField": { "capsLockIconColor": "red", @@ -368,10 +367,9 @@ "Popup": { "borderColor": "dark9", "inactiveBorderColor": "dark8", - "innerBorderColor": "dark9", "Advertiser": { "background": "dark4", - "borderColor": "dark7", + "borderColor": "dark9", "foreground": "light4" }, "Header": { @@ -380,11 +378,32 @@ "inactiveForeground": "light6", "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" }, "PopupMenu": { - "background": "dark7", - "foreground": "light7" + "borderWidth": 0, + "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": { "failedColor": "red", @@ -399,34 +418,40 @@ "RadioButtonMenuItem": { "background": "dark9", "foreground": "light6", - "acceleratorForeground": "blueDark", "selectionForeground": "yellow" }, "RunWidget": { - "background": "dark6", - "pressedBackground": "dark4", - "runModeIconColor": "light10", + "pressedBackground": "dark5", + "hoverBackground": "dark4", + "stopBackground": "redBg", + "iconColor": "accent", + "runIconColor": "greenDark", + "runningIconColor": "light10", "runningBackground": "dark5" }, "ScrollBar": { "hoverThumbColor": "dark10" }, + "ScrollPane": { + "background": "dark6", + "foreground": "light6" + }, "SearchEverywhere": { "Advertiser": { "background": "dark4", - "foreground": "light3" + "foreground": "light4" }, "Header": { "background": "dark5" }, "List": { - "separatorForeground": "dark9", + "separatorForeground": "light2", "settingsBackground": "dark5" }, "SearchField": { "background": "dark8", - "borderColor": "dark10", - "infoForeground": "light3" + "borderColor": "dark9", + "infoForeground": "light4" }, "Tab": { "selectedBackground": "dark3", @@ -449,37 +474,50 @@ "SidePanel": { "background": "dark7" }, + "Slider": { + "buttonBorderColor": "dark9", + "focus": "dark10", + "shadow": "dark2", + "buttonColor": "dark7", + "tickColor": "dark10", + "trackColor": "dark8" + }, "SpeedSearch": { "borderColor": "dark9", "errorForeground": "red", "foreground": "yellow" }, "SplitPane": { - "background": "dark", + "background": "dark6", "highlight": "yellow" }, + "ComboPopup.border": "1,1,1,1,525150", "TabbedPane": { "contentAreaColor": "dark7", "disabledForeground": "light3", "disabledUnderlineColor": "light3", - "focusColor": "dark4", "focus": "dark9", + "focusColor": "dark4", "underlineColor": "accent" }, "Table": { - "background": "dark7", "alternativeRowBackground": "dark6", + "background": "dark7", "dropLineColor": "dark10", "dropLineShortColor": "dark10", - "focusCellBackground": "dark5", + "focusCellBackground": "dark4", "focusCellForeground": "yellow", - "lightSelectionBackground": "dark5", "gridColor": "dark9", + "lightSelectionBackground": "dark8", "sortIconColor": "yellow", + "selectionBackground": "dark4", "stripeColor": "dark9" }, "TableHeader": { "background": "dark5", + "separatorColor": "dark9", + "cellBorder": "dark8", + "focusCellBackground": "dark4", "bottomSeparatorColor": "dark9" }, "TextArea": { @@ -501,7 +539,7 @@ "background": "dark6", "inactiveBackground": "dark7", "inactiveForeground": "light3", - "selectionBackground": "dark4" + "selectionBackground": "dark5" }, "TitlePane": { "background": "dark5" @@ -509,10 +547,11 @@ "ToggleButton": { "buttonColor": "dark8", "disabledText": "light2", - "offBackground": "dark4", + "borderColor": "dark9", + "offBackground": "dark6", "offForeground": "light6", "onBackground": "yellow", - "onForeground": "dark1" + "onForeground": "dark2" }, "ToolBar": { "background": "dark5", @@ -522,7 +561,8 @@ "Actions.background": "dark5", "Actions.infoForeground": "light3", "background": "dark5", - "infoForeground": "light2" + "foreground": "light5", + "infoForeground": "light3" }, "ToolWindow": { "Button": { @@ -531,10 +571,12 @@ "selectedForeground": "yellow" }, "Header": { + "padding": "0,1,0,1", "background": "dark4", "inactiveBackground": "dark5" }, "HeaderTab": { + "padding": "0,0,0,0", "underlineHeight": 1, "hoverInactiveBackground": "dark5", "inactiveUnderlineColor": "yellowDark", @@ -544,11 +586,7 @@ }, "background": "dark7" }, - "GotItTooltip.arc": 4, "Tree": { - "Selection": { - "arc": 4 - }, "background": "dark7", "errorForeground": "red", "foreground": "light7", @@ -556,16 +594,12 @@ "hoverInactiveBackground": "dark5", "modifiedItemForeground": "blue", "selectionBackground": "dark5", + "Selection.arc": 0, "selectionInactiveBackground": "dark6" }, - "ScrollPane": { - "background": "dark6", - "foreground": "light6" - }, "ValidationTooltip": { - "errorBackground": "redDark", - "errorBorderColor": "red", - "warningBackground": "yellowDark", + "errorBackground": "dark4", + "warningBackground": "dark4", "warningBorderColor": "yellow" }, "VersionControl": { @@ -597,6 +631,7 @@ }, "Projects": { "actions.selectionBackground": "dark5", + "actions.background": "dark6", "background": "dark7", "actions.selectionBorderColor": "dark10", "selectionBackground": "dark5", diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/Monocai.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/Monocai.theme.json index e86f190b..2a9b2bb4 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/Monocai.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/Monocai.theme.json @@ -220,7 +220,6 @@ "Header.inactiveBackground": "#7f7e7f", "Advertiser": { "foreground": "#727072", - "background": "#403e42", "borderColor": "#7f7e7f", "borderInsets": "4,8,3,0" } diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Arc Dark.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Arc Dark.theme.json index 8aa2b207..c8a56449 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Arc Dark.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Arc Dark.theme.json @@ -16,7 +16,7 @@ "second": "#393f4c", "dis": "#a2a2a2", "accent": "#5294E2", - "accent2": "#5294E22", + "acc2": "#f9ee98", "accent50": "#5294E250", "accent70": "#5294E270", "cs": "#262b33", @@ -26,7 +26,7 @@ "hl": "#444A58", "notif": "#262a33", "hc": "#2f343f", - "shadow": "undefined", + "shadow": "#00000020", "white": "#CF6A4C", "blue": "#7587A6", "red": "#CF6A4C", @@ -71,19 +71,25 @@ "hoverBorderColor": "accent50", "hoverSeparatorColor": "button", "pressedBackground": "accent50", - "pressedBorderColor": "accent50" + "pressedBorderColor": "accent50", + "separatorColor": "border" }, "ActionsList": { "icon.gap": 12, - "mnemonic.icon.gap": 12 + "mnemonic.icon.gap": 12, + "mnemonicInsets": "0,8,0,8", + "mnemonicsBorderInsets": "0,8,0,8", + "mnemonic.insets": "0,8,0,8" }, "ActionToolbar": { "background": "hc" }, - "AppInspector.GraphNode": { - "background": "second", - "borderColor": "border", - "focusedBorderColor": "accent" + "AppInspector": { + "GraphNode": { + "background": "second", + "borderColor": "border", + "focusedBorderColor": "accent" + } }, "AssignedMnemonic": { "background": "hl", @@ -99,13 +105,26 @@ "borderColor": "button", "foreground": "fg" }, - "BigSpinner.background": "bg", + "Banner": { + "foreground": "fg" + }, + "BigSpinner": { + "background": "bg" + }, "Bookmark": { "iconBackground": "accent", "Mnemonic": { "iconBackground": "hl", "iconBorderColor": "hl", "iconForeground": "fg" + }, + "MnemonicAssigned": { + "background": "table", + "foreground": "fg" + }, + "MnemonicCurrent": { + "background": "selBg", + "foreground": "selFg" } }, "BookmarkMnemonicAssigned": { @@ -128,13 +147,18 @@ "borderColor": "hl", "foreground": "fg" }, - "BookmarkIcon.background": "accent", - "Borders.ContrastBorderColor": "bg", - "Borders.color": "border", - "Breakpoint.iconHoverAlpha": 0.35, + "BookmarkIcon": { + "background": "accent" + }, + "Borders": { + "ContrastBorderColor": "bg", + "color": "border" + }, + "Breakpoint": { + "iconHoverAlpha": 0.35 + }, "Button": { "arc": 8, - "background": "bg", "darcula": { "borderColor": "button", "defaultBorderColor": "button", @@ -175,6 +199,7 @@ "focusedBorderColor": "accent", "foreground": "text", "highlight": "selFg", + "minimumSize": 72, "mt.background": "button", "mt.color1": "button", "mt.color2": "button", @@ -185,6 +210,12 @@ "select": "button", "shadowColor": "shadow", "shadowWidth": 0, + "Split": { + "default": { + "iconColor": "fg", + "separatorColor": "accent" + } + }, "startBackground": "table", "startBorderColor": "button", "ToolWindow": { @@ -195,11 +226,18 @@ "Tooltip.background": "notif", "Tooltip.borderColor": "border" }, + "CellEditor": { + "border": { + "width": 2 + } + }, "CheckBox": { "background": "bg", "background.selected": "accent", "borderColor": "bg", "borderColor.selected": "accent", + "border.width": 3, + "borderInsets": "4,4,4,4", "checkSignColor": "bg", "checkSignColor.selected": "bg", "checkSignColorDisabled": "bg", @@ -297,7 +335,9 @@ "foreground": "fg", "swatchesDefaultRecentColor": "fg" }, - "ComboBoxButton.background": "button", + "ComboBoxButton": { + "background": "button" + }, "ComboBox": { "ArrowButton": { "background": "button", @@ -327,14 +367,16 @@ "selectionBackground": "table", "selectionForeground": "activeFg" }, - "ComboPopup.border": "1,1,1,1,#5294E2", + "ComboPopup": { + "border": "1,1,1,1,#5294E2" + }, "CompletionPopup": { "Advertiser": { - "background": "bg", - "foreground": "fg", + "background": "second", + "foreground": "text", "borderInsets": "8,12,8,12" }, - "background": "second", + "background": "button", "foreground": "fg", "grayForeground": "text", "grayedForeground": "text", @@ -351,13 +393,20 @@ "selectionInactiveBackground": "hl", "selectionInactiveForeground": "text", "selectionInactiveInfoForeground": "text", - "selectionInfoForeground": "selFg" + "selectionInfoForeground": "selFg", + "selectionInnerInsets": "4,4,4,4" }, "ComplexPopup": { - "Header.background": "notif" + "Header": { + "background": "bg", + "insets": "12,12,12,12" + }, + "TextField": { + "inputInsets": "8,4,8,4" + } }, "Component": { - "arc": 4, + "arc": 6, "focusWidth": 2, "borderColor": "hl", "disabledBorderColor": "dis", @@ -440,7 +489,7 @@ "southPanelDivider": "bg" }, "DragAndDrop": { - "areaBackground": "tree", + "areaBackground": "selBg70", "areaBorderColor": "bg", "areaForeground": "fg", "backgroundBorderColor": "bg", @@ -453,18 +502,37 @@ "Editor": { "background": "hc", "foreground": "fg", + "Notification": { + "borderInsets": "10,12,10,12", + "WithoutStatus.borderInsets": "10,12,10,12" + }, + "ReplaceToolbar": { + "borderInsets": "4,12,4,12" + }, "shortcutForeground": "text", "SearchField": { "background": "cs", "borderInsets": "8,12,8,12" }, + "SearchReplaceModePanel": { + "borderInsets": "4,12,4,12" + }, + "SearchToolbar": { + "borderInsets": "4,12,4,12" + }, "Toolbar": { "borderColor": "border" + }, + "ToolTip": { + "border": "border", + "foreground": "fg", + "iconHoverBackground": "table", + "selectionBackground": "selBg" } }, "EditorGroupsTabs": { "background": "bg", - "borderColor": "second", + "borderColor": "border", "hoverBackground": "hl", "hoverColor": "hl", "inactiveUnderlineColor": "accent", @@ -474,6 +542,7 @@ }, "EditorPane": { "background": "hc", + "borderColor": "border", "caretForeground": "accent", "foreground": "fg", "inactiveBackground": "bg", @@ -483,21 +552,25 @@ "splitBorder": "border" }, "EditorTabs": { - "active.background": "table", - "active.foreground": "fg", - "active.underlineColor": "accent", + "active": { + "background": "table", + "foreground": "fg", + "underlineColor": "accent" + }, "background": "bg", - "borderColor": "second", "foreground": "fg", "hoverBackground": "hl", "hoverColor": "hl", "hoverMaskColor": "hl", "inactive.maskColor": "bg", - "inactiveColoredFileBackground": "bg", + "inactiveColoredFileBackground": "bg70", "inactiveMaskColor": "bg", "inactiveUnderlineColor": "dis", "selectedBackground": "table", "selectedForeground": "fg", + "tabContentInsetsActionsLeft": "0,6,0,6", + "tabContentInsetsActionsNone": "0,6,0,6", + "tabContentInsetsActionsRight": "0,6,0,6", "tabInsets": "-10,10,-10,10", "underlineColor": "accent", "underlineHeight": 3, @@ -515,6 +588,10 @@ "Gray": "excl", "excluded": "excl" }, + "FindPopup": { + "scopesPanelInsets": "4,16,4,16", + "bottomPanelInsets": "4,10,4,10" + }, "FlameGraph": { "JVMBackground": "#89DDF7", "JVMFocusBackground": "#82AAFF", @@ -555,15 +632,34 @@ "selectionForeground.unfocused": "selFg" }, "GotItTooltip": { + "animationBackground": "notif", "background": "notif", "borderColor": "notif", + "Button": { + "contrastBackground": "cs", + "endBackground": "button", + "foreground": "fg", + "startBackground": "button" + }, + "codeBackground": "cs", + "codeBorderColor": "bg", + "codeForeground": "fg", "endBackground": "button", "endBorderColor": "button", "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "imageBorderColor": "notif", "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "shortcutBackground": "notif", + "shortcutBorderColor": "border", "shortcutForeground": "text", "startBackground": "button", - "startBorderColor": "button" + "startBorderColor": "button", + "stepForeground": "text" }, "Group": { "disabledSeparatorColor": "border", @@ -587,7 +683,10 @@ "borderColor": "border", "defaultTextBorderInsets": "16,16,16,16", "foreground": "fg", + "fontSizeDelta": 0, + "horizontalGap": 10, "infoForeground": "text", + "maxWidth": 250, "shortcutForeground": "text", "shortcutTextColor": "text", "smallTextBorderInsets": "8,12,8,12", @@ -601,18 +700,29 @@ "MqTag": "text", "Tag": "text" }, - "Hyperlink.linkColor": "accent", - "IconBadge": { - "infoBackground": "accent" + "Hyperlink": { + "linkColor": "accent" + }, + "IconBadge": { + "infoBackground": "accent", + "newUiBackground": "accent" + }, + "IdeStatusBar": { + "border": "4,4,4,4" + }, + "InformationHint": { + "borderColor": "border" }, - "IdeStatusBar.border": "4,4,4,4", - "InformationHint.borderColor": "border", "inactiveCaption": "second", "inactiveCaptionBorder": "bg", "inactiveCaptionText": "text", "info": "text", "infoPanelForeground": "text", "infoText": "text", + "InlineBanner": { + "hoverBackground": "accent70", + "pressedBackground": "accent70" + }, "InplaceRefactoringPopup": { "background": "bg", "borderColor": "bg" @@ -622,10 +732,13 @@ "foreground": "fg" }, "InternalFrame": { + "activeTitleBackground": "bg", "activeTitleForeground": "fg", "background": "bg", "inactiveTitleBackground": "bg", - "inactiveTitleForeground": "text" + "inactiveTitleForeground": "text", + "optionDialogBackground": "bg", + "paletteBackground": "bg" }, "Label": { "background": "bg", @@ -676,20 +789,22 @@ "hoverBackground": "hl", "leftRightInset": 8, "separatorColor": "border", - "separatorInset": 4 + "separatorInset": 8 }, "foreground": "fg", "hoverBackground": "hl", "hoverInactiveBackground": "table", - "Line.hoverBackground": "selBg", + "Line": { + "hoverBackground": "selBg" + }, "rowHeight": "28", "selectionBackground": "tree", "selectionForeground": "selFg", "selectionInactiveBackground": "table", "selectionInactiveForeground": "activeFg", "Tag": { - "background": "button", - "foreground": "fg" + "foreground": "fg", + "background": "button" } }, "LiveIndicator": { @@ -703,31 +818,60 @@ "background": "hc", "foreground": "fg", "selectionForeground": "activeFg", - "selectionBackground": "selBg" + "selectionBackground": "selBg", + "transparentSelectionBackground": "tree" }, "MainToolbar": { "background": "bg", "Button": { - "buttonInsets": "0,0,0,0" + "buttonInsets": "0,4,0,4", + "iconSize": 20, + "size": "28,28" }, "Dropdown": { "borderInsets": "6,12,6,12", "background": "bg", "foreground": "fg", "hoverBackground": "hl", - "pressedBackground": "table" + "pressedBackground": "table", + "transparentHoverBackground": "accent70" }, + "foreground": "fg", "hoverBackground": "hl", "Icon": { - "borderInsets": "10,10,10,10", + "borderInsets": "4,4,4,4", "background": "bg", "hoverBackground": "hl", + "insets": "5,4,5,4", "pressedBackground": "table" }, "inactiveBackground": "bg", "pressedBackground": "table", - "separatorColor": "border" + "separatorColor": "border", + "SplitDropdown": { + "borderInsets": "6,6,6,6" + } }, + "MainWindow": { + "FullScreeControl": { + "Background": "hl" + }, + "Tab": { + "background": "bg", + "borderColor": "bg", + "foreground": "fg", + "hoverBackground": "hl", + "hoverForeground": "fg", + "selectedBackground": "selBg", + "selectedForeground": "selFg", + "selectedInactiveBackground": "excl", + "separatorColor": "border" + } + }, + "ManagedIdeBadgeBorder": "border", + "ManagedIdeBadgeBackground": "bg", + "ManagedIdeBadgeBackgroundHover": "accent70", + "ManagedIdeMenuItemHover": "selBg", "material": { "background": "bg", "branchColor": "fg", @@ -785,8 +929,12 @@ "disabledBackground": "bg", "disabledForeground": "dis", "foreground": "fg", + "insets": "0,4,0,4", "selectionBackground": "selBg", - "selectionForeground": "activeFg" + "selectionForeground": "activeFg", + "Selection": { + "arc": 8 + } }, "MlModelBinding.Viewer.CodeEditor.background": "bg", "MnemonicIcon": { @@ -797,6 +945,9 @@ "NavBar": { "arrowColor": "fg", "borderColor": "bg", + "Breadcrumbs": { + "itemInsets": "4,2,4,2" + }, "selectedColor": "accent" }, "NewClass": { @@ -806,15 +957,21 @@ "SearchField": { "background": "cs" }, - "separatorWidth": 6 + "separatorWidth": 10 }, "NewPSD.warning": "accent", + "NewUiOnboarding": { + "Dialog": { + "background": "second" + } + }, "Notification": { "arc": 16, "Error.foreground": "accent", "Link.foreground": "accent", "background": "notif", - "borderColor": "notif", + "borderColor": "border", + "borderInsets": "4,4,4,4", "errorBackground": "notif", "errorBorderColor": "notif", "errorForeground": "accent", @@ -855,18 +1012,27 @@ "ToolWindowWarning": { "foreground": "fg", "background": "notifWarn" + }, + "WelcomeScreen": { + "separatorColor": "border" } }, "Notifications": { "background": "notif", - "borderColor": "notif" + "borderColor": "border" }, "NotificationsToolwindow": { - "Notification.hoverBackground": "tree", - "newNotification.background": "notif", - "newNotification.hoverBackground": "tree" + "Notification": { + "hoverBackground": "tree" + }, + "newNotification": { + "background": "notif", + "hoverBackground": "tree" + } + }, + "OnePixelDivider": { + "background": "border" }, - "OnePixelDivider.background": "border", "OptionPane": { "background": "bg", "foreground": "fg", @@ -882,7 +1048,6 @@ "focusedColor": "accent" }, "Panel": { - "background": "bg", "foreground": "fg", "mouseShortcutBackground": "bg" }, @@ -911,16 +1076,6 @@ "Plugins": { "background": "bg", "borderColor": "border", - "disabledForeground": "dis", - "eapTagBackground": "hl", - "hoverBackground": "hl", - "lightSelectionBackground": "table", - "paidTagBackground": "hl", - "selectionBackground": "selBg", - "selectionForeground": "selFg", - "tagBackground": "hl", - "tagForeground": "accent", - "trialTagBackground": "hl", "Button": { "installBackground": "button", "installBorderColor": "button", @@ -928,10 +1083,15 @@ "installFillForeground": "dis", "installFocusedBackground": "hl", "installForeground": "fg", - "updateBackground": "accent", + "updateBackground": "button", "updateBorderColor": "button", "updateForeground": "fg" }, + "disabledForeground": "dis", + "eapTagBackground": "hl", + "hoverBackground": "hl", + "lightSelectionBackground": "table", + "paidTagBackground": "hl", "ScreenshotPagination": { "CurrentImage.fillColor": "accent" }, @@ -943,10 +1103,20 @@ "background": "second", "foreground": "fg" }, + "selectionBackground": "selBg", + "selectionForeground": "selFg", + "suggestedLabelBackground": "button", + "tagBackground": "hl", + "tagForeground": "accent", + "trialTagBackground": "hl", "Tab": { - "active.background": "table", - "active.foreground": "activeFg", - "hover.background": "table", + "active": { + "background": "table", + "foreground": "activeFg" + }, + "hover": { + "background": "table" + }, "hoverBackground": "table", "selectedBackground": "table", "selectedForeground": "selFg" @@ -954,6 +1124,7 @@ }, "Popup": { "Advertiser": { + "borderColor": "border", "borderInsets": "6,20,6,20", "background": "bg", "borderColor": "bg", @@ -968,24 +1139,33 @@ "color": "cs", "inactiveColor": "bg" }, - "background": "notif", + "background": "bg", "borderColor": "cs", "borderWidth": 0, "inactiveBorderColor": "bg", "innerBorderColor": "second", "Header": { "activeBackground": "bg", + "activeForeground": "fg", "inactiveBackground": "cs", - "inactiveForeground": "text" + "inactiveForeground": "dis", + "insets": "12,10,12,10" }, + "mnemonicForeground": "text", "paintBorder": false, "preferences": { "background": "bg", "borderColor": "bg", "foreground": "fg" }, - "Selection.arc": 8, - "Selection.leftRightInset": 8, + "SearchField": { + "borderInsets": "4,4,4,4", + "inputInsets": "4,4,4,4" + }, + "Selection": { + "arc": 8, + "leftRightInset": 8 + }, "Separator": { "foreground": "fg", "color": "border" @@ -1003,8 +1183,14 @@ "background": "bg", "borderWidth": 1, "border": "8,8,8,8", + "borderInsets": "10,10,10,10", "borderCornerRadius": 8, + "borderCornerRadiusX": 8, + "borderCornerRadiusY": 8, + "borderWidth": 1, "foreground": "fg", + "leftBorderWidth": 8, + "rightBorderWidth": 8, "Selection": { "arc": 8, "innerInsets": "8,2,8,2" @@ -1013,12 +1199,35 @@ "translucentBackground": "bg" }, "PopupMenuSeparator": { + "borderCornerRadius": 8, "height": 10, "stripeWidth": 2, "stripeIndent": 5, "withToEdge": 4, "borderCornerRadius": 8 }, + "PresentationAssistant": { + "Bright": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + }, + "Pale": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + } + }, + "Profiler": { + "neutralLifecycleEvent": "second", + "trackBackground": "button" + }, "ProgressBar": { "background": "bg", "foreground": "accent", @@ -1062,29 +1271,106 @@ "selectionBackground": "selBg", "selectionForeground": "selFg" }, + "Review": { + "Avatar": { + "Border": { + "Status": { + "Accepted": "accent", + "NeedReview": "hl" + } + } + }, + "Branch": { + "Background": "button", + "Background.Hover": "hl" + }, + "ChatItem": { + "BubblePanel": { + "Border": "button" + }, + "Hover": "table" + }, + "Editor": { + "Line": { + "Status": { + "Marker": "accent" + } + } + }, + "MetaInfo": { + "StatusLine": { + "Gray": "excl", + "Blue": "accent" + } + }, + "State": { + "Background": "second", + "Foreground": "fg" + }, + "Timeline": { + "Thread": { + "Diff": { + "AnchorLine": "table" + } + } + } + }, "ReviewList": { "state.background": "second", "state.foreground": "fg" }, + "RunToolbar": { + "Debug": { + "activeBackground": "hl" + }, + "Profile": { + "activeBackground": "hl" + }, + "Run": { + "activeBackground": "hl" + } + }, "RunWidget": { "background": "button", - "Debug.activeBackground": "hl", - "foreground": "fg", - "hoverBackground": "table", - "pressedBackground": "hl", - "Profile.activeBackground": "hl", + "Debug": { + "activeBackground": "hl" + }, + "foreground": "selFg", + "hoverBackground": "hl", + "iconColor": "fg", + "leftPressedBackground": "table", + "leftHoverBackground": "hl", + "pressedBackground": "table", + "Profile": { + "activeBackground": "hl" + }, "runningBackground": "hl", - "runningForeground": "selFg", - "Run.activeBackground": "hl", + "Run": { + "activeBackground": "hl" + }, "Running": { "background": "hl", - "foreground": "selFg", "leftHoverBackground": "hl", - "leftPressedBackground": "hl" + "leftPressedBackground": "table" }, - "separatorColor": "border" + "runningBackground": "hl", + "runningForeground": "selFg", + "runIconColor": "accent", + "separatorColor": "border", + "stopBackground": "second", + "StopButton": { + "leftHoverBackground": "hl", + "leftPressedBackground": "second" + }, + "toolbarHeight": 30, + "toolbarBorderHeight": 4 + }, + "ScreenView": { + "borderColor": "border", + "defaultBorderColor": "border", + "hoveredBorderColor": "hl", + "selectedBorderColor": "selBg" }, - "ScreenView.borderColor": "border", "scrollbar": "bg", "ScrollBar": { "background": "bg", @@ -1186,9 +1472,9 @@ }, "SegmentedButton": { "focusedSelectedButtonColor": "hl", + "selectedEndBorderColor": "accent", "selectedButtonColor": "button", - "selectedStartBorderColor": "border", - "selectedEndBorderColor": "border" + "selectedStartBorderColor": "accent" }, "Separator": { "background": "second", @@ -1198,6 +1484,7 @@ "Settings": { "Spotlight.borderColor": "accent" }, + "shortcutForeground": "text", "SidePanel": { "background": "hc" }, @@ -1222,6 +1509,7 @@ "foreground": "fg" }, "Spinner": { + "arrowButtonInsets": "1,1,1,1", "background": "bg", "border": "4,4,4,4", "disabledBackground": "excl", @@ -1232,11 +1520,16 @@ "background": "bg", "highlight": "hc" }, - "SplitPaneDivider.draggingColor": "second", - "StateWidget.activeBackground": "button", + "SplitPaneDivider": { + "draggingColor": "second" + }, + "StateWidget": { + "activeBackground": "button" + }, "StatusBar": { - "background": "bg", + "background": "bg10", "Breadcrumbs": { + "chevronInset": 0, "floatingBackground": "tree", "floatingForeground": "fg", "floatingToolbarInsets": "8,12,8,12", @@ -1244,6 +1537,7 @@ "hoverBackground": "tree", "hoverForeground": "fg", "itemBackgroundInsets": "2,4,2,4", + "itemInsets": 0, "selectionBackground": "selBg", "selectionForeground": "activeFg", "selectionInactiveBackground": "button", @@ -1264,6 +1558,13 @@ "widgetInsets": "8,12,8,12" } }, + "StripeToolbar": { + "Button": { + "iconSize": 20, + "iconPadding": 8, + "size": "40,40" + } + }, "TabbedPane": { "background": "bg", "borderColor": "hc", @@ -1290,6 +1591,7 @@ "selectedTabPadInsets": "0,0,0,0", "shadow": "hc", "tabHeight": 32, + "tabAreaInsets": 0, "tabInsets": "5,10,5,10", "tabSelectionArc": 4, "tabSelectionHeight": 2, @@ -1385,7 +1687,7 @@ "TitlePane": { "Button": { "hoverBackground": "hl", - "preferredSize": "48,40" + "preferredSize": "42,42" }, "background": "hc", "inactiveBackground": "bg", @@ -1407,15 +1709,23 @@ "onBackground": "accent", "onForeground": "accent" }, - "Toolbar.Floating.background": "button", + "Toolbar": { + "horizontalToolbarInsets": "8,8,8,8", + "Floating": { + "background": "button", + "borderColor": "border" + }, + "verticalToolbarInsets": "8,8,8,8" + }, "ToolBar": { "background": "hc", "borderHandleColor": "text", "comboBoxButtonBackground": "button", "floatingForeground": "text", "foreground": "fg", - "verticalToolbarInsets": "6,6,6,6", - "horizontalToolbarInsets": "6,6,6,6" + "horizontalToolbarInsets": "6,6,6,6", + "separatorColor": "border", + "verticalToolbarInsets": "6,6,6,6" }, "ToolbarComboWidget": { "background": "button", @@ -1426,6 +1736,21 @@ "actions.settings.icon.background.color": "bg", "description.title.text.color": "fg" }, + "Tooltip": { + "Learning": { + "codeBorderColor": "cs", + "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "spanBackground": "accent70", + "spanForeground": "fg" + }, + "separatorColor": "border" + }, "ToolTip": { "arc": 6, "actions": { @@ -1445,6 +1770,7 @@ "Learning": { "background": "accent", "borderColor": "accent", + "codeForeground": "fg", "foreground": "fg", "spanBackground": "accent50", "spanForeground": "fg", @@ -1463,25 +1789,44 @@ "Button": { "hoverBackground": "table", "DragAndDrop": { - "stripeBackground": "cs", - "buttonDropBackground": "accent70" + "stripeBackground": "bg", + "buttonDropBackground": "selBg70", + "buttonDropBorderColor": "accent", + "buttonFloatingBackground": "button" }, "selectedBackground": "cs", "selectedForeground": "activeFg" }, + "DragAndDrop": { + "areaBackground": "accent50" + }, "header": { - "active.background": "second", + "active": { + "background": "second" + }, "background": "bg", - "border.background": "second", - "closeButton.background": "bg", - "tab.selected.active.background": "cs", - "tab.selected.background": "cs" + "border": { + "background": "border" + }, + "closeButton": { + "background": "bg" + }, + "tab": { + "selected": { + "active": { + "background": "cs" + }, + "background": "cs" + } + } }, "Header": { "height": 42, "background": "second", - "borderColor": "second", - "inactiveBackground": "bg" + "borderColor": "border", + "inactiveBackground": "bg", + "labelLeftRightInsets": "0,12,0,16", + "toolbarLeftRightInsets": "0,12,0,8" }, "HeaderCloseButton": { "background": "bg" @@ -1506,6 +1851,12 @@ "inactive": { "Header.background": "bg", "HeaderTab.background": "cs" + }, + "Stripe": { + "DragAndDrop": { + "separatorColor": "accent50" + }, + "separatorColor": "table" } }, "Tree": { @@ -1522,13 +1873,17 @@ "selectionForeground": "selFg", "selectionInactiveBackground": "tree", "selectionInactiveForeground": "selFg", - "textBackground": "hc" + "textBackground": "hc", + "leftChildIndent": 10, + "rightChildIndent": 5 }, - "Tree.leftChildIndent": 10, - "Tree.rightChildIndent": 5, "UIDesigner": { - "Activity.borderColor": "border", - "Canvas.background": "cs", + "Activity": { + "borderColor": "border" + }, + "Canvas": { + "background": "cs" + }, "ColorPicker": { "background": "second", "foreground": "fg" @@ -1543,49 +1898,119 @@ "borderColor": "border", "hoverBorderColor": "hl" }, - "Label.foreground": "text", - "highStroke.foreground": "fg", + "Label": { + "foreground": "text" + }, + "highStroke": { + "foreground": "fg" + }, "motion": { "AddConstraintColor": "accent", "AddConstraintPlus": "accent", - "CSPanel.SelectedBackground": "tree", - "CSPanel.SelectedFocusBackground": "selBg", - "Component.foreground": "fg", - "ConstraintSet.background": "second", - "ConstraintSetText.foreground": "text", - "CursorTextColor.foreground": "fg", - "HoverColor.disabledBackground": "dis", - "Key.selectedForeground": "accent", - "Notification.background": "notif", + "Axis": { + "lineSeparatorColor": "fg" + }, + "CSPanel": { + "SelectedBackground": "tree", + "SelectedFocusBackground": "selBg" + }, + "Component": { + "foreground": "fg" + }, + "ConstraintSet": { + "background": "second" + }, + "ConstraintSetText": { + "foreground": "text" + }, + "CursorTextColor": { + "foreground": "fg" + }, + "HoverColor": { + "disabledBackground": "dis" + }, + "Key": { + "selectedForeground": "accent" + }, + "Notification": { + "background": "notif" + }, "PositionMarkColor": "accent", - "PrimaryPanel.background": "cs", - "SecondaryPanel.background": "bg", - "SecondaryPanel.header.background": "cs", - "SecondaryPanel.header.foreground": "text", - "TimeCursor.End.selectedForeground": "accent", - "TimeCursor.Start.selectedForeground": "accent", - "TimeCursor.selectedForeground": "accent", + "PrimaryPanel": { + "background": "cs" + }, + "SecondaryPanel": { + "background": "bg", + "header": { + "background": "cs", + "foreground": "text" + } + }, + "TimeCursor": { + "End": { + "selectedForeground": "accent" + }, + "selectedForeground": "accent", + "Start": { + "selectedForeground": "accent" + } + }, "borderColor": "border", - "cs_FocusText.infoForeground": "text", - "graphLine.lineSeparatorColor": "accent", - "motionGraph.background": "bg", - "ourAvg.background": "second", - "ourCS.background": "second", - "ourCS_Border.borderColor": "border", - "ourCS_SelectedBackground.selectionInactiveBackground": "table", - "ourCS_SelectedBorder.pressedBorderColor": "hl", - "ourCS_SelectedFocusBackground.selectionForeground": "selFg", - "ourCS_SelectedFocusBorder.focusedBorderColor": "accent", - "ourCS_TextColor.foreground": "text", - "ourML_BarColor.separatorColor": "border", - "timeLine.disabledBorderColor": "border" + "cs_FocusText": { + "infoForeground": "text" + }, + "graphLine": { + "lineSeparatorColor": "accent" + }, + "Grid": { + "lineSeparatorColor": "border" + }, + "label": { + "background": "second", + "textColor": "text" + }, + "motionGraph": { + "background": "bg" + }, + "ourAvg": { + "background": "second" + }, + "ourCS": { + "background": "second" + }, + "ourCS_Border": { + "borderColor": "border" + }, + "ourCS_SelectedBackground": { + "selectionInactiveBackground": "table" + }, + "ourCS_SelectedBorder": { + "pressedBorderColor": "hl" + }, + "ourCS_SelectedFocusBackground": { + "selectionForeground": "selFg" + }, + "ourCS_SelectedFocusBorder": { + "focusedBorderColor": "accent" + }, + "ourCS_TextColor": { + "foreground": "text" + }, + "ourML_BarColor": { + "separatorColor": "border" + }, + "timeLine": { + "disabledBorderColor": "border" + } }, "PackageDetails": { "border": "accent", "infoBanner": "accent" }, "PackageSearch": { - "PackagesList.rowHeight": 28, + "PackagesList": { + "rowHeight": 28 + }, "PackageTag": { "background": "excl", "foreground": "fg", @@ -1617,7 +2042,9 @@ "lines3d": "accent", "secondaryGraphLines": "border" }, - "percent.foreground": "fg", + "percent": { + "foreground": "fg" + }, "Placeholder": { "background": "bg", "borderColor": "border", @@ -1634,9 +2061,11 @@ "warningBorderColor": "notif" }, "VersionControl": { - "FileHistory.Commit": { - "otherBranchBackground": "excl", - "selectedBranchBackground": "bg" + "FileHistory": { + "Commit": { + "otherBranchBackground": "excl", + "selectedBranchBackground": "bg" + } }, "GitCommits": { "graphColor": "hl" @@ -1660,8 +2089,13 @@ "Commit": { "currentBranchBackground": "cs", "hoveredBackground": "tree", + "selectionInactiveForeground": "fg", + "Reference": { + "foreground": "text" + }, "rowHeight": 28, - "unmatchedForeground": "text" + "unmatchedForeground": "text", + "verticalPadding": 8 } }, "MarkerPopup": { @@ -1688,30 +2122,39 @@ "foreground": "fg" }, "WelcomeScreen": { - "AssociatedComponent.background": "bg", - "Details.background": "bg", - "List": { - "background": "hc", - "selectionBackground": "selBg", - "selectionInactiveBackground": "hl" + "AssociatedComponent": { + "background": "bg" }, - "SidePanel.background": "second", "background": "bg", "borderColor": "bg", "captionBackground": "cs", "captionForeground": "fg", + "Details": { + "background": "bg" + }, "footerBackground": "cs", "footerForeground": "fg", "groupIconBorderColor": "button", "headerBackground": "bg", "headerForeground": "fg", - "separatorColor": "border", + "List": { + "background": "hc", + "selectionBackground": "selBg", + "selectionInactiveBackground": "hl" + }, "Projects": { - "actions.background": "cs", - "actions.selectionBackground": "hl", + "actions": { + "background": "cs", + "selectionBackground": "hl", + "selectionBorderColor": "accent" + }, "background": "second", "selectionBackground": "selBg", "selectionInactiveBackground": "selBg" + }, + "separatorColor": "border", + "SidePanel": { + "background": "second" } }, "Window.border": "border", diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Atom One Dark.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Atom One Dark.theme.json index 6993b7e2..06439867 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Atom One Dark.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Atom One Dark.theme.json @@ -16,17 +16,17 @@ "second": "#2F333D", "dis": "#6B727D", "accent": "#2979ff", - "accent2": "#2979ff2", + "acc2": "#e5c17c", "accent50": "#2979ff50", "accent70": "#2979ff70", "cs": "#21252B", - "button": "#3A3F4B", + "button": "#353b45", "table": "#383E49", "tree": "#303540", - "hl": "#383D48", + "hl": "#3E4451", "notif": "#282C34", "hc": "#282C34", - "shadow": "undefined", + "shadow": "#00000020", "white": "#D19A66", "blue": "#61AEEF", "red": "#e06c75", @@ -71,19 +71,25 @@ "hoverBorderColor": "accent50", "hoverSeparatorColor": "button", "pressedBackground": "accent50", - "pressedBorderColor": "accent50" + "pressedBorderColor": "accent50", + "separatorColor": "border" }, "ActionsList": { "icon.gap": 12, - "mnemonic.icon.gap": 12 + "mnemonic.icon.gap": 12, + "mnemonicInsets": "0,8,0,8", + "mnemonicsBorderInsets": "0,8,0,8", + "mnemonic.insets": "0,8,0,8" }, "ActionToolbar": { "background": "hc" }, - "AppInspector.GraphNode": { - "background": "second", - "borderColor": "border", - "focusedBorderColor": "accent" + "AppInspector": { + "GraphNode": { + "background": "second", + "borderColor": "border", + "focusedBorderColor": "accent" + } }, "AssignedMnemonic": { "background": "hl", @@ -99,13 +105,26 @@ "borderColor": "button", "foreground": "fg" }, - "BigSpinner.background": "bg", + "Banner": { + "foreground": "fg" + }, + "BigSpinner": { + "background": "bg" + }, "Bookmark": { "iconBackground": "accent", "Mnemonic": { "iconBackground": "hl", "iconBorderColor": "hl", "iconForeground": "fg" + }, + "MnemonicAssigned": { + "background": "table", + "foreground": "fg" + }, + "MnemonicCurrent": { + "background": "selBg", + "foreground": "selFg" } }, "BookmarkMnemonicAssigned": { @@ -128,13 +147,18 @@ "borderColor": "hl", "foreground": "fg" }, - "BookmarkIcon.background": "accent", - "Borders.ContrastBorderColor": "bg", - "Borders.color": "border", - "Breakpoint.iconHoverAlpha": 0.35, + "BookmarkIcon": { + "background": "accent" + }, + "Borders": { + "ContrastBorderColor": "bg", + "color": "border" + }, + "Breakpoint": { + "iconHoverAlpha": 0.35 + }, "Button": { "arc": 8, - "background": "bg", "darcula": { "borderColor": "button", "defaultBorderColor": "button", @@ -175,6 +199,7 @@ "focusedBorderColor": "accent", "foreground": "text", "highlight": "selFg", + "minimumSize": 72, "mt.background": "button", "mt.color1": "button", "mt.color2": "button", @@ -185,6 +210,12 @@ "select": "button", "shadowColor": "shadow", "shadowWidth": 0, + "Split": { + "default": { + "iconColor": "fg", + "separatorColor": "accent" + } + }, "startBackground": "table", "startBorderColor": "button", "ToolWindow": { @@ -195,11 +226,18 @@ "Tooltip.background": "notif", "Tooltip.borderColor": "border" }, + "CellEditor": { + "border": { + "width": 2 + } + }, "CheckBox": { "background": "bg", "background.selected": "accent", "borderColor": "bg", "borderColor.selected": "accent", + "border.width": 3, + "borderInsets": "4,4,4,4", "checkSignColor": "bg", "checkSignColor.selected": "bg", "checkSignColorDisabled": "bg", @@ -297,7 +335,9 @@ "foreground": "fg", "swatchesDefaultRecentColor": "fg" }, - "ComboBoxButton.background": "button", + "ComboBoxButton": { + "background": "button" + }, "ComboBox": { "ArrowButton": { "background": "button", @@ -327,14 +367,16 @@ "selectionBackground": "table", "selectionForeground": "activeFg" }, - "ComboPopup.border": "1,1,1,1,#2979ff", + "ComboPopup": { + "border": "1,1,1,1,#2979ff" + }, "CompletionPopup": { "Advertiser": { - "background": "bg", - "foreground": "fg", + "background": "second", + "foreground": "text", "borderInsets": "8,12,8,12" }, - "background": "second", + "background": "button", "foreground": "fg", "grayForeground": "text", "grayedForeground": "text", @@ -351,13 +393,20 @@ "selectionInactiveBackground": "hl", "selectionInactiveForeground": "text", "selectionInactiveInfoForeground": "text", - "selectionInfoForeground": "selFg" + "selectionInfoForeground": "selFg", + "selectionInnerInsets": "4,4,4,4" }, "ComplexPopup": { - "Header.background": "notif" + "Header": { + "background": "bg", + "insets": "12,12,12,12" + }, + "TextField": { + "inputInsets": "8,4,8,4" + } }, "Component": { - "arc": 4, + "arc": 6, "focusWidth": 2, "borderColor": "hl", "disabledBorderColor": "dis", @@ -440,7 +489,7 @@ "southPanelDivider": "bg" }, "DragAndDrop": { - "areaBackground": "tree", + "areaBackground": "selBg70", "areaBorderColor": "bg", "areaForeground": "fg", "backgroundBorderColor": "bg", @@ -453,18 +502,37 @@ "Editor": { "background": "hc", "foreground": "fg", + "Notification": { + "borderInsets": "10,12,10,12", + "WithoutStatus.borderInsets": "10,12,10,12" + }, + "ReplaceToolbar": { + "borderInsets": "4,12,4,12" + }, "shortcutForeground": "text", "SearchField": { "background": "cs", "borderInsets": "8,12,8,12" }, + "SearchReplaceModePanel": { + "borderInsets": "4,12,4,12" + }, + "SearchToolbar": { + "borderInsets": "4,12,4,12" + }, "Toolbar": { "borderColor": "border" + }, + "ToolTip": { + "border": "border", + "foreground": "fg", + "iconHoverBackground": "table", + "selectionBackground": "selBg" } }, "EditorGroupsTabs": { "background": "bg", - "borderColor": "second", + "borderColor": "border", "hoverBackground": "hl", "hoverColor": "hl", "inactiveUnderlineColor": "accent", @@ -474,6 +542,7 @@ }, "EditorPane": { "background": "hc", + "borderColor": "border", "caretForeground": "accent", "foreground": "fg", "inactiveBackground": "bg", @@ -483,21 +552,25 @@ "splitBorder": "border" }, "EditorTabs": { - "active.background": "table", - "active.foreground": "fg", - "active.underlineColor": "accent", + "active": { + "background": "table", + "foreground": "fg", + "underlineColor": "accent" + }, "background": "bg", - "borderColor": "second", "foreground": "fg", "hoverBackground": "hl", "hoverColor": "hl", "hoverMaskColor": "hl", "inactive.maskColor": "bg", - "inactiveColoredFileBackground": "bg", + "inactiveColoredFileBackground": "bg70", "inactiveMaskColor": "bg", "inactiveUnderlineColor": "dis", "selectedBackground": "table", "selectedForeground": "fg", + "tabContentInsetsActionsLeft": "0,6,0,6", + "tabContentInsetsActionsNone": "0,6,0,6", + "tabContentInsetsActionsRight": "0,6,0,6", "tabInsets": "-10,10,-10,10", "underlineColor": "accent", "underlineHeight": 3, @@ -515,6 +588,10 @@ "Gray": "excl", "excluded": "excl" }, + "FindPopup": { + "scopesPanelInsets": "4,16,4,16", + "bottomPanelInsets": "4,10,4,10" + }, "FlameGraph": { "JVMBackground": "#89DDF7", "JVMFocusBackground": "#82AAFF", @@ -555,15 +632,34 @@ "selectionForeground.unfocused": "selFg" }, "GotItTooltip": { + "animationBackground": "notif", "background": "notif", "borderColor": "notif", + "Button": { + "contrastBackground": "cs", + "endBackground": "button", + "foreground": "fg", + "startBackground": "button" + }, + "codeBackground": "cs", + "codeBorderColor": "bg", + "codeForeground": "fg", "endBackground": "button", "endBorderColor": "button", "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "imageBorderColor": "notif", "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "shortcutBackground": "notif", + "shortcutBorderColor": "border", "shortcutForeground": "text", "startBackground": "button", - "startBorderColor": "button" + "startBorderColor": "button", + "stepForeground": "text" }, "Group": { "disabledSeparatorColor": "border", @@ -587,7 +683,10 @@ "borderColor": "border", "defaultTextBorderInsets": "16,16,16,16", "foreground": "fg", + "fontSizeDelta": 0, + "horizontalGap": 10, "infoForeground": "text", + "maxWidth": 250, "shortcutForeground": "text", "shortcutTextColor": "text", "smallTextBorderInsets": "8,12,8,12", @@ -601,18 +700,29 @@ "MqTag": "text", "Tag": "text" }, - "Hyperlink.linkColor": "accent", - "IconBadge": { - "infoBackground": "accent" + "Hyperlink": { + "linkColor": "accent" + }, + "IconBadge": { + "infoBackground": "accent", + "newUiBackground": "accent" + }, + "IdeStatusBar": { + "border": "4,4,4,4" + }, + "InformationHint": { + "borderColor": "border" }, - "IdeStatusBar.border": "4,4,4,4", - "InformationHint.borderColor": "border", "inactiveCaption": "second", "inactiveCaptionBorder": "bg", "inactiveCaptionText": "text", "info": "text", "infoPanelForeground": "text", "infoText": "text", + "InlineBanner": { + "hoverBackground": "accent70", + "pressedBackground": "accent70" + }, "InplaceRefactoringPopup": { "background": "bg", "borderColor": "bg" @@ -622,10 +732,13 @@ "foreground": "fg" }, "InternalFrame": { + "activeTitleBackground": "bg", "activeTitleForeground": "fg", "background": "bg", "inactiveTitleBackground": "bg", - "inactiveTitleForeground": "text" + "inactiveTitleForeground": "text", + "optionDialogBackground": "bg", + "paletteBackground": "bg" }, "Label": { "background": "bg", @@ -676,20 +789,22 @@ "hoverBackground": "hl", "leftRightInset": 8, "separatorColor": "border", - "separatorInset": 4 + "separatorInset": 8 }, "foreground": "fg", "hoverBackground": "hl", "hoverInactiveBackground": "table", - "Line.hoverBackground": "selBg", + "Line": { + "hoverBackground": "selBg" + }, "rowHeight": "28", "selectionBackground": "tree", "selectionForeground": "selFg", "selectionInactiveBackground": "table", "selectionInactiveForeground": "activeFg", "Tag": { - "background": "button", - "foreground": "fg" + "foreground": "fg", + "background": "button" } }, "LiveIndicator": { @@ -703,31 +818,60 @@ "background": "hc", "foreground": "fg", "selectionForeground": "activeFg", - "selectionBackground": "selBg" + "selectionBackground": "selBg", + "transparentSelectionBackground": "tree" }, "MainToolbar": { "background": "bg", "Button": { - "buttonInsets": "0,0,0,0" + "buttonInsets": "0,4,0,4", + "iconSize": 20, + "size": "28,28" }, "Dropdown": { "borderInsets": "6,12,6,12", "background": "bg", "foreground": "fg", "hoverBackground": "hl", - "pressedBackground": "table" + "pressedBackground": "table", + "transparentHoverBackground": "accent70" }, + "foreground": "fg", "hoverBackground": "hl", "Icon": { - "borderInsets": "10,10,10,10", + "borderInsets": "4,4,4,4", "background": "bg", "hoverBackground": "hl", + "insets": "5,4,5,4", "pressedBackground": "table" }, "inactiveBackground": "bg", "pressedBackground": "table", - "separatorColor": "border" + "separatorColor": "border", + "SplitDropdown": { + "borderInsets": "6,6,6,6" + } }, + "MainWindow": { + "FullScreeControl": { + "Background": "hl" + }, + "Tab": { + "background": "bg", + "borderColor": "bg", + "foreground": "fg", + "hoverBackground": "hl", + "hoverForeground": "fg", + "selectedBackground": "selBg", + "selectedForeground": "selFg", + "selectedInactiveBackground": "excl", + "separatorColor": "border" + } + }, + "ManagedIdeBadgeBorder": "border", + "ManagedIdeBadgeBackground": "bg", + "ManagedIdeBadgeBackgroundHover": "accent70", + "ManagedIdeMenuItemHover": "selBg", "material": { "background": "bg", "branchColor": "fg", @@ -785,8 +929,12 @@ "disabledBackground": "bg", "disabledForeground": "dis", "foreground": "fg", + "insets": "0,4,0,4", "selectionBackground": "selBg", - "selectionForeground": "activeFg" + "selectionForeground": "activeFg", + "Selection": { + "arc": 8 + } }, "MlModelBinding.Viewer.CodeEditor.background": "bg", "MnemonicIcon": { @@ -797,6 +945,9 @@ "NavBar": { "arrowColor": "fg", "borderColor": "bg", + "Breadcrumbs": { + "itemInsets": "4,2,4,2" + }, "selectedColor": "accent" }, "NewClass": { @@ -806,15 +957,21 @@ "SearchField": { "background": "cs" }, - "separatorWidth": 6 + "separatorWidth": 10 }, "NewPSD.warning": "accent", + "NewUiOnboarding": { + "Dialog": { + "background": "second" + } + }, "Notification": { "arc": 16, "Error.foreground": "accent", "Link.foreground": "accent", "background": "notif", - "borderColor": "notif", + "borderColor": "border", + "borderInsets": "4,4,4,4", "errorBackground": "notif", "errorBorderColor": "notif", "errorForeground": "accent", @@ -855,18 +1012,27 @@ "ToolWindowWarning": { "foreground": "fg", "background": "notifWarn" + }, + "WelcomeScreen": { + "separatorColor": "border" } }, "Notifications": { "background": "notif", - "borderColor": "notif" + "borderColor": "border" }, "NotificationsToolwindow": { - "Notification.hoverBackground": "tree", - "newNotification.background": "notif", - "newNotification.hoverBackground": "tree" + "Notification": { + "hoverBackground": "tree" + }, + "newNotification": { + "background": "notif", + "hoverBackground": "tree" + } + }, + "OnePixelDivider": { + "background": "border" }, - "OnePixelDivider.background": "border", "OptionPane": { "background": "bg", "foreground": "fg", @@ -882,7 +1048,6 @@ "focusedColor": "accent" }, "Panel": { - "background": "bg", "foreground": "fg", "mouseShortcutBackground": "bg" }, @@ -911,16 +1076,6 @@ "Plugins": { "background": "bg", "borderColor": "border", - "disabledForeground": "dis", - "eapTagBackground": "hl", - "hoverBackground": "hl", - "lightSelectionBackground": "table", - "paidTagBackground": "hl", - "selectionBackground": "selBg", - "selectionForeground": "selFg", - "tagBackground": "hl", - "tagForeground": "accent", - "trialTagBackground": "hl", "Button": { "installBackground": "button", "installBorderColor": "button", @@ -928,10 +1083,15 @@ "installFillForeground": "dis", "installFocusedBackground": "hl", "installForeground": "fg", - "updateBackground": "accent", + "updateBackground": "button", "updateBorderColor": "button", "updateForeground": "fg" }, + "disabledForeground": "dis", + "eapTagBackground": "hl", + "hoverBackground": "hl", + "lightSelectionBackground": "table", + "paidTagBackground": "hl", "ScreenshotPagination": { "CurrentImage.fillColor": "accent" }, @@ -943,10 +1103,20 @@ "background": "second", "foreground": "fg" }, + "selectionBackground": "selBg", + "selectionForeground": "selFg", + "suggestedLabelBackground": "button", + "tagBackground": "hl", + "tagForeground": "accent", + "trialTagBackground": "hl", "Tab": { - "active.background": "table", - "active.foreground": "activeFg", - "hover.background": "table", + "active": { + "background": "table", + "foreground": "activeFg" + }, + "hover": { + "background": "table" + }, "hoverBackground": "table", "selectedBackground": "table", "selectedForeground": "selFg" @@ -954,6 +1124,7 @@ }, "Popup": { "Advertiser": { + "borderColor": "border", "borderInsets": "6,20,6,20", "background": "bg", "borderColor": "bg", @@ -968,24 +1139,33 @@ "color": "cs", "inactiveColor": "bg" }, - "background": "notif", + "background": "bg", "borderColor": "cs", "borderWidth": 0, "inactiveBorderColor": "bg", "innerBorderColor": "second", "Header": { "activeBackground": "bg", + "activeForeground": "fg", "inactiveBackground": "cs", - "inactiveForeground": "text" + "inactiveForeground": "dis", + "insets": "12,10,12,10" }, + "mnemonicForeground": "text", "paintBorder": false, "preferences": { "background": "bg", "borderColor": "bg", "foreground": "fg" }, - "Selection.arc": 8, - "Selection.leftRightInset": 8, + "SearchField": { + "borderInsets": "4,4,4,4", + "inputInsets": "4,4,4,4" + }, + "Selection": { + "arc": 8, + "leftRightInset": 8 + }, "Separator": { "foreground": "fg", "color": "border" @@ -1003,8 +1183,14 @@ "background": "bg", "borderWidth": 1, "border": "8,8,8,8", + "borderInsets": "10,10,10,10", "borderCornerRadius": 8, + "borderCornerRadiusX": 8, + "borderCornerRadiusY": 8, + "borderWidth": 1, "foreground": "fg", + "leftBorderWidth": 8, + "rightBorderWidth": 8, "Selection": { "arc": 8, "innerInsets": "8,2,8,2" @@ -1013,12 +1199,35 @@ "translucentBackground": "bg" }, "PopupMenuSeparator": { + "borderCornerRadius": 8, "height": 10, "stripeWidth": 2, "stripeIndent": 5, "withToEdge": 4, "borderCornerRadius": 8 }, + "PresentationAssistant": { + "Bright": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + }, + "Pale": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + } + }, + "Profiler": { + "neutralLifecycleEvent": "second", + "trackBackground": "button" + }, "ProgressBar": { "background": "bg", "foreground": "accent", @@ -1062,29 +1271,106 @@ "selectionBackground": "selBg", "selectionForeground": "selFg" }, + "Review": { + "Avatar": { + "Border": { + "Status": { + "Accepted": "accent", + "NeedReview": "hl" + } + } + }, + "Branch": { + "Background": "button", + "Background.Hover": "hl" + }, + "ChatItem": { + "BubblePanel": { + "Border": "button" + }, + "Hover": "table" + }, + "Editor": { + "Line": { + "Status": { + "Marker": "accent" + } + } + }, + "MetaInfo": { + "StatusLine": { + "Gray": "excl", + "Blue": "accent" + } + }, + "State": { + "Background": "second", + "Foreground": "fg" + }, + "Timeline": { + "Thread": { + "Diff": { + "AnchorLine": "table" + } + } + } + }, "ReviewList": { "state.background": "second", "state.foreground": "fg" }, + "RunToolbar": { + "Debug": { + "activeBackground": "hl" + }, + "Profile": { + "activeBackground": "hl" + }, + "Run": { + "activeBackground": "hl" + } + }, "RunWidget": { "background": "button", - "Debug.activeBackground": "hl", - "foreground": "fg", - "hoverBackground": "table", - "pressedBackground": "hl", - "Profile.activeBackground": "hl", + "Debug": { + "activeBackground": "hl" + }, + "foreground": "selFg", + "hoverBackground": "hl", + "iconColor": "fg", + "leftPressedBackground": "table", + "leftHoverBackground": "hl", + "pressedBackground": "table", + "Profile": { + "activeBackground": "hl" + }, "runningBackground": "hl", - "runningForeground": "selFg", - "Run.activeBackground": "hl", + "Run": { + "activeBackground": "hl" + }, "Running": { "background": "hl", - "foreground": "selFg", "leftHoverBackground": "hl", - "leftPressedBackground": "hl" + "leftPressedBackground": "table" }, - "separatorColor": "border" + "runningBackground": "hl", + "runningForeground": "selFg", + "runIconColor": "accent", + "separatorColor": "border", + "stopBackground": "second", + "StopButton": { + "leftHoverBackground": "hl", + "leftPressedBackground": "second" + }, + "toolbarHeight": 30, + "toolbarBorderHeight": 4 + }, + "ScreenView": { + "borderColor": "border", + "defaultBorderColor": "border", + "hoveredBorderColor": "hl", + "selectedBorderColor": "selBg" }, - "ScreenView.borderColor": "border", "scrollbar": "bg", "ScrollBar": { "background": "bg", @@ -1186,9 +1472,9 @@ }, "SegmentedButton": { "focusedSelectedButtonColor": "hl", + "selectedEndBorderColor": "accent", "selectedButtonColor": "button", - "selectedStartBorderColor": "border", - "selectedEndBorderColor": "border" + "selectedStartBorderColor": "accent" }, "Separator": { "background": "second", @@ -1198,6 +1484,7 @@ "Settings": { "Spotlight.borderColor": "accent" }, + "shortcutForeground": "text", "SidePanel": { "background": "hc" }, @@ -1222,6 +1509,7 @@ "foreground": "fg" }, "Spinner": { + "arrowButtonInsets": "1,1,1,1", "background": "bg", "border": "4,4,4,4", "disabledBackground": "excl", @@ -1232,11 +1520,16 @@ "background": "bg", "highlight": "hc" }, - "SplitPaneDivider.draggingColor": "second", - "StateWidget.activeBackground": "button", + "SplitPaneDivider": { + "draggingColor": "second" + }, + "StateWidget": { + "activeBackground": "button" + }, "StatusBar": { - "background": "bg", + "background": "bg10", "Breadcrumbs": { + "chevronInset": 0, "floatingBackground": "tree", "floatingForeground": "fg", "floatingToolbarInsets": "8,12,8,12", @@ -1244,6 +1537,7 @@ "hoverBackground": "tree", "hoverForeground": "fg", "itemBackgroundInsets": "2,4,2,4", + "itemInsets": 0, "selectionBackground": "selBg", "selectionForeground": "activeFg", "selectionInactiveBackground": "button", @@ -1264,6 +1558,13 @@ "widgetInsets": "8,12,8,12" } }, + "StripeToolbar": { + "Button": { + "iconSize": 20, + "iconPadding": 8, + "size": "40,40" + } + }, "TabbedPane": { "background": "bg", "borderColor": "hc", @@ -1290,6 +1591,7 @@ "selectedTabPadInsets": "0,0,0,0", "shadow": "hc", "tabHeight": 32, + "tabAreaInsets": 0, "tabInsets": "5,10,5,10", "tabSelectionArc": 4, "tabSelectionHeight": 2, @@ -1385,7 +1687,7 @@ "TitlePane": { "Button": { "hoverBackground": "hl", - "preferredSize": "48,40" + "preferredSize": "42,42" }, "background": "hc", "inactiveBackground": "bg", @@ -1407,15 +1709,23 @@ "onBackground": "accent", "onForeground": "accent" }, - "Toolbar.Floating.background": "button", + "Toolbar": { + "horizontalToolbarInsets": "8,8,8,8", + "Floating": { + "background": "button", + "borderColor": "border" + }, + "verticalToolbarInsets": "8,8,8,8" + }, "ToolBar": { "background": "hc", "borderHandleColor": "text", "comboBoxButtonBackground": "button", "floatingForeground": "text", "foreground": "fg", - "verticalToolbarInsets": "6,6,6,6", - "horizontalToolbarInsets": "6,6,6,6" + "horizontalToolbarInsets": "6,6,6,6", + "separatorColor": "border", + "verticalToolbarInsets": "6,6,6,6" }, "ToolbarComboWidget": { "background": "button", @@ -1426,6 +1736,21 @@ "actions.settings.icon.background.color": "bg", "description.title.text.color": "fg" }, + "Tooltip": { + "Learning": { + "codeBorderColor": "cs", + "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "spanBackground": "accent70", + "spanForeground": "fg" + }, + "separatorColor": "border" + }, "ToolTip": { "arc": 6, "actions": { @@ -1445,6 +1770,7 @@ "Learning": { "background": "accent", "borderColor": "accent", + "codeForeground": "fg", "foreground": "fg", "spanBackground": "accent50", "spanForeground": "fg", @@ -1463,25 +1789,44 @@ "Button": { "hoverBackground": "table", "DragAndDrop": { - "stripeBackground": "cs", - "buttonDropBackground": "accent70" + "stripeBackground": "bg", + "buttonDropBackground": "selBg70", + "buttonDropBorderColor": "accent", + "buttonFloatingBackground": "button" }, "selectedBackground": "cs", "selectedForeground": "activeFg" }, + "DragAndDrop": { + "areaBackground": "accent50" + }, "header": { - "active.background": "second", + "active": { + "background": "second" + }, "background": "bg", - "border.background": "second", - "closeButton.background": "bg", - "tab.selected.active.background": "cs", - "tab.selected.background": "cs" + "border": { + "background": "border" + }, + "closeButton": { + "background": "bg" + }, + "tab": { + "selected": { + "active": { + "background": "cs" + }, + "background": "cs" + } + } }, "Header": { "height": 42, "background": "second", - "borderColor": "second", - "inactiveBackground": "bg" + "borderColor": "border", + "inactiveBackground": "bg", + "labelLeftRightInsets": "0,12,0,16", + "toolbarLeftRightInsets": "0,12,0,8" }, "HeaderCloseButton": { "background": "bg" @@ -1506,6 +1851,12 @@ "inactive": { "Header.background": "bg", "HeaderTab.background": "cs" + }, + "Stripe": { + "DragAndDrop": { + "separatorColor": "accent50" + }, + "separatorColor": "table" } }, "Tree": { @@ -1522,13 +1873,17 @@ "selectionForeground": "selFg", "selectionInactiveBackground": "tree", "selectionInactiveForeground": "selFg", - "textBackground": "hc" + "textBackground": "hc", + "leftChildIndent": 10, + "rightChildIndent": 5 }, - "Tree.leftChildIndent": 10, - "Tree.rightChildIndent": 5, "UIDesigner": { - "Activity.borderColor": "border", - "Canvas.background": "cs", + "Activity": { + "borderColor": "border" + }, + "Canvas": { + "background": "cs" + }, "ColorPicker": { "background": "second", "foreground": "fg" @@ -1543,49 +1898,119 @@ "borderColor": "border", "hoverBorderColor": "hl" }, - "Label.foreground": "text", - "highStroke.foreground": "fg", + "Label": { + "foreground": "text" + }, + "highStroke": { + "foreground": "fg" + }, "motion": { "AddConstraintColor": "accent", "AddConstraintPlus": "accent", - "CSPanel.SelectedBackground": "tree", - "CSPanel.SelectedFocusBackground": "selBg", - "Component.foreground": "fg", - "ConstraintSet.background": "second", - "ConstraintSetText.foreground": "text", - "CursorTextColor.foreground": "fg", - "HoverColor.disabledBackground": "dis", - "Key.selectedForeground": "accent", - "Notification.background": "notif", + "Axis": { + "lineSeparatorColor": "fg" + }, + "CSPanel": { + "SelectedBackground": "tree", + "SelectedFocusBackground": "selBg" + }, + "Component": { + "foreground": "fg" + }, + "ConstraintSet": { + "background": "second" + }, + "ConstraintSetText": { + "foreground": "text" + }, + "CursorTextColor": { + "foreground": "fg" + }, + "HoverColor": { + "disabledBackground": "dis" + }, + "Key": { + "selectedForeground": "accent" + }, + "Notification": { + "background": "notif" + }, "PositionMarkColor": "accent", - "PrimaryPanel.background": "cs", - "SecondaryPanel.background": "bg", - "SecondaryPanel.header.background": "cs", - "SecondaryPanel.header.foreground": "text", - "TimeCursor.End.selectedForeground": "accent", - "TimeCursor.Start.selectedForeground": "accent", - "TimeCursor.selectedForeground": "accent", + "PrimaryPanel": { + "background": "cs" + }, + "SecondaryPanel": { + "background": "bg", + "header": { + "background": "cs", + "foreground": "text" + } + }, + "TimeCursor": { + "End": { + "selectedForeground": "accent" + }, + "selectedForeground": "accent", + "Start": { + "selectedForeground": "accent" + } + }, "borderColor": "border", - "cs_FocusText.infoForeground": "text", - "graphLine.lineSeparatorColor": "accent", - "motionGraph.background": "bg", - "ourAvg.background": "second", - "ourCS.background": "second", - "ourCS_Border.borderColor": "border", - "ourCS_SelectedBackground.selectionInactiveBackground": "table", - "ourCS_SelectedBorder.pressedBorderColor": "hl", - "ourCS_SelectedFocusBackground.selectionForeground": "selFg", - "ourCS_SelectedFocusBorder.focusedBorderColor": "accent", - "ourCS_TextColor.foreground": "text", - "ourML_BarColor.separatorColor": "border", - "timeLine.disabledBorderColor": "border" + "cs_FocusText": { + "infoForeground": "text" + }, + "graphLine": { + "lineSeparatorColor": "accent" + }, + "Grid": { + "lineSeparatorColor": "border" + }, + "label": { + "background": "second", + "textColor": "text" + }, + "motionGraph": { + "background": "bg" + }, + "ourAvg": { + "background": "second" + }, + "ourCS": { + "background": "second" + }, + "ourCS_Border": { + "borderColor": "border" + }, + "ourCS_SelectedBackground": { + "selectionInactiveBackground": "table" + }, + "ourCS_SelectedBorder": { + "pressedBorderColor": "hl" + }, + "ourCS_SelectedFocusBackground": { + "selectionForeground": "selFg" + }, + "ourCS_SelectedFocusBorder": { + "focusedBorderColor": "accent" + }, + "ourCS_TextColor": { + "foreground": "text" + }, + "ourML_BarColor": { + "separatorColor": "border" + }, + "timeLine": { + "disabledBorderColor": "border" + } }, "PackageDetails": { "border": "accent", "infoBanner": "accent" }, "PackageSearch": { - "PackagesList.rowHeight": 28, + "PackagesList": { + "rowHeight": 28 + }, "PackageTag": { "background": "excl", "foreground": "fg", @@ -1617,7 +2042,9 @@ "lines3d": "accent", "secondaryGraphLines": "border" }, - "percent.foreground": "fg", + "percent": { + "foreground": "fg" + }, "Placeholder": { "background": "bg", "borderColor": "border", @@ -1634,9 +2061,11 @@ "warningBorderColor": "notif" }, "VersionControl": { - "FileHistory.Commit": { - "otherBranchBackground": "excl", - "selectedBranchBackground": "bg" + "FileHistory": { + "Commit": { + "otherBranchBackground": "excl", + "selectedBranchBackground": "bg" + } }, "GitCommits": { "graphColor": "hl" @@ -1660,8 +2089,13 @@ "Commit": { "currentBranchBackground": "cs", "hoveredBackground": "tree", + "selectionInactiveForeground": "fg", + "Reference": { + "foreground": "text" + }, "rowHeight": 28, - "unmatchedForeground": "text" + "unmatchedForeground": "text", + "verticalPadding": 8 } }, "MarkerPopup": { @@ -1688,30 +2122,39 @@ "foreground": "fg" }, "WelcomeScreen": { - "AssociatedComponent.background": "bg", - "Details.background": "bg", - "List": { - "background": "hc", - "selectionBackground": "selBg", - "selectionInactiveBackground": "hl" + "AssociatedComponent": { + "background": "bg" }, - "SidePanel.background": "second", "background": "bg", "borderColor": "bg", "captionBackground": "cs", "captionForeground": "fg", + "Details": { + "background": "bg" + }, "footerBackground": "cs", "footerForeground": "fg", "groupIconBorderColor": "button", "headerBackground": "bg", "headerForeground": "fg", - "separatorColor": "border", + "List": { + "background": "hc", + "selectionBackground": "selBg", + "selectionInactiveBackground": "hl" + }, "Projects": { - "actions.background": "cs", - "actions.selectionBackground": "hl", + "actions": { + "background": "cs", + "selectionBackground": "hl", + "selectionBorderColor": "accent" + }, "background": "second", "selectionBackground": "selBg", "selectionInactiveBackground": "selBg" + }, + "separatorColor": "border", + "SidePanel": { + "background": "second" } }, "Window.border": "border", diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Atom One Light.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Atom One Light.theme.json index 66fff94e..95b72315 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Atom One Light.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Atom One Light.theme.json @@ -7,26 +7,26 @@ "bg30": "#F4F4F430", "fg": "#232324", "text": "#7f7f7f", - "selBg": "#FFFFFF", - "selBg20": "#FFFFFF20", + "selBg": "#d6e1f1", + "selBg20": "#d6e1f120", "selFg": "#232324", "activeFg": "#232324", "border": "#DBDBDC", "excl": "#CACACB", "second": "#EAEAEB", "dis": "#b8b8b9", - "accent": "#2979ff", - "accent2": "#2979ff2", - "accent50": "#2979ff50", - "accent70": "#2979ff70", + "accent": "#5d70e7", + "acc2": "#e2c08d", + "accent50": "#5d70e750", + "accent70": "#5d70e770", "cs": "#eaeaeb", "button": "#DBDBDC", "table": "#DBDBDC", - "tree": "#e8e8e8", + "tree": "#dbdbdc", "hl": "#FFFFFF", "notif": "#F2F2F2", "hc": "#F4F4F4", - "shadow": "undefined", + "shadow": "#ffffff20", "white": "#986801", "blue": "#4078F2", "red": "#E4564A", @@ -71,19 +71,25 @@ "hoverBorderColor": "accent50", "hoverSeparatorColor": "button", "pressedBackground": "accent50", - "pressedBorderColor": "accent50" + "pressedBorderColor": "accent50", + "separatorColor": "border" }, "ActionsList": { "icon.gap": 12, - "mnemonic.icon.gap": 12 + "mnemonic.icon.gap": 12, + "mnemonicInsets": "0,8,0,8", + "mnemonicsBorderInsets": "0,8,0,8", + "mnemonic.insets": "0,8,0,8" }, "ActionToolbar": { "background": "hc" }, - "AppInspector.GraphNode": { - "background": "second", - "borderColor": "border", - "focusedBorderColor": "accent" + "AppInspector": { + "GraphNode": { + "background": "second", + "borderColor": "border", + "focusedBorderColor": "accent" + } }, "AssignedMnemonic": { "background": "hl", @@ -99,13 +105,26 @@ "borderColor": "button", "foreground": "fg" }, - "BigSpinner.background": "bg", + "Banner": { + "foreground": "fg" + }, + "BigSpinner": { + "background": "bg" + }, "Bookmark": { "iconBackground": "accent", "Mnemonic": { "iconBackground": "hl", "iconBorderColor": "hl", "iconForeground": "fg" + }, + "MnemonicAssigned": { + "background": "table", + "foreground": "fg" + }, + "MnemonicCurrent": { + "background": "selBg", + "foreground": "selFg" } }, "BookmarkMnemonicAssigned": { @@ -128,13 +147,18 @@ "borderColor": "hl", "foreground": "fg" }, - "BookmarkIcon.background": "accent", - "Borders.ContrastBorderColor": "bg", - "Borders.color": "border", - "Breakpoint.iconHoverAlpha": 0.35, + "BookmarkIcon": { + "background": "accent" + }, + "Borders": { + "ContrastBorderColor": "bg", + "color": "border" + }, + "Breakpoint": { + "iconHoverAlpha": 0.35 + }, "Button": { "arc": 8, - "background": "bg", "darcula": { "borderColor": "button", "defaultBorderColor": "button", @@ -175,6 +199,7 @@ "focusedBorderColor": "accent", "foreground": "text", "highlight": "selFg", + "minimumSize": 72, "mt.background": "button", "mt.color1": "button", "mt.color2": "button", @@ -185,6 +210,12 @@ "select": "button", "shadowColor": "shadow", "shadowWidth": 0, + "Split": { + "default": { + "iconColor": "fg", + "separatorColor": "accent" + } + }, "startBackground": "table", "startBorderColor": "button", "ToolWindow": { @@ -195,11 +226,18 @@ "Tooltip.background": "notif", "Tooltip.borderColor": "border" }, + "CellEditor": { + "border": { + "width": 2 + } + }, "CheckBox": { "background": "bg", "background.selected": "accent", "borderColor": "bg", "borderColor.selected": "accent", + "border.width": 3, + "borderInsets": "4,4,4,4", "checkSignColor": "bg", "checkSignColor.selected": "bg", "checkSignColorDisabled": "bg", @@ -297,7 +335,9 @@ "foreground": "fg", "swatchesDefaultRecentColor": "fg" }, - "ComboBoxButton.background": "button", + "ComboBoxButton": { + "background": "button" + }, "ComboBox": { "ArrowButton": { "background": "button", @@ -327,14 +367,16 @@ "selectionBackground": "table", "selectionForeground": "activeFg" }, - "ComboPopup.border": "1,1,1,1,#2979ff", + "ComboPopup": { + "border": "1,1,1,1,#5d70e7" + }, "CompletionPopup": { "Advertiser": { - "background": "bg", - "foreground": "fg", + "background": "second", + "foreground": "text", "borderInsets": "8,12,8,12" }, - "background": "second", + "background": "button", "foreground": "fg", "grayForeground": "text", "grayedForeground": "text", @@ -351,13 +393,20 @@ "selectionInactiveBackground": "hl", "selectionInactiveForeground": "text", "selectionInactiveInfoForeground": "text", - "selectionInfoForeground": "selFg" + "selectionInfoForeground": "selFg", + "selectionInnerInsets": "4,4,4,4" }, "ComplexPopup": { - "Header.background": "notif" + "Header": { + "background": "bg", + "insets": "12,12,12,12" + }, + "TextField": { + "inputInsets": "8,4,8,4" + } }, "Component": { - "arc": 4, + "arc": 6, "focusWidth": 2, "borderColor": "hl", "disabledBorderColor": "dis", @@ -440,7 +489,7 @@ "southPanelDivider": "bg" }, "DragAndDrop": { - "areaBackground": "tree", + "areaBackground": "selBg70", "areaBorderColor": "bg", "areaForeground": "fg", "backgroundBorderColor": "bg", @@ -453,18 +502,37 @@ "Editor": { "background": "hc", "foreground": "fg", + "Notification": { + "borderInsets": "10,12,10,12", + "WithoutStatus.borderInsets": "10,12,10,12" + }, + "ReplaceToolbar": { + "borderInsets": "4,12,4,12" + }, "shortcutForeground": "text", "SearchField": { "background": "cs", "borderInsets": "8,12,8,12" }, + "SearchReplaceModePanel": { + "borderInsets": "4,12,4,12" + }, + "SearchToolbar": { + "borderInsets": "4,12,4,12" + }, "Toolbar": { "borderColor": "border" + }, + "ToolTip": { + "border": "border", + "foreground": "fg", + "iconHoverBackground": "table", + "selectionBackground": "selBg" } }, "EditorGroupsTabs": { "background": "bg", - "borderColor": "second", + "borderColor": "border", "hoverBackground": "hl", "hoverColor": "hl", "inactiveUnderlineColor": "accent", @@ -474,6 +542,7 @@ }, "EditorPane": { "background": "hc", + "borderColor": "border", "caretForeground": "accent", "foreground": "fg", "inactiveBackground": "bg", @@ -483,21 +552,25 @@ "splitBorder": "border" }, "EditorTabs": { - "active.background": "table", - "active.foreground": "fg", - "active.underlineColor": "accent", + "active": { + "background": "table", + "foreground": "fg", + "underlineColor": "accent" + }, "background": "bg", - "borderColor": "second", "foreground": "fg", "hoverBackground": "hl", "hoverColor": "hl", "hoverMaskColor": "hl", "inactive.maskColor": "bg", - "inactiveColoredFileBackground": "bg", + "inactiveColoredFileBackground": "bg70", "inactiveMaskColor": "bg", "inactiveUnderlineColor": "dis", "selectedBackground": "table", "selectedForeground": "fg", + "tabContentInsetsActionsLeft": "0,6,0,6", + "tabContentInsetsActionsNone": "0,6,0,6", + "tabContentInsetsActionsRight": "0,6,0,6", "tabInsets": "-10,10,-10,10", "underlineColor": "accent", "underlineHeight": 3, @@ -515,6 +588,10 @@ "Gray": "excl", "excluded": "excl" }, + "FindPopup": { + "scopesPanelInsets": "4,16,4,16", + "bottomPanelInsets": "4,10,4,10" + }, "FlameGraph": { "JVMBackground": "#89DDF7", "JVMFocusBackground": "#82AAFF", @@ -555,15 +632,34 @@ "selectionForeground.unfocused": "selFg" }, "GotItTooltip": { + "animationBackground": "notif", "background": "notif", "borderColor": "notif", + "Button": { + "contrastBackground": "cs", + "endBackground": "button", + "foreground": "fg", + "startBackground": "button" + }, + "codeBackground": "cs", + "codeBorderColor": "bg", + "codeForeground": "fg", "endBackground": "button", "endBorderColor": "button", "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "imageBorderColor": "notif", "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "shortcutBackground": "notif", + "shortcutBorderColor": "border", "shortcutForeground": "text", "startBackground": "button", - "startBorderColor": "button" + "startBorderColor": "button", + "stepForeground": "text" }, "Group": { "disabledSeparatorColor": "border", @@ -587,7 +683,10 @@ "borderColor": "border", "defaultTextBorderInsets": "16,16,16,16", "foreground": "fg", + "fontSizeDelta": 0, + "horizontalGap": 10, "infoForeground": "text", + "maxWidth": 250, "shortcutForeground": "text", "shortcutTextColor": "text", "smallTextBorderInsets": "8,12,8,12", @@ -601,18 +700,29 @@ "MqTag": "text", "Tag": "text" }, - "Hyperlink.linkColor": "accent", - "IconBadge": { - "infoBackground": "accent" + "Hyperlink": { + "linkColor": "accent" + }, + "IconBadge": { + "infoBackground": "accent", + "newUiBackground": "accent" + }, + "IdeStatusBar": { + "border": "4,4,4,4" + }, + "InformationHint": { + "borderColor": "border" }, - "IdeStatusBar.border": "4,4,4,4", - "InformationHint.borderColor": "border", "inactiveCaption": "second", "inactiveCaptionBorder": "bg", "inactiveCaptionText": "text", "info": "text", "infoPanelForeground": "text", "infoText": "text", + "InlineBanner": { + "hoverBackground": "accent70", + "pressedBackground": "accent70" + }, "InplaceRefactoringPopup": { "background": "bg", "borderColor": "bg" @@ -622,10 +732,13 @@ "foreground": "fg" }, "InternalFrame": { + "activeTitleBackground": "bg", "activeTitleForeground": "fg", "background": "bg", "inactiveTitleBackground": "bg", - "inactiveTitleForeground": "text" + "inactiveTitleForeground": "text", + "optionDialogBackground": "bg", + "paletteBackground": "bg" }, "Label": { "background": "bg", @@ -676,20 +789,22 @@ "hoverBackground": "hl", "leftRightInset": 8, "separatorColor": "border", - "separatorInset": 4 + "separatorInset": 8 }, "foreground": "fg", "hoverBackground": "hl", "hoverInactiveBackground": "table", - "Line.hoverBackground": "selBg", + "Line": { + "hoverBackground": "selBg" + }, "rowHeight": "28", "selectionBackground": "tree", "selectionForeground": "selFg", "selectionInactiveBackground": "table", "selectionInactiveForeground": "activeFg", "Tag": { - "background": "button", - "foreground": "fg" + "foreground": "fg", + "background": "button" } }, "LiveIndicator": { @@ -703,31 +818,60 @@ "background": "hc", "foreground": "fg", "selectionForeground": "activeFg", - "selectionBackground": "selBg" + "selectionBackground": "selBg", + "transparentSelectionBackground": "tree" }, "MainToolbar": { "background": "bg", "Button": { - "buttonInsets": "0,0,0,0" + "buttonInsets": "0,4,0,4", + "iconSize": 20, + "size": "28,28" }, "Dropdown": { "borderInsets": "6,12,6,12", "background": "bg", "foreground": "fg", "hoverBackground": "hl", - "pressedBackground": "table" + "pressedBackground": "table", + "transparentHoverBackground": "accent70" }, + "foreground": "fg", "hoverBackground": "hl", "Icon": { - "borderInsets": "10,10,10,10", + "borderInsets": "4,4,4,4", "background": "bg", "hoverBackground": "hl", + "insets": "5,4,5,4", "pressedBackground": "table" }, "inactiveBackground": "bg", "pressedBackground": "table", - "separatorColor": "border" + "separatorColor": "border", + "SplitDropdown": { + "borderInsets": "6,6,6,6" + } }, + "MainWindow": { + "FullScreeControl": { + "Background": "hl" + }, + "Tab": { + "background": "bg", + "borderColor": "bg", + "foreground": "fg", + "hoverBackground": "hl", + "hoverForeground": "fg", + "selectedBackground": "selBg", + "selectedForeground": "selFg", + "selectedInactiveBackground": "excl", + "separatorColor": "border" + } + }, + "ManagedIdeBadgeBorder": "border", + "ManagedIdeBadgeBackground": "bg", + "ManagedIdeBadgeBackgroundHover": "accent70", + "ManagedIdeMenuItemHover": "selBg", "material": { "background": "bg", "branchColor": "fg", @@ -785,8 +929,12 @@ "disabledBackground": "bg", "disabledForeground": "dis", "foreground": "fg", + "insets": "0,4,0,4", "selectionBackground": "selBg", - "selectionForeground": "activeFg" + "selectionForeground": "activeFg", + "Selection": { + "arc": 8 + } }, "MlModelBinding.Viewer.CodeEditor.background": "bg", "MnemonicIcon": { @@ -797,6 +945,9 @@ "NavBar": { "arrowColor": "fg", "borderColor": "bg", + "Breadcrumbs": { + "itemInsets": "4,2,4,2" + }, "selectedColor": "accent" }, "NewClass": { @@ -806,15 +957,21 @@ "SearchField": { "background": "cs" }, - "separatorWidth": 6 + "separatorWidth": 10 }, "NewPSD.warning": "accent", + "NewUiOnboarding": { + "Dialog": { + "background": "second" + } + }, "Notification": { "arc": 16, "Error.foreground": "accent", "Link.foreground": "accent", "background": "notif", - "borderColor": "notif", + "borderColor": "border", + "borderInsets": "4,4,4,4", "errorBackground": "notif", "errorBorderColor": "notif", "errorForeground": "accent", @@ -855,18 +1012,27 @@ "ToolWindowWarning": { "foreground": "fg", "background": "notifWarn" + }, + "WelcomeScreen": { + "separatorColor": "border" } }, "Notifications": { "background": "notif", - "borderColor": "notif" + "borderColor": "border" }, "NotificationsToolwindow": { - "Notification.hoverBackground": "tree", - "newNotification.background": "notif", - "newNotification.hoverBackground": "tree" + "Notification": { + "hoverBackground": "tree" + }, + "newNotification": { + "background": "notif", + "hoverBackground": "tree" + } + }, + "OnePixelDivider": { + "background": "border" }, - "OnePixelDivider.background": "border", "OptionPane": { "background": "bg", "foreground": "fg", @@ -882,7 +1048,6 @@ "focusedColor": "accent" }, "Panel": { - "background": "bg", "foreground": "fg", "mouseShortcutBackground": "bg" }, @@ -911,16 +1076,6 @@ "Plugins": { "background": "bg", "borderColor": "border", - "disabledForeground": "dis", - "eapTagBackground": "hl", - "hoverBackground": "hl", - "lightSelectionBackground": "table", - "paidTagBackground": "hl", - "selectionBackground": "selBg", - "selectionForeground": "selFg", - "tagBackground": "hl", - "tagForeground": "accent", - "trialTagBackground": "hl", "Button": { "installBackground": "button", "installBorderColor": "button", @@ -928,10 +1083,15 @@ "installFillForeground": "dis", "installFocusedBackground": "hl", "installForeground": "fg", - "updateBackground": "accent", + "updateBackground": "button", "updateBorderColor": "button", "updateForeground": "fg" }, + "disabledForeground": "dis", + "eapTagBackground": "hl", + "hoverBackground": "hl", + "lightSelectionBackground": "table", + "paidTagBackground": "hl", "ScreenshotPagination": { "CurrentImage.fillColor": "accent" }, @@ -943,10 +1103,20 @@ "background": "second", "foreground": "fg" }, + "selectionBackground": "selBg", + "selectionForeground": "selFg", + "suggestedLabelBackground": "button", + "tagBackground": "hl", + "tagForeground": "accent", + "trialTagBackground": "hl", "Tab": { - "active.background": "table", - "active.foreground": "activeFg", - "hover.background": "table", + "active": { + "background": "table", + "foreground": "activeFg" + }, + "hover": { + "background": "table" + }, "hoverBackground": "table", "selectedBackground": "table", "selectedForeground": "selFg" @@ -954,6 +1124,7 @@ }, "Popup": { "Advertiser": { + "borderColor": "border", "borderInsets": "6,20,6,20", "background": "bg", "borderColor": "bg", @@ -968,24 +1139,33 @@ "color": "cs", "inactiveColor": "bg" }, - "background": "notif", + "background": "bg", "borderColor": "cs", "borderWidth": 0, "inactiveBorderColor": "bg", "innerBorderColor": "second", "Header": { "activeBackground": "bg", + "activeForeground": "fg", "inactiveBackground": "cs", - "inactiveForeground": "text" + "inactiveForeground": "dis", + "insets": "12,10,12,10" }, + "mnemonicForeground": "text", "paintBorder": false, "preferences": { "background": "bg", "borderColor": "bg", "foreground": "fg" }, - "Selection.arc": 8, - "Selection.leftRightInset": 8, + "SearchField": { + "borderInsets": "4,4,4,4", + "inputInsets": "4,4,4,4" + }, + "Selection": { + "arc": 8, + "leftRightInset": 8 + }, "Separator": { "foreground": "fg", "color": "border" @@ -1003,8 +1183,14 @@ "background": "bg", "borderWidth": 1, "border": "8,8,8,8", + "borderInsets": "10,10,10,10", "borderCornerRadius": 8, + "borderCornerRadiusX": 8, + "borderCornerRadiusY": 8, + "borderWidth": 1, "foreground": "fg", + "leftBorderWidth": 8, + "rightBorderWidth": 8, "Selection": { "arc": 8, "innerInsets": "8,2,8,2" @@ -1013,12 +1199,35 @@ "translucentBackground": "bg" }, "PopupMenuSeparator": { + "borderCornerRadius": 8, "height": 10, "stripeWidth": 2, "stripeIndent": 5, "withToEdge": 4, "borderCornerRadius": 8 }, + "PresentationAssistant": { + "Bright": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + }, + "Pale": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + } + }, + "Profiler": { + "neutralLifecycleEvent": "second", + "trackBackground": "button" + }, "ProgressBar": { "background": "bg", "foreground": "accent", @@ -1062,29 +1271,106 @@ "selectionBackground": "selBg", "selectionForeground": "selFg" }, + "Review": { + "Avatar": { + "Border": { + "Status": { + "Accepted": "accent", + "NeedReview": "hl" + } + } + }, + "Branch": { + "Background": "button", + "Background.Hover": "hl" + }, + "ChatItem": { + "BubblePanel": { + "Border": "button" + }, + "Hover": "table" + }, + "Editor": { + "Line": { + "Status": { + "Marker": "accent" + } + } + }, + "MetaInfo": { + "StatusLine": { + "Gray": "excl", + "Blue": "accent" + } + }, + "State": { + "Background": "second", + "Foreground": "fg" + }, + "Timeline": { + "Thread": { + "Diff": { + "AnchorLine": "table" + } + } + } + }, "ReviewList": { "state.background": "second", "state.foreground": "fg" }, + "RunToolbar": { + "Debug": { + "activeBackground": "hl" + }, + "Profile": { + "activeBackground": "hl" + }, + "Run": { + "activeBackground": "hl" + } + }, "RunWidget": { "background": "button", - "Debug.activeBackground": "hl", - "foreground": "fg", - "hoverBackground": "table", - "pressedBackground": "hl", - "Profile.activeBackground": "hl", + "Debug": { + "activeBackground": "hl" + }, + "foreground": "selFg", + "hoverBackground": "hl", + "iconColor": "fg", + "leftPressedBackground": "table", + "leftHoverBackground": "hl", + "pressedBackground": "table", + "Profile": { + "activeBackground": "hl" + }, "runningBackground": "hl", - "runningForeground": "selFg", - "Run.activeBackground": "hl", + "Run": { + "activeBackground": "hl" + }, "Running": { "background": "hl", - "foreground": "selFg", "leftHoverBackground": "hl", - "leftPressedBackground": "hl" + "leftPressedBackground": "table" }, - "separatorColor": "border" + "runningBackground": "hl", + "runningForeground": "selFg", + "runIconColor": "accent", + "separatorColor": "border", + "stopBackground": "second", + "StopButton": { + "leftHoverBackground": "hl", + "leftPressedBackground": "second" + }, + "toolbarHeight": 30, + "toolbarBorderHeight": 4 + }, + "ScreenView": { + "borderColor": "border", + "defaultBorderColor": "border", + "hoveredBorderColor": "hl", + "selectedBorderColor": "selBg" }, - "ScreenView.borderColor": "border", "scrollbar": "bg", "ScrollBar": { "background": "bg", @@ -1186,9 +1472,9 @@ }, "SegmentedButton": { "focusedSelectedButtonColor": "hl", + "selectedEndBorderColor": "accent", "selectedButtonColor": "button", - "selectedStartBorderColor": "border", - "selectedEndBorderColor": "border" + "selectedStartBorderColor": "accent" }, "Separator": { "background": "second", @@ -1198,6 +1484,7 @@ "Settings": { "Spotlight.borderColor": "accent" }, + "shortcutForeground": "text", "SidePanel": { "background": "hc" }, @@ -1222,6 +1509,7 @@ "foreground": "fg" }, "Spinner": { + "arrowButtonInsets": "1,1,1,1", "background": "bg", "border": "4,4,4,4", "disabledBackground": "excl", @@ -1232,11 +1520,16 @@ "background": "bg", "highlight": "hc" }, - "SplitPaneDivider.draggingColor": "second", - "StateWidget.activeBackground": "button", + "SplitPaneDivider": { + "draggingColor": "second" + }, + "StateWidget": { + "activeBackground": "button" + }, "StatusBar": { - "background": "bg", + "background": "bg10", "Breadcrumbs": { + "chevronInset": 0, "floatingBackground": "tree", "floatingForeground": "fg", "floatingToolbarInsets": "8,12,8,12", @@ -1244,6 +1537,7 @@ "hoverBackground": "tree", "hoverForeground": "fg", "itemBackgroundInsets": "2,4,2,4", + "itemInsets": 0, "selectionBackground": "selBg", "selectionForeground": "activeFg", "selectionInactiveBackground": "button", @@ -1264,6 +1558,13 @@ "widgetInsets": "8,12,8,12" } }, + "StripeToolbar": { + "Button": { + "iconSize": 20, + "iconPadding": 8, + "size": "40,40" + } + }, "TabbedPane": { "background": "bg", "borderColor": "hc", @@ -1290,6 +1591,7 @@ "selectedTabPadInsets": "0,0,0,0", "shadow": "hc", "tabHeight": 32, + "tabAreaInsets": 0, "tabInsets": "5,10,5,10", "tabSelectionArc": 4, "tabSelectionHeight": 2, @@ -1385,7 +1687,7 @@ "TitlePane": { "Button": { "hoverBackground": "hl", - "preferredSize": "48,40" + "preferredSize": "42,42" }, "background": "hc", "inactiveBackground": "bg", @@ -1407,15 +1709,23 @@ "onBackground": "accent", "onForeground": "accent" }, - "Toolbar.Floating.background": "button", + "Toolbar": { + "horizontalToolbarInsets": "8,8,8,8", + "Floating": { + "background": "button", + "borderColor": "border" + }, + "verticalToolbarInsets": "8,8,8,8" + }, "ToolBar": { "background": "hc", "borderHandleColor": "text", "comboBoxButtonBackground": "button", "floatingForeground": "text", "foreground": "fg", - "verticalToolbarInsets": "6,6,6,6", - "horizontalToolbarInsets": "6,6,6,6" + "horizontalToolbarInsets": "6,6,6,6", + "separatorColor": "border", + "verticalToolbarInsets": "6,6,6,6" }, "ToolbarComboWidget": { "background": "button", @@ -1426,6 +1736,21 @@ "actions.settings.icon.background.color": "bg", "description.title.text.color": "fg" }, + "Tooltip": { + "Learning": { + "codeBorderColor": "cs", + "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "spanBackground": "accent70", + "spanForeground": "fg" + }, + "separatorColor": "border" + }, "ToolTip": { "arc": 6, "actions": { @@ -1445,6 +1770,7 @@ "Learning": { "background": "accent", "borderColor": "accent", + "codeForeground": "fg", "foreground": "fg", "spanBackground": "accent50", "spanForeground": "fg", @@ -1463,25 +1789,44 @@ "Button": { "hoverBackground": "table", "DragAndDrop": { - "stripeBackground": "cs", - "buttonDropBackground": "accent70" + "stripeBackground": "bg", + "buttonDropBackground": "selBg70", + "buttonDropBorderColor": "accent", + "buttonFloatingBackground": "button" }, "selectedBackground": "cs", "selectedForeground": "activeFg" }, + "DragAndDrop": { + "areaBackground": "accent50" + }, "header": { - "active.background": "second", + "active": { + "background": "second" + }, "background": "bg", - "border.background": "second", - "closeButton.background": "bg", - "tab.selected.active.background": "cs", - "tab.selected.background": "cs" + "border": { + "background": "border" + }, + "closeButton": { + "background": "bg" + }, + "tab": { + "selected": { + "active": { + "background": "cs" + }, + "background": "cs" + } + } }, "Header": { "height": 42, "background": "second", - "borderColor": "second", - "inactiveBackground": "bg" + "borderColor": "border", + "inactiveBackground": "bg", + "labelLeftRightInsets": "0,12,0,16", + "toolbarLeftRightInsets": "0,12,0,8" }, "HeaderCloseButton": { "background": "bg" @@ -1506,6 +1851,12 @@ "inactive": { "Header.background": "bg", "HeaderTab.background": "cs" + }, + "Stripe": { + "DragAndDrop": { + "separatorColor": "accent50" + }, + "separatorColor": "table" } }, "Tree": { @@ -1522,13 +1873,17 @@ "selectionForeground": "selFg", "selectionInactiveBackground": "tree", "selectionInactiveForeground": "selFg", - "textBackground": "hc" + "textBackground": "hc", + "leftChildIndent": 10, + "rightChildIndent": 5 }, - "Tree.leftChildIndent": 10, - "Tree.rightChildIndent": 5, "UIDesigner": { - "Activity.borderColor": "border", - "Canvas.background": "cs", + "Activity": { + "borderColor": "border" + }, + "Canvas": { + "background": "cs" + }, "ColorPicker": { "background": "second", "foreground": "fg" @@ -1543,49 +1898,119 @@ "borderColor": "border", "hoverBorderColor": "hl" }, - "Label.foreground": "text", - "highStroke.foreground": "fg", + "Label": { + "foreground": "text" + }, + "highStroke": { + "foreground": "fg" + }, "motion": { "AddConstraintColor": "accent", "AddConstraintPlus": "accent", - "CSPanel.SelectedBackground": "tree", - "CSPanel.SelectedFocusBackground": "selBg", - "Component.foreground": "fg", - "ConstraintSet.background": "second", - "ConstraintSetText.foreground": "text", - "CursorTextColor.foreground": "fg", - "HoverColor.disabledBackground": "dis", - "Key.selectedForeground": "accent", - "Notification.background": "notif", + "Axis": { + "lineSeparatorColor": "fg" + }, + "CSPanel": { + "SelectedBackground": "tree", + "SelectedFocusBackground": "selBg" + }, + "Component": { + "foreground": "fg" + }, + "ConstraintSet": { + "background": "second" + }, + "ConstraintSetText": { + "foreground": "text" + }, + "CursorTextColor": { + "foreground": "fg" + }, + "HoverColor": { + "disabledBackground": "dis" + }, + "Key": { + "selectedForeground": "accent" + }, + "Notification": { + "background": "notif" + }, "PositionMarkColor": "accent", - "PrimaryPanel.background": "cs", - "SecondaryPanel.background": "bg", - "SecondaryPanel.header.background": "cs", - "SecondaryPanel.header.foreground": "text", - "TimeCursor.End.selectedForeground": "accent", - "TimeCursor.Start.selectedForeground": "accent", - "TimeCursor.selectedForeground": "accent", + "PrimaryPanel": { + "background": "cs" + }, + "SecondaryPanel": { + "background": "bg", + "header": { + "background": "cs", + "foreground": "text" + } + }, + "TimeCursor": { + "End": { + "selectedForeground": "accent" + }, + "selectedForeground": "accent", + "Start": { + "selectedForeground": "accent" + } + }, "borderColor": "border", - "cs_FocusText.infoForeground": "text", - "graphLine.lineSeparatorColor": "accent", - "motionGraph.background": "bg", - "ourAvg.background": "second", - "ourCS.background": "second", - "ourCS_Border.borderColor": "border", - "ourCS_SelectedBackground.selectionInactiveBackground": "table", - "ourCS_SelectedBorder.pressedBorderColor": "hl", - "ourCS_SelectedFocusBackground.selectionForeground": "selFg", - "ourCS_SelectedFocusBorder.focusedBorderColor": "accent", - "ourCS_TextColor.foreground": "text", - "ourML_BarColor.separatorColor": "border", - "timeLine.disabledBorderColor": "border" + "cs_FocusText": { + "infoForeground": "text" + }, + "graphLine": { + "lineSeparatorColor": "accent" + }, + "Grid": { + "lineSeparatorColor": "border" + }, + "label": { + "background": "second", + "textColor": "text" + }, + "motionGraph": { + "background": "bg" + }, + "ourAvg": { + "background": "second" + }, + "ourCS": { + "background": "second" + }, + "ourCS_Border": { + "borderColor": "border" + }, + "ourCS_SelectedBackground": { + "selectionInactiveBackground": "table" + }, + "ourCS_SelectedBorder": { + "pressedBorderColor": "hl" + }, + "ourCS_SelectedFocusBackground": { + "selectionForeground": "selFg" + }, + "ourCS_SelectedFocusBorder": { + "focusedBorderColor": "accent" + }, + "ourCS_TextColor": { + "foreground": "text" + }, + "ourML_BarColor": { + "separatorColor": "border" + }, + "timeLine": { + "disabledBorderColor": "border" + } }, "PackageDetails": { "border": "accent", "infoBanner": "accent" }, "PackageSearch": { - "PackagesList.rowHeight": 28, + "PackagesList": { + "rowHeight": 28 + }, "PackageTag": { "background": "excl", "foreground": "fg", @@ -1617,7 +2042,9 @@ "lines3d": "accent", "secondaryGraphLines": "border" }, - "percent.foreground": "fg", + "percent": { + "foreground": "fg" + }, "Placeholder": { "background": "bg", "borderColor": "border", @@ -1634,9 +2061,11 @@ "warningBorderColor": "notif" }, "VersionControl": { - "FileHistory.Commit": { - "otherBranchBackground": "excl", - "selectedBranchBackground": "bg" + "FileHistory": { + "Commit": { + "otherBranchBackground": "excl", + "selectedBranchBackground": "bg" + } }, "GitCommits": { "graphColor": "hl" @@ -1660,8 +2089,13 @@ "Commit": { "currentBranchBackground": "cs", "hoveredBackground": "tree", + "selectionInactiveForeground": "fg", + "Reference": { + "foreground": "text" + }, "rowHeight": 28, - "unmatchedForeground": "text" + "unmatchedForeground": "text", + "verticalPadding": 8 } }, "MarkerPopup": { @@ -1688,30 +2122,39 @@ "foreground": "fg" }, "WelcomeScreen": { - "AssociatedComponent.background": "bg", - "Details.background": "bg", - "List": { - "background": "hc", - "selectionBackground": "selBg", - "selectionInactiveBackground": "hl" + "AssociatedComponent": { + "background": "bg" }, - "SidePanel.background": "second", "background": "bg", "borderColor": "bg", "captionBackground": "cs", "captionForeground": "fg", + "Details": { + "background": "bg" + }, "footerBackground": "cs", "footerForeground": "fg", "groupIconBorderColor": "button", "headerBackground": "bg", "headerForeground": "fg", - "separatorColor": "border", + "List": { + "background": "hc", + "selectionBackground": "selBg", + "selectionInactiveBackground": "hl" + }, "Projects": { - "actions.background": "cs", - "actions.selectionBackground": "hl", + "actions": { + "background": "cs", + "selectionBackground": "hl", + "selectionBorderColor": "accent" + }, "background": "second", "selectionBackground": "selBg", "selectionInactiveBackground": "selBg" + }, + "separatorColor": "border", + "SidePanel": { + "background": "second" } }, "Window.border": "border", diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Dracula.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Dracula.theme.json index 070971f5..ca11af0e 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Dracula.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Dracula.theme.json @@ -9,14 +9,14 @@ "text": "#6272A4", "selBg": "#44475A", "selBg20": "#44475A20", - "selFg": "#8BE9FD", + "selFg": "#FFFFFF", "activeFg": "#FFFFFF", "border": "#21222C", "excl": "#313341", "second": "#282A36", "dis": "#6272A4", "accent": "#FF79C5", - "accent2": "#FF79C52", + "acc2": "#80ffea", "accent50": "#FF79C550", "accent70": "#FF79C570", "cs": "#191A21", @@ -26,7 +26,7 @@ "hl": "#44475a", "notif": "#1D2228", "hc": "#282A36", - "shadow": "undefined", + "shadow": "#00000020", "white": "#F8F8F2", "blue": "#8aff80", "red": "#FF79C5", @@ -71,19 +71,25 @@ "hoverBorderColor": "accent50", "hoverSeparatorColor": "button", "pressedBackground": "accent50", - "pressedBorderColor": "accent50" + "pressedBorderColor": "accent50", + "separatorColor": "border" }, "ActionsList": { "icon.gap": 12, - "mnemonic.icon.gap": 12 + "mnemonic.icon.gap": 12, + "mnemonicInsets": "0,8,0,8", + "mnemonicsBorderInsets": "0,8,0,8", + "mnemonic.insets": "0,8,0,8" }, "ActionToolbar": { "background": "hc" }, - "AppInspector.GraphNode": { - "background": "second", - "borderColor": "border", - "focusedBorderColor": "accent" + "AppInspector": { + "GraphNode": { + "background": "second", + "borderColor": "border", + "focusedBorderColor": "accent" + } }, "AssignedMnemonic": { "background": "hl", @@ -99,13 +105,26 @@ "borderColor": "button", "foreground": "fg" }, - "BigSpinner.background": "bg", + "Banner": { + "foreground": "fg" + }, + "BigSpinner": { + "background": "bg" + }, "Bookmark": { "iconBackground": "accent", "Mnemonic": { "iconBackground": "hl", "iconBorderColor": "hl", "iconForeground": "fg" + }, + "MnemonicAssigned": { + "background": "table", + "foreground": "fg" + }, + "MnemonicCurrent": { + "background": "selBg", + "foreground": "selFg" } }, "BookmarkMnemonicAssigned": { @@ -128,13 +147,18 @@ "borderColor": "hl", "foreground": "fg" }, - "BookmarkIcon.background": "accent", - "Borders.ContrastBorderColor": "bg", - "Borders.color": "border", - "Breakpoint.iconHoverAlpha": 0.35, + "BookmarkIcon": { + "background": "accent" + }, + "Borders": { + "ContrastBorderColor": "bg", + "color": "border" + }, + "Breakpoint": { + "iconHoverAlpha": 0.35 + }, "Button": { "arc": 8, - "background": "bg", "darcula": { "borderColor": "button", "defaultBorderColor": "button", @@ -175,6 +199,7 @@ "focusedBorderColor": "accent", "foreground": "text", "highlight": "selFg", + "minimumSize": 72, "mt.background": "button", "mt.color1": "button", "mt.color2": "button", @@ -185,6 +210,12 @@ "select": "button", "shadowColor": "shadow", "shadowWidth": 0, + "Split": { + "default": { + "iconColor": "fg", + "separatorColor": "accent" + } + }, "startBackground": "table", "startBorderColor": "button", "ToolWindow": { @@ -195,11 +226,18 @@ "Tooltip.background": "notif", "Tooltip.borderColor": "border" }, + "CellEditor": { + "border": { + "width": 2 + } + }, "CheckBox": { "background": "bg", "background.selected": "accent", "borderColor": "bg", "borderColor.selected": "accent", + "border.width": 3, + "borderInsets": "4,4,4,4", "checkSignColor": "bg", "checkSignColor.selected": "bg", "checkSignColorDisabled": "bg", @@ -297,7 +335,9 @@ "foreground": "fg", "swatchesDefaultRecentColor": "fg" }, - "ComboBoxButton.background": "button", + "ComboBoxButton": { + "background": "button" + }, "ComboBox": { "ArrowButton": { "background": "button", @@ -327,14 +367,16 @@ "selectionBackground": "table", "selectionForeground": "activeFg" }, - "ComboPopup.border": "1,1,1,1,#FF79C5", + "ComboPopup": { + "border": "1,1,1,1,#FF79C5" + }, "CompletionPopup": { "Advertiser": { - "background": "bg", - "foreground": "fg", + "background": "second", + "foreground": "text", "borderInsets": "8,12,8,12" }, - "background": "second", + "background": "button", "foreground": "fg", "grayForeground": "text", "grayedForeground": "text", @@ -351,13 +393,20 @@ "selectionInactiveBackground": "hl", "selectionInactiveForeground": "text", "selectionInactiveInfoForeground": "text", - "selectionInfoForeground": "selFg" + "selectionInfoForeground": "selFg", + "selectionInnerInsets": "4,4,4,4" }, "ComplexPopup": { - "Header.background": "notif" + "Header": { + "background": "bg", + "insets": "12,12,12,12" + }, + "TextField": { + "inputInsets": "8,4,8,4" + } }, "Component": { - "arc": 4, + "arc": 6, "focusWidth": 2, "borderColor": "hl", "disabledBorderColor": "dis", @@ -440,7 +489,7 @@ "southPanelDivider": "bg" }, "DragAndDrop": { - "areaBackground": "tree", + "areaBackground": "selBg70", "areaBorderColor": "bg", "areaForeground": "fg", "backgroundBorderColor": "bg", @@ -453,18 +502,37 @@ "Editor": { "background": "hc", "foreground": "fg", + "Notification": { + "borderInsets": "10,12,10,12", + "WithoutStatus.borderInsets": "10,12,10,12" + }, + "ReplaceToolbar": { + "borderInsets": "4,12,4,12" + }, "shortcutForeground": "text", "SearchField": { "background": "cs", "borderInsets": "8,12,8,12" }, + "SearchReplaceModePanel": { + "borderInsets": "4,12,4,12" + }, + "SearchToolbar": { + "borderInsets": "4,12,4,12" + }, "Toolbar": { "borderColor": "border" + }, + "ToolTip": { + "border": "border", + "foreground": "fg", + "iconHoverBackground": "table", + "selectionBackground": "selBg" } }, "EditorGroupsTabs": { "background": "bg", - "borderColor": "second", + "borderColor": "border", "hoverBackground": "hl", "hoverColor": "hl", "inactiveUnderlineColor": "accent", @@ -474,6 +542,7 @@ }, "EditorPane": { "background": "hc", + "borderColor": "border", "caretForeground": "accent", "foreground": "fg", "inactiveBackground": "bg", @@ -483,21 +552,25 @@ "splitBorder": "border" }, "EditorTabs": { - "active.background": "table", - "active.foreground": "fg", - "active.underlineColor": "accent", + "active": { + "background": "table", + "foreground": "fg", + "underlineColor": "accent" + }, "background": "bg", - "borderColor": "second", "foreground": "fg", "hoverBackground": "hl", "hoverColor": "hl", "hoverMaskColor": "hl", "inactive.maskColor": "bg", - "inactiveColoredFileBackground": "bg", + "inactiveColoredFileBackground": "bg70", "inactiveMaskColor": "bg", "inactiveUnderlineColor": "dis", "selectedBackground": "table", "selectedForeground": "fg", + "tabContentInsetsActionsLeft": "0,6,0,6", + "tabContentInsetsActionsNone": "0,6,0,6", + "tabContentInsetsActionsRight": "0,6,0,6", "tabInsets": "-10,10,-10,10", "underlineColor": "accent", "underlineHeight": 3, @@ -515,6 +588,10 @@ "Gray": "excl", "excluded": "excl" }, + "FindPopup": { + "scopesPanelInsets": "4,16,4,16", + "bottomPanelInsets": "4,10,4,10" + }, "FlameGraph": { "JVMBackground": "#89DDF7", "JVMFocusBackground": "#82AAFF", @@ -555,15 +632,34 @@ "selectionForeground.unfocused": "selFg" }, "GotItTooltip": { + "animationBackground": "notif", "background": "notif", "borderColor": "notif", + "Button": { + "contrastBackground": "cs", + "endBackground": "button", + "foreground": "fg", + "startBackground": "button" + }, + "codeBackground": "cs", + "codeBorderColor": "bg", + "codeForeground": "fg", "endBackground": "button", "endBorderColor": "button", "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "imageBorderColor": "notif", "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "shortcutBackground": "notif", + "shortcutBorderColor": "border", "shortcutForeground": "text", "startBackground": "button", - "startBorderColor": "button" + "startBorderColor": "button", + "stepForeground": "text" }, "Group": { "disabledSeparatorColor": "border", @@ -587,7 +683,10 @@ "borderColor": "border", "defaultTextBorderInsets": "16,16,16,16", "foreground": "fg", + "fontSizeDelta": 0, + "horizontalGap": 10, "infoForeground": "text", + "maxWidth": 250, "shortcutForeground": "text", "shortcutTextColor": "text", "smallTextBorderInsets": "8,12,8,12", @@ -601,18 +700,29 @@ "MqTag": "text", "Tag": "text" }, - "Hyperlink.linkColor": "accent", - "IconBadge": { - "infoBackground": "accent" + "Hyperlink": { + "linkColor": "accent" + }, + "IconBadge": { + "infoBackground": "accent", + "newUiBackground": "accent" + }, + "IdeStatusBar": { + "border": "4,4,4,4" + }, + "InformationHint": { + "borderColor": "border" }, - "IdeStatusBar.border": "4,4,4,4", - "InformationHint.borderColor": "border", "inactiveCaption": "second", "inactiveCaptionBorder": "bg", "inactiveCaptionText": "text", "info": "text", "infoPanelForeground": "text", "infoText": "text", + "InlineBanner": { + "hoverBackground": "accent70", + "pressedBackground": "accent70" + }, "InplaceRefactoringPopup": { "background": "bg", "borderColor": "bg" @@ -622,10 +732,13 @@ "foreground": "fg" }, "InternalFrame": { + "activeTitleBackground": "bg", "activeTitleForeground": "fg", "background": "bg", "inactiveTitleBackground": "bg", - "inactiveTitleForeground": "text" + "inactiveTitleForeground": "text", + "optionDialogBackground": "bg", + "paletteBackground": "bg" }, "Label": { "background": "bg", @@ -676,20 +789,22 @@ "hoverBackground": "hl", "leftRightInset": 8, "separatorColor": "border", - "separatorInset": 4 + "separatorInset": 8 }, "foreground": "fg", "hoverBackground": "hl", "hoverInactiveBackground": "table", - "Line.hoverBackground": "selBg", + "Line": { + "hoverBackground": "selBg" + }, "rowHeight": "28", "selectionBackground": "tree", "selectionForeground": "selFg", "selectionInactiveBackground": "table", "selectionInactiveForeground": "activeFg", "Tag": { - "background": "button", - "foreground": "fg" + "foreground": "fg", + "background": "button" } }, "LiveIndicator": { @@ -703,31 +818,60 @@ "background": "hc", "foreground": "fg", "selectionForeground": "activeFg", - "selectionBackground": "selBg" + "selectionBackground": "selBg", + "transparentSelectionBackground": "tree" }, "MainToolbar": { "background": "bg", "Button": { - "buttonInsets": "0,0,0,0" + "buttonInsets": "0,4,0,4", + "iconSize": 20, + "size": "28,28" }, "Dropdown": { "borderInsets": "6,12,6,12", "background": "bg", "foreground": "fg", "hoverBackground": "hl", - "pressedBackground": "table" + "pressedBackground": "table", + "transparentHoverBackground": "accent70" }, + "foreground": "fg", "hoverBackground": "hl", "Icon": { - "borderInsets": "10,10,10,10", + "borderInsets": "4,4,4,4", "background": "bg", "hoverBackground": "hl", + "insets": "5,4,5,4", "pressedBackground": "table" }, "inactiveBackground": "bg", "pressedBackground": "table", - "separatorColor": "border" + "separatorColor": "border", + "SplitDropdown": { + "borderInsets": "6,6,6,6" + } }, + "MainWindow": { + "FullScreeControl": { + "Background": "hl" + }, + "Tab": { + "background": "bg", + "borderColor": "bg", + "foreground": "fg", + "hoverBackground": "hl", + "hoverForeground": "fg", + "selectedBackground": "selBg", + "selectedForeground": "selFg", + "selectedInactiveBackground": "excl", + "separatorColor": "border" + } + }, + "ManagedIdeBadgeBorder": "border", + "ManagedIdeBadgeBackground": "bg", + "ManagedIdeBadgeBackgroundHover": "accent70", + "ManagedIdeMenuItemHover": "selBg", "material": { "background": "bg", "branchColor": "fg", @@ -785,8 +929,12 @@ "disabledBackground": "bg", "disabledForeground": "dis", "foreground": "fg", + "insets": "0,4,0,4", "selectionBackground": "selBg", - "selectionForeground": "activeFg" + "selectionForeground": "activeFg", + "Selection": { + "arc": 8 + } }, "MlModelBinding.Viewer.CodeEditor.background": "bg", "MnemonicIcon": { @@ -797,6 +945,9 @@ "NavBar": { "arrowColor": "fg", "borderColor": "bg", + "Breadcrumbs": { + "itemInsets": "4,2,4,2" + }, "selectedColor": "accent" }, "NewClass": { @@ -806,15 +957,21 @@ "SearchField": { "background": "cs" }, - "separatorWidth": 6 + "separatorWidth": 10 }, "NewPSD.warning": "accent", + "NewUiOnboarding": { + "Dialog": { + "background": "second" + } + }, "Notification": { "arc": 16, "Error.foreground": "accent", "Link.foreground": "accent", "background": "notif", - "borderColor": "notif", + "borderColor": "border", + "borderInsets": "4,4,4,4", "errorBackground": "notif", "errorBorderColor": "notif", "errorForeground": "accent", @@ -855,18 +1012,27 @@ "ToolWindowWarning": { "foreground": "fg", "background": "notifWarn" + }, + "WelcomeScreen": { + "separatorColor": "border" } }, "Notifications": { "background": "notif", - "borderColor": "notif" + "borderColor": "border" }, "NotificationsToolwindow": { - "Notification.hoverBackground": "tree", - "newNotification.background": "notif", - "newNotification.hoverBackground": "tree" + "Notification": { + "hoverBackground": "tree" + }, + "newNotification": { + "background": "notif", + "hoverBackground": "tree" + } + }, + "OnePixelDivider": { + "background": "border" }, - "OnePixelDivider.background": "border", "OptionPane": { "background": "bg", "foreground": "fg", @@ -882,7 +1048,6 @@ "focusedColor": "accent" }, "Panel": { - "background": "bg", "foreground": "fg", "mouseShortcutBackground": "bg" }, @@ -911,16 +1076,6 @@ "Plugins": { "background": "bg", "borderColor": "border", - "disabledForeground": "dis", - "eapTagBackground": "hl", - "hoverBackground": "hl", - "lightSelectionBackground": "table", - "paidTagBackground": "hl", - "selectionBackground": "selBg", - "selectionForeground": "selFg", - "tagBackground": "hl", - "tagForeground": "accent", - "trialTagBackground": "hl", "Button": { "installBackground": "button", "installBorderColor": "button", @@ -928,10 +1083,15 @@ "installFillForeground": "dis", "installFocusedBackground": "hl", "installForeground": "fg", - "updateBackground": "accent", + "updateBackground": "button", "updateBorderColor": "button", "updateForeground": "fg" }, + "disabledForeground": "dis", + "eapTagBackground": "hl", + "hoverBackground": "hl", + "lightSelectionBackground": "table", + "paidTagBackground": "hl", "ScreenshotPagination": { "CurrentImage.fillColor": "accent" }, @@ -943,10 +1103,20 @@ "background": "second", "foreground": "fg" }, + "selectionBackground": "selBg", + "selectionForeground": "selFg", + "suggestedLabelBackground": "button", + "tagBackground": "hl", + "tagForeground": "accent", + "trialTagBackground": "hl", "Tab": { - "active.background": "table", - "active.foreground": "activeFg", - "hover.background": "table", + "active": { + "background": "table", + "foreground": "activeFg" + }, + "hover": { + "background": "table" + }, "hoverBackground": "table", "selectedBackground": "table", "selectedForeground": "selFg" @@ -954,6 +1124,7 @@ }, "Popup": { "Advertiser": { + "borderColor": "border", "borderInsets": "6,20,6,20", "background": "bg", "borderColor": "bg", @@ -968,24 +1139,33 @@ "color": "cs", "inactiveColor": "bg" }, - "background": "notif", + "background": "bg", "borderColor": "cs", "borderWidth": 0, "inactiveBorderColor": "bg", "innerBorderColor": "second", "Header": { "activeBackground": "bg", + "activeForeground": "fg", "inactiveBackground": "cs", - "inactiveForeground": "text" + "inactiveForeground": "dis", + "insets": "12,10,12,10" }, + "mnemonicForeground": "text", "paintBorder": false, "preferences": { "background": "bg", "borderColor": "bg", "foreground": "fg" }, - "Selection.arc": 8, - "Selection.leftRightInset": 8, + "SearchField": { + "borderInsets": "4,4,4,4", + "inputInsets": "4,4,4,4" + }, + "Selection": { + "arc": 8, + "leftRightInset": 8 + }, "Separator": { "foreground": "fg", "color": "border" @@ -1003,8 +1183,14 @@ "background": "bg", "borderWidth": 1, "border": "8,8,8,8", + "borderInsets": "10,10,10,10", "borderCornerRadius": 8, + "borderCornerRadiusX": 8, + "borderCornerRadiusY": 8, + "borderWidth": 1, "foreground": "fg", + "leftBorderWidth": 8, + "rightBorderWidth": 8, "Selection": { "arc": 8, "innerInsets": "8,2,8,2" @@ -1013,12 +1199,35 @@ "translucentBackground": "bg" }, "PopupMenuSeparator": { + "borderCornerRadius": 8, "height": 10, "stripeWidth": 2, "stripeIndent": 5, "withToEdge": 4, "borderCornerRadius": 8 }, + "PresentationAssistant": { + "Bright": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + }, + "Pale": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + } + }, + "Profiler": { + "neutralLifecycleEvent": "second", + "trackBackground": "button" + }, "ProgressBar": { "background": "bg", "foreground": "accent", @@ -1062,29 +1271,106 @@ "selectionBackground": "selBg", "selectionForeground": "selFg" }, + "Review": { + "Avatar": { + "Border": { + "Status": { + "Accepted": "accent", + "NeedReview": "hl" + } + } + }, + "Branch": { + "Background": "button", + "Background.Hover": "hl" + }, + "ChatItem": { + "BubblePanel": { + "Border": "button" + }, + "Hover": "table" + }, + "Editor": { + "Line": { + "Status": { + "Marker": "accent" + } + } + }, + "MetaInfo": { + "StatusLine": { + "Gray": "excl", + "Blue": "accent" + } + }, + "State": { + "Background": "second", + "Foreground": "fg" + }, + "Timeline": { + "Thread": { + "Diff": { + "AnchorLine": "table" + } + } + } + }, "ReviewList": { "state.background": "second", "state.foreground": "fg" }, + "RunToolbar": { + "Debug": { + "activeBackground": "hl" + }, + "Profile": { + "activeBackground": "hl" + }, + "Run": { + "activeBackground": "hl" + } + }, "RunWidget": { "background": "button", - "Debug.activeBackground": "hl", - "foreground": "fg", - "hoverBackground": "table", - "pressedBackground": "hl", - "Profile.activeBackground": "hl", + "Debug": { + "activeBackground": "hl" + }, + "foreground": "selFg", + "hoverBackground": "hl", + "iconColor": "fg", + "leftPressedBackground": "table", + "leftHoverBackground": "hl", + "pressedBackground": "table", + "Profile": { + "activeBackground": "hl" + }, "runningBackground": "hl", - "runningForeground": "selFg", - "Run.activeBackground": "hl", + "Run": { + "activeBackground": "hl" + }, "Running": { "background": "hl", - "foreground": "selFg", "leftHoverBackground": "hl", - "leftPressedBackground": "hl" + "leftPressedBackground": "table" }, - "separatorColor": "border" + "runningBackground": "hl", + "runningForeground": "selFg", + "runIconColor": "accent", + "separatorColor": "border", + "stopBackground": "second", + "StopButton": { + "leftHoverBackground": "hl", + "leftPressedBackground": "second" + }, + "toolbarHeight": 30, + "toolbarBorderHeight": 4 + }, + "ScreenView": { + "borderColor": "border", + "defaultBorderColor": "border", + "hoveredBorderColor": "hl", + "selectedBorderColor": "selBg" }, - "ScreenView.borderColor": "border", "scrollbar": "bg", "ScrollBar": { "background": "bg", @@ -1186,9 +1472,9 @@ }, "SegmentedButton": { "focusedSelectedButtonColor": "hl", + "selectedEndBorderColor": "accent", "selectedButtonColor": "button", - "selectedStartBorderColor": "border", - "selectedEndBorderColor": "border" + "selectedStartBorderColor": "accent" }, "Separator": { "background": "second", @@ -1198,6 +1484,7 @@ "Settings": { "Spotlight.borderColor": "accent" }, + "shortcutForeground": "text", "SidePanel": { "background": "hc" }, @@ -1222,6 +1509,7 @@ "foreground": "fg" }, "Spinner": { + "arrowButtonInsets": "1,1,1,1", "background": "bg", "border": "4,4,4,4", "disabledBackground": "excl", @@ -1232,11 +1520,16 @@ "background": "bg", "highlight": "hc" }, - "SplitPaneDivider.draggingColor": "second", - "StateWidget.activeBackground": "button", + "SplitPaneDivider": { + "draggingColor": "second" + }, + "StateWidget": { + "activeBackground": "button" + }, "StatusBar": { - "background": "bg", + "background": "bg10", "Breadcrumbs": { + "chevronInset": 0, "floatingBackground": "tree", "floatingForeground": "fg", "floatingToolbarInsets": "8,12,8,12", @@ -1244,6 +1537,7 @@ "hoverBackground": "tree", "hoverForeground": "fg", "itemBackgroundInsets": "2,4,2,4", + "itemInsets": 0, "selectionBackground": "selBg", "selectionForeground": "activeFg", "selectionInactiveBackground": "button", @@ -1264,6 +1558,13 @@ "widgetInsets": "8,12,8,12" } }, + "StripeToolbar": { + "Button": { + "iconSize": 20, + "iconPadding": 8, + "size": "40,40" + } + }, "TabbedPane": { "background": "bg", "borderColor": "hc", @@ -1290,6 +1591,7 @@ "selectedTabPadInsets": "0,0,0,0", "shadow": "hc", "tabHeight": 32, + "tabAreaInsets": 0, "tabInsets": "5,10,5,10", "tabSelectionArc": 4, "tabSelectionHeight": 2, @@ -1385,7 +1687,7 @@ "TitlePane": { "Button": { "hoverBackground": "hl", - "preferredSize": "48,40" + "preferredSize": "42,42" }, "background": "hc", "inactiveBackground": "bg", @@ -1407,15 +1709,23 @@ "onBackground": "accent", "onForeground": "accent" }, - "Toolbar.Floating.background": "button", + "Toolbar": { + "horizontalToolbarInsets": "8,8,8,8", + "Floating": { + "background": "button", + "borderColor": "border" + }, + "verticalToolbarInsets": "8,8,8,8" + }, "ToolBar": { "background": "hc", "borderHandleColor": "text", "comboBoxButtonBackground": "button", "floatingForeground": "text", "foreground": "fg", - "verticalToolbarInsets": "6,6,6,6", - "horizontalToolbarInsets": "6,6,6,6" + "horizontalToolbarInsets": "6,6,6,6", + "separatorColor": "border", + "verticalToolbarInsets": "6,6,6,6" }, "ToolbarComboWidget": { "background": "button", @@ -1426,6 +1736,21 @@ "actions.settings.icon.background.color": "bg", "description.title.text.color": "fg" }, + "Tooltip": { + "Learning": { + "codeBorderColor": "cs", + "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "spanBackground": "accent70", + "spanForeground": "fg" + }, + "separatorColor": "border" + }, "ToolTip": { "arc": 6, "actions": { @@ -1445,6 +1770,7 @@ "Learning": { "background": "accent", "borderColor": "accent", + "codeForeground": "fg", "foreground": "fg", "spanBackground": "accent50", "spanForeground": "fg", @@ -1463,25 +1789,44 @@ "Button": { "hoverBackground": "table", "DragAndDrop": { - "stripeBackground": "cs", - "buttonDropBackground": "accent70" + "stripeBackground": "bg", + "buttonDropBackground": "selBg70", + "buttonDropBorderColor": "accent", + "buttonFloatingBackground": "button" }, "selectedBackground": "cs", "selectedForeground": "activeFg" }, + "DragAndDrop": { + "areaBackground": "accent50" + }, "header": { - "active.background": "second", + "active": { + "background": "second" + }, "background": "bg", - "border.background": "second", - "closeButton.background": "bg", - "tab.selected.active.background": "cs", - "tab.selected.background": "cs" + "border": { + "background": "border" + }, + "closeButton": { + "background": "bg" + }, + "tab": { + "selected": { + "active": { + "background": "cs" + }, + "background": "cs" + } + } }, "Header": { "height": 42, "background": "second", - "borderColor": "second", - "inactiveBackground": "bg" + "borderColor": "border", + "inactiveBackground": "bg", + "labelLeftRightInsets": "0,12,0,16", + "toolbarLeftRightInsets": "0,12,0,8" }, "HeaderCloseButton": { "background": "bg" @@ -1506,6 +1851,12 @@ "inactive": { "Header.background": "bg", "HeaderTab.background": "cs" + }, + "Stripe": { + "DragAndDrop": { + "separatorColor": "accent50" + }, + "separatorColor": "table" } }, "Tree": { @@ -1522,13 +1873,17 @@ "selectionForeground": "selFg", "selectionInactiveBackground": "tree", "selectionInactiveForeground": "selFg", - "textBackground": "hc" + "textBackground": "hc", + "leftChildIndent": 10, + "rightChildIndent": 5 }, - "Tree.leftChildIndent": 10, - "Tree.rightChildIndent": 5, "UIDesigner": { - "Activity.borderColor": "border", - "Canvas.background": "cs", + "Activity": { + "borderColor": "border" + }, + "Canvas": { + "background": "cs" + }, "ColorPicker": { "background": "second", "foreground": "fg" @@ -1543,49 +1898,119 @@ "borderColor": "border", "hoverBorderColor": "hl" }, - "Label.foreground": "text", - "highStroke.foreground": "fg", + "Label": { + "foreground": "text" + }, + "highStroke": { + "foreground": "fg" + }, "motion": { "AddConstraintColor": "accent", "AddConstraintPlus": "accent", - "CSPanel.SelectedBackground": "tree", - "CSPanel.SelectedFocusBackground": "selBg", - "Component.foreground": "fg", - "ConstraintSet.background": "second", - "ConstraintSetText.foreground": "text", - "CursorTextColor.foreground": "fg", - "HoverColor.disabledBackground": "dis", - "Key.selectedForeground": "accent", - "Notification.background": "notif", + "Axis": { + "lineSeparatorColor": "fg" + }, + "CSPanel": { + "SelectedBackground": "tree", + "SelectedFocusBackground": "selBg" + }, + "Component": { + "foreground": "fg" + }, + "ConstraintSet": { + "background": "second" + }, + "ConstraintSetText": { + "foreground": "text" + }, + "CursorTextColor": { + "foreground": "fg" + }, + "HoverColor": { + "disabledBackground": "dis" + }, + "Key": { + "selectedForeground": "accent" + }, + "Notification": { + "background": "notif" + }, "PositionMarkColor": "accent", - "PrimaryPanel.background": "cs", - "SecondaryPanel.background": "bg", - "SecondaryPanel.header.background": "cs", - "SecondaryPanel.header.foreground": "text", - "TimeCursor.End.selectedForeground": "accent", - "TimeCursor.Start.selectedForeground": "accent", - "TimeCursor.selectedForeground": "accent", + "PrimaryPanel": { + "background": "cs" + }, + "SecondaryPanel": { + "background": "bg", + "header": { + "background": "cs", + "foreground": "text" + } + }, + "TimeCursor": { + "End": { + "selectedForeground": "accent" + }, + "selectedForeground": "accent", + "Start": { + "selectedForeground": "accent" + } + }, "borderColor": "border", - "cs_FocusText.infoForeground": "text", - "graphLine.lineSeparatorColor": "accent", - "motionGraph.background": "bg", - "ourAvg.background": "second", - "ourCS.background": "second", - "ourCS_Border.borderColor": "border", - "ourCS_SelectedBackground.selectionInactiveBackground": "table", - "ourCS_SelectedBorder.pressedBorderColor": "hl", - "ourCS_SelectedFocusBackground.selectionForeground": "selFg", - "ourCS_SelectedFocusBorder.focusedBorderColor": "accent", - "ourCS_TextColor.foreground": "text", - "ourML_BarColor.separatorColor": "border", - "timeLine.disabledBorderColor": "border" + "cs_FocusText": { + "infoForeground": "text" + }, + "graphLine": { + "lineSeparatorColor": "accent" + }, + "Grid": { + "lineSeparatorColor": "border" + }, + "label": { + "background": "second", + "textColor": "text" + }, + "motionGraph": { + "background": "bg" + }, + "ourAvg": { + "background": "second" + }, + "ourCS": { + "background": "second" + }, + "ourCS_Border": { + "borderColor": "border" + }, + "ourCS_SelectedBackground": { + "selectionInactiveBackground": "table" + }, + "ourCS_SelectedBorder": { + "pressedBorderColor": "hl" + }, + "ourCS_SelectedFocusBackground": { + "selectionForeground": "selFg" + }, + "ourCS_SelectedFocusBorder": { + "focusedBorderColor": "accent" + }, + "ourCS_TextColor": { + "foreground": "text" + }, + "ourML_BarColor": { + "separatorColor": "border" + }, + "timeLine": { + "disabledBorderColor": "border" + } }, "PackageDetails": { "border": "accent", "infoBanner": "accent" }, "PackageSearch": { - "PackagesList.rowHeight": 28, + "PackagesList": { + "rowHeight": 28 + }, "PackageTag": { "background": "excl", "foreground": "fg", @@ -1617,7 +2042,9 @@ "lines3d": "accent", "secondaryGraphLines": "border" }, - "percent.foreground": "fg", + "percent": { + "foreground": "fg" + }, "Placeholder": { "background": "bg", "borderColor": "border", @@ -1634,9 +2061,11 @@ "warningBorderColor": "notif" }, "VersionControl": { - "FileHistory.Commit": { - "otherBranchBackground": "excl", - "selectedBranchBackground": "bg" + "FileHistory": { + "Commit": { + "otherBranchBackground": "excl", + "selectedBranchBackground": "bg" + } }, "GitCommits": { "graphColor": "hl" @@ -1660,8 +2089,13 @@ "Commit": { "currentBranchBackground": "cs", "hoveredBackground": "tree", + "selectionInactiveForeground": "fg", + "Reference": { + "foreground": "text" + }, "rowHeight": 28, - "unmatchedForeground": "text" + "unmatchedForeground": "text", + "verticalPadding": 8 } }, "MarkerPopup": { @@ -1688,30 +2122,39 @@ "foreground": "fg" }, "WelcomeScreen": { - "AssociatedComponent.background": "bg", - "Details.background": "bg", - "List": { - "background": "hc", - "selectionBackground": "selBg", - "selectionInactiveBackground": "hl" + "AssociatedComponent": { + "background": "bg" }, - "SidePanel.background": "second", "background": "bg", "borderColor": "bg", "captionBackground": "cs", "captionForeground": "fg", + "Details": { + "background": "bg" + }, "footerBackground": "cs", "footerForeground": "fg", "groupIconBorderColor": "button", "headerBackground": "bg", "headerForeground": "fg", - "separatorColor": "border", + "List": { + "background": "hc", + "selectionBackground": "selBg", + "selectionInactiveBackground": "hl" + }, "Projects": { - "actions.background": "cs", - "actions.selectionBackground": "hl", + "actions": { + "background": "cs", + "selectionBackground": "hl", + "selectionBorderColor": "accent" + }, "background": "second", "selectionBackground": "selBg", "selectionInactiveBackground": "selBg" + }, + "separatorColor": "border", + "SidePanel": { + "background": "second" } }, "Window.border": "border", diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/GitHub Dark.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/GitHub Dark.theme.json index be7c0cdf..f689c86f 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/GitHub Dark.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/GitHub Dark.theme.json @@ -16,7 +16,7 @@ "second": "#2f363d", "dis": "#6a737d", "accent": "#f9826c", - "accent2": "#f9826c2", + "acc2": "#9ecbff", "accent50": "#f9826c50", "accent70": "#f9826c70", "cs": "#1e2428", @@ -26,7 +26,7 @@ "hl": "#444d56", "notif": "#2f363d", "hc": "#24292e", - "shadow": "undefined", + "shadow": "#00000020", "white": "#d1d5da", "blue": "#b392f0", "red": "#85e89d", @@ -71,19 +71,25 @@ "hoverBorderColor": "accent50", "hoverSeparatorColor": "button", "pressedBackground": "accent50", - "pressedBorderColor": "accent50" + "pressedBorderColor": "accent50", + "separatorColor": "border" }, "ActionsList": { "icon.gap": 12, - "mnemonic.icon.gap": 12 + "mnemonic.icon.gap": 12, + "mnemonicInsets": "0,8,0,8", + "mnemonicsBorderInsets": "0,8,0,8", + "mnemonic.insets": "0,8,0,8" }, "ActionToolbar": { "background": "hc" }, - "AppInspector.GraphNode": { - "background": "second", - "borderColor": "border", - "focusedBorderColor": "accent" + "AppInspector": { + "GraphNode": { + "background": "second", + "borderColor": "border", + "focusedBorderColor": "accent" + } }, "AssignedMnemonic": { "background": "hl", @@ -99,13 +105,26 @@ "borderColor": "button", "foreground": "fg" }, - "BigSpinner.background": "bg", + "Banner": { + "foreground": "fg" + }, + "BigSpinner": { + "background": "bg" + }, "Bookmark": { "iconBackground": "accent", "Mnemonic": { "iconBackground": "hl", "iconBorderColor": "hl", "iconForeground": "fg" + }, + "MnemonicAssigned": { + "background": "table", + "foreground": "fg" + }, + "MnemonicCurrent": { + "background": "selBg", + "foreground": "selFg" } }, "BookmarkMnemonicAssigned": { @@ -128,13 +147,18 @@ "borderColor": "hl", "foreground": "fg" }, - "BookmarkIcon.background": "accent", - "Borders.ContrastBorderColor": "bg", - "Borders.color": "border", - "Breakpoint.iconHoverAlpha": 0.35, + "BookmarkIcon": { + "background": "accent" + }, + "Borders": { + "ContrastBorderColor": "bg", + "color": "border" + }, + "Breakpoint": { + "iconHoverAlpha": 0.35 + }, "Button": { "arc": 8, - "background": "bg", "darcula": { "borderColor": "button", "defaultBorderColor": "button", @@ -175,6 +199,7 @@ "focusedBorderColor": "accent", "foreground": "text", "highlight": "selFg", + "minimumSize": 72, "mt.background": "button", "mt.color1": "button", "mt.color2": "button", @@ -185,6 +210,12 @@ "select": "button", "shadowColor": "shadow", "shadowWidth": 0, + "Split": { + "default": { + "iconColor": "fg", + "separatorColor": "accent" + } + }, "startBackground": "table", "startBorderColor": "button", "ToolWindow": { @@ -195,11 +226,18 @@ "Tooltip.background": "notif", "Tooltip.borderColor": "border" }, + "CellEditor": { + "border": { + "width": 2 + } + }, "CheckBox": { "background": "bg", "background.selected": "accent", "borderColor": "bg", "borderColor.selected": "accent", + "border.width": 3, + "borderInsets": "4,4,4,4", "checkSignColor": "bg", "checkSignColor.selected": "bg", "checkSignColorDisabled": "bg", @@ -297,7 +335,9 @@ "foreground": "fg", "swatchesDefaultRecentColor": "fg" }, - "ComboBoxButton.background": "button", + "ComboBoxButton": { + "background": "button" + }, "ComboBox": { "ArrowButton": { "background": "button", @@ -327,14 +367,16 @@ "selectionBackground": "table", "selectionForeground": "activeFg" }, - "ComboPopup.border": "1,1,1,1,#f9826c", + "ComboPopup": { + "border": "1,1,1,1,#f9826c" + }, "CompletionPopup": { "Advertiser": { - "background": "bg", - "foreground": "fg", + "background": "second", + "foreground": "text", "borderInsets": "8,12,8,12" }, - "background": "second", + "background": "button", "foreground": "fg", "grayForeground": "text", "grayedForeground": "text", @@ -351,13 +393,20 @@ "selectionInactiveBackground": "hl", "selectionInactiveForeground": "text", "selectionInactiveInfoForeground": "text", - "selectionInfoForeground": "selFg" + "selectionInfoForeground": "selFg", + "selectionInnerInsets": "4,4,4,4" }, "ComplexPopup": { - "Header.background": "notif" + "Header": { + "background": "bg", + "insets": "12,12,12,12" + }, + "TextField": { + "inputInsets": "8,4,8,4" + } }, "Component": { - "arc": 4, + "arc": 6, "focusWidth": 2, "borderColor": "hl", "disabledBorderColor": "dis", @@ -440,7 +489,7 @@ "southPanelDivider": "bg" }, "DragAndDrop": { - "areaBackground": "tree", + "areaBackground": "selBg70", "areaBorderColor": "bg", "areaForeground": "fg", "backgroundBorderColor": "bg", @@ -453,18 +502,37 @@ "Editor": { "background": "hc", "foreground": "fg", + "Notification": { + "borderInsets": "10,12,10,12", + "WithoutStatus.borderInsets": "10,12,10,12" + }, + "ReplaceToolbar": { + "borderInsets": "4,12,4,12" + }, "shortcutForeground": "text", "SearchField": { "background": "cs", "borderInsets": "8,12,8,12" }, + "SearchReplaceModePanel": { + "borderInsets": "4,12,4,12" + }, + "SearchToolbar": { + "borderInsets": "4,12,4,12" + }, "Toolbar": { "borderColor": "border" + }, + "ToolTip": { + "border": "border", + "foreground": "fg", + "iconHoverBackground": "table", + "selectionBackground": "selBg" } }, "EditorGroupsTabs": { "background": "bg", - "borderColor": "second", + "borderColor": "border", "hoverBackground": "hl", "hoverColor": "hl", "inactiveUnderlineColor": "accent", @@ -474,6 +542,7 @@ }, "EditorPane": { "background": "hc", + "borderColor": "border", "caretForeground": "accent", "foreground": "fg", "inactiveBackground": "bg", @@ -483,21 +552,25 @@ "splitBorder": "border" }, "EditorTabs": { - "active.background": "table", - "active.foreground": "fg", - "active.underlineColor": "accent", + "active": { + "background": "table", + "foreground": "fg", + "underlineColor": "accent" + }, "background": "bg", - "borderColor": "second", "foreground": "fg", "hoverBackground": "hl", "hoverColor": "hl", "hoverMaskColor": "hl", "inactive.maskColor": "bg", - "inactiveColoredFileBackground": "bg", + "inactiveColoredFileBackground": "bg70", "inactiveMaskColor": "bg", "inactiveUnderlineColor": "dis", "selectedBackground": "table", "selectedForeground": "fg", + "tabContentInsetsActionsLeft": "0,6,0,6", + "tabContentInsetsActionsNone": "0,6,0,6", + "tabContentInsetsActionsRight": "0,6,0,6", "tabInsets": "-10,10,-10,10", "underlineColor": "accent", "underlineHeight": 3, @@ -515,6 +588,10 @@ "Gray": "excl", "excluded": "excl" }, + "FindPopup": { + "scopesPanelInsets": "4,16,4,16", + "bottomPanelInsets": "4,10,4,10" + }, "FlameGraph": { "JVMBackground": "#89DDF7", "JVMFocusBackground": "#82AAFF", @@ -555,15 +632,34 @@ "selectionForeground.unfocused": "selFg" }, "GotItTooltip": { + "animationBackground": "notif", "background": "notif", "borderColor": "notif", + "Button": { + "contrastBackground": "cs", + "endBackground": "button", + "foreground": "fg", + "startBackground": "button" + }, + "codeBackground": "cs", + "codeBorderColor": "bg", + "codeForeground": "fg", "endBackground": "button", "endBorderColor": "button", "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "imageBorderColor": "notif", "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "shortcutBackground": "notif", + "shortcutBorderColor": "border", "shortcutForeground": "text", "startBackground": "button", - "startBorderColor": "button" + "startBorderColor": "button", + "stepForeground": "text" }, "Group": { "disabledSeparatorColor": "border", @@ -587,7 +683,10 @@ "borderColor": "border", "defaultTextBorderInsets": "16,16,16,16", "foreground": "fg", + "fontSizeDelta": 0, + "horizontalGap": 10, "infoForeground": "text", + "maxWidth": 250, "shortcutForeground": "text", "shortcutTextColor": "text", "smallTextBorderInsets": "8,12,8,12", @@ -601,18 +700,29 @@ "MqTag": "text", "Tag": "text" }, - "Hyperlink.linkColor": "accent", - "IconBadge": { - "infoBackground": "accent" + "Hyperlink": { + "linkColor": "accent" + }, + "IconBadge": { + "infoBackground": "accent", + "newUiBackground": "accent" + }, + "IdeStatusBar": { + "border": "4,4,4,4" + }, + "InformationHint": { + "borderColor": "border" }, - "IdeStatusBar.border": "4,4,4,4", - "InformationHint.borderColor": "border", "inactiveCaption": "second", "inactiveCaptionBorder": "bg", "inactiveCaptionText": "text", "info": "text", "infoPanelForeground": "text", "infoText": "text", + "InlineBanner": { + "hoverBackground": "accent70", + "pressedBackground": "accent70" + }, "InplaceRefactoringPopup": { "background": "bg", "borderColor": "bg" @@ -622,10 +732,13 @@ "foreground": "fg" }, "InternalFrame": { + "activeTitleBackground": "bg", "activeTitleForeground": "fg", "background": "bg", "inactiveTitleBackground": "bg", - "inactiveTitleForeground": "text" + "inactiveTitleForeground": "text", + "optionDialogBackground": "bg", + "paletteBackground": "bg" }, "Label": { "background": "bg", @@ -676,20 +789,22 @@ "hoverBackground": "hl", "leftRightInset": 8, "separatorColor": "border", - "separatorInset": 4 + "separatorInset": 8 }, "foreground": "fg", "hoverBackground": "hl", "hoverInactiveBackground": "table", - "Line.hoverBackground": "selBg", + "Line": { + "hoverBackground": "selBg" + }, "rowHeight": "28", "selectionBackground": "tree", "selectionForeground": "selFg", "selectionInactiveBackground": "table", "selectionInactiveForeground": "activeFg", "Tag": { - "background": "button", - "foreground": "fg" + "foreground": "fg", + "background": "button" } }, "LiveIndicator": { @@ -703,31 +818,60 @@ "background": "hc", "foreground": "fg", "selectionForeground": "activeFg", - "selectionBackground": "selBg" + "selectionBackground": "selBg", + "transparentSelectionBackground": "tree" }, "MainToolbar": { "background": "bg", "Button": { - "buttonInsets": "0,0,0,0" + "buttonInsets": "0,4,0,4", + "iconSize": 20, + "size": "28,28" }, "Dropdown": { "borderInsets": "6,12,6,12", "background": "bg", "foreground": "fg", "hoverBackground": "hl", - "pressedBackground": "table" + "pressedBackground": "table", + "transparentHoverBackground": "accent70" }, + "foreground": "fg", "hoverBackground": "hl", "Icon": { - "borderInsets": "10,10,10,10", + "borderInsets": "4,4,4,4", "background": "bg", "hoverBackground": "hl", + "insets": "5,4,5,4", "pressedBackground": "table" }, "inactiveBackground": "bg", "pressedBackground": "table", - "separatorColor": "border" + "separatorColor": "border", + "SplitDropdown": { + "borderInsets": "6,6,6,6" + } }, + "MainWindow": { + "FullScreeControl": { + "Background": "hl" + }, + "Tab": { + "background": "bg", + "borderColor": "bg", + "foreground": "fg", + "hoverBackground": "hl", + "hoverForeground": "fg", + "selectedBackground": "selBg", + "selectedForeground": "selFg", + "selectedInactiveBackground": "excl", + "separatorColor": "border" + } + }, + "ManagedIdeBadgeBorder": "border", + "ManagedIdeBadgeBackground": "bg", + "ManagedIdeBadgeBackgroundHover": "accent70", + "ManagedIdeMenuItemHover": "selBg", "material": { "background": "bg", "branchColor": "fg", @@ -785,8 +929,12 @@ "disabledBackground": "bg", "disabledForeground": "dis", "foreground": "fg", + "insets": "0,4,0,4", "selectionBackground": "selBg", - "selectionForeground": "activeFg" + "selectionForeground": "activeFg", + "Selection": { + "arc": 8 + } }, "MlModelBinding.Viewer.CodeEditor.background": "bg", "MnemonicIcon": { @@ -797,6 +945,9 @@ "NavBar": { "arrowColor": "fg", "borderColor": "bg", + "Breadcrumbs": { + "itemInsets": "4,2,4,2" + }, "selectedColor": "accent" }, "NewClass": { @@ -806,15 +957,21 @@ "SearchField": { "background": "cs" }, - "separatorWidth": 6 + "separatorWidth": 10 }, "NewPSD.warning": "accent", + "NewUiOnboarding": { + "Dialog": { + "background": "second" + } + }, "Notification": { "arc": 16, "Error.foreground": "accent", "Link.foreground": "accent", "background": "notif", - "borderColor": "notif", + "borderColor": "border", + "borderInsets": "4,4,4,4", "errorBackground": "notif", "errorBorderColor": "notif", "errorForeground": "accent", @@ -855,18 +1012,27 @@ "ToolWindowWarning": { "foreground": "fg", "background": "notifWarn" + }, + "WelcomeScreen": { + "separatorColor": "border" } }, "Notifications": { "background": "notif", - "borderColor": "notif" + "borderColor": "border" }, "NotificationsToolwindow": { - "Notification.hoverBackground": "tree", - "newNotification.background": "notif", - "newNotification.hoverBackground": "tree" + "Notification": { + "hoverBackground": "tree" + }, + "newNotification": { + "background": "notif", + "hoverBackground": "tree" + } + }, + "OnePixelDivider": { + "background": "border" }, - "OnePixelDivider.background": "border", "OptionPane": { "background": "bg", "foreground": "fg", @@ -882,7 +1048,6 @@ "focusedColor": "accent" }, "Panel": { - "background": "bg", "foreground": "fg", "mouseShortcutBackground": "bg" }, @@ -911,16 +1076,6 @@ "Plugins": { "background": "bg", "borderColor": "border", - "disabledForeground": "dis", - "eapTagBackground": "hl", - "hoverBackground": "hl", - "lightSelectionBackground": "table", - "paidTagBackground": "hl", - "selectionBackground": "selBg", - "selectionForeground": "selFg", - "tagBackground": "hl", - "tagForeground": "accent", - "trialTagBackground": "hl", "Button": { "installBackground": "button", "installBorderColor": "button", @@ -928,10 +1083,15 @@ "installFillForeground": "dis", "installFocusedBackground": "hl", "installForeground": "fg", - "updateBackground": "accent", + "updateBackground": "button", "updateBorderColor": "button", "updateForeground": "fg" }, + "disabledForeground": "dis", + "eapTagBackground": "hl", + "hoverBackground": "hl", + "lightSelectionBackground": "table", + "paidTagBackground": "hl", "ScreenshotPagination": { "CurrentImage.fillColor": "accent" }, @@ -943,10 +1103,20 @@ "background": "second", "foreground": "fg" }, + "selectionBackground": "selBg", + "selectionForeground": "selFg", + "suggestedLabelBackground": "button", + "tagBackground": "hl", + "tagForeground": "accent", + "trialTagBackground": "hl", "Tab": { - "active.background": "table", - "active.foreground": "activeFg", - "hover.background": "table", + "active": { + "background": "table", + "foreground": "activeFg" + }, + "hover": { + "background": "table" + }, "hoverBackground": "table", "selectedBackground": "table", "selectedForeground": "selFg" @@ -954,6 +1124,7 @@ }, "Popup": { "Advertiser": { + "borderColor": "border", "borderInsets": "6,20,6,20", "background": "bg", "borderColor": "bg", @@ -968,24 +1139,33 @@ "color": "cs", "inactiveColor": "bg" }, - "background": "notif", + "background": "bg", "borderColor": "cs", "borderWidth": 0, "inactiveBorderColor": "bg", "innerBorderColor": "second", "Header": { "activeBackground": "bg", + "activeForeground": "fg", "inactiveBackground": "cs", - "inactiveForeground": "text" + "inactiveForeground": "dis", + "insets": "12,10,12,10" }, + "mnemonicForeground": "text", "paintBorder": false, "preferences": { "background": "bg", "borderColor": "bg", "foreground": "fg" }, - "Selection.arc": 8, - "Selection.leftRightInset": 8, + "SearchField": { + "borderInsets": "4,4,4,4", + "inputInsets": "4,4,4,4" + }, + "Selection": { + "arc": 8, + "leftRightInset": 8 + }, "Separator": { "foreground": "fg", "color": "border" @@ -1003,8 +1183,14 @@ "background": "bg", "borderWidth": 1, "border": "8,8,8,8", + "borderInsets": "10,10,10,10", "borderCornerRadius": 8, + "borderCornerRadiusX": 8, + "borderCornerRadiusY": 8, + "borderWidth": 1, "foreground": "fg", + "leftBorderWidth": 8, + "rightBorderWidth": 8, "Selection": { "arc": 8, "innerInsets": "8,2,8,2" @@ -1013,12 +1199,35 @@ "translucentBackground": "bg" }, "PopupMenuSeparator": { + "borderCornerRadius": 8, "height": 10, "stripeWidth": 2, "stripeIndent": 5, "withToEdge": 4, "borderCornerRadius": 8 }, + "PresentationAssistant": { + "Bright": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + }, + "Pale": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + } + }, + "Profiler": { + "neutralLifecycleEvent": "second", + "trackBackground": "button" + }, "ProgressBar": { "background": "bg", "foreground": "accent", @@ -1062,29 +1271,106 @@ "selectionBackground": "selBg", "selectionForeground": "selFg" }, + "Review": { + "Avatar": { + "Border": { + "Status": { + "Accepted": "accent", + "NeedReview": "hl" + } + } + }, + "Branch": { + "Background": "button", + "Background.Hover": "hl" + }, + "ChatItem": { + "BubblePanel": { + "Border": "button" + }, + "Hover": "table" + }, + "Editor": { + "Line": { + "Status": { + "Marker": "accent" + } + } + }, + "MetaInfo": { + "StatusLine": { + "Gray": "excl", + "Blue": "accent" + } + }, + "State": { + "Background": "second", + "Foreground": "fg" + }, + "Timeline": { + "Thread": { + "Diff": { + "AnchorLine": "table" + } + } + } + }, "ReviewList": { "state.background": "second", "state.foreground": "fg" }, + "RunToolbar": { + "Debug": { + "activeBackground": "hl" + }, + "Profile": { + "activeBackground": "hl" + }, + "Run": { + "activeBackground": "hl" + } + }, "RunWidget": { "background": "button", - "Debug.activeBackground": "hl", - "foreground": "fg", - "hoverBackground": "table", - "pressedBackground": "hl", - "Profile.activeBackground": "hl", + "Debug": { + "activeBackground": "hl" + }, + "foreground": "selFg", + "hoverBackground": "hl", + "iconColor": "fg", + "leftPressedBackground": "table", + "leftHoverBackground": "hl", + "pressedBackground": "table", + "Profile": { + "activeBackground": "hl" + }, "runningBackground": "hl", - "runningForeground": "selFg", - "Run.activeBackground": "hl", + "Run": { + "activeBackground": "hl" + }, "Running": { "background": "hl", - "foreground": "selFg", "leftHoverBackground": "hl", - "leftPressedBackground": "hl" + "leftPressedBackground": "table" }, - "separatorColor": "border" + "runningBackground": "hl", + "runningForeground": "selFg", + "runIconColor": "accent", + "separatorColor": "border", + "stopBackground": "second", + "StopButton": { + "leftHoverBackground": "hl", + "leftPressedBackground": "second" + }, + "toolbarHeight": 30, + "toolbarBorderHeight": 4 + }, + "ScreenView": { + "borderColor": "border", + "defaultBorderColor": "border", + "hoveredBorderColor": "hl", + "selectedBorderColor": "selBg" }, - "ScreenView.borderColor": "border", "scrollbar": "bg", "ScrollBar": { "background": "bg", @@ -1186,9 +1472,9 @@ }, "SegmentedButton": { "focusedSelectedButtonColor": "hl", + "selectedEndBorderColor": "accent", "selectedButtonColor": "button", - "selectedStartBorderColor": "border", - "selectedEndBorderColor": "border" + "selectedStartBorderColor": "accent" }, "Separator": { "background": "second", @@ -1198,6 +1484,7 @@ "Settings": { "Spotlight.borderColor": "accent" }, + "shortcutForeground": "text", "SidePanel": { "background": "hc" }, @@ -1222,6 +1509,7 @@ "foreground": "fg" }, "Spinner": { + "arrowButtonInsets": "1,1,1,1", "background": "bg", "border": "4,4,4,4", "disabledBackground": "excl", @@ -1232,11 +1520,16 @@ "background": "bg", "highlight": "hc" }, - "SplitPaneDivider.draggingColor": "second", - "StateWidget.activeBackground": "button", + "SplitPaneDivider": { + "draggingColor": "second" + }, + "StateWidget": { + "activeBackground": "button" + }, "StatusBar": { - "background": "bg", + "background": "bg10", "Breadcrumbs": { + "chevronInset": 0, "floatingBackground": "tree", "floatingForeground": "fg", "floatingToolbarInsets": "8,12,8,12", @@ -1244,6 +1537,7 @@ "hoverBackground": "tree", "hoverForeground": "fg", "itemBackgroundInsets": "2,4,2,4", + "itemInsets": 0, "selectionBackground": "selBg", "selectionForeground": "activeFg", "selectionInactiveBackground": "button", @@ -1264,6 +1558,13 @@ "widgetInsets": "8,12,8,12" } }, + "StripeToolbar": { + "Button": { + "iconSize": 20, + "iconPadding": 8, + "size": "40,40" + } + }, "TabbedPane": { "background": "bg", "borderColor": "hc", @@ -1290,6 +1591,7 @@ "selectedTabPadInsets": "0,0,0,0", "shadow": "hc", "tabHeight": 32, + "tabAreaInsets": 0, "tabInsets": "5,10,5,10", "tabSelectionArc": 4, "tabSelectionHeight": 2, @@ -1385,7 +1687,7 @@ "TitlePane": { "Button": { "hoverBackground": "hl", - "preferredSize": "48,40" + "preferredSize": "42,42" }, "background": "hc", "inactiveBackground": "bg", @@ -1407,15 +1709,23 @@ "onBackground": "accent", "onForeground": "accent" }, - "Toolbar.Floating.background": "button", + "Toolbar": { + "horizontalToolbarInsets": "8,8,8,8", + "Floating": { + "background": "button", + "borderColor": "border" + }, + "verticalToolbarInsets": "8,8,8,8" + }, "ToolBar": { "background": "hc", "borderHandleColor": "text", "comboBoxButtonBackground": "button", "floatingForeground": "text", "foreground": "fg", - "verticalToolbarInsets": "6,6,6,6", - "horizontalToolbarInsets": "6,6,6,6" + "horizontalToolbarInsets": "6,6,6,6", + "separatorColor": "border", + "verticalToolbarInsets": "6,6,6,6" }, "ToolbarComboWidget": { "background": "button", @@ -1426,6 +1736,21 @@ "actions.settings.icon.background.color": "bg", "description.title.text.color": "fg" }, + "Tooltip": { + "Learning": { + "codeBorderColor": "cs", + "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "spanBackground": "accent70", + "spanForeground": "fg" + }, + "separatorColor": "border" + }, "ToolTip": { "arc": 6, "actions": { @@ -1445,6 +1770,7 @@ "Learning": { "background": "accent", "borderColor": "accent", + "codeForeground": "fg", "foreground": "fg", "spanBackground": "accent50", "spanForeground": "fg", @@ -1463,25 +1789,44 @@ "Button": { "hoverBackground": "table", "DragAndDrop": { - "stripeBackground": "cs", - "buttonDropBackground": "accent70" + "stripeBackground": "bg", + "buttonDropBackground": "selBg70", + "buttonDropBorderColor": "accent", + "buttonFloatingBackground": "button" }, "selectedBackground": "cs", "selectedForeground": "activeFg" }, + "DragAndDrop": { + "areaBackground": "accent50" + }, "header": { - "active.background": "second", + "active": { + "background": "second" + }, "background": "bg", - "border.background": "second", - "closeButton.background": "bg", - "tab.selected.active.background": "cs", - "tab.selected.background": "cs" + "border": { + "background": "border" + }, + "closeButton": { + "background": "bg" + }, + "tab": { + "selected": { + "active": { + "background": "cs" + }, + "background": "cs" + } + } }, "Header": { "height": 42, "background": "second", - "borderColor": "second", - "inactiveBackground": "bg" + "borderColor": "border", + "inactiveBackground": "bg", + "labelLeftRightInsets": "0,12,0,16", + "toolbarLeftRightInsets": "0,12,0,8" }, "HeaderCloseButton": { "background": "bg" @@ -1506,6 +1851,12 @@ "inactive": { "Header.background": "bg", "HeaderTab.background": "cs" + }, + "Stripe": { + "DragAndDrop": { + "separatorColor": "accent50" + }, + "separatorColor": "table" } }, "Tree": { @@ -1522,13 +1873,17 @@ "selectionForeground": "selFg", "selectionInactiveBackground": "tree", "selectionInactiveForeground": "selFg", - "textBackground": "hc" + "textBackground": "hc", + "leftChildIndent": 10, + "rightChildIndent": 5 }, - "Tree.leftChildIndent": 10, - "Tree.rightChildIndent": 5, "UIDesigner": { - "Activity.borderColor": "border", - "Canvas.background": "cs", + "Activity": { + "borderColor": "border" + }, + "Canvas": { + "background": "cs" + }, "ColorPicker": { "background": "second", "foreground": "fg" @@ -1543,49 +1898,119 @@ "borderColor": "border", "hoverBorderColor": "hl" }, - "Label.foreground": "text", - "highStroke.foreground": "fg", + "Label": { + "foreground": "text" + }, + "highStroke": { + "foreground": "fg" + }, "motion": { "AddConstraintColor": "accent", "AddConstraintPlus": "accent", - "CSPanel.SelectedBackground": "tree", - "CSPanel.SelectedFocusBackground": "selBg", - "Component.foreground": "fg", - "ConstraintSet.background": "second", - "ConstraintSetText.foreground": "text", - "CursorTextColor.foreground": "fg", - "HoverColor.disabledBackground": "dis", - "Key.selectedForeground": "accent", - "Notification.background": "notif", + "Axis": { + "lineSeparatorColor": "fg" + }, + "CSPanel": { + "SelectedBackground": "tree", + "SelectedFocusBackground": "selBg" + }, + "Component": { + "foreground": "fg" + }, + "ConstraintSet": { + "background": "second" + }, + "ConstraintSetText": { + "foreground": "text" + }, + "CursorTextColor": { + "foreground": "fg" + }, + "HoverColor": { + "disabledBackground": "dis" + }, + "Key": { + "selectedForeground": "accent" + }, + "Notification": { + "background": "notif" + }, "PositionMarkColor": "accent", - "PrimaryPanel.background": "cs", - "SecondaryPanel.background": "bg", - "SecondaryPanel.header.background": "cs", - "SecondaryPanel.header.foreground": "text", - "TimeCursor.End.selectedForeground": "accent", - "TimeCursor.Start.selectedForeground": "accent", - "TimeCursor.selectedForeground": "accent", + "PrimaryPanel": { + "background": "cs" + }, + "SecondaryPanel": { + "background": "bg", + "header": { + "background": "cs", + "foreground": "text" + } + }, + "TimeCursor": { + "End": { + "selectedForeground": "accent" + }, + "selectedForeground": "accent", + "Start": { + "selectedForeground": "accent" + } + }, "borderColor": "border", - "cs_FocusText.infoForeground": "text", - "graphLine.lineSeparatorColor": "accent", - "motionGraph.background": "bg", - "ourAvg.background": "second", - "ourCS.background": "second", - "ourCS_Border.borderColor": "border", - "ourCS_SelectedBackground.selectionInactiveBackground": "table", - "ourCS_SelectedBorder.pressedBorderColor": "hl", - "ourCS_SelectedFocusBackground.selectionForeground": "selFg", - "ourCS_SelectedFocusBorder.focusedBorderColor": "accent", - "ourCS_TextColor.foreground": "text", - "ourML_BarColor.separatorColor": "border", - "timeLine.disabledBorderColor": "border" + "cs_FocusText": { + "infoForeground": "text" + }, + "graphLine": { + "lineSeparatorColor": "accent" + }, + "Grid": { + "lineSeparatorColor": "border" + }, + "label": { + "background": "second", + "textColor": "text" + }, + "motionGraph": { + "background": "bg" + }, + "ourAvg": { + "background": "second" + }, + "ourCS": { + "background": "second" + }, + "ourCS_Border": { + "borderColor": "border" + }, + "ourCS_SelectedBackground": { + "selectionInactiveBackground": "table" + }, + "ourCS_SelectedBorder": { + "pressedBorderColor": "hl" + }, + "ourCS_SelectedFocusBackground": { + "selectionForeground": "selFg" + }, + "ourCS_SelectedFocusBorder": { + "focusedBorderColor": "accent" + }, + "ourCS_TextColor": { + "foreground": "text" + }, + "ourML_BarColor": { + "separatorColor": "border" + }, + "timeLine": { + "disabledBorderColor": "border" + } }, "PackageDetails": { "border": "accent", "infoBanner": "accent" }, "PackageSearch": { - "PackagesList.rowHeight": 28, + "PackagesList": { + "rowHeight": 28 + }, "PackageTag": { "background": "excl", "foreground": "fg", @@ -1617,7 +2042,9 @@ "lines3d": "accent", "secondaryGraphLines": "border" }, - "percent.foreground": "fg", + "percent": { + "foreground": "fg" + }, "Placeholder": { "background": "bg", "borderColor": "border", @@ -1634,9 +2061,11 @@ "warningBorderColor": "notif" }, "VersionControl": { - "FileHistory.Commit": { - "otherBranchBackground": "excl", - "selectedBranchBackground": "bg" + "FileHistory": { + "Commit": { + "otherBranchBackground": "excl", + "selectedBranchBackground": "bg" + } }, "GitCommits": { "graphColor": "hl" @@ -1660,8 +2089,13 @@ "Commit": { "currentBranchBackground": "cs", "hoveredBackground": "tree", + "selectionInactiveForeground": "fg", + "Reference": { + "foreground": "text" + }, "rowHeight": 28, - "unmatchedForeground": "text" + "unmatchedForeground": "text", + "verticalPadding": 8 } }, "MarkerPopup": { @@ -1688,30 +2122,39 @@ "foreground": "fg" }, "WelcomeScreen": { - "AssociatedComponent.background": "bg", - "Details.background": "bg", - "List": { - "background": "hc", - "selectionBackground": "selBg", - "selectionInactiveBackground": "hl" + "AssociatedComponent": { + "background": "bg" }, - "SidePanel.background": "second", "background": "bg", "borderColor": "bg", "captionBackground": "cs", "captionForeground": "fg", + "Details": { + "background": "bg" + }, "footerBackground": "cs", "footerForeground": "fg", "groupIconBorderColor": "button", "headerBackground": "bg", "headerForeground": "fg", - "separatorColor": "border", + "List": { + "background": "hc", + "selectionBackground": "selBg", + "selectionInactiveBackground": "hl" + }, "Projects": { - "actions.background": "cs", - "actions.selectionBackground": "hl", + "actions": { + "background": "cs", + "selectionBackground": "hl", + "selectionBorderColor": "accent" + }, "background": "second", "selectionBackground": "selBg", "selectionInactiveBackground": "selBg" + }, + "separatorColor": "border", + "SidePanel": { + "background": "second" } }, "Window.border": "border", diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/GitHub.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/GitHub.theme.json index 21060cc9..a91362a4 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/GitHub.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/GitHub.theme.json @@ -16,7 +16,7 @@ "second": "#F3f3f3", "dis": "#9ba0a3", "accent": "#79CB60", - "accent2": "#79CB602", + "acc2": "#005cc4", "accent50": "#79CB6050", "accent70": "#79CB6070", "cs": "#fafbfc", @@ -26,7 +26,7 @@ "hl": "#CCE5FF", "notif": "#DFECFE", "hc": "#F7F8FA", - "shadow": "undefined", + "shadow": "#ffffff20", "white": "#24292E", "blue": "#6F42C1", "red": "#22863A", @@ -71,19 +71,25 @@ "hoverBorderColor": "accent50", "hoverSeparatorColor": "button", "pressedBackground": "accent50", - "pressedBorderColor": "accent50" + "pressedBorderColor": "accent50", + "separatorColor": "border" }, "ActionsList": { "icon.gap": 12, - "mnemonic.icon.gap": 12 + "mnemonic.icon.gap": 12, + "mnemonicInsets": "0,8,0,8", + "mnemonicsBorderInsets": "0,8,0,8", + "mnemonic.insets": "0,8,0,8" }, "ActionToolbar": { "background": "hc" }, - "AppInspector.GraphNode": { - "background": "second", - "borderColor": "border", - "focusedBorderColor": "accent" + "AppInspector": { + "GraphNode": { + "background": "second", + "borderColor": "border", + "focusedBorderColor": "accent" + } }, "AssignedMnemonic": { "background": "hl", @@ -99,13 +105,26 @@ "borderColor": "button", "foreground": "fg" }, - "BigSpinner.background": "bg", + "Banner": { + "foreground": "fg" + }, + "BigSpinner": { + "background": "bg" + }, "Bookmark": { "iconBackground": "accent", "Mnemonic": { "iconBackground": "hl", "iconBorderColor": "hl", "iconForeground": "fg" + }, + "MnemonicAssigned": { + "background": "table", + "foreground": "fg" + }, + "MnemonicCurrent": { + "background": "selBg", + "foreground": "selFg" } }, "BookmarkMnemonicAssigned": { @@ -128,13 +147,18 @@ "borderColor": "hl", "foreground": "fg" }, - "BookmarkIcon.background": "accent", - "Borders.ContrastBorderColor": "bg", - "Borders.color": "border", - "Breakpoint.iconHoverAlpha": 0.35, + "BookmarkIcon": { + "background": "accent" + }, + "Borders": { + "ContrastBorderColor": "bg", + "color": "border" + }, + "Breakpoint": { + "iconHoverAlpha": 0.35 + }, "Button": { "arc": 8, - "background": "bg", "darcula": { "borderColor": "button", "defaultBorderColor": "button", @@ -175,6 +199,7 @@ "focusedBorderColor": "accent", "foreground": "text", "highlight": "selFg", + "minimumSize": 72, "mt.background": "button", "mt.color1": "button", "mt.color2": "button", @@ -185,6 +210,12 @@ "select": "button", "shadowColor": "shadow", "shadowWidth": 0, + "Split": { + "default": { + "iconColor": "fg", + "separatorColor": "accent" + } + }, "startBackground": "table", "startBorderColor": "button", "ToolWindow": { @@ -195,11 +226,18 @@ "Tooltip.background": "notif", "Tooltip.borderColor": "border" }, + "CellEditor": { + "border": { + "width": 2 + } + }, "CheckBox": { "background": "bg", "background.selected": "accent", "borderColor": "bg", "borderColor.selected": "accent", + "border.width": 3, + "borderInsets": "4,4,4,4", "checkSignColor": "bg", "checkSignColor.selected": "bg", "checkSignColorDisabled": "bg", @@ -297,7 +335,9 @@ "foreground": "fg", "swatchesDefaultRecentColor": "fg" }, - "ComboBoxButton.background": "button", + "ComboBoxButton": { + "background": "button" + }, "ComboBox": { "ArrowButton": { "background": "button", @@ -327,14 +367,16 @@ "selectionBackground": "table", "selectionForeground": "activeFg" }, - "ComboPopup.border": "1,1,1,1,#79CB60", + "ComboPopup": { + "border": "1,1,1,1,#79CB60" + }, "CompletionPopup": { "Advertiser": { - "background": "bg", - "foreground": "fg", + "background": "second", + "foreground": "text", "borderInsets": "8,12,8,12" }, - "background": "second", + "background": "button", "foreground": "fg", "grayForeground": "text", "grayedForeground": "text", @@ -351,13 +393,20 @@ "selectionInactiveBackground": "hl", "selectionInactiveForeground": "text", "selectionInactiveInfoForeground": "text", - "selectionInfoForeground": "selFg" + "selectionInfoForeground": "selFg", + "selectionInnerInsets": "4,4,4,4" }, "ComplexPopup": { - "Header.background": "notif" + "Header": { + "background": "bg", + "insets": "12,12,12,12" + }, + "TextField": { + "inputInsets": "8,4,8,4" + } }, "Component": { - "arc": 4, + "arc": 6, "focusWidth": 2, "borderColor": "hl", "disabledBorderColor": "dis", @@ -440,7 +489,7 @@ "southPanelDivider": "bg" }, "DragAndDrop": { - "areaBackground": "tree", + "areaBackground": "selBg70", "areaBorderColor": "bg", "areaForeground": "fg", "backgroundBorderColor": "bg", @@ -453,18 +502,37 @@ "Editor": { "background": "hc", "foreground": "fg", + "Notification": { + "borderInsets": "10,12,10,12", + "WithoutStatus.borderInsets": "10,12,10,12" + }, + "ReplaceToolbar": { + "borderInsets": "4,12,4,12" + }, "shortcutForeground": "text", "SearchField": { "background": "cs", "borderInsets": "8,12,8,12" }, + "SearchReplaceModePanel": { + "borderInsets": "4,12,4,12" + }, + "SearchToolbar": { + "borderInsets": "4,12,4,12" + }, "Toolbar": { "borderColor": "border" + }, + "ToolTip": { + "border": "border", + "foreground": "fg", + "iconHoverBackground": "table", + "selectionBackground": "selBg" } }, "EditorGroupsTabs": { "background": "bg", - "borderColor": "second", + "borderColor": "border", "hoverBackground": "hl", "hoverColor": "hl", "inactiveUnderlineColor": "accent", @@ -474,6 +542,7 @@ }, "EditorPane": { "background": "hc", + "borderColor": "border", "caretForeground": "accent", "foreground": "fg", "inactiveBackground": "bg", @@ -483,21 +552,25 @@ "splitBorder": "border" }, "EditorTabs": { - "active.background": "table", - "active.foreground": "fg", - "active.underlineColor": "accent", + "active": { + "background": "table", + "foreground": "fg", + "underlineColor": "accent" + }, "background": "bg", - "borderColor": "second", "foreground": "fg", "hoverBackground": "hl", "hoverColor": "hl", "hoverMaskColor": "hl", "inactive.maskColor": "bg", - "inactiveColoredFileBackground": "bg", + "inactiveColoredFileBackground": "bg70", "inactiveMaskColor": "bg", "inactiveUnderlineColor": "dis", "selectedBackground": "table", "selectedForeground": "fg", + "tabContentInsetsActionsLeft": "0,6,0,6", + "tabContentInsetsActionsNone": "0,6,0,6", + "tabContentInsetsActionsRight": "0,6,0,6", "tabInsets": "-10,10,-10,10", "underlineColor": "accent", "underlineHeight": 3, @@ -515,6 +588,10 @@ "Gray": "excl", "excluded": "excl" }, + "FindPopup": { + "scopesPanelInsets": "4,16,4,16", + "bottomPanelInsets": "4,10,4,10" + }, "FlameGraph": { "JVMBackground": "#89DDF7", "JVMFocusBackground": "#82AAFF", @@ -555,15 +632,34 @@ "selectionForeground.unfocused": "selFg" }, "GotItTooltip": { + "animationBackground": "notif", "background": "notif", "borderColor": "notif", + "Button": { + "contrastBackground": "cs", + "endBackground": "button", + "foreground": "fg", + "startBackground": "button" + }, + "codeBackground": "cs", + "codeBorderColor": "bg", + "codeForeground": "fg", "endBackground": "button", "endBorderColor": "button", "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "imageBorderColor": "notif", "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "shortcutBackground": "notif", + "shortcutBorderColor": "border", "shortcutForeground": "text", "startBackground": "button", - "startBorderColor": "button" + "startBorderColor": "button", + "stepForeground": "text" }, "Group": { "disabledSeparatorColor": "border", @@ -587,7 +683,10 @@ "borderColor": "border", "defaultTextBorderInsets": "16,16,16,16", "foreground": "fg", + "fontSizeDelta": 0, + "horizontalGap": 10, "infoForeground": "text", + "maxWidth": 250, "shortcutForeground": "text", "shortcutTextColor": "text", "smallTextBorderInsets": "8,12,8,12", @@ -601,18 +700,29 @@ "MqTag": "text", "Tag": "text" }, - "Hyperlink.linkColor": "accent", - "IconBadge": { - "infoBackground": "accent" + "Hyperlink": { + "linkColor": "accent" + }, + "IconBadge": { + "infoBackground": "accent", + "newUiBackground": "accent" + }, + "IdeStatusBar": { + "border": "4,4,4,4" + }, + "InformationHint": { + "borderColor": "border" }, - "IdeStatusBar.border": "4,4,4,4", - "InformationHint.borderColor": "border", "inactiveCaption": "second", "inactiveCaptionBorder": "bg", "inactiveCaptionText": "text", "info": "text", "infoPanelForeground": "text", "infoText": "text", + "InlineBanner": { + "hoverBackground": "accent70", + "pressedBackground": "accent70" + }, "InplaceRefactoringPopup": { "background": "bg", "borderColor": "bg" @@ -622,10 +732,13 @@ "foreground": "fg" }, "InternalFrame": { + "activeTitleBackground": "bg", "activeTitleForeground": "fg", "background": "bg", "inactiveTitleBackground": "bg", - "inactiveTitleForeground": "text" + "inactiveTitleForeground": "text", + "optionDialogBackground": "bg", + "paletteBackground": "bg" }, "Label": { "background": "bg", @@ -676,20 +789,22 @@ "hoverBackground": "hl", "leftRightInset": 8, "separatorColor": "border", - "separatorInset": 4 + "separatorInset": 8 }, "foreground": "fg", "hoverBackground": "hl", "hoverInactiveBackground": "table", - "Line.hoverBackground": "selBg", + "Line": { + "hoverBackground": "selBg" + }, "rowHeight": "28", "selectionBackground": "tree", "selectionForeground": "selFg", "selectionInactiveBackground": "table", "selectionInactiveForeground": "activeFg", "Tag": { - "background": "button", - "foreground": "fg" + "foreground": "fg", + "background": "button" } }, "LiveIndicator": { @@ -703,31 +818,60 @@ "background": "hc", "foreground": "fg", "selectionForeground": "activeFg", - "selectionBackground": "selBg" + "selectionBackground": "selBg", + "transparentSelectionBackground": "tree" }, "MainToolbar": { "background": "bg", "Button": { - "buttonInsets": "0,0,0,0" + "buttonInsets": "0,4,0,4", + "iconSize": 20, + "size": "28,28" }, "Dropdown": { "borderInsets": "6,12,6,12", "background": "bg", "foreground": "fg", "hoverBackground": "hl", - "pressedBackground": "table" + "pressedBackground": "table", + "transparentHoverBackground": "accent70" }, + "foreground": "fg", "hoverBackground": "hl", "Icon": { - "borderInsets": "10,10,10,10", + "borderInsets": "4,4,4,4", "background": "bg", "hoverBackground": "hl", + "insets": "5,4,5,4", "pressedBackground": "table" }, "inactiveBackground": "bg", "pressedBackground": "table", - "separatorColor": "border" + "separatorColor": "border", + "SplitDropdown": { + "borderInsets": "6,6,6,6" + } }, + "MainWindow": { + "FullScreeControl": { + "Background": "hl" + }, + "Tab": { + "background": "bg", + "borderColor": "bg", + "foreground": "fg", + "hoverBackground": "hl", + "hoverForeground": "fg", + "selectedBackground": "selBg", + "selectedForeground": "selFg", + "selectedInactiveBackground": "excl", + "separatorColor": "border" + } + }, + "ManagedIdeBadgeBorder": "border", + "ManagedIdeBadgeBackground": "bg", + "ManagedIdeBadgeBackgroundHover": "accent70", + "ManagedIdeMenuItemHover": "selBg", "material": { "background": "bg", "branchColor": "fg", @@ -785,8 +929,12 @@ "disabledBackground": "bg", "disabledForeground": "dis", "foreground": "fg", + "insets": "0,4,0,4", "selectionBackground": "selBg", - "selectionForeground": "activeFg" + "selectionForeground": "activeFg", + "Selection": { + "arc": 8 + } }, "MlModelBinding.Viewer.CodeEditor.background": "bg", "MnemonicIcon": { @@ -797,6 +945,9 @@ "NavBar": { "arrowColor": "fg", "borderColor": "bg", + "Breadcrumbs": { + "itemInsets": "4,2,4,2" + }, "selectedColor": "accent" }, "NewClass": { @@ -806,15 +957,21 @@ "SearchField": { "background": "cs" }, - "separatorWidth": 6 + "separatorWidth": 10 }, "NewPSD.warning": "accent", + "NewUiOnboarding": { + "Dialog": { + "background": "second" + } + }, "Notification": { "arc": 16, "Error.foreground": "accent", "Link.foreground": "accent", "background": "notif", - "borderColor": "notif", + "borderColor": "border", + "borderInsets": "4,4,4,4", "errorBackground": "notif", "errorBorderColor": "notif", "errorForeground": "accent", @@ -855,18 +1012,27 @@ "ToolWindowWarning": { "foreground": "fg", "background": "notifWarn" + }, + "WelcomeScreen": { + "separatorColor": "border" } }, "Notifications": { "background": "notif", - "borderColor": "notif" + "borderColor": "border" }, "NotificationsToolwindow": { - "Notification.hoverBackground": "tree", - "newNotification.background": "notif", - "newNotification.hoverBackground": "tree" + "Notification": { + "hoverBackground": "tree" + }, + "newNotification": { + "background": "notif", + "hoverBackground": "tree" + } + }, + "OnePixelDivider": { + "background": "border" }, - "OnePixelDivider.background": "border", "OptionPane": { "background": "bg", "foreground": "fg", @@ -882,7 +1048,6 @@ "focusedColor": "accent" }, "Panel": { - "background": "bg", "foreground": "fg", "mouseShortcutBackground": "bg" }, @@ -911,16 +1076,6 @@ "Plugins": { "background": "bg", "borderColor": "border", - "disabledForeground": "dis", - "eapTagBackground": "hl", - "hoverBackground": "hl", - "lightSelectionBackground": "table", - "paidTagBackground": "hl", - "selectionBackground": "selBg", - "selectionForeground": "selFg", - "tagBackground": "hl", - "tagForeground": "accent", - "trialTagBackground": "hl", "Button": { "installBackground": "button", "installBorderColor": "button", @@ -928,10 +1083,15 @@ "installFillForeground": "dis", "installFocusedBackground": "hl", "installForeground": "fg", - "updateBackground": "accent", + "updateBackground": "button", "updateBorderColor": "button", "updateForeground": "fg" }, + "disabledForeground": "dis", + "eapTagBackground": "hl", + "hoverBackground": "hl", + "lightSelectionBackground": "table", + "paidTagBackground": "hl", "ScreenshotPagination": { "CurrentImage.fillColor": "accent" }, @@ -943,10 +1103,20 @@ "background": "second", "foreground": "fg" }, + "selectionBackground": "selBg", + "selectionForeground": "selFg", + "suggestedLabelBackground": "button", + "tagBackground": "hl", + "tagForeground": "accent", + "trialTagBackground": "hl", "Tab": { - "active.background": "table", - "active.foreground": "activeFg", - "hover.background": "table", + "active": { + "background": "table", + "foreground": "activeFg" + }, + "hover": { + "background": "table" + }, "hoverBackground": "table", "selectedBackground": "table", "selectedForeground": "selFg" @@ -954,6 +1124,7 @@ }, "Popup": { "Advertiser": { + "borderColor": "border", "borderInsets": "6,20,6,20", "background": "bg", "borderColor": "bg", @@ -968,24 +1139,33 @@ "color": "cs", "inactiveColor": "bg" }, - "background": "notif", + "background": "bg", "borderColor": "cs", "borderWidth": 0, "inactiveBorderColor": "bg", "innerBorderColor": "second", "Header": { "activeBackground": "bg", + "activeForeground": "fg", "inactiveBackground": "cs", - "inactiveForeground": "text" + "inactiveForeground": "dis", + "insets": "12,10,12,10" }, + "mnemonicForeground": "text", "paintBorder": false, "preferences": { "background": "bg", "borderColor": "bg", "foreground": "fg" }, - "Selection.arc": 8, - "Selection.leftRightInset": 8, + "SearchField": { + "borderInsets": "4,4,4,4", + "inputInsets": "4,4,4,4" + }, + "Selection": { + "arc": 8, + "leftRightInset": 8 + }, "Separator": { "foreground": "fg", "color": "border" @@ -1003,8 +1183,14 @@ "background": "bg", "borderWidth": 1, "border": "8,8,8,8", + "borderInsets": "10,10,10,10", "borderCornerRadius": 8, + "borderCornerRadiusX": 8, + "borderCornerRadiusY": 8, + "borderWidth": 1, "foreground": "fg", + "leftBorderWidth": 8, + "rightBorderWidth": 8, "Selection": { "arc": 8, "innerInsets": "8,2,8,2" @@ -1013,12 +1199,35 @@ "translucentBackground": "bg" }, "PopupMenuSeparator": { + "borderCornerRadius": 8, "height": 10, "stripeWidth": 2, "stripeIndent": 5, "withToEdge": 4, "borderCornerRadius": 8 }, + "PresentationAssistant": { + "Bright": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + }, + "Pale": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + } + }, + "Profiler": { + "neutralLifecycleEvent": "second", + "trackBackground": "button" + }, "ProgressBar": { "background": "bg", "foreground": "accent", @@ -1062,29 +1271,106 @@ "selectionBackground": "selBg", "selectionForeground": "selFg" }, + "Review": { + "Avatar": { + "Border": { + "Status": { + "Accepted": "accent", + "NeedReview": "hl" + } + } + }, + "Branch": { + "Background": "button", + "Background.Hover": "hl" + }, + "ChatItem": { + "BubblePanel": { + "Border": "button" + }, + "Hover": "table" + }, + "Editor": { + "Line": { + "Status": { + "Marker": "accent" + } + } + }, + "MetaInfo": { + "StatusLine": { + "Gray": "excl", + "Blue": "accent" + } + }, + "State": { + "Background": "second", + "Foreground": "fg" + }, + "Timeline": { + "Thread": { + "Diff": { + "AnchorLine": "table" + } + } + } + }, "ReviewList": { "state.background": "second", "state.foreground": "fg" }, + "RunToolbar": { + "Debug": { + "activeBackground": "hl" + }, + "Profile": { + "activeBackground": "hl" + }, + "Run": { + "activeBackground": "hl" + } + }, "RunWidget": { "background": "button", - "Debug.activeBackground": "hl", - "foreground": "fg", - "hoverBackground": "table", - "pressedBackground": "hl", - "Profile.activeBackground": "hl", + "Debug": { + "activeBackground": "hl" + }, + "foreground": "selFg", + "hoverBackground": "hl", + "iconColor": "fg", + "leftPressedBackground": "table", + "leftHoverBackground": "hl", + "pressedBackground": "table", + "Profile": { + "activeBackground": "hl" + }, "runningBackground": "hl", - "runningForeground": "selFg", - "Run.activeBackground": "hl", + "Run": { + "activeBackground": "hl" + }, "Running": { "background": "hl", - "foreground": "selFg", "leftHoverBackground": "hl", - "leftPressedBackground": "hl" + "leftPressedBackground": "table" }, - "separatorColor": "border" + "runningBackground": "hl", + "runningForeground": "selFg", + "runIconColor": "accent", + "separatorColor": "border", + "stopBackground": "second", + "StopButton": { + "leftHoverBackground": "hl", + "leftPressedBackground": "second" + }, + "toolbarHeight": 30, + "toolbarBorderHeight": 4 + }, + "ScreenView": { + "borderColor": "border", + "defaultBorderColor": "border", + "hoveredBorderColor": "hl", + "selectedBorderColor": "selBg" }, - "ScreenView.borderColor": "border", "scrollbar": "bg", "ScrollBar": { "background": "bg", @@ -1186,9 +1472,9 @@ }, "SegmentedButton": { "focusedSelectedButtonColor": "hl", + "selectedEndBorderColor": "accent", "selectedButtonColor": "button", - "selectedStartBorderColor": "border", - "selectedEndBorderColor": "border" + "selectedStartBorderColor": "accent" }, "Separator": { "background": "second", @@ -1198,6 +1484,7 @@ "Settings": { "Spotlight.borderColor": "accent" }, + "shortcutForeground": "text", "SidePanel": { "background": "hc" }, @@ -1222,6 +1509,7 @@ "foreground": "fg" }, "Spinner": { + "arrowButtonInsets": "1,1,1,1", "background": "bg", "border": "4,4,4,4", "disabledBackground": "excl", @@ -1232,11 +1520,16 @@ "background": "bg", "highlight": "hc" }, - "SplitPaneDivider.draggingColor": "second", - "StateWidget.activeBackground": "button", + "SplitPaneDivider": { + "draggingColor": "second" + }, + "StateWidget": { + "activeBackground": "button" + }, "StatusBar": { - "background": "bg", + "background": "bg10", "Breadcrumbs": { + "chevronInset": 0, "floatingBackground": "tree", "floatingForeground": "fg", "floatingToolbarInsets": "8,12,8,12", @@ -1244,6 +1537,7 @@ "hoverBackground": "tree", "hoverForeground": "fg", "itemBackgroundInsets": "2,4,2,4", + "itemInsets": 0, "selectionBackground": "selBg", "selectionForeground": "activeFg", "selectionInactiveBackground": "button", @@ -1264,6 +1558,13 @@ "widgetInsets": "8,12,8,12" } }, + "StripeToolbar": { + "Button": { + "iconSize": 20, + "iconPadding": 8, + "size": "40,40" + } + }, "TabbedPane": { "background": "bg", "borderColor": "hc", @@ -1290,6 +1591,7 @@ "selectedTabPadInsets": "0,0,0,0", "shadow": "hc", "tabHeight": 32, + "tabAreaInsets": 0, "tabInsets": "5,10,5,10", "tabSelectionArc": 4, "tabSelectionHeight": 2, @@ -1385,7 +1687,7 @@ "TitlePane": { "Button": { "hoverBackground": "hl", - "preferredSize": "48,40" + "preferredSize": "42,42" }, "background": "hc", "inactiveBackground": "bg", @@ -1407,15 +1709,23 @@ "onBackground": "accent", "onForeground": "accent" }, - "Toolbar.Floating.background": "button", + "Toolbar": { + "horizontalToolbarInsets": "8,8,8,8", + "Floating": { + "background": "button", + "borderColor": "border" + }, + "verticalToolbarInsets": "8,8,8,8" + }, "ToolBar": { "background": "hc", "borderHandleColor": "text", "comboBoxButtonBackground": "button", "floatingForeground": "text", "foreground": "fg", - "verticalToolbarInsets": "6,6,6,6", - "horizontalToolbarInsets": "6,6,6,6" + "horizontalToolbarInsets": "6,6,6,6", + "separatorColor": "border", + "verticalToolbarInsets": "6,6,6,6" }, "ToolbarComboWidget": { "background": "button", @@ -1426,6 +1736,21 @@ "actions.settings.icon.background.color": "bg", "description.title.text.color": "fg" }, + "Tooltip": { + "Learning": { + "codeBorderColor": "cs", + "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "spanBackground": "accent70", + "spanForeground": "fg" + }, + "separatorColor": "border" + }, "ToolTip": { "arc": 6, "actions": { @@ -1445,6 +1770,7 @@ "Learning": { "background": "accent", "borderColor": "accent", + "codeForeground": "fg", "foreground": "fg", "spanBackground": "accent50", "spanForeground": "fg", @@ -1463,25 +1789,44 @@ "Button": { "hoverBackground": "table", "DragAndDrop": { - "stripeBackground": "cs", - "buttonDropBackground": "accent70" + "stripeBackground": "bg", + "buttonDropBackground": "selBg70", + "buttonDropBorderColor": "accent", + "buttonFloatingBackground": "button" }, "selectedBackground": "cs", "selectedForeground": "activeFg" }, + "DragAndDrop": { + "areaBackground": "accent50" + }, "header": { - "active.background": "second", + "active": { + "background": "second" + }, "background": "bg", - "border.background": "second", - "closeButton.background": "bg", - "tab.selected.active.background": "cs", - "tab.selected.background": "cs" + "border": { + "background": "border" + }, + "closeButton": { + "background": "bg" + }, + "tab": { + "selected": { + "active": { + "background": "cs" + }, + "background": "cs" + } + } }, "Header": { "height": 42, "background": "second", - "borderColor": "second", - "inactiveBackground": "bg" + "borderColor": "border", + "inactiveBackground": "bg", + "labelLeftRightInsets": "0,12,0,16", + "toolbarLeftRightInsets": "0,12,0,8" }, "HeaderCloseButton": { "background": "bg" @@ -1506,6 +1851,12 @@ "inactive": { "Header.background": "bg", "HeaderTab.background": "cs" + }, + "Stripe": { + "DragAndDrop": { + "separatorColor": "accent50" + }, + "separatorColor": "table" } }, "Tree": { @@ -1522,13 +1873,17 @@ "selectionForeground": "selFg", "selectionInactiveBackground": "tree", "selectionInactiveForeground": "selFg", - "textBackground": "hc" + "textBackground": "hc", + "leftChildIndent": 10, + "rightChildIndent": 5 }, - "Tree.leftChildIndent": 10, - "Tree.rightChildIndent": 5, "UIDesigner": { - "Activity.borderColor": "border", - "Canvas.background": "cs", + "Activity": { + "borderColor": "border" + }, + "Canvas": { + "background": "cs" + }, "ColorPicker": { "background": "second", "foreground": "fg" @@ -1543,49 +1898,119 @@ "borderColor": "border", "hoverBorderColor": "hl" }, - "Label.foreground": "text", - "highStroke.foreground": "fg", + "Label": { + "foreground": "text" + }, + "highStroke": { + "foreground": "fg" + }, "motion": { "AddConstraintColor": "accent", "AddConstraintPlus": "accent", - "CSPanel.SelectedBackground": "tree", - "CSPanel.SelectedFocusBackground": "selBg", - "Component.foreground": "fg", - "ConstraintSet.background": "second", - "ConstraintSetText.foreground": "text", - "CursorTextColor.foreground": "fg", - "HoverColor.disabledBackground": "dis", - "Key.selectedForeground": "accent", - "Notification.background": "notif", + "Axis": { + "lineSeparatorColor": "fg" + }, + "CSPanel": { + "SelectedBackground": "tree", + "SelectedFocusBackground": "selBg" + }, + "Component": { + "foreground": "fg" + }, + "ConstraintSet": { + "background": "second" + }, + "ConstraintSetText": { + "foreground": "text" + }, + "CursorTextColor": { + "foreground": "fg" + }, + "HoverColor": { + "disabledBackground": "dis" + }, + "Key": { + "selectedForeground": "accent" + }, + "Notification": { + "background": "notif" + }, "PositionMarkColor": "accent", - "PrimaryPanel.background": "cs", - "SecondaryPanel.background": "bg", - "SecondaryPanel.header.background": "cs", - "SecondaryPanel.header.foreground": "text", - "TimeCursor.End.selectedForeground": "accent", - "TimeCursor.Start.selectedForeground": "accent", - "TimeCursor.selectedForeground": "accent", + "PrimaryPanel": { + "background": "cs" + }, + "SecondaryPanel": { + "background": "bg", + "header": { + "background": "cs", + "foreground": "text" + } + }, + "TimeCursor": { + "End": { + "selectedForeground": "accent" + }, + "selectedForeground": "accent", + "Start": { + "selectedForeground": "accent" + } + }, "borderColor": "border", - "cs_FocusText.infoForeground": "text", - "graphLine.lineSeparatorColor": "accent", - "motionGraph.background": "bg", - "ourAvg.background": "second", - "ourCS.background": "second", - "ourCS_Border.borderColor": "border", - "ourCS_SelectedBackground.selectionInactiveBackground": "table", - "ourCS_SelectedBorder.pressedBorderColor": "hl", - "ourCS_SelectedFocusBackground.selectionForeground": "selFg", - "ourCS_SelectedFocusBorder.focusedBorderColor": "accent", - "ourCS_TextColor.foreground": "text", - "ourML_BarColor.separatorColor": "border", - "timeLine.disabledBorderColor": "border" + "cs_FocusText": { + "infoForeground": "text" + }, + "graphLine": { + "lineSeparatorColor": "accent" + }, + "Grid": { + "lineSeparatorColor": "border" + }, + "label": { + "background": "second", + "textColor": "text" + }, + "motionGraph": { + "background": "bg" + }, + "ourAvg": { + "background": "second" + }, + "ourCS": { + "background": "second" + }, + "ourCS_Border": { + "borderColor": "border" + }, + "ourCS_SelectedBackground": { + "selectionInactiveBackground": "table" + }, + "ourCS_SelectedBorder": { + "pressedBorderColor": "hl" + }, + "ourCS_SelectedFocusBackground": { + "selectionForeground": "selFg" + }, + "ourCS_SelectedFocusBorder": { + "focusedBorderColor": "accent" + }, + "ourCS_TextColor": { + "foreground": "text" + }, + "ourML_BarColor": { + "separatorColor": "border" + }, + "timeLine": { + "disabledBorderColor": "border" + } }, "PackageDetails": { "border": "accent", "infoBanner": "accent" }, "PackageSearch": { - "PackagesList.rowHeight": 28, + "PackagesList": { + "rowHeight": 28 + }, "PackageTag": { "background": "excl", "foreground": "fg", @@ -1617,7 +2042,9 @@ "lines3d": "accent", "secondaryGraphLines": "border" }, - "percent.foreground": "fg", + "percent": { + "foreground": "fg" + }, "Placeholder": { "background": "bg", "borderColor": "border", @@ -1634,9 +2061,11 @@ "warningBorderColor": "notif" }, "VersionControl": { - "FileHistory.Commit": { - "otherBranchBackground": "excl", - "selectedBranchBackground": "bg" + "FileHistory": { + "Commit": { + "otherBranchBackground": "excl", + "selectedBranchBackground": "bg" + } }, "GitCommits": { "graphColor": "hl" @@ -1660,8 +2089,13 @@ "Commit": { "currentBranchBackground": "cs", "hoveredBackground": "tree", + "selectionInactiveForeground": "fg", + "Reference": { + "foreground": "text" + }, "rowHeight": 28, - "unmatchedForeground": "text" + "unmatchedForeground": "text", + "verticalPadding": 8 } }, "MarkerPopup": { @@ -1688,30 +2122,39 @@ "foreground": "fg" }, "WelcomeScreen": { - "AssociatedComponent.background": "bg", - "Details.background": "bg", - "List": { - "background": "hc", - "selectionBackground": "selBg", - "selectionInactiveBackground": "hl" + "AssociatedComponent": { + "background": "bg" }, - "SidePanel.background": "second", "background": "bg", "borderColor": "bg", "captionBackground": "cs", "captionForeground": "fg", + "Details": { + "background": "bg" + }, "footerBackground": "cs", "footerForeground": "fg", "groupIconBorderColor": "button", "headerBackground": "bg", "headerForeground": "fg", - "separatorColor": "border", + "List": { + "background": "hc", + "selectionBackground": "selBg", + "selectionInactiveBackground": "hl" + }, "Projects": { - "actions.background": "cs", - "actions.selectionBackground": "hl", + "actions": { + "background": "cs", + "selectionBackground": "hl", + "selectionBorderColor": "accent" + }, "background": "second", "selectionBackground": "selBg", "selectionInactiveBackground": "selBg" + }, + "separatorColor": "border", + "SidePanel": { + "background": "second" } }, "Window.border": "border", diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Light Owl.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Light Owl.theme.json index f5a52d36..65de9ea2 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Light Owl.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Light Owl.theme.json @@ -16,7 +16,7 @@ "second": "#FBFBFB", "dis": "#93A1A1", "accent": "#2AA298", - "accent2": "#2AA2982", + "acc2": "#aa0982", "accent50": "#2AA29850", "accent70": "#2AA29870", "cs": "#f0f0f0", @@ -26,7 +26,7 @@ "hl": "#CCCCCC", "notif": "#F0F0F0", "hc": "#F0F0F0", - "shadow": "undefined", + "shadow": "#ffffff20", "white": "#4876d6", "blue": "#4876d6", "red": "#994cc3", @@ -71,19 +71,25 @@ "hoverBorderColor": "accent50", "hoverSeparatorColor": "button", "pressedBackground": "accent50", - "pressedBorderColor": "accent50" + "pressedBorderColor": "accent50", + "separatorColor": "border" }, "ActionsList": { "icon.gap": 12, - "mnemonic.icon.gap": 12 + "mnemonic.icon.gap": 12, + "mnemonicInsets": "0,8,0,8", + "mnemonicsBorderInsets": "0,8,0,8", + "mnemonic.insets": "0,8,0,8" }, "ActionToolbar": { "background": "hc" }, - "AppInspector.GraphNode": { - "background": "second", - "borderColor": "border", - "focusedBorderColor": "accent" + "AppInspector": { + "GraphNode": { + "background": "second", + "borderColor": "border", + "focusedBorderColor": "accent" + } }, "AssignedMnemonic": { "background": "hl", @@ -99,13 +105,26 @@ "borderColor": "button", "foreground": "fg" }, - "BigSpinner.background": "bg", + "Banner": { + "foreground": "fg" + }, + "BigSpinner": { + "background": "bg" + }, "Bookmark": { "iconBackground": "accent", "Mnemonic": { "iconBackground": "hl", "iconBorderColor": "hl", "iconForeground": "fg" + }, + "MnemonicAssigned": { + "background": "table", + "foreground": "fg" + }, + "MnemonicCurrent": { + "background": "selBg", + "foreground": "selFg" } }, "BookmarkMnemonicAssigned": { @@ -128,13 +147,18 @@ "borderColor": "hl", "foreground": "fg" }, - "BookmarkIcon.background": "accent", - "Borders.ContrastBorderColor": "bg", - "Borders.color": "border", - "Breakpoint.iconHoverAlpha": 0.35, + "BookmarkIcon": { + "background": "accent" + }, + "Borders": { + "ContrastBorderColor": "bg", + "color": "border" + }, + "Breakpoint": { + "iconHoverAlpha": 0.35 + }, "Button": { "arc": 8, - "background": "bg", "darcula": { "borderColor": "button", "defaultBorderColor": "button", @@ -175,6 +199,7 @@ "focusedBorderColor": "accent", "foreground": "text", "highlight": "selFg", + "minimumSize": 72, "mt.background": "button", "mt.color1": "button", "mt.color2": "button", @@ -185,6 +210,12 @@ "select": "button", "shadowColor": "shadow", "shadowWidth": 0, + "Split": { + "default": { + "iconColor": "fg", + "separatorColor": "accent" + } + }, "startBackground": "table", "startBorderColor": "button", "ToolWindow": { @@ -195,11 +226,18 @@ "Tooltip.background": "notif", "Tooltip.borderColor": "border" }, + "CellEditor": { + "border": { + "width": 2 + } + }, "CheckBox": { "background": "bg", "background.selected": "accent", "borderColor": "bg", "borderColor.selected": "accent", + "border.width": 3, + "borderInsets": "4,4,4,4", "checkSignColor": "bg", "checkSignColor.selected": "bg", "checkSignColorDisabled": "bg", @@ -297,7 +335,9 @@ "foreground": "fg", "swatchesDefaultRecentColor": "fg" }, - "ComboBoxButton.background": "button", + "ComboBoxButton": { + "background": "button" + }, "ComboBox": { "ArrowButton": { "background": "button", @@ -327,14 +367,16 @@ "selectionBackground": "table", "selectionForeground": "activeFg" }, - "ComboPopup.border": "1,1,1,1,#2AA298", + "ComboPopup": { + "border": "1,1,1,1,#2AA298" + }, "CompletionPopup": { "Advertiser": { - "background": "bg", - "foreground": "fg", + "background": "second", + "foreground": "text", "borderInsets": "8,12,8,12" }, - "background": "second", + "background": "button", "foreground": "fg", "grayForeground": "text", "grayedForeground": "text", @@ -351,13 +393,20 @@ "selectionInactiveBackground": "hl", "selectionInactiveForeground": "text", "selectionInactiveInfoForeground": "text", - "selectionInfoForeground": "selFg" + "selectionInfoForeground": "selFg", + "selectionInnerInsets": "4,4,4,4" }, "ComplexPopup": { - "Header.background": "notif" + "Header": { + "background": "bg", + "insets": "12,12,12,12" + }, + "TextField": { + "inputInsets": "8,4,8,4" + } }, "Component": { - "arc": 4, + "arc": 6, "focusWidth": 2, "borderColor": "hl", "disabledBorderColor": "dis", @@ -440,7 +489,7 @@ "southPanelDivider": "bg" }, "DragAndDrop": { - "areaBackground": "tree", + "areaBackground": "selBg70", "areaBorderColor": "bg", "areaForeground": "fg", "backgroundBorderColor": "bg", @@ -453,18 +502,37 @@ "Editor": { "background": "hc", "foreground": "fg", + "Notification": { + "borderInsets": "10,12,10,12", + "WithoutStatus.borderInsets": "10,12,10,12" + }, + "ReplaceToolbar": { + "borderInsets": "4,12,4,12" + }, "shortcutForeground": "text", "SearchField": { "background": "cs", "borderInsets": "8,12,8,12" }, + "SearchReplaceModePanel": { + "borderInsets": "4,12,4,12" + }, + "SearchToolbar": { + "borderInsets": "4,12,4,12" + }, "Toolbar": { "borderColor": "border" + }, + "ToolTip": { + "border": "border", + "foreground": "fg", + "iconHoverBackground": "table", + "selectionBackground": "selBg" } }, "EditorGroupsTabs": { "background": "bg", - "borderColor": "second", + "borderColor": "border", "hoverBackground": "hl", "hoverColor": "hl", "inactiveUnderlineColor": "accent", @@ -474,6 +542,7 @@ }, "EditorPane": { "background": "hc", + "borderColor": "border", "caretForeground": "accent", "foreground": "fg", "inactiveBackground": "bg", @@ -483,21 +552,25 @@ "splitBorder": "border" }, "EditorTabs": { - "active.background": "table", - "active.foreground": "fg", - "active.underlineColor": "accent", + "active": { + "background": "table", + "foreground": "fg", + "underlineColor": "accent" + }, "background": "bg", - "borderColor": "second", "foreground": "fg", "hoverBackground": "hl", "hoverColor": "hl", "hoverMaskColor": "hl", "inactive.maskColor": "bg", - "inactiveColoredFileBackground": "bg", + "inactiveColoredFileBackground": "bg70", "inactiveMaskColor": "bg", "inactiveUnderlineColor": "dis", "selectedBackground": "table", "selectedForeground": "fg", + "tabContentInsetsActionsLeft": "0,6,0,6", + "tabContentInsetsActionsNone": "0,6,0,6", + "tabContentInsetsActionsRight": "0,6,0,6", "tabInsets": "-10,10,-10,10", "underlineColor": "accent", "underlineHeight": 3, @@ -515,6 +588,10 @@ "Gray": "excl", "excluded": "excl" }, + "FindPopup": { + "scopesPanelInsets": "4,16,4,16", + "bottomPanelInsets": "4,10,4,10" + }, "FlameGraph": { "JVMBackground": "#89DDF7", "JVMFocusBackground": "#82AAFF", @@ -555,15 +632,34 @@ "selectionForeground.unfocused": "selFg" }, "GotItTooltip": { + "animationBackground": "notif", "background": "notif", "borderColor": "notif", + "Button": { + "contrastBackground": "cs", + "endBackground": "button", + "foreground": "fg", + "startBackground": "button" + }, + "codeBackground": "cs", + "codeBorderColor": "bg", + "codeForeground": "fg", "endBackground": "button", "endBorderColor": "button", "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "imageBorderColor": "notif", "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "shortcutBackground": "notif", + "shortcutBorderColor": "border", "shortcutForeground": "text", "startBackground": "button", - "startBorderColor": "button" + "startBorderColor": "button", + "stepForeground": "text" }, "Group": { "disabledSeparatorColor": "border", @@ -587,7 +683,10 @@ "borderColor": "border", "defaultTextBorderInsets": "16,16,16,16", "foreground": "fg", + "fontSizeDelta": 0, + "horizontalGap": 10, "infoForeground": "text", + "maxWidth": 250, "shortcutForeground": "text", "shortcutTextColor": "text", "smallTextBorderInsets": "8,12,8,12", @@ -601,18 +700,29 @@ "MqTag": "text", "Tag": "text" }, - "Hyperlink.linkColor": "accent", - "IconBadge": { - "infoBackground": "accent" + "Hyperlink": { + "linkColor": "accent" + }, + "IconBadge": { + "infoBackground": "accent", + "newUiBackground": "accent" + }, + "IdeStatusBar": { + "border": "4,4,4,4" + }, + "InformationHint": { + "borderColor": "border" }, - "IdeStatusBar.border": "4,4,4,4", - "InformationHint.borderColor": "border", "inactiveCaption": "second", "inactiveCaptionBorder": "bg", "inactiveCaptionText": "text", "info": "text", "infoPanelForeground": "text", "infoText": "text", + "InlineBanner": { + "hoverBackground": "accent70", + "pressedBackground": "accent70" + }, "InplaceRefactoringPopup": { "background": "bg", "borderColor": "bg" @@ -622,10 +732,13 @@ "foreground": "fg" }, "InternalFrame": { + "activeTitleBackground": "bg", "activeTitleForeground": "fg", "background": "bg", "inactiveTitleBackground": "bg", - "inactiveTitleForeground": "text" + "inactiveTitleForeground": "text", + "optionDialogBackground": "bg", + "paletteBackground": "bg" }, "Label": { "background": "bg", @@ -676,20 +789,22 @@ "hoverBackground": "hl", "leftRightInset": 8, "separatorColor": "border", - "separatorInset": 4 + "separatorInset": 8 }, "foreground": "fg", "hoverBackground": "hl", "hoverInactiveBackground": "table", - "Line.hoverBackground": "selBg", + "Line": { + "hoverBackground": "selBg" + }, "rowHeight": "28", "selectionBackground": "tree", "selectionForeground": "selFg", "selectionInactiveBackground": "table", "selectionInactiveForeground": "activeFg", "Tag": { - "background": "button", - "foreground": "fg" + "foreground": "fg", + "background": "button" } }, "LiveIndicator": { @@ -703,31 +818,60 @@ "background": "hc", "foreground": "fg", "selectionForeground": "activeFg", - "selectionBackground": "selBg" + "selectionBackground": "selBg", + "transparentSelectionBackground": "tree" }, "MainToolbar": { "background": "bg", "Button": { - "buttonInsets": "0,0,0,0" + "buttonInsets": "0,4,0,4", + "iconSize": 20, + "size": "28,28" }, "Dropdown": { "borderInsets": "6,12,6,12", "background": "bg", "foreground": "fg", "hoverBackground": "hl", - "pressedBackground": "table" + "pressedBackground": "table", + "transparentHoverBackground": "accent70" }, + "foreground": "fg", "hoverBackground": "hl", "Icon": { - "borderInsets": "10,10,10,10", + "borderInsets": "4,4,4,4", "background": "bg", "hoverBackground": "hl", + "insets": "5,4,5,4", "pressedBackground": "table" }, "inactiveBackground": "bg", "pressedBackground": "table", - "separatorColor": "border" + "separatorColor": "border", + "SplitDropdown": { + "borderInsets": "6,6,6,6" + } }, + "MainWindow": { + "FullScreeControl": { + "Background": "hl" + }, + "Tab": { + "background": "bg", + "borderColor": "bg", + "foreground": "fg", + "hoverBackground": "hl", + "hoverForeground": "fg", + "selectedBackground": "selBg", + "selectedForeground": "selFg", + "selectedInactiveBackground": "excl", + "separatorColor": "border" + } + }, + "ManagedIdeBadgeBorder": "border", + "ManagedIdeBadgeBackground": "bg", + "ManagedIdeBadgeBackgroundHover": "accent70", + "ManagedIdeMenuItemHover": "selBg", "material": { "background": "bg", "branchColor": "fg", @@ -785,8 +929,12 @@ "disabledBackground": "bg", "disabledForeground": "dis", "foreground": "fg", + "insets": "0,4,0,4", "selectionBackground": "selBg", - "selectionForeground": "activeFg" + "selectionForeground": "activeFg", + "Selection": { + "arc": 8 + } }, "MlModelBinding.Viewer.CodeEditor.background": "bg", "MnemonicIcon": { @@ -797,6 +945,9 @@ "NavBar": { "arrowColor": "fg", "borderColor": "bg", + "Breadcrumbs": { + "itemInsets": "4,2,4,2" + }, "selectedColor": "accent" }, "NewClass": { @@ -806,15 +957,21 @@ "SearchField": { "background": "cs" }, - "separatorWidth": 6 + "separatorWidth": 10 }, "NewPSD.warning": "accent", + "NewUiOnboarding": { + "Dialog": { + "background": "second" + } + }, "Notification": { "arc": 16, "Error.foreground": "accent", "Link.foreground": "accent", "background": "notif", - "borderColor": "notif", + "borderColor": "border", + "borderInsets": "4,4,4,4", "errorBackground": "notif", "errorBorderColor": "notif", "errorForeground": "accent", @@ -855,18 +1012,27 @@ "ToolWindowWarning": { "foreground": "fg", "background": "notifWarn" + }, + "WelcomeScreen": { + "separatorColor": "border" } }, "Notifications": { "background": "notif", - "borderColor": "notif" + "borderColor": "border" }, "NotificationsToolwindow": { - "Notification.hoverBackground": "tree", - "newNotification.background": "notif", - "newNotification.hoverBackground": "tree" + "Notification": { + "hoverBackground": "tree" + }, + "newNotification": { + "background": "notif", + "hoverBackground": "tree" + } + }, + "OnePixelDivider": { + "background": "border" }, - "OnePixelDivider.background": "border", "OptionPane": { "background": "bg", "foreground": "fg", @@ -882,7 +1048,6 @@ "focusedColor": "accent" }, "Panel": { - "background": "bg", "foreground": "fg", "mouseShortcutBackground": "bg" }, @@ -911,16 +1076,6 @@ "Plugins": { "background": "bg", "borderColor": "border", - "disabledForeground": "dis", - "eapTagBackground": "hl", - "hoverBackground": "hl", - "lightSelectionBackground": "table", - "paidTagBackground": "hl", - "selectionBackground": "selBg", - "selectionForeground": "selFg", - "tagBackground": "hl", - "tagForeground": "accent", - "trialTagBackground": "hl", "Button": { "installBackground": "button", "installBorderColor": "button", @@ -928,10 +1083,15 @@ "installFillForeground": "dis", "installFocusedBackground": "hl", "installForeground": "fg", - "updateBackground": "accent", + "updateBackground": "button", "updateBorderColor": "button", "updateForeground": "fg" }, + "disabledForeground": "dis", + "eapTagBackground": "hl", + "hoverBackground": "hl", + "lightSelectionBackground": "table", + "paidTagBackground": "hl", "ScreenshotPagination": { "CurrentImage.fillColor": "accent" }, @@ -943,10 +1103,20 @@ "background": "second", "foreground": "fg" }, + "selectionBackground": "selBg", + "selectionForeground": "selFg", + "suggestedLabelBackground": "button", + "tagBackground": "hl", + "tagForeground": "accent", + "trialTagBackground": "hl", "Tab": { - "active.background": "table", - "active.foreground": "activeFg", - "hover.background": "table", + "active": { + "background": "table", + "foreground": "activeFg" + }, + "hover": { + "background": "table" + }, "hoverBackground": "table", "selectedBackground": "table", "selectedForeground": "selFg" @@ -954,6 +1124,7 @@ }, "Popup": { "Advertiser": { + "borderColor": "border", "borderInsets": "6,20,6,20", "background": "bg", "borderColor": "bg", @@ -968,24 +1139,33 @@ "color": "cs", "inactiveColor": "bg" }, - "background": "notif", + "background": "bg", "borderColor": "cs", "borderWidth": 0, "inactiveBorderColor": "bg", "innerBorderColor": "second", "Header": { "activeBackground": "bg", + "activeForeground": "fg", "inactiveBackground": "cs", - "inactiveForeground": "text" + "inactiveForeground": "dis", + "insets": "12,10,12,10" }, + "mnemonicForeground": "text", "paintBorder": false, "preferences": { "background": "bg", "borderColor": "bg", "foreground": "fg" }, - "Selection.arc": 8, - "Selection.leftRightInset": 8, + "SearchField": { + "borderInsets": "4,4,4,4", + "inputInsets": "4,4,4,4" + }, + "Selection": { + "arc": 8, + "leftRightInset": 8 + }, "Separator": { "foreground": "fg", "color": "border" @@ -1003,8 +1183,14 @@ "background": "bg", "borderWidth": 1, "border": "8,8,8,8", + "borderInsets": "10,10,10,10", "borderCornerRadius": 8, + "borderCornerRadiusX": 8, + "borderCornerRadiusY": 8, + "borderWidth": 1, "foreground": "fg", + "leftBorderWidth": 8, + "rightBorderWidth": 8, "Selection": { "arc": 8, "innerInsets": "8,2,8,2" @@ -1013,12 +1199,35 @@ "translucentBackground": "bg" }, "PopupMenuSeparator": { + "borderCornerRadius": 8, "height": 10, "stripeWidth": 2, "stripeIndent": 5, "withToEdge": 4, "borderCornerRadius": 8 }, + "PresentationAssistant": { + "Bright": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + }, + "Pale": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + } + }, + "Profiler": { + "neutralLifecycleEvent": "second", + "trackBackground": "button" + }, "ProgressBar": { "background": "bg", "foreground": "accent", @@ -1062,29 +1271,106 @@ "selectionBackground": "selBg", "selectionForeground": "selFg" }, + "Review": { + "Avatar": { + "Border": { + "Status": { + "Accepted": "accent", + "NeedReview": "hl" + } + } + }, + "Branch": { + "Background": "button", + "Background.Hover": "hl" + }, + "ChatItem": { + "BubblePanel": { + "Border": "button" + }, + "Hover": "table" + }, + "Editor": { + "Line": { + "Status": { + "Marker": "accent" + } + } + }, + "MetaInfo": { + "StatusLine": { + "Gray": "excl", + "Blue": "accent" + } + }, + "State": { + "Background": "second", + "Foreground": "fg" + }, + "Timeline": { + "Thread": { + "Diff": { + "AnchorLine": "table" + } + } + } + }, "ReviewList": { "state.background": "second", "state.foreground": "fg" }, + "RunToolbar": { + "Debug": { + "activeBackground": "hl" + }, + "Profile": { + "activeBackground": "hl" + }, + "Run": { + "activeBackground": "hl" + } + }, "RunWidget": { "background": "button", - "Debug.activeBackground": "hl", - "foreground": "fg", - "hoverBackground": "table", - "pressedBackground": "hl", - "Profile.activeBackground": "hl", + "Debug": { + "activeBackground": "hl" + }, + "foreground": "selFg", + "hoverBackground": "hl", + "iconColor": "fg", + "leftPressedBackground": "table", + "leftHoverBackground": "hl", + "pressedBackground": "table", + "Profile": { + "activeBackground": "hl" + }, "runningBackground": "hl", - "runningForeground": "selFg", - "Run.activeBackground": "hl", + "Run": { + "activeBackground": "hl" + }, "Running": { "background": "hl", - "foreground": "selFg", "leftHoverBackground": "hl", - "leftPressedBackground": "hl" + "leftPressedBackground": "table" }, - "separatorColor": "border" + "runningBackground": "hl", + "runningForeground": "selFg", + "runIconColor": "accent", + "separatorColor": "border", + "stopBackground": "second", + "StopButton": { + "leftHoverBackground": "hl", + "leftPressedBackground": "second" + }, + "toolbarHeight": 30, + "toolbarBorderHeight": 4 + }, + "ScreenView": { + "borderColor": "border", + "defaultBorderColor": "border", + "hoveredBorderColor": "hl", + "selectedBorderColor": "selBg" }, - "ScreenView.borderColor": "border", "scrollbar": "bg", "ScrollBar": { "background": "bg", @@ -1186,9 +1472,9 @@ }, "SegmentedButton": { "focusedSelectedButtonColor": "hl", + "selectedEndBorderColor": "accent", "selectedButtonColor": "button", - "selectedStartBorderColor": "border", - "selectedEndBorderColor": "border" + "selectedStartBorderColor": "accent" }, "Separator": { "background": "second", @@ -1198,6 +1484,7 @@ "Settings": { "Spotlight.borderColor": "accent" }, + "shortcutForeground": "text", "SidePanel": { "background": "hc" }, @@ -1222,6 +1509,7 @@ "foreground": "fg" }, "Spinner": { + "arrowButtonInsets": "1,1,1,1", "background": "bg", "border": "4,4,4,4", "disabledBackground": "excl", @@ -1232,11 +1520,16 @@ "background": "bg", "highlight": "hc" }, - "SplitPaneDivider.draggingColor": "second", - "StateWidget.activeBackground": "button", + "SplitPaneDivider": { + "draggingColor": "second" + }, + "StateWidget": { + "activeBackground": "button" + }, "StatusBar": { - "background": "bg", + "background": "bg10", "Breadcrumbs": { + "chevronInset": 0, "floatingBackground": "tree", "floatingForeground": "fg", "floatingToolbarInsets": "8,12,8,12", @@ -1244,6 +1537,7 @@ "hoverBackground": "tree", "hoverForeground": "fg", "itemBackgroundInsets": "2,4,2,4", + "itemInsets": 0, "selectionBackground": "selBg", "selectionForeground": "activeFg", "selectionInactiveBackground": "button", @@ -1264,6 +1558,13 @@ "widgetInsets": "8,12,8,12" } }, + "StripeToolbar": { + "Button": { + "iconSize": 20, + "iconPadding": 8, + "size": "40,40" + } + }, "TabbedPane": { "background": "bg", "borderColor": "hc", @@ -1290,6 +1591,7 @@ "selectedTabPadInsets": "0,0,0,0", "shadow": "hc", "tabHeight": 32, + "tabAreaInsets": 0, "tabInsets": "5,10,5,10", "tabSelectionArc": 4, "tabSelectionHeight": 2, @@ -1385,7 +1687,7 @@ "TitlePane": { "Button": { "hoverBackground": "hl", - "preferredSize": "48,40" + "preferredSize": "42,42" }, "background": "hc", "inactiveBackground": "bg", @@ -1407,15 +1709,23 @@ "onBackground": "accent", "onForeground": "accent" }, - "Toolbar.Floating.background": "button", + "Toolbar": { + "horizontalToolbarInsets": "8,8,8,8", + "Floating": { + "background": "button", + "borderColor": "border" + }, + "verticalToolbarInsets": "8,8,8,8" + }, "ToolBar": { "background": "hc", "borderHandleColor": "text", "comboBoxButtonBackground": "button", "floatingForeground": "text", "foreground": "fg", - "verticalToolbarInsets": "6,6,6,6", - "horizontalToolbarInsets": "6,6,6,6" + "horizontalToolbarInsets": "6,6,6,6", + "separatorColor": "border", + "verticalToolbarInsets": "6,6,6,6" }, "ToolbarComboWidget": { "background": "button", @@ -1426,6 +1736,21 @@ "actions.settings.icon.background.color": "bg", "description.title.text.color": "fg" }, + "Tooltip": { + "Learning": { + "codeBorderColor": "cs", + "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "spanBackground": "accent70", + "spanForeground": "fg" + }, + "separatorColor": "border" + }, "ToolTip": { "arc": 6, "actions": { @@ -1445,6 +1770,7 @@ "Learning": { "background": "accent", "borderColor": "accent", + "codeForeground": "fg", "foreground": "fg", "spanBackground": "accent50", "spanForeground": "fg", @@ -1463,25 +1789,44 @@ "Button": { "hoverBackground": "table", "DragAndDrop": { - "stripeBackground": "cs", - "buttonDropBackground": "accent70" + "stripeBackground": "bg", + "buttonDropBackground": "selBg70", + "buttonDropBorderColor": "accent", + "buttonFloatingBackground": "button" }, "selectedBackground": "cs", "selectedForeground": "activeFg" }, + "DragAndDrop": { + "areaBackground": "accent50" + }, "header": { - "active.background": "second", + "active": { + "background": "second" + }, "background": "bg", - "border.background": "second", - "closeButton.background": "bg", - "tab.selected.active.background": "cs", - "tab.selected.background": "cs" + "border": { + "background": "border" + }, + "closeButton": { + "background": "bg" + }, + "tab": { + "selected": { + "active": { + "background": "cs" + }, + "background": "cs" + } + } }, "Header": { "height": 42, "background": "second", - "borderColor": "second", - "inactiveBackground": "bg" + "borderColor": "border", + "inactiveBackground": "bg", + "labelLeftRightInsets": "0,12,0,16", + "toolbarLeftRightInsets": "0,12,0,8" }, "HeaderCloseButton": { "background": "bg" @@ -1506,6 +1851,12 @@ "inactive": { "Header.background": "bg", "HeaderTab.background": "cs" + }, + "Stripe": { + "DragAndDrop": { + "separatorColor": "accent50" + }, + "separatorColor": "table" } }, "Tree": { @@ -1522,13 +1873,17 @@ "selectionForeground": "selFg", "selectionInactiveBackground": "tree", "selectionInactiveForeground": "selFg", - "textBackground": "hc" + "textBackground": "hc", + "leftChildIndent": 10, + "rightChildIndent": 5 }, - "Tree.leftChildIndent": 10, - "Tree.rightChildIndent": 5, "UIDesigner": { - "Activity.borderColor": "border", - "Canvas.background": "cs", + "Activity": { + "borderColor": "border" + }, + "Canvas": { + "background": "cs" + }, "ColorPicker": { "background": "second", "foreground": "fg" @@ -1543,49 +1898,119 @@ "borderColor": "border", "hoverBorderColor": "hl" }, - "Label.foreground": "text", - "highStroke.foreground": "fg", + "Label": { + "foreground": "text" + }, + "highStroke": { + "foreground": "fg" + }, "motion": { "AddConstraintColor": "accent", "AddConstraintPlus": "accent", - "CSPanel.SelectedBackground": "tree", - "CSPanel.SelectedFocusBackground": "selBg", - "Component.foreground": "fg", - "ConstraintSet.background": "second", - "ConstraintSetText.foreground": "text", - "CursorTextColor.foreground": "fg", - "HoverColor.disabledBackground": "dis", - "Key.selectedForeground": "accent", - "Notification.background": "notif", + "Axis": { + "lineSeparatorColor": "fg" + }, + "CSPanel": { + "SelectedBackground": "tree", + "SelectedFocusBackground": "selBg" + }, + "Component": { + "foreground": "fg" + }, + "ConstraintSet": { + "background": "second" + }, + "ConstraintSetText": { + "foreground": "text" + }, + "CursorTextColor": { + "foreground": "fg" + }, + "HoverColor": { + "disabledBackground": "dis" + }, + "Key": { + "selectedForeground": "accent" + }, + "Notification": { + "background": "notif" + }, "PositionMarkColor": "accent", - "PrimaryPanel.background": "cs", - "SecondaryPanel.background": "bg", - "SecondaryPanel.header.background": "cs", - "SecondaryPanel.header.foreground": "text", - "TimeCursor.End.selectedForeground": "accent", - "TimeCursor.Start.selectedForeground": "accent", - "TimeCursor.selectedForeground": "accent", + "PrimaryPanel": { + "background": "cs" + }, + "SecondaryPanel": { + "background": "bg", + "header": { + "background": "cs", + "foreground": "text" + } + }, + "TimeCursor": { + "End": { + "selectedForeground": "accent" + }, + "selectedForeground": "accent", + "Start": { + "selectedForeground": "accent" + } + }, "borderColor": "border", - "cs_FocusText.infoForeground": "text", - "graphLine.lineSeparatorColor": "accent", - "motionGraph.background": "bg", - "ourAvg.background": "second", - "ourCS.background": "second", - "ourCS_Border.borderColor": "border", - "ourCS_SelectedBackground.selectionInactiveBackground": "table", - "ourCS_SelectedBorder.pressedBorderColor": "hl", - "ourCS_SelectedFocusBackground.selectionForeground": "selFg", - "ourCS_SelectedFocusBorder.focusedBorderColor": "accent", - "ourCS_TextColor.foreground": "text", - "ourML_BarColor.separatorColor": "border", - "timeLine.disabledBorderColor": "border" + "cs_FocusText": { + "infoForeground": "text" + }, + "graphLine": { + "lineSeparatorColor": "accent" + }, + "Grid": { + "lineSeparatorColor": "border" + }, + "label": { + "background": "second", + "textColor": "text" + }, + "motionGraph": { + "background": "bg" + }, + "ourAvg": { + "background": "second" + }, + "ourCS": { + "background": "second" + }, + "ourCS_Border": { + "borderColor": "border" + }, + "ourCS_SelectedBackground": { + "selectionInactiveBackground": "table" + }, + "ourCS_SelectedBorder": { + "pressedBorderColor": "hl" + }, + "ourCS_SelectedFocusBackground": { + "selectionForeground": "selFg" + }, + "ourCS_SelectedFocusBorder": { + "focusedBorderColor": "accent" + }, + "ourCS_TextColor": { + "foreground": "text" + }, + "ourML_BarColor": { + "separatorColor": "border" + }, + "timeLine": { + "disabledBorderColor": "border" + } }, "PackageDetails": { "border": "accent", "infoBanner": "accent" }, "PackageSearch": { - "PackagesList.rowHeight": 28, + "PackagesList": { + "rowHeight": 28 + }, "PackageTag": { "background": "excl", "foreground": "fg", @@ -1617,7 +2042,9 @@ "lines3d": "accent", "secondaryGraphLines": "border" }, - "percent.foreground": "fg", + "percent": { + "foreground": "fg" + }, "Placeholder": { "background": "bg", "borderColor": "border", @@ -1634,9 +2061,11 @@ "warningBorderColor": "notif" }, "VersionControl": { - "FileHistory.Commit": { - "otherBranchBackground": "excl", - "selectedBranchBackground": "bg" + "FileHistory": { + "Commit": { + "otherBranchBackground": "excl", + "selectedBranchBackground": "bg" + } }, "GitCommits": { "graphColor": "hl" @@ -1660,8 +2089,13 @@ "Commit": { "currentBranchBackground": "cs", "hoveredBackground": "tree", + "selectionInactiveForeground": "fg", + "Reference": { + "foreground": "text" + }, "rowHeight": 28, - "unmatchedForeground": "text" + "unmatchedForeground": "text", + "verticalPadding": 8 } }, "MarkerPopup": { @@ -1688,30 +2122,39 @@ "foreground": "fg" }, "WelcomeScreen": { - "AssociatedComponent.background": "bg", - "Details.background": "bg", - "List": { - "background": "hc", - "selectionBackground": "selBg", - "selectionInactiveBackground": "hl" + "AssociatedComponent": { + "background": "bg" }, - "SidePanel.background": "second", "background": "bg", "borderColor": "bg", "captionBackground": "cs", "captionForeground": "fg", + "Details": { + "background": "bg" + }, "footerBackground": "cs", "footerForeground": "fg", "groupIconBorderColor": "button", "headerBackground": "bg", "headerForeground": "fg", - "separatorColor": "border", + "List": { + "background": "hc", + "selectionBackground": "selBg", + "selectionInactiveBackground": "hl" + }, "Projects": { - "actions.background": "cs", - "actions.selectionBackground": "hl", + "actions": { + "background": "cs", + "selectionBackground": "hl", + "selectionBorderColor": "accent" + }, "background": "second", "selectionBackground": "selBg", "selectionInactiveBackground": "selBg" + }, + "separatorColor": "border", + "SidePanel": { + "background": "second" } }, "Window.border": "border", diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Darker.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Darker.theme.json index d3abe59c..d388529a 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Darker.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Darker.theme.json @@ -16,7 +16,7 @@ "second": "#292929", "dis": "#474747", "accent": "#FF9800", - "accent2": "#FF98002", + "acc2": "#89ddff", "accent50": "#FF980050", "accent70": "#FF980070", "cs": "#1A1A1A", @@ -26,7 +26,7 @@ "hl": "#3F3F3F", "notif": "#1A1A1A", "hc": "#212121", - "shadow": "undefined", + "shadow": "#00000020", "white": "#eeffff", "blue": "#82aaff", "red": "#f07178", @@ -71,19 +71,25 @@ "hoverBorderColor": "accent50", "hoverSeparatorColor": "button", "pressedBackground": "accent50", - "pressedBorderColor": "accent50" + "pressedBorderColor": "accent50", + "separatorColor": "border" }, "ActionsList": { "icon.gap": 12, - "mnemonic.icon.gap": 12 + "mnemonic.icon.gap": 12, + "mnemonicInsets": "0,8,0,8", + "mnemonicsBorderInsets": "0,8,0,8", + "mnemonic.insets": "0,8,0,8" }, "ActionToolbar": { "background": "hc" }, - "AppInspector.GraphNode": { - "background": "second", - "borderColor": "border", - "focusedBorderColor": "accent" + "AppInspector": { + "GraphNode": { + "background": "second", + "borderColor": "border", + "focusedBorderColor": "accent" + } }, "AssignedMnemonic": { "background": "hl", @@ -99,13 +105,26 @@ "borderColor": "button", "foreground": "fg" }, - "BigSpinner.background": "bg", + "Banner": { + "foreground": "fg" + }, + "BigSpinner": { + "background": "bg" + }, "Bookmark": { "iconBackground": "accent", "Mnemonic": { "iconBackground": "hl", "iconBorderColor": "hl", "iconForeground": "fg" + }, + "MnemonicAssigned": { + "background": "table", + "foreground": "fg" + }, + "MnemonicCurrent": { + "background": "selBg", + "foreground": "selFg" } }, "BookmarkMnemonicAssigned": { @@ -128,13 +147,18 @@ "borderColor": "hl", "foreground": "fg" }, - "BookmarkIcon.background": "accent", - "Borders.ContrastBorderColor": "bg", - "Borders.color": "border", - "Breakpoint.iconHoverAlpha": 0.35, + "BookmarkIcon": { + "background": "accent" + }, + "Borders": { + "ContrastBorderColor": "bg", + "color": "border" + }, + "Breakpoint": { + "iconHoverAlpha": 0.35 + }, "Button": { "arc": 8, - "background": "bg", "darcula": { "borderColor": "button", "defaultBorderColor": "button", @@ -175,6 +199,7 @@ "focusedBorderColor": "accent", "foreground": "text", "highlight": "selFg", + "minimumSize": 72, "mt.background": "button", "mt.color1": "button", "mt.color2": "button", @@ -185,6 +210,12 @@ "select": "button", "shadowColor": "shadow", "shadowWidth": 0, + "Split": { + "default": { + "iconColor": "fg", + "separatorColor": "accent" + } + }, "startBackground": "table", "startBorderColor": "button", "ToolWindow": { @@ -195,11 +226,18 @@ "Tooltip.background": "notif", "Tooltip.borderColor": "border" }, + "CellEditor": { + "border": { + "width": 2 + } + }, "CheckBox": { "background": "bg", "background.selected": "accent", "borderColor": "bg", "borderColor.selected": "accent", + "border.width": 3, + "borderInsets": "4,4,4,4", "checkSignColor": "bg", "checkSignColor.selected": "bg", "checkSignColorDisabled": "bg", @@ -297,7 +335,9 @@ "foreground": "fg", "swatchesDefaultRecentColor": "fg" }, - "ComboBoxButton.background": "button", + "ComboBoxButton": { + "background": "button" + }, "ComboBox": { "ArrowButton": { "background": "button", @@ -327,14 +367,16 @@ "selectionBackground": "table", "selectionForeground": "activeFg" }, - "ComboPopup.border": "1,1,1,1,#FF9800", + "ComboPopup": { + "border": "1,1,1,1,#FF9800" + }, "CompletionPopup": { "Advertiser": { - "background": "bg", - "foreground": "fg", + "background": "second", + "foreground": "text", "borderInsets": "8,12,8,12" }, - "background": "second", + "background": "button", "foreground": "fg", "grayForeground": "text", "grayedForeground": "text", @@ -351,13 +393,20 @@ "selectionInactiveBackground": "hl", "selectionInactiveForeground": "text", "selectionInactiveInfoForeground": "text", - "selectionInfoForeground": "selFg" + "selectionInfoForeground": "selFg", + "selectionInnerInsets": "4,4,4,4" }, "ComplexPopup": { - "Header.background": "notif" + "Header": { + "background": "bg", + "insets": "12,12,12,12" + }, + "TextField": { + "inputInsets": "8,4,8,4" + } }, "Component": { - "arc": 4, + "arc": 6, "focusWidth": 2, "borderColor": "hl", "disabledBorderColor": "dis", @@ -440,7 +489,7 @@ "southPanelDivider": "bg" }, "DragAndDrop": { - "areaBackground": "tree", + "areaBackground": "selBg70", "areaBorderColor": "bg", "areaForeground": "fg", "backgroundBorderColor": "bg", @@ -453,18 +502,37 @@ "Editor": { "background": "hc", "foreground": "fg", + "Notification": { + "borderInsets": "10,12,10,12", + "WithoutStatus.borderInsets": "10,12,10,12" + }, + "ReplaceToolbar": { + "borderInsets": "4,12,4,12" + }, "shortcutForeground": "text", "SearchField": { "background": "cs", "borderInsets": "8,12,8,12" }, + "SearchReplaceModePanel": { + "borderInsets": "4,12,4,12" + }, + "SearchToolbar": { + "borderInsets": "4,12,4,12" + }, "Toolbar": { "borderColor": "border" + }, + "ToolTip": { + "border": "border", + "foreground": "fg", + "iconHoverBackground": "table", + "selectionBackground": "selBg" } }, "EditorGroupsTabs": { "background": "bg", - "borderColor": "second", + "borderColor": "border", "hoverBackground": "hl", "hoverColor": "hl", "inactiveUnderlineColor": "accent", @@ -474,6 +542,7 @@ }, "EditorPane": { "background": "hc", + "borderColor": "border", "caretForeground": "accent", "foreground": "fg", "inactiveBackground": "bg", @@ -483,21 +552,25 @@ "splitBorder": "border" }, "EditorTabs": { - "active.background": "table", - "active.foreground": "fg", - "active.underlineColor": "accent", + "active": { + "background": "table", + "foreground": "fg", + "underlineColor": "accent" + }, "background": "bg", - "borderColor": "second", "foreground": "fg", "hoverBackground": "hl", "hoverColor": "hl", "hoverMaskColor": "hl", "inactive.maskColor": "bg", - "inactiveColoredFileBackground": "bg", + "inactiveColoredFileBackground": "bg70", "inactiveMaskColor": "bg", "inactiveUnderlineColor": "dis", "selectedBackground": "table", "selectedForeground": "fg", + "tabContentInsetsActionsLeft": "0,6,0,6", + "tabContentInsetsActionsNone": "0,6,0,6", + "tabContentInsetsActionsRight": "0,6,0,6", "tabInsets": "-10,10,-10,10", "underlineColor": "accent", "underlineHeight": 3, @@ -515,6 +588,10 @@ "Gray": "excl", "excluded": "excl" }, + "FindPopup": { + "scopesPanelInsets": "4,16,4,16", + "bottomPanelInsets": "4,10,4,10" + }, "FlameGraph": { "JVMBackground": "#89DDF7", "JVMFocusBackground": "#82AAFF", @@ -555,15 +632,34 @@ "selectionForeground.unfocused": "selFg" }, "GotItTooltip": { + "animationBackground": "notif", "background": "notif", "borderColor": "notif", + "Button": { + "contrastBackground": "cs", + "endBackground": "button", + "foreground": "fg", + "startBackground": "button" + }, + "codeBackground": "cs", + "codeBorderColor": "bg", + "codeForeground": "fg", "endBackground": "button", "endBorderColor": "button", "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "imageBorderColor": "notif", "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "shortcutBackground": "notif", + "shortcutBorderColor": "border", "shortcutForeground": "text", "startBackground": "button", - "startBorderColor": "button" + "startBorderColor": "button", + "stepForeground": "text" }, "Group": { "disabledSeparatorColor": "border", @@ -587,7 +683,10 @@ "borderColor": "border", "defaultTextBorderInsets": "16,16,16,16", "foreground": "fg", + "fontSizeDelta": 0, + "horizontalGap": 10, "infoForeground": "text", + "maxWidth": 250, "shortcutForeground": "text", "shortcutTextColor": "text", "smallTextBorderInsets": "8,12,8,12", @@ -601,18 +700,29 @@ "MqTag": "text", "Tag": "text" }, - "Hyperlink.linkColor": "accent", - "IconBadge": { - "infoBackground": "accent" + "Hyperlink": { + "linkColor": "accent" + }, + "IconBadge": { + "infoBackground": "accent", + "newUiBackground": "accent" + }, + "IdeStatusBar": { + "border": "4,4,4,4" + }, + "InformationHint": { + "borderColor": "border" }, - "IdeStatusBar.border": "4,4,4,4", - "InformationHint.borderColor": "border", "inactiveCaption": "second", "inactiveCaptionBorder": "bg", "inactiveCaptionText": "text", "info": "text", "infoPanelForeground": "text", "infoText": "text", + "InlineBanner": { + "hoverBackground": "accent70", + "pressedBackground": "accent70" + }, "InplaceRefactoringPopup": { "background": "bg", "borderColor": "bg" @@ -622,10 +732,13 @@ "foreground": "fg" }, "InternalFrame": { + "activeTitleBackground": "bg", "activeTitleForeground": "fg", "background": "bg", "inactiveTitleBackground": "bg", - "inactiveTitleForeground": "text" + "inactiveTitleForeground": "text", + "optionDialogBackground": "bg", + "paletteBackground": "bg" }, "Label": { "background": "bg", @@ -676,20 +789,22 @@ "hoverBackground": "hl", "leftRightInset": 8, "separatorColor": "border", - "separatorInset": 4 + "separatorInset": 8 }, "foreground": "fg", "hoverBackground": "hl", "hoverInactiveBackground": "table", - "Line.hoverBackground": "selBg", + "Line": { + "hoverBackground": "selBg" + }, "rowHeight": "28", "selectionBackground": "tree", "selectionForeground": "selFg", "selectionInactiveBackground": "table", "selectionInactiveForeground": "activeFg", "Tag": { - "background": "button", - "foreground": "fg" + "foreground": "fg", + "background": "button" } }, "LiveIndicator": { @@ -703,31 +818,60 @@ "background": "hc", "foreground": "fg", "selectionForeground": "activeFg", - "selectionBackground": "selBg" + "selectionBackground": "selBg", + "transparentSelectionBackground": "tree" }, "MainToolbar": { "background": "bg", "Button": { - "buttonInsets": "0,0,0,0" + "buttonInsets": "0,4,0,4", + "iconSize": 20, + "size": "28,28" }, "Dropdown": { "borderInsets": "6,12,6,12", "background": "bg", "foreground": "fg", "hoverBackground": "hl", - "pressedBackground": "table" + "pressedBackground": "table", + "transparentHoverBackground": "accent70" }, + "foreground": "fg", "hoverBackground": "hl", "Icon": { - "borderInsets": "10,10,10,10", + "borderInsets": "4,4,4,4", "background": "bg", "hoverBackground": "hl", + "insets": "5,4,5,4", "pressedBackground": "table" }, "inactiveBackground": "bg", "pressedBackground": "table", - "separatorColor": "border" + "separatorColor": "border", + "SplitDropdown": { + "borderInsets": "6,6,6,6" + } }, + "MainWindow": { + "FullScreeControl": { + "Background": "hl" + }, + "Tab": { + "background": "bg", + "borderColor": "bg", + "foreground": "fg", + "hoverBackground": "hl", + "hoverForeground": "fg", + "selectedBackground": "selBg", + "selectedForeground": "selFg", + "selectedInactiveBackground": "excl", + "separatorColor": "border" + } + }, + "ManagedIdeBadgeBorder": "border", + "ManagedIdeBadgeBackground": "bg", + "ManagedIdeBadgeBackgroundHover": "accent70", + "ManagedIdeMenuItemHover": "selBg", "material": { "background": "bg", "branchColor": "fg", @@ -785,8 +929,12 @@ "disabledBackground": "bg", "disabledForeground": "dis", "foreground": "fg", + "insets": "0,4,0,4", "selectionBackground": "selBg", - "selectionForeground": "activeFg" + "selectionForeground": "activeFg", + "Selection": { + "arc": 8 + } }, "MlModelBinding.Viewer.CodeEditor.background": "bg", "MnemonicIcon": { @@ -797,6 +945,9 @@ "NavBar": { "arrowColor": "fg", "borderColor": "bg", + "Breadcrumbs": { + "itemInsets": "4,2,4,2" + }, "selectedColor": "accent" }, "NewClass": { @@ -806,15 +957,21 @@ "SearchField": { "background": "cs" }, - "separatorWidth": 6 + "separatorWidth": 10 }, "NewPSD.warning": "accent", + "NewUiOnboarding": { + "Dialog": { + "background": "second" + } + }, "Notification": { "arc": 16, "Error.foreground": "accent", "Link.foreground": "accent", "background": "notif", - "borderColor": "notif", + "borderColor": "border", + "borderInsets": "4,4,4,4", "errorBackground": "notif", "errorBorderColor": "notif", "errorForeground": "accent", @@ -855,18 +1012,27 @@ "ToolWindowWarning": { "foreground": "fg", "background": "notifWarn" + }, + "WelcomeScreen": { + "separatorColor": "border" } }, "Notifications": { "background": "notif", - "borderColor": "notif" + "borderColor": "border" }, "NotificationsToolwindow": { - "Notification.hoverBackground": "tree", - "newNotification.background": "notif", - "newNotification.hoverBackground": "tree" + "Notification": { + "hoverBackground": "tree" + }, + "newNotification": { + "background": "notif", + "hoverBackground": "tree" + } + }, + "OnePixelDivider": { + "background": "border" }, - "OnePixelDivider.background": "border", "OptionPane": { "background": "bg", "foreground": "fg", @@ -882,7 +1048,6 @@ "focusedColor": "accent" }, "Panel": { - "background": "bg", "foreground": "fg", "mouseShortcutBackground": "bg" }, @@ -911,16 +1076,6 @@ "Plugins": { "background": "bg", "borderColor": "border", - "disabledForeground": "dis", - "eapTagBackground": "hl", - "hoverBackground": "hl", - "lightSelectionBackground": "table", - "paidTagBackground": "hl", - "selectionBackground": "selBg", - "selectionForeground": "selFg", - "tagBackground": "hl", - "tagForeground": "accent", - "trialTagBackground": "hl", "Button": { "installBackground": "button", "installBorderColor": "button", @@ -928,10 +1083,15 @@ "installFillForeground": "dis", "installFocusedBackground": "hl", "installForeground": "fg", - "updateBackground": "accent", + "updateBackground": "button", "updateBorderColor": "button", "updateForeground": "fg" }, + "disabledForeground": "dis", + "eapTagBackground": "hl", + "hoverBackground": "hl", + "lightSelectionBackground": "table", + "paidTagBackground": "hl", "ScreenshotPagination": { "CurrentImage.fillColor": "accent" }, @@ -943,10 +1103,20 @@ "background": "second", "foreground": "fg" }, + "selectionBackground": "selBg", + "selectionForeground": "selFg", + "suggestedLabelBackground": "button", + "tagBackground": "hl", + "tagForeground": "accent", + "trialTagBackground": "hl", "Tab": { - "active.background": "table", - "active.foreground": "activeFg", - "hover.background": "table", + "active": { + "background": "table", + "foreground": "activeFg" + }, + "hover": { + "background": "table" + }, "hoverBackground": "table", "selectedBackground": "table", "selectedForeground": "selFg" @@ -954,6 +1124,7 @@ }, "Popup": { "Advertiser": { + "borderColor": "border", "borderInsets": "6,20,6,20", "background": "bg", "borderColor": "bg", @@ -968,24 +1139,33 @@ "color": "cs", "inactiveColor": "bg" }, - "background": "notif", + "background": "bg", "borderColor": "cs", "borderWidth": 0, "inactiveBorderColor": "bg", "innerBorderColor": "second", "Header": { "activeBackground": "bg", + "activeForeground": "fg", "inactiveBackground": "cs", - "inactiveForeground": "text" + "inactiveForeground": "dis", + "insets": "12,10,12,10" }, + "mnemonicForeground": "text", "paintBorder": false, "preferences": { "background": "bg", "borderColor": "bg", "foreground": "fg" }, - "Selection.arc": 8, - "Selection.leftRightInset": 8, + "SearchField": { + "borderInsets": "4,4,4,4", + "inputInsets": "4,4,4,4" + }, + "Selection": { + "arc": 8, + "leftRightInset": 8 + }, "Separator": { "foreground": "fg", "color": "border" @@ -1003,8 +1183,14 @@ "background": "bg", "borderWidth": 1, "border": "8,8,8,8", + "borderInsets": "10,10,10,10", "borderCornerRadius": 8, + "borderCornerRadiusX": 8, + "borderCornerRadiusY": 8, + "borderWidth": 1, "foreground": "fg", + "leftBorderWidth": 8, + "rightBorderWidth": 8, "Selection": { "arc": 8, "innerInsets": "8,2,8,2" @@ -1013,12 +1199,35 @@ "translucentBackground": "bg" }, "PopupMenuSeparator": { + "borderCornerRadius": 8, "height": 10, "stripeWidth": 2, "stripeIndent": 5, "withToEdge": 4, "borderCornerRadius": 8 }, + "PresentationAssistant": { + "Bright": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + }, + "Pale": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + } + }, + "Profiler": { + "neutralLifecycleEvent": "second", + "trackBackground": "button" + }, "ProgressBar": { "background": "bg", "foreground": "accent", @@ -1062,29 +1271,106 @@ "selectionBackground": "selBg", "selectionForeground": "selFg" }, + "Review": { + "Avatar": { + "Border": { + "Status": { + "Accepted": "accent", + "NeedReview": "hl" + } + } + }, + "Branch": { + "Background": "button", + "Background.Hover": "hl" + }, + "ChatItem": { + "BubblePanel": { + "Border": "button" + }, + "Hover": "table" + }, + "Editor": { + "Line": { + "Status": { + "Marker": "accent" + } + } + }, + "MetaInfo": { + "StatusLine": { + "Gray": "excl", + "Blue": "accent" + } + }, + "State": { + "Background": "second", + "Foreground": "fg" + }, + "Timeline": { + "Thread": { + "Diff": { + "AnchorLine": "table" + } + } + } + }, "ReviewList": { "state.background": "second", "state.foreground": "fg" }, + "RunToolbar": { + "Debug": { + "activeBackground": "hl" + }, + "Profile": { + "activeBackground": "hl" + }, + "Run": { + "activeBackground": "hl" + } + }, "RunWidget": { "background": "button", - "Debug.activeBackground": "hl", - "foreground": "fg", - "hoverBackground": "table", - "pressedBackground": "hl", - "Profile.activeBackground": "hl", + "Debug": { + "activeBackground": "hl" + }, + "foreground": "selFg", + "hoverBackground": "hl", + "iconColor": "fg", + "leftPressedBackground": "table", + "leftHoverBackground": "hl", + "pressedBackground": "table", + "Profile": { + "activeBackground": "hl" + }, "runningBackground": "hl", - "runningForeground": "selFg", - "Run.activeBackground": "hl", + "Run": { + "activeBackground": "hl" + }, "Running": { "background": "hl", - "foreground": "selFg", "leftHoverBackground": "hl", - "leftPressedBackground": "hl" + "leftPressedBackground": "table" }, - "separatorColor": "border" + "runningBackground": "hl", + "runningForeground": "selFg", + "runIconColor": "accent", + "separatorColor": "border", + "stopBackground": "second", + "StopButton": { + "leftHoverBackground": "hl", + "leftPressedBackground": "second" + }, + "toolbarHeight": 30, + "toolbarBorderHeight": 4 + }, + "ScreenView": { + "borderColor": "border", + "defaultBorderColor": "border", + "hoveredBorderColor": "hl", + "selectedBorderColor": "selBg" }, - "ScreenView.borderColor": "border", "scrollbar": "bg", "ScrollBar": { "background": "bg", @@ -1186,9 +1472,9 @@ }, "SegmentedButton": { "focusedSelectedButtonColor": "hl", + "selectedEndBorderColor": "accent", "selectedButtonColor": "button", - "selectedStartBorderColor": "border", - "selectedEndBorderColor": "border" + "selectedStartBorderColor": "accent" }, "Separator": { "background": "second", @@ -1198,6 +1484,7 @@ "Settings": { "Spotlight.borderColor": "accent" }, + "shortcutForeground": "text", "SidePanel": { "background": "hc" }, @@ -1222,6 +1509,7 @@ "foreground": "fg" }, "Spinner": { + "arrowButtonInsets": "1,1,1,1", "background": "bg", "border": "4,4,4,4", "disabledBackground": "excl", @@ -1232,11 +1520,16 @@ "background": "bg", "highlight": "hc" }, - "SplitPaneDivider.draggingColor": "second", - "StateWidget.activeBackground": "button", + "SplitPaneDivider": { + "draggingColor": "second" + }, + "StateWidget": { + "activeBackground": "button" + }, "StatusBar": { - "background": "bg", + "background": "bg10", "Breadcrumbs": { + "chevronInset": 0, "floatingBackground": "tree", "floatingForeground": "fg", "floatingToolbarInsets": "8,12,8,12", @@ -1244,6 +1537,7 @@ "hoverBackground": "tree", "hoverForeground": "fg", "itemBackgroundInsets": "2,4,2,4", + "itemInsets": 0, "selectionBackground": "selBg", "selectionForeground": "activeFg", "selectionInactiveBackground": "button", @@ -1264,6 +1558,13 @@ "widgetInsets": "8,12,8,12" } }, + "StripeToolbar": { + "Button": { + "iconSize": 20, + "iconPadding": 8, + "size": "40,40" + } + }, "TabbedPane": { "background": "bg", "borderColor": "hc", @@ -1290,6 +1591,7 @@ "selectedTabPadInsets": "0,0,0,0", "shadow": "hc", "tabHeight": 32, + "tabAreaInsets": 0, "tabInsets": "5,10,5,10", "tabSelectionArc": 4, "tabSelectionHeight": 2, @@ -1385,7 +1687,7 @@ "TitlePane": { "Button": { "hoverBackground": "hl", - "preferredSize": "48,40" + "preferredSize": "42,42" }, "background": "hc", "inactiveBackground": "bg", @@ -1407,15 +1709,23 @@ "onBackground": "accent", "onForeground": "accent" }, - "Toolbar.Floating.background": "button", + "Toolbar": { + "horizontalToolbarInsets": "8,8,8,8", + "Floating": { + "background": "button", + "borderColor": "border" + }, + "verticalToolbarInsets": "8,8,8,8" + }, "ToolBar": { "background": "hc", "borderHandleColor": "text", "comboBoxButtonBackground": "button", "floatingForeground": "text", "foreground": "fg", - "verticalToolbarInsets": "6,6,6,6", - "horizontalToolbarInsets": "6,6,6,6" + "horizontalToolbarInsets": "6,6,6,6", + "separatorColor": "border", + "verticalToolbarInsets": "6,6,6,6" }, "ToolbarComboWidget": { "background": "button", @@ -1426,6 +1736,21 @@ "actions.settings.icon.background.color": "bg", "description.title.text.color": "fg" }, + "Tooltip": { + "Learning": { + "codeBorderColor": "cs", + "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "spanBackground": "accent70", + "spanForeground": "fg" + }, + "separatorColor": "border" + }, "ToolTip": { "arc": 6, "actions": { @@ -1445,6 +1770,7 @@ "Learning": { "background": "accent", "borderColor": "accent", + "codeForeground": "fg", "foreground": "fg", "spanBackground": "accent50", "spanForeground": "fg", @@ -1463,25 +1789,44 @@ "Button": { "hoverBackground": "table", "DragAndDrop": { - "stripeBackground": "cs", - "buttonDropBackground": "accent70" + "stripeBackground": "bg", + "buttonDropBackground": "selBg70", + "buttonDropBorderColor": "accent", + "buttonFloatingBackground": "button" }, "selectedBackground": "cs", "selectedForeground": "activeFg" }, + "DragAndDrop": { + "areaBackground": "accent50" + }, "header": { - "active.background": "second", + "active": { + "background": "second" + }, "background": "bg", - "border.background": "second", - "closeButton.background": "bg", - "tab.selected.active.background": "cs", - "tab.selected.background": "cs" + "border": { + "background": "border" + }, + "closeButton": { + "background": "bg" + }, + "tab": { + "selected": { + "active": { + "background": "cs" + }, + "background": "cs" + } + } }, "Header": { "height": 42, "background": "second", - "borderColor": "second", - "inactiveBackground": "bg" + "borderColor": "border", + "inactiveBackground": "bg", + "labelLeftRightInsets": "0,12,0,16", + "toolbarLeftRightInsets": "0,12,0,8" }, "HeaderCloseButton": { "background": "bg" @@ -1506,6 +1851,12 @@ "inactive": { "Header.background": "bg", "HeaderTab.background": "cs" + }, + "Stripe": { + "DragAndDrop": { + "separatorColor": "accent50" + }, + "separatorColor": "table" } }, "Tree": { @@ -1522,13 +1873,17 @@ "selectionForeground": "selFg", "selectionInactiveBackground": "tree", "selectionInactiveForeground": "selFg", - "textBackground": "hc" + "textBackground": "hc", + "leftChildIndent": 10, + "rightChildIndent": 5 }, - "Tree.leftChildIndent": 10, - "Tree.rightChildIndent": 5, "UIDesigner": { - "Activity.borderColor": "border", - "Canvas.background": "cs", + "Activity": { + "borderColor": "border" + }, + "Canvas": { + "background": "cs" + }, "ColorPicker": { "background": "second", "foreground": "fg" @@ -1543,49 +1898,119 @@ "borderColor": "border", "hoverBorderColor": "hl" }, - "Label.foreground": "text", - "highStroke.foreground": "fg", + "Label": { + "foreground": "text" + }, + "highStroke": { + "foreground": "fg" + }, "motion": { "AddConstraintColor": "accent", "AddConstraintPlus": "accent", - "CSPanel.SelectedBackground": "tree", - "CSPanel.SelectedFocusBackground": "selBg", - "Component.foreground": "fg", - "ConstraintSet.background": "second", - "ConstraintSetText.foreground": "text", - "CursorTextColor.foreground": "fg", - "HoverColor.disabledBackground": "dis", - "Key.selectedForeground": "accent", - "Notification.background": "notif", + "Axis": { + "lineSeparatorColor": "fg" + }, + "CSPanel": { + "SelectedBackground": "tree", + "SelectedFocusBackground": "selBg" + }, + "Component": { + "foreground": "fg" + }, + "ConstraintSet": { + "background": "second" + }, + "ConstraintSetText": { + "foreground": "text" + }, + "CursorTextColor": { + "foreground": "fg" + }, + "HoverColor": { + "disabledBackground": "dis" + }, + "Key": { + "selectedForeground": "accent" + }, + "Notification": { + "background": "notif" + }, "PositionMarkColor": "accent", - "PrimaryPanel.background": "cs", - "SecondaryPanel.background": "bg", - "SecondaryPanel.header.background": "cs", - "SecondaryPanel.header.foreground": "text", - "TimeCursor.End.selectedForeground": "accent", - "TimeCursor.Start.selectedForeground": "accent", - "TimeCursor.selectedForeground": "accent", + "PrimaryPanel": { + "background": "cs" + }, + "SecondaryPanel": { + "background": "bg", + "header": { + "background": "cs", + "foreground": "text" + } + }, + "TimeCursor": { + "End": { + "selectedForeground": "accent" + }, + "selectedForeground": "accent", + "Start": { + "selectedForeground": "accent" + } + }, "borderColor": "border", - "cs_FocusText.infoForeground": "text", - "graphLine.lineSeparatorColor": "accent", - "motionGraph.background": "bg", - "ourAvg.background": "second", - "ourCS.background": "second", - "ourCS_Border.borderColor": "border", - "ourCS_SelectedBackground.selectionInactiveBackground": "table", - "ourCS_SelectedBorder.pressedBorderColor": "hl", - "ourCS_SelectedFocusBackground.selectionForeground": "selFg", - "ourCS_SelectedFocusBorder.focusedBorderColor": "accent", - "ourCS_TextColor.foreground": "text", - "ourML_BarColor.separatorColor": "border", - "timeLine.disabledBorderColor": "border" + "cs_FocusText": { + "infoForeground": "text" + }, + "graphLine": { + "lineSeparatorColor": "accent" + }, + "Grid": { + "lineSeparatorColor": "border" + }, + "label": { + "background": "second", + "textColor": "text" + }, + "motionGraph": { + "background": "bg" + }, + "ourAvg": { + "background": "second" + }, + "ourCS": { + "background": "second" + }, + "ourCS_Border": { + "borderColor": "border" + }, + "ourCS_SelectedBackground": { + "selectionInactiveBackground": "table" + }, + "ourCS_SelectedBorder": { + "pressedBorderColor": "hl" + }, + "ourCS_SelectedFocusBackground": { + "selectionForeground": "selFg" + }, + "ourCS_SelectedFocusBorder": { + "focusedBorderColor": "accent" + }, + "ourCS_TextColor": { + "foreground": "text" + }, + "ourML_BarColor": { + "separatorColor": "border" + }, + "timeLine": { + "disabledBorderColor": "border" + } }, "PackageDetails": { "border": "accent", "infoBanner": "accent" }, "PackageSearch": { - "PackagesList.rowHeight": 28, + "PackagesList": { + "rowHeight": 28 + }, "PackageTag": { "background": "excl", "foreground": "fg", @@ -1617,7 +2042,9 @@ "lines3d": "accent", "secondaryGraphLines": "border" }, - "percent.foreground": "fg", + "percent": { + "foreground": "fg" + }, "Placeholder": { "background": "bg", "borderColor": "border", @@ -1634,9 +2061,11 @@ "warningBorderColor": "notif" }, "VersionControl": { - "FileHistory.Commit": { - "otherBranchBackground": "excl", - "selectedBranchBackground": "bg" + "FileHistory": { + "Commit": { + "otherBranchBackground": "excl", + "selectedBranchBackground": "bg" + } }, "GitCommits": { "graphColor": "hl" @@ -1660,8 +2089,13 @@ "Commit": { "currentBranchBackground": "cs", "hoveredBackground": "tree", + "selectionInactiveForeground": "fg", + "Reference": { + "foreground": "text" + }, "rowHeight": 28, - "unmatchedForeground": "text" + "unmatchedForeground": "text", + "verticalPadding": 8 } }, "MarkerPopup": { @@ -1688,30 +2122,39 @@ "foreground": "fg" }, "WelcomeScreen": { - "AssociatedComponent.background": "bg", - "Details.background": "bg", - "List": { - "background": "hc", - "selectionBackground": "selBg", - "selectionInactiveBackground": "hl" + "AssociatedComponent": { + "background": "bg" }, - "SidePanel.background": "second", "background": "bg", "borderColor": "bg", "captionBackground": "cs", "captionForeground": "fg", + "Details": { + "background": "bg" + }, "footerBackground": "cs", "footerForeground": "fg", "groupIconBorderColor": "button", "headerBackground": "bg", "headerForeground": "fg", - "separatorColor": "border", + "List": { + "background": "hc", + "selectionBackground": "selBg", + "selectionInactiveBackground": "hl" + }, "Projects": { - "actions.background": "cs", - "actions.selectionBackground": "hl", + "actions": { + "background": "cs", + "selectionBackground": "hl", + "selectionBorderColor": "accent" + }, "background": "second", "selectionBackground": "selBg", "selectionInactiveBackground": "selBg" + }, + "separatorColor": "border", + "SidePanel": { + "background": "second" } }, "Window.border": "border", diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Deep Ocean.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Deep Ocean.theme.json index ffd58616..fb9a48b8 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Deep Ocean.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Deep Ocean.theme.json @@ -16,7 +16,7 @@ "second": "#181A1F", "dis": "#464B5D", "accent": "#84ffff", - "accent2": "#84ffff2", + "acc2": "#F06292", "accent50": "#84ffff50", "accent70": "#84ffff70", "cs": "#090B10", @@ -26,7 +26,7 @@ "hl": "#1F2233", "notif": "#090B10", "hc": "#0F111A", - "shadow": "undefined", + "shadow": "#00000020", "white": "#eeffff", "blue": "#82aaff", "red": "#f07178", @@ -71,19 +71,25 @@ "hoverBorderColor": "accent50", "hoverSeparatorColor": "button", "pressedBackground": "accent50", - "pressedBorderColor": "accent50" + "pressedBorderColor": "accent50", + "separatorColor": "border" }, "ActionsList": { "icon.gap": 12, - "mnemonic.icon.gap": 12 + "mnemonic.icon.gap": 12, + "mnemonicInsets": "0,8,0,8", + "mnemonicsBorderInsets": "0,8,0,8", + "mnemonic.insets": "0,8,0,8" }, "ActionToolbar": { "background": "hc" }, - "AppInspector.GraphNode": { - "background": "second", - "borderColor": "border", - "focusedBorderColor": "accent" + "AppInspector": { + "GraphNode": { + "background": "second", + "borderColor": "border", + "focusedBorderColor": "accent" + } }, "AssignedMnemonic": { "background": "hl", @@ -99,13 +105,26 @@ "borderColor": "button", "foreground": "fg" }, - "BigSpinner.background": "bg", + "Banner": { + "foreground": "fg" + }, + "BigSpinner": { + "background": "bg" + }, "Bookmark": { "iconBackground": "accent", "Mnemonic": { "iconBackground": "hl", "iconBorderColor": "hl", "iconForeground": "fg" + }, + "MnemonicAssigned": { + "background": "table", + "foreground": "fg" + }, + "MnemonicCurrent": { + "background": "selBg", + "foreground": "selFg" } }, "BookmarkMnemonicAssigned": { @@ -128,13 +147,18 @@ "borderColor": "hl", "foreground": "fg" }, - "BookmarkIcon.background": "accent", - "Borders.ContrastBorderColor": "bg", - "Borders.color": "border", - "Breakpoint.iconHoverAlpha": 0.35, + "BookmarkIcon": { + "background": "accent" + }, + "Borders": { + "ContrastBorderColor": "bg", + "color": "border" + }, + "Breakpoint": { + "iconHoverAlpha": 0.35 + }, "Button": { "arc": 8, - "background": "bg", "darcula": { "borderColor": "button", "defaultBorderColor": "button", @@ -175,6 +199,7 @@ "focusedBorderColor": "accent", "foreground": "text", "highlight": "selFg", + "minimumSize": 72, "mt.background": "button", "mt.color1": "button", "mt.color2": "button", @@ -185,6 +210,12 @@ "select": "button", "shadowColor": "shadow", "shadowWidth": 0, + "Split": { + "default": { + "iconColor": "fg", + "separatorColor": "accent" + } + }, "startBackground": "table", "startBorderColor": "button", "ToolWindow": { @@ -195,11 +226,18 @@ "Tooltip.background": "notif", "Tooltip.borderColor": "border" }, + "CellEditor": { + "border": { + "width": 2 + } + }, "CheckBox": { "background": "bg", "background.selected": "accent", "borderColor": "bg", "borderColor.selected": "accent", + "border.width": 3, + "borderInsets": "4,4,4,4", "checkSignColor": "bg", "checkSignColor.selected": "bg", "checkSignColorDisabled": "bg", @@ -297,7 +335,9 @@ "foreground": "fg", "swatchesDefaultRecentColor": "fg" }, - "ComboBoxButton.background": "button", + "ComboBoxButton": { + "background": "button" + }, "ComboBox": { "ArrowButton": { "background": "button", @@ -327,14 +367,16 @@ "selectionBackground": "table", "selectionForeground": "activeFg" }, - "ComboPopup.border": "1,1,1,1,#84ffff", + "ComboPopup": { + "border": "1,1,1,1,#84ffff" + }, "CompletionPopup": { "Advertiser": { - "background": "bg", - "foreground": "fg", + "background": "second", + "foreground": "text", "borderInsets": "8,12,8,12" }, - "background": "second", + "background": "button", "foreground": "fg", "grayForeground": "text", "grayedForeground": "text", @@ -351,13 +393,20 @@ "selectionInactiveBackground": "hl", "selectionInactiveForeground": "text", "selectionInactiveInfoForeground": "text", - "selectionInfoForeground": "selFg" + "selectionInfoForeground": "selFg", + "selectionInnerInsets": "4,4,4,4" }, "ComplexPopup": { - "Header.background": "notif" + "Header": { + "background": "bg", + "insets": "12,12,12,12" + }, + "TextField": { + "inputInsets": "8,4,8,4" + } }, "Component": { - "arc": 4, + "arc": 6, "focusWidth": 2, "borderColor": "hl", "disabledBorderColor": "dis", @@ -440,7 +489,7 @@ "southPanelDivider": "bg" }, "DragAndDrop": { - "areaBackground": "tree", + "areaBackground": "selBg70", "areaBorderColor": "bg", "areaForeground": "fg", "backgroundBorderColor": "bg", @@ -453,18 +502,37 @@ "Editor": { "background": "hc", "foreground": "fg", + "Notification": { + "borderInsets": "10,12,10,12", + "WithoutStatus.borderInsets": "10,12,10,12" + }, + "ReplaceToolbar": { + "borderInsets": "4,12,4,12" + }, "shortcutForeground": "text", "SearchField": { "background": "cs", "borderInsets": "8,12,8,12" }, + "SearchReplaceModePanel": { + "borderInsets": "4,12,4,12" + }, + "SearchToolbar": { + "borderInsets": "4,12,4,12" + }, "Toolbar": { "borderColor": "border" + }, + "ToolTip": { + "border": "border", + "foreground": "fg", + "iconHoverBackground": "table", + "selectionBackground": "selBg" } }, "EditorGroupsTabs": { "background": "bg", - "borderColor": "second", + "borderColor": "border", "hoverBackground": "hl", "hoverColor": "hl", "inactiveUnderlineColor": "accent", @@ -474,6 +542,7 @@ }, "EditorPane": { "background": "hc", + "borderColor": "border", "caretForeground": "accent", "foreground": "fg", "inactiveBackground": "bg", @@ -483,21 +552,25 @@ "splitBorder": "border" }, "EditorTabs": { - "active.background": "table", - "active.foreground": "fg", - "active.underlineColor": "accent", + "active": { + "background": "table", + "foreground": "fg", + "underlineColor": "accent" + }, "background": "bg", - "borderColor": "second", "foreground": "fg", "hoverBackground": "hl", "hoverColor": "hl", "hoverMaskColor": "hl", "inactive.maskColor": "bg", - "inactiveColoredFileBackground": "bg", + "inactiveColoredFileBackground": "bg70", "inactiveMaskColor": "bg", "inactiveUnderlineColor": "dis", "selectedBackground": "table", "selectedForeground": "fg", + "tabContentInsetsActionsLeft": "0,6,0,6", + "tabContentInsetsActionsNone": "0,6,0,6", + "tabContentInsetsActionsRight": "0,6,0,6", "tabInsets": "-10,10,-10,10", "underlineColor": "accent", "underlineHeight": 3, @@ -515,6 +588,10 @@ "Gray": "excl", "excluded": "excl" }, + "FindPopup": { + "scopesPanelInsets": "4,16,4,16", + "bottomPanelInsets": "4,10,4,10" + }, "FlameGraph": { "JVMBackground": "#89DDF7", "JVMFocusBackground": "#82AAFF", @@ -555,15 +632,34 @@ "selectionForeground.unfocused": "selFg" }, "GotItTooltip": { + "animationBackground": "notif", "background": "notif", "borderColor": "notif", + "Button": { + "contrastBackground": "cs", + "endBackground": "button", + "foreground": "fg", + "startBackground": "button" + }, + "codeBackground": "cs", + "codeBorderColor": "bg", + "codeForeground": "fg", "endBackground": "button", "endBorderColor": "button", "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "imageBorderColor": "notif", "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "shortcutBackground": "notif", + "shortcutBorderColor": "border", "shortcutForeground": "text", "startBackground": "button", - "startBorderColor": "button" + "startBorderColor": "button", + "stepForeground": "text" }, "Group": { "disabledSeparatorColor": "border", @@ -587,7 +683,10 @@ "borderColor": "border", "defaultTextBorderInsets": "16,16,16,16", "foreground": "fg", + "fontSizeDelta": 0, + "horizontalGap": 10, "infoForeground": "text", + "maxWidth": 250, "shortcutForeground": "text", "shortcutTextColor": "text", "smallTextBorderInsets": "8,12,8,12", @@ -601,18 +700,29 @@ "MqTag": "text", "Tag": "text" }, - "Hyperlink.linkColor": "accent", - "IconBadge": { - "infoBackground": "accent" + "Hyperlink": { + "linkColor": "accent" + }, + "IconBadge": { + "infoBackground": "accent", + "newUiBackground": "accent" + }, + "IdeStatusBar": { + "border": "4,4,4,4" + }, + "InformationHint": { + "borderColor": "border" }, - "IdeStatusBar.border": "4,4,4,4", - "InformationHint.borderColor": "border", "inactiveCaption": "second", "inactiveCaptionBorder": "bg", "inactiveCaptionText": "text", "info": "text", "infoPanelForeground": "text", "infoText": "text", + "InlineBanner": { + "hoverBackground": "accent70", + "pressedBackground": "accent70" + }, "InplaceRefactoringPopup": { "background": "bg", "borderColor": "bg" @@ -622,10 +732,13 @@ "foreground": "fg" }, "InternalFrame": { + "activeTitleBackground": "bg", "activeTitleForeground": "fg", "background": "bg", "inactiveTitleBackground": "bg", - "inactiveTitleForeground": "text" + "inactiveTitleForeground": "text", + "optionDialogBackground": "bg", + "paletteBackground": "bg" }, "Label": { "background": "bg", @@ -676,20 +789,22 @@ "hoverBackground": "hl", "leftRightInset": 8, "separatorColor": "border", - "separatorInset": 4 + "separatorInset": 8 }, "foreground": "fg", "hoverBackground": "hl", "hoverInactiveBackground": "table", - "Line.hoverBackground": "selBg", + "Line": { + "hoverBackground": "selBg" + }, "rowHeight": "28", "selectionBackground": "tree", "selectionForeground": "selFg", "selectionInactiveBackground": "table", "selectionInactiveForeground": "activeFg", "Tag": { - "background": "button", - "foreground": "fg" + "foreground": "fg", + "background": "button" } }, "LiveIndicator": { @@ -703,31 +818,60 @@ "background": "hc", "foreground": "fg", "selectionForeground": "activeFg", - "selectionBackground": "selBg" + "selectionBackground": "selBg", + "transparentSelectionBackground": "tree" }, "MainToolbar": { "background": "bg", "Button": { - "buttonInsets": "0,0,0,0" + "buttonInsets": "0,4,0,4", + "iconSize": 20, + "size": "28,28" }, "Dropdown": { "borderInsets": "6,12,6,12", "background": "bg", "foreground": "fg", "hoverBackground": "hl", - "pressedBackground": "table" + "pressedBackground": "table", + "transparentHoverBackground": "accent70" }, + "foreground": "fg", "hoverBackground": "hl", "Icon": { - "borderInsets": "10,10,10,10", + "borderInsets": "4,4,4,4", "background": "bg", "hoverBackground": "hl", + "insets": "5,4,5,4", "pressedBackground": "table" }, "inactiveBackground": "bg", "pressedBackground": "table", - "separatorColor": "border" + "separatorColor": "border", + "SplitDropdown": { + "borderInsets": "6,6,6,6" + } }, + "MainWindow": { + "FullScreeControl": { + "Background": "hl" + }, + "Tab": { + "background": "bg", + "borderColor": "bg", + "foreground": "fg", + "hoverBackground": "hl", + "hoverForeground": "fg", + "selectedBackground": "selBg", + "selectedForeground": "selFg", + "selectedInactiveBackground": "excl", + "separatorColor": "border" + } + }, + "ManagedIdeBadgeBorder": "border", + "ManagedIdeBadgeBackground": "bg", + "ManagedIdeBadgeBackgroundHover": "accent70", + "ManagedIdeMenuItemHover": "selBg", "material": { "background": "bg", "branchColor": "fg", @@ -785,8 +929,12 @@ "disabledBackground": "bg", "disabledForeground": "dis", "foreground": "fg", + "insets": "0,4,0,4", "selectionBackground": "selBg", - "selectionForeground": "activeFg" + "selectionForeground": "activeFg", + "Selection": { + "arc": 8 + } }, "MlModelBinding.Viewer.CodeEditor.background": "bg", "MnemonicIcon": { @@ -797,6 +945,9 @@ "NavBar": { "arrowColor": "fg", "borderColor": "bg", + "Breadcrumbs": { + "itemInsets": "4,2,4,2" + }, "selectedColor": "accent" }, "NewClass": { @@ -806,15 +957,21 @@ "SearchField": { "background": "cs" }, - "separatorWidth": 6 + "separatorWidth": 10 }, "NewPSD.warning": "accent", + "NewUiOnboarding": { + "Dialog": { + "background": "second" + } + }, "Notification": { "arc": 16, "Error.foreground": "accent", "Link.foreground": "accent", "background": "notif", - "borderColor": "notif", + "borderColor": "border", + "borderInsets": "4,4,4,4", "errorBackground": "notif", "errorBorderColor": "notif", "errorForeground": "accent", @@ -855,18 +1012,27 @@ "ToolWindowWarning": { "foreground": "fg", "background": "notifWarn" + }, + "WelcomeScreen": { + "separatorColor": "border" } }, "Notifications": { "background": "notif", - "borderColor": "notif" + "borderColor": "border" }, "NotificationsToolwindow": { - "Notification.hoverBackground": "tree", - "newNotification.background": "notif", - "newNotification.hoverBackground": "tree" + "Notification": { + "hoverBackground": "tree" + }, + "newNotification": { + "background": "notif", + "hoverBackground": "tree" + } + }, + "OnePixelDivider": { + "background": "border" }, - "OnePixelDivider.background": "border", "OptionPane": { "background": "bg", "foreground": "fg", @@ -882,7 +1048,6 @@ "focusedColor": "accent" }, "Panel": { - "background": "bg", "foreground": "fg", "mouseShortcutBackground": "bg" }, @@ -911,16 +1076,6 @@ "Plugins": { "background": "bg", "borderColor": "border", - "disabledForeground": "dis", - "eapTagBackground": "hl", - "hoverBackground": "hl", - "lightSelectionBackground": "table", - "paidTagBackground": "hl", - "selectionBackground": "selBg", - "selectionForeground": "selFg", - "tagBackground": "hl", - "tagForeground": "accent", - "trialTagBackground": "hl", "Button": { "installBackground": "button", "installBorderColor": "button", @@ -928,10 +1083,15 @@ "installFillForeground": "dis", "installFocusedBackground": "hl", "installForeground": "fg", - "updateBackground": "accent", + "updateBackground": "button", "updateBorderColor": "button", "updateForeground": "fg" }, + "disabledForeground": "dis", + "eapTagBackground": "hl", + "hoverBackground": "hl", + "lightSelectionBackground": "table", + "paidTagBackground": "hl", "ScreenshotPagination": { "CurrentImage.fillColor": "accent" }, @@ -943,10 +1103,20 @@ "background": "second", "foreground": "fg" }, + "selectionBackground": "selBg", + "selectionForeground": "selFg", + "suggestedLabelBackground": "button", + "tagBackground": "hl", + "tagForeground": "accent", + "trialTagBackground": "hl", "Tab": { - "active.background": "table", - "active.foreground": "activeFg", - "hover.background": "table", + "active": { + "background": "table", + "foreground": "activeFg" + }, + "hover": { + "background": "table" + }, "hoverBackground": "table", "selectedBackground": "table", "selectedForeground": "selFg" @@ -954,6 +1124,7 @@ }, "Popup": { "Advertiser": { + "borderColor": "border", "borderInsets": "6,20,6,20", "background": "bg", "borderColor": "bg", @@ -968,24 +1139,33 @@ "color": "cs", "inactiveColor": "bg" }, - "background": "notif", + "background": "bg", "borderColor": "cs", "borderWidth": 0, "inactiveBorderColor": "bg", "innerBorderColor": "second", "Header": { "activeBackground": "bg", + "activeForeground": "fg", "inactiveBackground": "cs", - "inactiveForeground": "text" + "inactiveForeground": "dis", + "insets": "12,10,12,10" }, + "mnemonicForeground": "text", "paintBorder": false, "preferences": { "background": "bg", "borderColor": "bg", "foreground": "fg" }, - "Selection.arc": 8, - "Selection.leftRightInset": 8, + "SearchField": { + "borderInsets": "4,4,4,4", + "inputInsets": "4,4,4,4" + }, + "Selection": { + "arc": 8, + "leftRightInset": 8 + }, "Separator": { "foreground": "fg", "color": "border" @@ -1003,8 +1183,14 @@ "background": "bg", "borderWidth": 1, "border": "8,8,8,8", + "borderInsets": "10,10,10,10", "borderCornerRadius": 8, + "borderCornerRadiusX": 8, + "borderCornerRadiusY": 8, + "borderWidth": 1, "foreground": "fg", + "leftBorderWidth": 8, + "rightBorderWidth": 8, "Selection": { "arc": 8, "innerInsets": "8,2,8,2" @@ -1013,12 +1199,35 @@ "translucentBackground": "bg" }, "PopupMenuSeparator": { + "borderCornerRadius": 8, "height": 10, "stripeWidth": 2, "stripeIndent": 5, "withToEdge": 4, "borderCornerRadius": 8 }, + "PresentationAssistant": { + "Bright": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + }, + "Pale": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + } + }, + "Profiler": { + "neutralLifecycleEvent": "second", + "trackBackground": "button" + }, "ProgressBar": { "background": "bg", "foreground": "accent", @@ -1062,29 +1271,106 @@ "selectionBackground": "selBg", "selectionForeground": "selFg" }, + "Review": { + "Avatar": { + "Border": { + "Status": { + "Accepted": "accent", + "NeedReview": "hl" + } + } + }, + "Branch": { + "Background": "button", + "Background.Hover": "hl" + }, + "ChatItem": { + "BubblePanel": { + "Border": "button" + }, + "Hover": "table" + }, + "Editor": { + "Line": { + "Status": { + "Marker": "accent" + } + } + }, + "MetaInfo": { + "StatusLine": { + "Gray": "excl", + "Blue": "accent" + } + }, + "State": { + "Background": "second", + "Foreground": "fg" + }, + "Timeline": { + "Thread": { + "Diff": { + "AnchorLine": "table" + } + } + } + }, "ReviewList": { "state.background": "second", "state.foreground": "fg" }, + "RunToolbar": { + "Debug": { + "activeBackground": "hl" + }, + "Profile": { + "activeBackground": "hl" + }, + "Run": { + "activeBackground": "hl" + } + }, "RunWidget": { "background": "button", - "Debug.activeBackground": "hl", - "foreground": "fg", - "hoverBackground": "table", - "pressedBackground": "hl", - "Profile.activeBackground": "hl", + "Debug": { + "activeBackground": "hl" + }, + "foreground": "selFg", + "hoverBackground": "hl", + "iconColor": "fg", + "leftPressedBackground": "table", + "leftHoverBackground": "hl", + "pressedBackground": "table", + "Profile": { + "activeBackground": "hl" + }, "runningBackground": "hl", - "runningForeground": "selFg", - "Run.activeBackground": "hl", + "Run": { + "activeBackground": "hl" + }, "Running": { "background": "hl", - "foreground": "selFg", "leftHoverBackground": "hl", - "leftPressedBackground": "hl" + "leftPressedBackground": "table" }, - "separatorColor": "border" + "runningBackground": "hl", + "runningForeground": "selFg", + "runIconColor": "accent", + "separatorColor": "border", + "stopBackground": "second", + "StopButton": { + "leftHoverBackground": "hl", + "leftPressedBackground": "second" + }, + "toolbarHeight": 30, + "toolbarBorderHeight": 4 + }, + "ScreenView": { + "borderColor": "border", + "defaultBorderColor": "border", + "hoveredBorderColor": "hl", + "selectedBorderColor": "selBg" }, - "ScreenView.borderColor": "border", "scrollbar": "bg", "ScrollBar": { "background": "bg", @@ -1186,9 +1472,9 @@ }, "SegmentedButton": { "focusedSelectedButtonColor": "hl", + "selectedEndBorderColor": "accent", "selectedButtonColor": "button", - "selectedStartBorderColor": "border", - "selectedEndBorderColor": "border" + "selectedStartBorderColor": "accent" }, "Separator": { "background": "second", @@ -1198,6 +1484,7 @@ "Settings": { "Spotlight.borderColor": "accent" }, + "shortcutForeground": "text", "SidePanel": { "background": "hc" }, @@ -1222,6 +1509,7 @@ "foreground": "fg" }, "Spinner": { + "arrowButtonInsets": "1,1,1,1", "background": "bg", "border": "4,4,4,4", "disabledBackground": "excl", @@ -1232,11 +1520,16 @@ "background": "bg", "highlight": "hc" }, - "SplitPaneDivider.draggingColor": "second", - "StateWidget.activeBackground": "button", + "SplitPaneDivider": { + "draggingColor": "second" + }, + "StateWidget": { + "activeBackground": "button" + }, "StatusBar": { - "background": "bg", + "background": "bg10", "Breadcrumbs": { + "chevronInset": 0, "floatingBackground": "tree", "floatingForeground": "fg", "floatingToolbarInsets": "8,12,8,12", @@ -1244,6 +1537,7 @@ "hoverBackground": "tree", "hoverForeground": "fg", "itemBackgroundInsets": "2,4,2,4", + "itemInsets": 0, "selectionBackground": "selBg", "selectionForeground": "activeFg", "selectionInactiveBackground": "button", @@ -1264,6 +1558,13 @@ "widgetInsets": "8,12,8,12" } }, + "StripeToolbar": { + "Button": { + "iconSize": 20, + "iconPadding": 8, + "size": "40,40" + } + }, "TabbedPane": { "background": "bg", "borderColor": "hc", @@ -1290,6 +1591,7 @@ "selectedTabPadInsets": "0,0,0,0", "shadow": "hc", "tabHeight": 32, + "tabAreaInsets": 0, "tabInsets": "5,10,5,10", "tabSelectionArc": 4, "tabSelectionHeight": 2, @@ -1385,7 +1687,7 @@ "TitlePane": { "Button": { "hoverBackground": "hl", - "preferredSize": "48,40" + "preferredSize": "42,42" }, "background": "hc", "inactiveBackground": "bg", @@ -1407,15 +1709,23 @@ "onBackground": "accent", "onForeground": "accent" }, - "Toolbar.Floating.background": "button", + "Toolbar": { + "horizontalToolbarInsets": "8,8,8,8", + "Floating": { + "background": "button", + "borderColor": "border" + }, + "verticalToolbarInsets": "8,8,8,8" + }, "ToolBar": { "background": "hc", "borderHandleColor": "text", "comboBoxButtonBackground": "button", "floatingForeground": "text", "foreground": "fg", - "verticalToolbarInsets": "6,6,6,6", - "horizontalToolbarInsets": "6,6,6,6" + "horizontalToolbarInsets": "6,6,6,6", + "separatorColor": "border", + "verticalToolbarInsets": "6,6,6,6" }, "ToolbarComboWidget": { "background": "button", @@ -1426,6 +1736,21 @@ "actions.settings.icon.background.color": "bg", "description.title.text.color": "fg" }, + "Tooltip": { + "Learning": { + "codeBorderColor": "cs", + "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "spanBackground": "accent70", + "spanForeground": "fg" + }, + "separatorColor": "border" + }, "ToolTip": { "arc": 6, "actions": { @@ -1445,6 +1770,7 @@ "Learning": { "background": "accent", "borderColor": "accent", + "codeForeground": "fg", "foreground": "fg", "spanBackground": "accent50", "spanForeground": "fg", @@ -1463,25 +1789,44 @@ "Button": { "hoverBackground": "table", "DragAndDrop": { - "stripeBackground": "cs", - "buttonDropBackground": "accent70" + "stripeBackground": "bg", + "buttonDropBackground": "selBg70", + "buttonDropBorderColor": "accent", + "buttonFloatingBackground": "button" }, "selectedBackground": "cs", "selectedForeground": "activeFg" }, + "DragAndDrop": { + "areaBackground": "accent50" + }, "header": { - "active.background": "second", + "active": { + "background": "second" + }, "background": "bg", - "border.background": "second", - "closeButton.background": "bg", - "tab.selected.active.background": "cs", - "tab.selected.background": "cs" + "border": { + "background": "border" + }, + "closeButton": { + "background": "bg" + }, + "tab": { + "selected": { + "active": { + "background": "cs" + }, + "background": "cs" + } + } }, "Header": { "height": 42, "background": "second", - "borderColor": "second", - "inactiveBackground": "bg" + "borderColor": "border", + "inactiveBackground": "bg", + "labelLeftRightInsets": "0,12,0,16", + "toolbarLeftRightInsets": "0,12,0,8" }, "HeaderCloseButton": { "background": "bg" @@ -1506,6 +1851,12 @@ "inactive": { "Header.background": "bg", "HeaderTab.background": "cs" + }, + "Stripe": { + "DragAndDrop": { + "separatorColor": "accent50" + }, + "separatorColor": "table" } }, "Tree": { @@ -1522,13 +1873,17 @@ "selectionForeground": "selFg", "selectionInactiveBackground": "tree", "selectionInactiveForeground": "selFg", - "textBackground": "hc" + "textBackground": "hc", + "leftChildIndent": 10, + "rightChildIndent": 5 }, - "Tree.leftChildIndent": 10, - "Tree.rightChildIndent": 5, "UIDesigner": { - "Activity.borderColor": "border", - "Canvas.background": "cs", + "Activity": { + "borderColor": "border" + }, + "Canvas": { + "background": "cs" + }, "ColorPicker": { "background": "second", "foreground": "fg" @@ -1543,49 +1898,119 @@ "borderColor": "border", "hoverBorderColor": "hl" }, - "Label.foreground": "text", - "highStroke.foreground": "fg", + "Label": { + "foreground": "text" + }, + "highStroke": { + "foreground": "fg" + }, "motion": { "AddConstraintColor": "accent", "AddConstraintPlus": "accent", - "CSPanel.SelectedBackground": "tree", - "CSPanel.SelectedFocusBackground": "selBg", - "Component.foreground": "fg", - "ConstraintSet.background": "second", - "ConstraintSetText.foreground": "text", - "CursorTextColor.foreground": "fg", - "HoverColor.disabledBackground": "dis", - "Key.selectedForeground": "accent", - "Notification.background": "notif", + "Axis": { + "lineSeparatorColor": "fg" + }, + "CSPanel": { + "SelectedBackground": "tree", + "SelectedFocusBackground": "selBg" + }, + "Component": { + "foreground": "fg" + }, + "ConstraintSet": { + "background": "second" + }, + "ConstraintSetText": { + "foreground": "text" + }, + "CursorTextColor": { + "foreground": "fg" + }, + "HoverColor": { + "disabledBackground": "dis" + }, + "Key": { + "selectedForeground": "accent" + }, + "Notification": { + "background": "notif" + }, "PositionMarkColor": "accent", - "PrimaryPanel.background": "cs", - "SecondaryPanel.background": "bg", - "SecondaryPanel.header.background": "cs", - "SecondaryPanel.header.foreground": "text", - "TimeCursor.End.selectedForeground": "accent", - "TimeCursor.Start.selectedForeground": "accent", - "TimeCursor.selectedForeground": "accent", + "PrimaryPanel": { + "background": "cs" + }, + "SecondaryPanel": { + "background": "bg", + "header": { + "background": "cs", + "foreground": "text" + } + }, + "TimeCursor": { + "End": { + "selectedForeground": "accent" + }, + "selectedForeground": "accent", + "Start": { + "selectedForeground": "accent" + } + }, "borderColor": "border", - "cs_FocusText.infoForeground": "text", - "graphLine.lineSeparatorColor": "accent", - "motionGraph.background": "bg", - "ourAvg.background": "second", - "ourCS.background": "second", - "ourCS_Border.borderColor": "border", - "ourCS_SelectedBackground.selectionInactiveBackground": "table", - "ourCS_SelectedBorder.pressedBorderColor": "hl", - "ourCS_SelectedFocusBackground.selectionForeground": "selFg", - "ourCS_SelectedFocusBorder.focusedBorderColor": "accent", - "ourCS_TextColor.foreground": "text", - "ourML_BarColor.separatorColor": "border", - "timeLine.disabledBorderColor": "border" + "cs_FocusText": { + "infoForeground": "text" + }, + "graphLine": { + "lineSeparatorColor": "accent" + }, + "Grid": { + "lineSeparatorColor": "border" + }, + "label": { + "background": "second", + "textColor": "text" + }, + "motionGraph": { + "background": "bg" + }, + "ourAvg": { + "background": "second" + }, + "ourCS": { + "background": "second" + }, + "ourCS_Border": { + "borderColor": "border" + }, + "ourCS_SelectedBackground": { + "selectionInactiveBackground": "table" + }, + "ourCS_SelectedBorder": { + "pressedBorderColor": "hl" + }, + "ourCS_SelectedFocusBackground": { + "selectionForeground": "selFg" + }, + "ourCS_SelectedFocusBorder": { + "focusedBorderColor": "accent" + }, + "ourCS_TextColor": { + "foreground": "text" + }, + "ourML_BarColor": { + "separatorColor": "border" + }, + "timeLine": { + "disabledBorderColor": "border" + } }, "PackageDetails": { "border": "accent", "infoBanner": "accent" }, "PackageSearch": { - "PackagesList.rowHeight": 28, + "PackagesList": { + "rowHeight": 28 + }, "PackageTag": { "background": "excl", "foreground": "fg", @@ -1617,7 +2042,9 @@ "lines3d": "accent", "secondaryGraphLines": "border" }, - "percent.foreground": "fg", + "percent": { + "foreground": "fg" + }, "Placeholder": { "background": "bg", "borderColor": "border", @@ -1634,9 +2061,11 @@ "warningBorderColor": "notif" }, "VersionControl": { - "FileHistory.Commit": { - "otherBranchBackground": "excl", - "selectedBranchBackground": "bg" + "FileHistory": { + "Commit": { + "otherBranchBackground": "excl", + "selectedBranchBackground": "bg" + } }, "GitCommits": { "graphColor": "hl" @@ -1660,8 +2089,13 @@ "Commit": { "currentBranchBackground": "cs", "hoveredBackground": "tree", + "selectionInactiveForeground": "fg", + "Reference": { + "foreground": "text" + }, "rowHeight": 28, - "unmatchedForeground": "text" + "unmatchedForeground": "text", + "verticalPadding": 8 } }, "MarkerPopup": { @@ -1688,30 +2122,39 @@ "foreground": "fg" }, "WelcomeScreen": { - "AssociatedComponent.background": "bg", - "Details.background": "bg", - "List": { - "background": "hc", - "selectionBackground": "selBg", - "selectionInactiveBackground": "hl" + "AssociatedComponent": { + "background": "bg" }, - "SidePanel.background": "second", "background": "bg", "borderColor": "bg", "captionBackground": "cs", "captionForeground": "fg", + "Details": { + "background": "bg" + }, "footerBackground": "cs", "footerForeground": "fg", "groupIconBorderColor": "button", "headerBackground": "bg", "headerForeground": "fg", - "separatorColor": "border", + "List": { + "background": "hc", + "selectionBackground": "selBg", + "selectionInactiveBackground": "hl" + }, "Projects": { - "actions.background": "cs", - "actions.selectionBackground": "hl", + "actions": { + "background": "cs", + "selectionBackground": "hl", + "selectionBorderColor": "accent" + }, "background": "second", "selectionBackground": "selBg", "selectionInactiveBackground": "selBg" + }, + "separatorColor": "border", + "SidePanel": { + "background": "second" } }, "Window.border": "border", diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Lighter.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Lighter.theme.json index f5954209..0f6260c6 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Lighter.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Lighter.theme.json @@ -16,7 +16,7 @@ "second": "#FFFFFF", "dis": "#D2D4D5", "accent": "#00BCD4", - "accent2": "#00BCD42", + "acc2": "#D41800", "accent50": "#00BCD450", "accent70": "#00BCD470", "cs": "#EEEEEE", @@ -26,7 +26,7 @@ "hl": "#E7E7E8", "notif": "#eae8e8", "hc": "#FAFAFA", - "shadow": "undefined", + "shadow": "#ffffff20", "white": "#272727", "blue": "#6182B8", "red": "#E53935", @@ -71,19 +71,25 @@ "hoverBorderColor": "accent50", "hoverSeparatorColor": "button", "pressedBackground": "accent50", - "pressedBorderColor": "accent50" + "pressedBorderColor": "accent50", + "separatorColor": "border" }, "ActionsList": { "icon.gap": 12, - "mnemonic.icon.gap": 12 + "mnemonic.icon.gap": 12, + "mnemonicInsets": "0,8,0,8", + "mnemonicsBorderInsets": "0,8,0,8", + "mnemonic.insets": "0,8,0,8" }, "ActionToolbar": { "background": "hc" }, - "AppInspector.GraphNode": { - "background": "second", - "borderColor": "border", - "focusedBorderColor": "accent" + "AppInspector": { + "GraphNode": { + "background": "second", + "borderColor": "border", + "focusedBorderColor": "accent" + } }, "AssignedMnemonic": { "background": "hl", @@ -99,13 +105,26 @@ "borderColor": "button", "foreground": "fg" }, - "BigSpinner.background": "bg", + "Banner": { + "foreground": "fg" + }, + "BigSpinner": { + "background": "bg" + }, "Bookmark": { "iconBackground": "accent", "Mnemonic": { "iconBackground": "hl", "iconBorderColor": "hl", "iconForeground": "fg" + }, + "MnemonicAssigned": { + "background": "table", + "foreground": "fg" + }, + "MnemonicCurrent": { + "background": "selBg", + "foreground": "selFg" } }, "BookmarkMnemonicAssigned": { @@ -128,13 +147,18 @@ "borderColor": "hl", "foreground": "fg" }, - "BookmarkIcon.background": "accent", - "Borders.ContrastBorderColor": "bg", - "Borders.color": "border", - "Breakpoint.iconHoverAlpha": 0.35, + "BookmarkIcon": { + "background": "accent" + }, + "Borders": { + "ContrastBorderColor": "bg", + "color": "border" + }, + "Breakpoint": { + "iconHoverAlpha": 0.35 + }, "Button": { "arc": 8, - "background": "bg", "darcula": { "borderColor": "button", "defaultBorderColor": "button", @@ -175,6 +199,7 @@ "focusedBorderColor": "accent", "foreground": "text", "highlight": "selFg", + "minimumSize": 72, "mt.background": "button", "mt.color1": "button", "mt.color2": "button", @@ -185,6 +210,12 @@ "select": "button", "shadowColor": "shadow", "shadowWidth": 0, + "Split": { + "default": { + "iconColor": "fg", + "separatorColor": "accent" + } + }, "startBackground": "table", "startBorderColor": "button", "ToolWindow": { @@ -195,11 +226,18 @@ "Tooltip.background": "notif", "Tooltip.borderColor": "border" }, + "CellEditor": { + "border": { + "width": 2 + } + }, "CheckBox": { "background": "bg", "background.selected": "accent", "borderColor": "bg", "borderColor.selected": "accent", + "border.width": 3, + "borderInsets": "4,4,4,4", "checkSignColor": "bg", "checkSignColor.selected": "bg", "checkSignColorDisabled": "bg", @@ -297,7 +335,9 @@ "foreground": "fg", "swatchesDefaultRecentColor": "fg" }, - "ComboBoxButton.background": "button", + "ComboBoxButton": { + "background": "button" + }, "ComboBox": { "ArrowButton": { "background": "button", @@ -327,14 +367,16 @@ "selectionBackground": "table", "selectionForeground": "activeFg" }, - "ComboPopup.border": "1,1,1,1,#00BCD4", + "ComboPopup": { + "border": "1,1,1,1,#00BCD4" + }, "CompletionPopup": { "Advertiser": { - "background": "bg", - "foreground": "fg", + "background": "second", + "foreground": "text", "borderInsets": "8,12,8,12" }, - "background": "second", + "background": "button", "foreground": "fg", "grayForeground": "text", "grayedForeground": "text", @@ -351,13 +393,20 @@ "selectionInactiveBackground": "hl", "selectionInactiveForeground": "text", "selectionInactiveInfoForeground": "text", - "selectionInfoForeground": "selFg" + "selectionInfoForeground": "selFg", + "selectionInnerInsets": "4,4,4,4" }, "ComplexPopup": { - "Header.background": "notif" + "Header": { + "background": "bg", + "insets": "12,12,12,12" + }, + "TextField": { + "inputInsets": "8,4,8,4" + } }, "Component": { - "arc": 4, + "arc": 6, "focusWidth": 2, "borderColor": "hl", "disabledBorderColor": "dis", @@ -440,7 +489,7 @@ "southPanelDivider": "bg" }, "DragAndDrop": { - "areaBackground": "tree", + "areaBackground": "selBg70", "areaBorderColor": "bg", "areaForeground": "fg", "backgroundBorderColor": "bg", @@ -453,18 +502,37 @@ "Editor": { "background": "hc", "foreground": "fg", + "Notification": { + "borderInsets": "10,12,10,12", + "WithoutStatus.borderInsets": "10,12,10,12" + }, + "ReplaceToolbar": { + "borderInsets": "4,12,4,12" + }, "shortcutForeground": "text", "SearchField": { "background": "cs", "borderInsets": "8,12,8,12" }, + "SearchReplaceModePanel": { + "borderInsets": "4,12,4,12" + }, + "SearchToolbar": { + "borderInsets": "4,12,4,12" + }, "Toolbar": { "borderColor": "border" + }, + "ToolTip": { + "border": "border", + "foreground": "fg", + "iconHoverBackground": "table", + "selectionBackground": "selBg" } }, "EditorGroupsTabs": { "background": "bg", - "borderColor": "second", + "borderColor": "border", "hoverBackground": "hl", "hoverColor": "hl", "inactiveUnderlineColor": "accent", @@ -474,6 +542,7 @@ }, "EditorPane": { "background": "hc", + "borderColor": "border", "caretForeground": "accent", "foreground": "fg", "inactiveBackground": "bg", @@ -483,21 +552,25 @@ "splitBorder": "border" }, "EditorTabs": { - "active.background": "table", - "active.foreground": "fg", - "active.underlineColor": "accent", + "active": { + "background": "table", + "foreground": "fg", + "underlineColor": "accent" + }, "background": "bg", - "borderColor": "second", "foreground": "fg", "hoverBackground": "hl", "hoverColor": "hl", "hoverMaskColor": "hl", "inactive.maskColor": "bg", - "inactiveColoredFileBackground": "bg", + "inactiveColoredFileBackground": "bg70", "inactiveMaskColor": "bg", "inactiveUnderlineColor": "dis", "selectedBackground": "table", "selectedForeground": "fg", + "tabContentInsetsActionsLeft": "0,6,0,6", + "tabContentInsetsActionsNone": "0,6,0,6", + "tabContentInsetsActionsRight": "0,6,0,6", "tabInsets": "-10,10,-10,10", "underlineColor": "accent", "underlineHeight": 3, @@ -515,6 +588,10 @@ "Gray": "excl", "excluded": "excl" }, + "FindPopup": { + "scopesPanelInsets": "4,16,4,16", + "bottomPanelInsets": "4,10,4,10" + }, "FlameGraph": { "JVMBackground": "#89DDF7", "JVMFocusBackground": "#82AAFF", @@ -555,15 +632,34 @@ "selectionForeground.unfocused": "selFg" }, "GotItTooltip": { + "animationBackground": "notif", "background": "notif", "borderColor": "notif", + "Button": { + "contrastBackground": "cs", + "endBackground": "button", + "foreground": "fg", + "startBackground": "button" + }, + "codeBackground": "cs", + "codeBorderColor": "bg", + "codeForeground": "fg", "endBackground": "button", "endBorderColor": "button", "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "imageBorderColor": "notif", "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "shortcutBackground": "notif", + "shortcutBorderColor": "border", "shortcutForeground": "text", "startBackground": "button", - "startBorderColor": "button" + "startBorderColor": "button", + "stepForeground": "text" }, "Group": { "disabledSeparatorColor": "border", @@ -587,7 +683,10 @@ "borderColor": "border", "defaultTextBorderInsets": "16,16,16,16", "foreground": "fg", + "fontSizeDelta": 0, + "horizontalGap": 10, "infoForeground": "text", + "maxWidth": 250, "shortcutForeground": "text", "shortcutTextColor": "text", "smallTextBorderInsets": "8,12,8,12", @@ -601,18 +700,29 @@ "MqTag": "text", "Tag": "text" }, - "Hyperlink.linkColor": "accent", - "IconBadge": { - "infoBackground": "accent" + "Hyperlink": { + "linkColor": "accent" + }, + "IconBadge": { + "infoBackground": "accent", + "newUiBackground": "accent" + }, + "IdeStatusBar": { + "border": "4,4,4,4" + }, + "InformationHint": { + "borderColor": "border" }, - "IdeStatusBar.border": "4,4,4,4", - "InformationHint.borderColor": "border", "inactiveCaption": "second", "inactiveCaptionBorder": "bg", "inactiveCaptionText": "text", "info": "text", "infoPanelForeground": "text", "infoText": "text", + "InlineBanner": { + "hoverBackground": "accent70", + "pressedBackground": "accent70" + }, "InplaceRefactoringPopup": { "background": "bg", "borderColor": "bg" @@ -622,10 +732,13 @@ "foreground": "fg" }, "InternalFrame": { + "activeTitleBackground": "bg", "activeTitleForeground": "fg", "background": "bg", "inactiveTitleBackground": "bg", - "inactiveTitleForeground": "text" + "inactiveTitleForeground": "text", + "optionDialogBackground": "bg", + "paletteBackground": "bg" }, "Label": { "background": "bg", @@ -676,20 +789,22 @@ "hoverBackground": "hl", "leftRightInset": 8, "separatorColor": "border", - "separatorInset": 4 + "separatorInset": 8 }, "foreground": "fg", "hoverBackground": "hl", "hoverInactiveBackground": "table", - "Line.hoverBackground": "selBg", + "Line": { + "hoverBackground": "selBg" + }, "rowHeight": "28", "selectionBackground": "tree", "selectionForeground": "selFg", "selectionInactiveBackground": "table", "selectionInactiveForeground": "activeFg", "Tag": { - "background": "button", - "foreground": "fg" + "foreground": "fg", + "background": "button" } }, "LiveIndicator": { @@ -703,31 +818,60 @@ "background": "hc", "foreground": "fg", "selectionForeground": "activeFg", - "selectionBackground": "selBg" + "selectionBackground": "selBg", + "transparentSelectionBackground": "tree" }, "MainToolbar": { "background": "bg", "Button": { - "buttonInsets": "0,0,0,0" + "buttonInsets": "0,4,0,4", + "iconSize": 20, + "size": "28,28" }, "Dropdown": { "borderInsets": "6,12,6,12", "background": "bg", "foreground": "fg", "hoverBackground": "hl", - "pressedBackground": "table" + "pressedBackground": "table", + "transparentHoverBackground": "accent70" }, + "foreground": "fg", "hoverBackground": "hl", "Icon": { - "borderInsets": "10,10,10,10", + "borderInsets": "4,4,4,4", "background": "bg", "hoverBackground": "hl", + "insets": "5,4,5,4", "pressedBackground": "table" }, "inactiveBackground": "bg", "pressedBackground": "table", - "separatorColor": "border" + "separatorColor": "border", + "SplitDropdown": { + "borderInsets": "6,6,6,6" + } }, + "MainWindow": { + "FullScreeControl": { + "Background": "hl" + }, + "Tab": { + "background": "bg", + "borderColor": "bg", + "foreground": "fg", + "hoverBackground": "hl", + "hoverForeground": "fg", + "selectedBackground": "selBg", + "selectedForeground": "selFg", + "selectedInactiveBackground": "excl", + "separatorColor": "border" + } + }, + "ManagedIdeBadgeBorder": "border", + "ManagedIdeBadgeBackground": "bg", + "ManagedIdeBadgeBackgroundHover": "accent70", + "ManagedIdeMenuItemHover": "selBg", "material": { "background": "bg", "branchColor": "fg", @@ -785,8 +929,12 @@ "disabledBackground": "bg", "disabledForeground": "dis", "foreground": "fg", + "insets": "0,4,0,4", "selectionBackground": "selBg", - "selectionForeground": "activeFg" + "selectionForeground": "activeFg", + "Selection": { + "arc": 8 + } }, "MlModelBinding.Viewer.CodeEditor.background": "bg", "MnemonicIcon": { @@ -797,6 +945,9 @@ "NavBar": { "arrowColor": "fg", "borderColor": "bg", + "Breadcrumbs": { + "itemInsets": "4,2,4,2" + }, "selectedColor": "accent" }, "NewClass": { @@ -806,15 +957,21 @@ "SearchField": { "background": "cs" }, - "separatorWidth": 6 + "separatorWidth": 10 }, "NewPSD.warning": "accent", + "NewUiOnboarding": { + "Dialog": { + "background": "second" + } + }, "Notification": { "arc": 16, "Error.foreground": "accent", "Link.foreground": "accent", "background": "notif", - "borderColor": "notif", + "borderColor": "border", + "borderInsets": "4,4,4,4", "errorBackground": "notif", "errorBorderColor": "notif", "errorForeground": "accent", @@ -855,18 +1012,27 @@ "ToolWindowWarning": { "foreground": "fg", "background": "notifWarn" + }, + "WelcomeScreen": { + "separatorColor": "border" } }, "Notifications": { "background": "notif", - "borderColor": "notif" + "borderColor": "border" }, "NotificationsToolwindow": { - "Notification.hoverBackground": "tree", - "newNotification.background": "notif", - "newNotification.hoverBackground": "tree" + "Notification": { + "hoverBackground": "tree" + }, + "newNotification": { + "background": "notif", + "hoverBackground": "tree" + } + }, + "OnePixelDivider": { + "background": "border" }, - "OnePixelDivider.background": "border", "OptionPane": { "background": "bg", "foreground": "fg", @@ -882,7 +1048,6 @@ "focusedColor": "accent" }, "Panel": { - "background": "bg", "foreground": "fg", "mouseShortcutBackground": "bg" }, @@ -911,16 +1076,6 @@ "Plugins": { "background": "bg", "borderColor": "border", - "disabledForeground": "dis", - "eapTagBackground": "hl", - "hoverBackground": "hl", - "lightSelectionBackground": "table", - "paidTagBackground": "hl", - "selectionBackground": "selBg", - "selectionForeground": "selFg", - "tagBackground": "hl", - "tagForeground": "accent", - "trialTagBackground": "hl", "Button": { "installBackground": "button", "installBorderColor": "button", @@ -928,10 +1083,15 @@ "installFillForeground": "dis", "installFocusedBackground": "hl", "installForeground": "fg", - "updateBackground": "accent", + "updateBackground": "button", "updateBorderColor": "button", "updateForeground": "fg" }, + "disabledForeground": "dis", + "eapTagBackground": "hl", + "hoverBackground": "hl", + "lightSelectionBackground": "table", + "paidTagBackground": "hl", "ScreenshotPagination": { "CurrentImage.fillColor": "accent" }, @@ -943,10 +1103,20 @@ "background": "second", "foreground": "fg" }, + "selectionBackground": "selBg", + "selectionForeground": "selFg", + "suggestedLabelBackground": "button", + "tagBackground": "hl", + "tagForeground": "accent", + "trialTagBackground": "hl", "Tab": { - "active.background": "table", - "active.foreground": "activeFg", - "hover.background": "table", + "active": { + "background": "table", + "foreground": "activeFg" + }, + "hover": { + "background": "table" + }, "hoverBackground": "table", "selectedBackground": "table", "selectedForeground": "selFg" @@ -954,6 +1124,7 @@ }, "Popup": { "Advertiser": { + "borderColor": "border", "borderInsets": "6,20,6,20", "background": "bg", "borderColor": "bg", @@ -968,24 +1139,33 @@ "color": "cs", "inactiveColor": "bg" }, - "background": "notif", + "background": "bg", "borderColor": "cs", "borderWidth": 0, "inactiveBorderColor": "bg", "innerBorderColor": "second", "Header": { "activeBackground": "bg", + "activeForeground": "fg", "inactiveBackground": "cs", - "inactiveForeground": "text" + "inactiveForeground": "dis", + "insets": "12,10,12,10" }, + "mnemonicForeground": "text", "paintBorder": false, "preferences": { "background": "bg", "borderColor": "bg", "foreground": "fg" }, - "Selection.arc": 8, - "Selection.leftRightInset": 8, + "SearchField": { + "borderInsets": "4,4,4,4", + "inputInsets": "4,4,4,4" + }, + "Selection": { + "arc": 8, + "leftRightInset": 8 + }, "Separator": { "foreground": "fg", "color": "border" @@ -1003,8 +1183,14 @@ "background": "bg", "borderWidth": 1, "border": "8,8,8,8", + "borderInsets": "10,10,10,10", "borderCornerRadius": 8, + "borderCornerRadiusX": 8, + "borderCornerRadiusY": 8, + "borderWidth": 1, "foreground": "fg", + "leftBorderWidth": 8, + "rightBorderWidth": 8, "Selection": { "arc": 8, "innerInsets": "8,2,8,2" @@ -1013,12 +1199,35 @@ "translucentBackground": "bg" }, "PopupMenuSeparator": { + "borderCornerRadius": 8, "height": 10, "stripeWidth": 2, "stripeIndent": 5, "withToEdge": 4, "borderCornerRadius": 8 }, + "PresentationAssistant": { + "Bright": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + }, + "Pale": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + } + }, + "Profiler": { + "neutralLifecycleEvent": "second", + "trackBackground": "button" + }, "ProgressBar": { "background": "bg", "foreground": "accent", @@ -1062,29 +1271,106 @@ "selectionBackground": "selBg", "selectionForeground": "selFg" }, + "Review": { + "Avatar": { + "Border": { + "Status": { + "Accepted": "accent", + "NeedReview": "hl" + } + } + }, + "Branch": { + "Background": "button", + "Background.Hover": "hl" + }, + "ChatItem": { + "BubblePanel": { + "Border": "button" + }, + "Hover": "table" + }, + "Editor": { + "Line": { + "Status": { + "Marker": "accent" + } + } + }, + "MetaInfo": { + "StatusLine": { + "Gray": "excl", + "Blue": "accent" + } + }, + "State": { + "Background": "second", + "Foreground": "fg" + }, + "Timeline": { + "Thread": { + "Diff": { + "AnchorLine": "table" + } + } + } + }, "ReviewList": { "state.background": "second", "state.foreground": "fg" }, + "RunToolbar": { + "Debug": { + "activeBackground": "hl" + }, + "Profile": { + "activeBackground": "hl" + }, + "Run": { + "activeBackground": "hl" + } + }, "RunWidget": { "background": "button", - "Debug.activeBackground": "hl", - "foreground": "fg", - "hoverBackground": "table", - "pressedBackground": "hl", - "Profile.activeBackground": "hl", + "Debug": { + "activeBackground": "hl" + }, + "foreground": "selFg", + "hoverBackground": "hl", + "iconColor": "fg", + "leftPressedBackground": "table", + "leftHoverBackground": "hl", + "pressedBackground": "table", + "Profile": { + "activeBackground": "hl" + }, "runningBackground": "hl", - "runningForeground": "selFg", - "Run.activeBackground": "hl", + "Run": { + "activeBackground": "hl" + }, "Running": { "background": "hl", - "foreground": "selFg", "leftHoverBackground": "hl", - "leftPressedBackground": "hl" + "leftPressedBackground": "table" }, - "separatorColor": "border" + "runningBackground": "hl", + "runningForeground": "selFg", + "runIconColor": "accent", + "separatorColor": "border", + "stopBackground": "second", + "StopButton": { + "leftHoverBackground": "hl", + "leftPressedBackground": "second" + }, + "toolbarHeight": 30, + "toolbarBorderHeight": 4 + }, + "ScreenView": { + "borderColor": "border", + "defaultBorderColor": "border", + "hoveredBorderColor": "hl", + "selectedBorderColor": "selBg" }, - "ScreenView.borderColor": "border", "scrollbar": "bg", "ScrollBar": { "background": "bg", @@ -1186,9 +1472,9 @@ }, "SegmentedButton": { "focusedSelectedButtonColor": "hl", + "selectedEndBorderColor": "accent", "selectedButtonColor": "button", - "selectedStartBorderColor": "border", - "selectedEndBorderColor": "border" + "selectedStartBorderColor": "accent" }, "Separator": { "background": "second", @@ -1198,6 +1484,7 @@ "Settings": { "Spotlight.borderColor": "accent" }, + "shortcutForeground": "text", "SidePanel": { "background": "hc" }, @@ -1222,6 +1509,7 @@ "foreground": "fg" }, "Spinner": { + "arrowButtonInsets": "1,1,1,1", "background": "bg", "border": "4,4,4,4", "disabledBackground": "excl", @@ -1232,11 +1520,16 @@ "background": "bg", "highlight": "hc" }, - "SplitPaneDivider.draggingColor": "second", - "StateWidget.activeBackground": "button", + "SplitPaneDivider": { + "draggingColor": "second" + }, + "StateWidget": { + "activeBackground": "button" + }, "StatusBar": { - "background": "bg", + "background": "bg10", "Breadcrumbs": { + "chevronInset": 0, "floatingBackground": "tree", "floatingForeground": "fg", "floatingToolbarInsets": "8,12,8,12", @@ -1244,6 +1537,7 @@ "hoverBackground": "tree", "hoverForeground": "fg", "itemBackgroundInsets": "2,4,2,4", + "itemInsets": 0, "selectionBackground": "selBg", "selectionForeground": "activeFg", "selectionInactiveBackground": "button", @@ -1264,6 +1558,13 @@ "widgetInsets": "8,12,8,12" } }, + "StripeToolbar": { + "Button": { + "iconSize": 20, + "iconPadding": 8, + "size": "40,40" + } + }, "TabbedPane": { "background": "bg", "borderColor": "hc", @@ -1290,6 +1591,7 @@ "selectedTabPadInsets": "0,0,0,0", "shadow": "hc", "tabHeight": 32, + "tabAreaInsets": 0, "tabInsets": "5,10,5,10", "tabSelectionArc": 4, "tabSelectionHeight": 2, @@ -1385,7 +1687,7 @@ "TitlePane": { "Button": { "hoverBackground": "hl", - "preferredSize": "48,40" + "preferredSize": "42,42" }, "background": "hc", "inactiveBackground": "bg", @@ -1407,15 +1709,23 @@ "onBackground": "accent", "onForeground": "accent" }, - "Toolbar.Floating.background": "button", + "Toolbar": { + "horizontalToolbarInsets": "8,8,8,8", + "Floating": { + "background": "button", + "borderColor": "border" + }, + "verticalToolbarInsets": "8,8,8,8" + }, "ToolBar": { "background": "hc", "borderHandleColor": "text", "comboBoxButtonBackground": "button", "floatingForeground": "text", "foreground": "fg", - "verticalToolbarInsets": "6,6,6,6", - "horizontalToolbarInsets": "6,6,6,6" + "horizontalToolbarInsets": "6,6,6,6", + "separatorColor": "border", + "verticalToolbarInsets": "6,6,6,6" }, "ToolbarComboWidget": { "background": "button", @@ -1426,6 +1736,21 @@ "actions.settings.icon.background.color": "bg", "description.title.text.color": "fg" }, + "Tooltip": { + "Learning": { + "codeBorderColor": "cs", + "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "spanBackground": "accent70", + "spanForeground": "fg" + }, + "separatorColor": "border" + }, "ToolTip": { "arc": 6, "actions": { @@ -1445,6 +1770,7 @@ "Learning": { "background": "accent", "borderColor": "accent", + "codeForeground": "fg", "foreground": "fg", "spanBackground": "accent50", "spanForeground": "fg", @@ -1463,25 +1789,44 @@ "Button": { "hoverBackground": "table", "DragAndDrop": { - "stripeBackground": "cs", - "buttonDropBackground": "accent70" + "stripeBackground": "bg", + "buttonDropBackground": "selBg70", + "buttonDropBorderColor": "accent", + "buttonFloatingBackground": "button" }, "selectedBackground": "cs", "selectedForeground": "activeFg" }, + "DragAndDrop": { + "areaBackground": "accent50" + }, "header": { - "active.background": "second", + "active": { + "background": "second" + }, "background": "bg", - "border.background": "second", - "closeButton.background": "bg", - "tab.selected.active.background": "cs", - "tab.selected.background": "cs" + "border": { + "background": "border" + }, + "closeButton": { + "background": "bg" + }, + "tab": { + "selected": { + "active": { + "background": "cs" + }, + "background": "cs" + } + } }, "Header": { "height": 42, "background": "second", - "borderColor": "second", - "inactiveBackground": "bg" + "borderColor": "border", + "inactiveBackground": "bg", + "labelLeftRightInsets": "0,12,0,16", + "toolbarLeftRightInsets": "0,12,0,8" }, "HeaderCloseButton": { "background": "bg" @@ -1506,6 +1851,12 @@ "inactive": { "Header.background": "bg", "HeaderTab.background": "cs" + }, + "Stripe": { + "DragAndDrop": { + "separatorColor": "accent50" + }, + "separatorColor": "table" } }, "Tree": { @@ -1522,13 +1873,17 @@ "selectionForeground": "selFg", "selectionInactiveBackground": "tree", "selectionInactiveForeground": "selFg", - "textBackground": "hc" + "textBackground": "hc", + "leftChildIndent": 10, + "rightChildIndent": 5 }, - "Tree.leftChildIndent": 10, - "Tree.rightChildIndent": 5, "UIDesigner": { - "Activity.borderColor": "border", - "Canvas.background": "cs", + "Activity": { + "borderColor": "border" + }, + "Canvas": { + "background": "cs" + }, "ColorPicker": { "background": "second", "foreground": "fg" @@ -1543,49 +1898,119 @@ "borderColor": "border", "hoverBorderColor": "hl" }, - "Label.foreground": "text", - "highStroke.foreground": "fg", + "Label": { + "foreground": "text" + }, + "highStroke": { + "foreground": "fg" + }, "motion": { "AddConstraintColor": "accent", "AddConstraintPlus": "accent", - "CSPanel.SelectedBackground": "tree", - "CSPanel.SelectedFocusBackground": "selBg", - "Component.foreground": "fg", - "ConstraintSet.background": "second", - "ConstraintSetText.foreground": "text", - "CursorTextColor.foreground": "fg", - "HoverColor.disabledBackground": "dis", - "Key.selectedForeground": "accent", - "Notification.background": "notif", + "Axis": { + "lineSeparatorColor": "fg" + }, + "CSPanel": { + "SelectedBackground": "tree", + "SelectedFocusBackground": "selBg" + }, + "Component": { + "foreground": "fg" + }, + "ConstraintSet": { + "background": "second" + }, + "ConstraintSetText": { + "foreground": "text" + }, + "CursorTextColor": { + "foreground": "fg" + }, + "HoverColor": { + "disabledBackground": "dis" + }, + "Key": { + "selectedForeground": "accent" + }, + "Notification": { + "background": "notif" + }, "PositionMarkColor": "accent", - "PrimaryPanel.background": "cs", - "SecondaryPanel.background": "bg", - "SecondaryPanel.header.background": "cs", - "SecondaryPanel.header.foreground": "text", - "TimeCursor.End.selectedForeground": "accent", - "TimeCursor.Start.selectedForeground": "accent", - "TimeCursor.selectedForeground": "accent", + "PrimaryPanel": { + "background": "cs" + }, + "SecondaryPanel": { + "background": "bg", + "header": { + "background": "cs", + "foreground": "text" + } + }, + "TimeCursor": { + "End": { + "selectedForeground": "accent" + }, + "selectedForeground": "accent", + "Start": { + "selectedForeground": "accent" + } + }, "borderColor": "border", - "cs_FocusText.infoForeground": "text", - "graphLine.lineSeparatorColor": "accent", - "motionGraph.background": "bg", - "ourAvg.background": "second", - "ourCS.background": "second", - "ourCS_Border.borderColor": "border", - "ourCS_SelectedBackground.selectionInactiveBackground": "table", - "ourCS_SelectedBorder.pressedBorderColor": "hl", - "ourCS_SelectedFocusBackground.selectionForeground": "selFg", - "ourCS_SelectedFocusBorder.focusedBorderColor": "accent", - "ourCS_TextColor.foreground": "text", - "ourML_BarColor.separatorColor": "border", - "timeLine.disabledBorderColor": "border" + "cs_FocusText": { + "infoForeground": "text" + }, + "graphLine": { + "lineSeparatorColor": "accent" + }, + "Grid": { + "lineSeparatorColor": "border" + }, + "label": { + "background": "second", + "textColor": "text" + }, + "motionGraph": { + "background": "bg" + }, + "ourAvg": { + "background": "second" + }, + "ourCS": { + "background": "second" + }, + "ourCS_Border": { + "borderColor": "border" + }, + "ourCS_SelectedBackground": { + "selectionInactiveBackground": "table" + }, + "ourCS_SelectedBorder": { + "pressedBorderColor": "hl" + }, + "ourCS_SelectedFocusBackground": { + "selectionForeground": "selFg" + }, + "ourCS_SelectedFocusBorder": { + "focusedBorderColor": "accent" + }, + "ourCS_TextColor": { + "foreground": "text" + }, + "ourML_BarColor": { + "separatorColor": "border" + }, + "timeLine": { + "disabledBorderColor": "border" + } }, "PackageDetails": { "border": "accent", "infoBanner": "accent" }, "PackageSearch": { - "PackagesList.rowHeight": 28, + "PackagesList": { + "rowHeight": 28 + }, "PackageTag": { "background": "excl", "foreground": "fg", @@ -1617,7 +2042,9 @@ "lines3d": "accent", "secondaryGraphLines": "border" }, - "percent.foreground": "fg", + "percent": { + "foreground": "fg" + }, "Placeholder": { "background": "bg", "borderColor": "border", @@ -1634,9 +2061,11 @@ "warningBorderColor": "notif" }, "VersionControl": { - "FileHistory.Commit": { - "otherBranchBackground": "excl", - "selectedBranchBackground": "bg" + "FileHistory": { + "Commit": { + "otherBranchBackground": "excl", + "selectedBranchBackground": "bg" + } }, "GitCommits": { "graphColor": "hl" @@ -1660,8 +2089,13 @@ "Commit": { "currentBranchBackground": "cs", "hoveredBackground": "tree", + "selectionInactiveForeground": "fg", + "Reference": { + "foreground": "text" + }, "rowHeight": 28, - "unmatchedForeground": "text" + "unmatchedForeground": "text", + "verticalPadding": 8 } }, "MarkerPopup": { @@ -1688,30 +2122,39 @@ "foreground": "fg" }, "WelcomeScreen": { - "AssociatedComponent.background": "bg", - "Details.background": "bg", - "List": { - "background": "hc", - "selectionBackground": "selBg", - "selectionInactiveBackground": "hl" + "AssociatedComponent": { + "background": "bg" }, - "SidePanel.background": "second", "background": "bg", "borderColor": "bg", "captionBackground": "cs", "captionForeground": "fg", + "Details": { + "background": "bg" + }, "footerBackground": "cs", "footerForeground": "fg", "groupIconBorderColor": "button", "headerBackground": "bg", "headerForeground": "fg", - "separatorColor": "border", + "List": { + "background": "hc", + "selectionBackground": "selBg", + "selectionInactiveBackground": "hl" + }, "Projects": { - "actions.background": "cs", - "actions.selectionBackground": "hl", + "actions": { + "background": "cs", + "selectionBackground": "hl", + "selectionBorderColor": "accent" + }, "background": "second", "selectionBackground": "selBg", "selectionInactiveBackground": "selBg" + }, + "separatorColor": "border", + "SidePanel": { + "background": "second" } }, "Window.border": "border", diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Oceanic.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Oceanic.theme.json index 0dfe4095..44cd8546 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Oceanic.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Oceanic.theme.json @@ -16,7 +16,7 @@ "second": "#32424A", "dis": "#415967", "accent": "#009688", - "accent2": "#0096882", + "acc2": "#ffcb6b", "accent50": "#00968850", "accent70": "#00968870", "cs": "#1E272C", @@ -26,7 +26,7 @@ "hl": "#425B67", "notif": "#1E272C", "hc": "#263238", - "shadow": "undefined", + "shadow": "#00000020", "white": "#eeffff", "blue": "#82aaff", "red": "#f07178", @@ -71,19 +71,25 @@ "hoverBorderColor": "accent50", "hoverSeparatorColor": "button", "pressedBackground": "accent50", - "pressedBorderColor": "accent50" + "pressedBorderColor": "accent50", + "separatorColor": "border" }, "ActionsList": { "icon.gap": 12, - "mnemonic.icon.gap": 12 + "mnemonic.icon.gap": 12, + "mnemonicInsets": "0,8,0,8", + "mnemonicsBorderInsets": "0,8,0,8", + "mnemonic.insets": "0,8,0,8" }, "ActionToolbar": { "background": "hc" }, - "AppInspector.GraphNode": { - "background": "second", - "borderColor": "border", - "focusedBorderColor": "accent" + "AppInspector": { + "GraphNode": { + "background": "second", + "borderColor": "border", + "focusedBorderColor": "accent" + } }, "AssignedMnemonic": { "background": "hl", @@ -99,13 +105,26 @@ "borderColor": "button", "foreground": "fg" }, - "BigSpinner.background": "bg", + "Banner": { + "foreground": "fg" + }, + "BigSpinner": { + "background": "bg" + }, "Bookmark": { "iconBackground": "accent", "Mnemonic": { "iconBackground": "hl", "iconBorderColor": "hl", "iconForeground": "fg" + }, + "MnemonicAssigned": { + "background": "table", + "foreground": "fg" + }, + "MnemonicCurrent": { + "background": "selBg", + "foreground": "selFg" } }, "BookmarkMnemonicAssigned": { @@ -128,13 +147,18 @@ "borderColor": "hl", "foreground": "fg" }, - "BookmarkIcon.background": "accent", - "Borders.ContrastBorderColor": "bg", - "Borders.color": "border", - "Breakpoint.iconHoverAlpha": 0.35, + "BookmarkIcon": { + "background": "accent" + }, + "Borders": { + "ContrastBorderColor": "bg", + "color": "border" + }, + "Breakpoint": { + "iconHoverAlpha": 0.35 + }, "Button": { "arc": 8, - "background": "bg", "darcula": { "borderColor": "button", "defaultBorderColor": "button", @@ -175,6 +199,7 @@ "focusedBorderColor": "accent", "foreground": "text", "highlight": "selFg", + "minimumSize": 72, "mt.background": "button", "mt.color1": "button", "mt.color2": "button", @@ -185,6 +210,12 @@ "select": "button", "shadowColor": "shadow", "shadowWidth": 0, + "Split": { + "default": { + "iconColor": "fg", + "separatorColor": "accent" + } + }, "startBackground": "table", "startBorderColor": "button", "ToolWindow": { @@ -195,11 +226,18 @@ "Tooltip.background": "notif", "Tooltip.borderColor": "border" }, + "CellEditor": { + "border": { + "width": 2 + } + }, "CheckBox": { "background": "bg", "background.selected": "accent", "borderColor": "bg", "borderColor.selected": "accent", + "border.width": 3, + "borderInsets": "4,4,4,4", "checkSignColor": "bg", "checkSignColor.selected": "bg", "checkSignColorDisabled": "bg", @@ -297,7 +335,9 @@ "foreground": "fg", "swatchesDefaultRecentColor": "fg" }, - "ComboBoxButton.background": "button", + "ComboBoxButton": { + "background": "button" + }, "ComboBox": { "ArrowButton": { "background": "button", @@ -327,14 +367,16 @@ "selectionBackground": "table", "selectionForeground": "activeFg" }, - "ComboPopup.border": "1,1,1,1,#009688", + "ComboPopup": { + "border": "1,1,1,1,#009688" + }, "CompletionPopup": { "Advertiser": { - "background": "bg", - "foreground": "fg", + "background": "second", + "foreground": "text", "borderInsets": "8,12,8,12" }, - "background": "second", + "background": "button", "foreground": "fg", "grayForeground": "text", "grayedForeground": "text", @@ -351,13 +393,20 @@ "selectionInactiveBackground": "hl", "selectionInactiveForeground": "text", "selectionInactiveInfoForeground": "text", - "selectionInfoForeground": "selFg" + "selectionInfoForeground": "selFg", + "selectionInnerInsets": "4,4,4,4" }, "ComplexPopup": { - "Header.background": "notif" + "Header": { + "background": "bg", + "insets": "12,12,12,12" + }, + "TextField": { + "inputInsets": "8,4,8,4" + } }, "Component": { - "arc": 4, + "arc": 6, "focusWidth": 2, "borderColor": "hl", "disabledBorderColor": "dis", @@ -440,7 +489,7 @@ "southPanelDivider": "bg" }, "DragAndDrop": { - "areaBackground": "tree", + "areaBackground": "selBg70", "areaBorderColor": "bg", "areaForeground": "fg", "backgroundBorderColor": "bg", @@ -453,18 +502,37 @@ "Editor": { "background": "hc", "foreground": "fg", + "Notification": { + "borderInsets": "10,12,10,12", + "WithoutStatus.borderInsets": "10,12,10,12" + }, + "ReplaceToolbar": { + "borderInsets": "4,12,4,12" + }, "shortcutForeground": "text", "SearchField": { "background": "cs", "borderInsets": "8,12,8,12" }, + "SearchReplaceModePanel": { + "borderInsets": "4,12,4,12" + }, + "SearchToolbar": { + "borderInsets": "4,12,4,12" + }, "Toolbar": { "borderColor": "border" + }, + "ToolTip": { + "border": "border", + "foreground": "fg", + "iconHoverBackground": "table", + "selectionBackground": "selBg" } }, "EditorGroupsTabs": { "background": "bg", - "borderColor": "second", + "borderColor": "border", "hoverBackground": "hl", "hoverColor": "hl", "inactiveUnderlineColor": "accent", @@ -474,6 +542,7 @@ }, "EditorPane": { "background": "hc", + "borderColor": "border", "caretForeground": "accent", "foreground": "fg", "inactiveBackground": "bg", @@ -483,21 +552,25 @@ "splitBorder": "border" }, "EditorTabs": { - "active.background": "table", - "active.foreground": "fg", - "active.underlineColor": "accent", + "active": { + "background": "table", + "foreground": "fg", + "underlineColor": "accent" + }, "background": "bg", - "borderColor": "second", "foreground": "fg", "hoverBackground": "hl", "hoverColor": "hl", "hoverMaskColor": "hl", "inactive.maskColor": "bg", - "inactiveColoredFileBackground": "bg", + "inactiveColoredFileBackground": "bg70", "inactiveMaskColor": "bg", "inactiveUnderlineColor": "dis", "selectedBackground": "table", "selectedForeground": "fg", + "tabContentInsetsActionsLeft": "0,6,0,6", + "tabContentInsetsActionsNone": "0,6,0,6", + "tabContentInsetsActionsRight": "0,6,0,6", "tabInsets": "-10,10,-10,10", "underlineColor": "accent", "underlineHeight": 3, @@ -515,6 +588,10 @@ "Gray": "excl", "excluded": "excl" }, + "FindPopup": { + "scopesPanelInsets": "4,16,4,16", + "bottomPanelInsets": "4,10,4,10" + }, "FlameGraph": { "JVMBackground": "#89DDF7", "JVMFocusBackground": "#82AAFF", @@ -555,15 +632,34 @@ "selectionForeground.unfocused": "selFg" }, "GotItTooltip": { + "animationBackground": "notif", "background": "notif", "borderColor": "notif", + "Button": { + "contrastBackground": "cs", + "endBackground": "button", + "foreground": "fg", + "startBackground": "button" + }, + "codeBackground": "cs", + "codeBorderColor": "bg", + "codeForeground": "fg", "endBackground": "button", "endBorderColor": "button", "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "imageBorderColor": "notif", "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "shortcutBackground": "notif", + "shortcutBorderColor": "border", "shortcutForeground": "text", "startBackground": "button", - "startBorderColor": "button" + "startBorderColor": "button", + "stepForeground": "text" }, "Group": { "disabledSeparatorColor": "border", @@ -587,7 +683,10 @@ "borderColor": "border", "defaultTextBorderInsets": "16,16,16,16", "foreground": "fg", + "fontSizeDelta": 0, + "horizontalGap": 10, "infoForeground": "text", + "maxWidth": 250, "shortcutForeground": "text", "shortcutTextColor": "text", "smallTextBorderInsets": "8,12,8,12", @@ -601,18 +700,29 @@ "MqTag": "text", "Tag": "text" }, - "Hyperlink.linkColor": "accent", - "IconBadge": { - "infoBackground": "accent" + "Hyperlink": { + "linkColor": "accent" + }, + "IconBadge": { + "infoBackground": "accent", + "newUiBackground": "accent" + }, + "IdeStatusBar": { + "border": "4,4,4,4" + }, + "InformationHint": { + "borderColor": "border" }, - "IdeStatusBar.border": "4,4,4,4", - "InformationHint.borderColor": "border", "inactiveCaption": "second", "inactiveCaptionBorder": "bg", "inactiveCaptionText": "text", "info": "text", "infoPanelForeground": "text", "infoText": "text", + "InlineBanner": { + "hoverBackground": "accent70", + "pressedBackground": "accent70" + }, "InplaceRefactoringPopup": { "background": "bg", "borderColor": "bg" @@ -622,10 +732,13 @@ "foreground": "fg" }, "InternalFrame": { + "activeTitleBackground": "bg", "activeTitleForeground": "fg", "background": "bg", "inactiveTitleBackground": "bg", - "inactiveTitleForeground": "text" + "inactiveTitleForeground": "text", + "optionDialogBackground": "bg", + "paletteBackground": "bg" }, "Label": { "background": "bg", @@ -676,20 +789,22 @@ "hoverBackground": "hl", "leftRightInset": 8, "separatorColor": "border", - "separatorInset": 4 + "separatorInset": 8 }, "foreground": "fg", "hoverBackground": "hl", "hoverInactiveBackground": "table", - "Line.hoverBackground": "selBg", + "Line": { + "hoverBackground": "selBg" + }, "rowHeight": "28", "selectionBackground": "tree", "selectionForeground": "selFg", "selectionInactiveBackground": "table", "selectionInactiveForeground": "activeFg", "Tag": { - "background": "button", - "foreground": "fg" + "foreground": "fg", + "background": "button" } }, "LiveIndicator": { @@ -703,31 +818,60 @@ "background": "hc", "foreground": "fg", "selectionForeground": "activeFg", - "selectionBackground": "selBg" + "selectionBackground": "selBg", + "transparentSelectionBackground": "tree" }, "MainToolbar": { "background": "bg", "Button": { - "buttonInsets": "0,0,0,0" + "buttonInsets": "0,4,0,4", + "iconSize": 20, + "size": "28,28" }, "Dropdown": { "borderInsets": "6,12,6,12", "background": "bg", "foreground": "fg", "hoverBackground": "hl", - "pressedBackground": "table" + "pressedBackground": "table", + "transparentHoverBackground": "accent70" }, + "foreground": "fg", "hoverBackground": "hl", "Icon": { - "borderInsets": "10,10,10,10", + "borderInsets": "4,4,4,4", "background": "bg", "hoverBackground": "hl", + "insets": "5,4,5,4", "pressedBackground": "table" }, "inactiveBackground": "bg", "pressedBackground": "table", - "separatorColor": "border" + "separatorColor": "border", + "SplitDropdown": { + "borderInsets": "6,6,6,6" + } }, + "MainWindow": { + "FullScreeControl": { + "Background": "hl" + }, + "Tab": { + "background": "bg", + "borderColor": "bg", + "foreground": "fg", + "hoverBackground": "hl", + "hoverForeground": "fg", + "selectedBackground": "selBg", + "selectedForeground": "selFg", + "selectedInactiveBackground": "excl", + "separatorColor": "border" + } + }, + "ManagedIdeBadgeBorder": "border", + "ManagedIdeBadgeBackground": "bg", + "ManagedIdeBadgeBackgroundHover": "accent70", + "ManagedIdeMenuItemHover": "selBg", "material": { "background": "bg", "branchColor": "fg", @@ -785,8 +929,12 @@ "disabledBackground": "bg", "disabledForeground": "dis", "foreground": "fg", + "insets": "0,4,0,4", "selectionBackground": "selBg", - "selectionForeground": "activeFg" + "selectionForeground": "activeFg", + "Selection": { + "arc": 8 + } }, "MlModelBinding.Viewer.CodeEditor.background": "bg", "MnemonicIcon": { @@ -797,6 +945,9 @@ "NavBar": { "arrowColor": "fg", "borderColor": "bg", + "Breadcrumbs": { + "itemInsets": "4,2,4,2" + }, "selectedColor": "accent" }, "NewClass": { @@ -806,15 +957,21 @@ "SearchField": { "background": "cs" }, - "separatorWidth": 6 + "separatorWidth": 10 }, "NewPSD.warning": "accent", + "NewUiOnboarding": { + "Dialog": { + "background": "second" + } + }, "Notification": { "arc": 16, "Error.foreground": "accent", "Link.foreground": "accent", "background": "notif", - "borderColor": "notif", + "borderColor": "border", + "borderInsets": "4,4,4,4", "errorBackground": "notif", "errorBorderColor": "notif", "errorForeground": "accent", @@ -855,18 +1012,27 @@ "ToolWindowWarning": { "foreground": "fg", "background": "notifWarn" + }, + "WelcomeScreen": { + "separatorColor": "border" } }, "Notifications": { "background": "notif", - "borderColor": "notif" + "borderColor": "border" }, "NotificationsToolwindow": { - "Notification.hoverBackground": "tree", - "newNotification.background": "notif", - "newNotification.hoverBackground": "tree" + "Notification": { + "hoverBackground": "tree" + }, + "newNotification": { + "background": "notif", + "hoverBackground": "tree" + } + }, + "OnePixelDivider": { + "background": "border" }, - "OnePixelDivider.background": "border", "OptionPane": { "background": "bg", "foreground": "fg", @@ -882,7 +1048,6 @@ "focusedColor": "accent" }, "Panel": { - "background": "bg", "foreground": "fg", "mouseShortcutBackground": "bg" }, @@ -911,16 +1076,6 @@ "Plugins": { "background": "bg", "borderColor": "border", - "disabledForeground": "dis", - "eapTagBackground": "hl", - "hoverBackground": "hl", - "lightSelectionBackground": "table", - "paidTagBackground": "hl", - "selectionBackground": "selBg", - "selectionForeground": "selFg", - "tagBackground": "hl", - "tagForeground": "accent", - "trialTagBackground": "hl", "Button": { "installBackground": "button", "installBorderColor": "button", @@ -928,10 +1083,15 @@ "installFillForeground": "dis", "installFocusedBackground": "hl", "installForeground": "fg", - "updateBackground": "accent", + "updateBackground": "button", "updateBorderColor": "button", "updateForeground": "fg" }, + "disabledForeground": "dis", + "eapTagBackground": "hl", + "hoverBackground": "hl", + "lightSelectionBackground": "table", + "paidTagBackground": "hl", "ScreenshotPagination": { "CurrentImage.fillColor": "accent" }, @@ -943,10 +1103,20 @@ "background": "second", "foreground": "fg" }, + "selectionBackground": "selBg", + "selectionForeground": "selFg", + "suggestedLabelBackground": "button", + "tagBackground": "hl", + "tagForeground": "accent", + "trialTagBackground": "hl", "Tab": { - "active.background": "table", - "active.foreground": "activeFg", - "hover.background": "table", + "active": { + "background": "table", + "foreground": "activeFg" + }, + "hover": { + "background": "table" + }, "hoverBackground": "table", "selectedBackground": "table", "selectedForeground": "selFg" @@ -954,6 +1124,7 @@ }, "Popup": { "Advertiser": { + "borderColor": "border", "borderInsets": "6,20,6,20", "background": "bg", "borderColor": "bg", @@ -968,24 +1139,33 @@ "color": "cs", "inactiveColor": "bg" }, - "background": "notif", + "background": "bg", "borderColor": "cs", "borderWidth": 0, "inactiveBorderColor": "bg", "innerBorderColor": "second", "Header": { "activeBackground": "bg", + "activeForeground": "fg", "inactiveBackground": "cs", - "inactiveForeground": "text" + "inactiveForeground": "dis", + "insets": "12,10,12,10" }, + "mnemonicForeground": "text", "paintBorder": false, "preferences": { "background": "bg", "borderColor": "bg", "foreground": "fg" }, - "Selection.arc": 8, - "Selection.leftRightInset": 8, + "SearchField": { + "borderInsets": "4,4,4,4", + "inputInsets": "4,4,4,4" + }, + "Selection": { + "arc": 8, + "leftRightInset": 8 + }, "Separator": { "foreground": "fg", "color": "border" @@ -1003,8 +1183,14 @@ "background": "bg", "borderWidth": 1, "border": "8,8,8,8", + "borderInsets": "10,10,10,10", "borderCornerRadius": 8, + "borderCornerRadiusX": 8, + "borderCornerRadiusY": 8, + "borderWidth": 1, "foreground": "fg", + "leftBorderWidth": 8, + "rightBorderWidth": 8, "Selection": { "arc": 8, "innerInsets": "8,2,8,2" @@ -1013,12 +1199,35 @@ "translucentBackground": "bg" }, "PopupMenuSeparator": { + "borderCornerRadius": 8, "height": 10, "stripeWidth": 2, "stripeIndent": 5, "withToEdge": 4, "borderCornerRadius": 8 }, + "PresentationAssistant": { + "Bright": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + }, + "Pale": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + } + }, + "Profiler": { + "neutralLifecycleEvent": "second", + "trackBackground": "button" + }, "ProgressBar": { "background": "bg", "foreground": "accent", @@ -1062,29 +1271,106 @@ "selectionBackground": "selBg", "selectionForeground": "selFg" }, + "Review": { + "Avatar": { + "Border": { + "Status": { + "Accepted": "accent", + "NeedReview": "hl" + } + } + }, + "Branch": { + "Background": "button", + "Background.Hover": "hl" + }, + "ChatItem": { + "BubblePanel": { + "Border": "button" + }, + "Hover": "table" + }, + "Editor": { + "Line": { + "Status": { + "Marker": "accent" + } + } + }, + "MetaInfo": { + "StatusLine": { + "Gray": "excl", + "Blue": "accent" + } + }, + "State": { + "Background": "second", + "Foreground": "fg" + }, + "Timeline": { + "Thread": { + "Diff": { + "AnchorLine": "table" + } + } + } + }, "ReviewList": { "state.background": "second", "state.foreground": "fg" }, + "RunToolbar": { + "Debug": { + "activeBackground": "hl" + }, + "Profile": { + "activeBackground": "hl" + }, + "Run": { + "activeBackground": "hl" + } + }, "RunWidget": { "background": "button", - "Debug.activeBackground": "hl", - "foreground": "fg", - "hoverBackground": "table", - "pressedBackground": "hl", - "Profile.activeBackground": "hl", + "Debug": { + "activeBackground": "hl" + }, + "foreground": "selFg", + "hoverBackground": "hl", + "iconColor": "fg", + "leftPressedBackground": "table", + "leftHoverBackground": "hl", + "pressedBackground": "table", + "Profile": { + "activeBackground": "hl" + }, "runningBackground": "hl", - "runningForeground": "selFg", - "Run.activeBackground": "hl", + "Run": { + "activeBackground": "hl" + }, "Running": { "background": "hl", - "foreground": "selFg", "leftHoverBackground": "hl", - "leftPressedBackground": "hl" + "leftPressedBackground": "table" }, - "separatorColor": "border" + "runningBackground": "hl", + "runningForeground": "selFg", + "runIconColor": "accent", + "separatorColor": "border", + "stopBackground": "second", + "StopButton": { + "leftHoverBackground": "hl", + "leftPressedBackground": "second" + }, + "toolbarHeight": 30, + "toolbarBorderHeight": 4 + }, + "ScreenView": { + "borderColor": "border", + "defaultBorderColor": "border", + "hoveredBorderColor": "hl", + "selectedBorderColor": "selBg" }, - "ScreenView.borderColor": "border", "scrollbar": "bg", "ScrollBar": { "background": "bg", @@ -1186,9 +1472,9 @@ }, "SegmentedButton": { "focusedSelectedButtonColor": "hl", + "selectedEndBorderColor": "accent", "selectedButtonColor": "button", - "selectedStartBorderColor": "border", - "selectedEndBorderColor": "border" + "selectedStartBorderColor": "accent" }, "Separator": { "background": "second", @@ -1198,6 +1484,7 @@ "Settings": { "Spotlight.borderColor": "accent" }, + "shortcutForeground": "text", "SidePanel": { "background": "hc" }, @@ -1222,6 +1509,7 @@ "foreground": "fg" }, "Spinner": { + "arrowButtonInsets": "1,1,1,1", "background": "bg", "border": "4,4,4,4", "disabledBackground": "excl", @@ -1232,11 +1520,16 @@ "background": "bg", "highlight": "hc" }, - "SplitPaneDivider.draggingColor": "second", - "StateWidget.activeBackground": "button", + "SplitPaneDivider": { + "draggingColor": "second" + }, + "StateWidget": { + "activeBackground": "button" + }, "StatusBar": { - "background": "bg", + "background": "bg10", "Breadcrumbs": { + "chevronInset": 0, "floatingBackground": "tree", "floatingForeground": "fg", "floatingToolbarInsets": "8,12,8,12", @@ -1244,6 +1537,7 @@ "hoverBackground": "tree", "hoverForeground": "fg", "itemBackgroundInsets": "2,4,2,4", + "itemInsets": 0, "selectionBackground": "selBg", "selectionForeground": "activeFg", "selectionInactiveBackground": "button", @@ -1264,6 +1558,13 @@ "widgetInsets": "8,12,8,12" } }, + "StripeToolbar": { + "Button": { + "iconSize": 20, + "iconPadding": 8, + "size": "40,40" + } + }, "TabbedPane": { "background": "bg", "borderColor": "hc", @@ -1290,6 +1591,7 @@ "selectedTabPadInsets": "0,0,0,0", "shadow": "hc", "tabHeight": 32, + "tabAreaInsets": 0, "tabInsets": "5,10,5,10", "tabSelectionArc": 4, "tabSelectionHeight": 2, @@ -1385,7 +1687,7 @@ "TitlePane": { "Button": { "hoverBackground": "hl", - "preferredSize": "48,40" + "preferredSize": "42,42" }, "background": "hc", "inactiveBackground": "bg", @@ -1407,15 +1709,23 @@ "onBackground": "accent", "onForeground": "accent" }, - "Toolbar.Floating.background": "button", + "Toolbar": { + "horizontalToolbarInsets": "8,8,8,8", + "Floating": { + "background": "button", + "borderColor": "border" + }, + "verticalToolbarInsets": "8,8,8,8" + }, "ToolBar": { "background": "hc", "borderHandleColor": "text", "comboBoxButtonBackground": "button", "floatingForeground": "text", "foreground": "fg", - "verticalToolbarInsets": "6,6,6,6", - "horizontalToolbarInsets": "6,6,6,6" + "horizontalToolbarInsets": "6,6,6,6", + "separatorColor": "border", + "verticalToolbarInsets": "6,6,6,6" }, "ToolbarComboWidget": { "background": "button", @@ -1426,6 +1736,21 @@ "actions.settings.icon.background.color": "bg", "description.title.text.color": "fg" }, + "Tooltip": { + "Learning": { + "codeBorderColor": "cs", + "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "spanBackground": "accent70", + "spanForeground": "fg" + }, + "separatorColor": "border" + }, "ToolTip": { "arc": 6, "actions": { @@ -1445,6 +1770,7 @@ "Learning": { "background": "accent", "borderColor": "accent", + "codeForeground": "fg", "foreground": "fg", "spanBackground": "accent50", "spanForeground": "fg", @@ -1463,25 +1789,44 @@ "Button": { "hoverBackground": "table", "DragAndDrop": { - "stripeBackground": "cs", - "buttonDropBackground": "accent70" + "stripeBackground": "bg", + "buttonDropBackground": "selBg70", + "buttonDropBorderColor": "accent", + "buttonFloatingBackground": "button" }, "selectedBackground": "cs", "selectedForeground": "activeFg" }, + "DragAndDrop": { + "areaBackground": "accent50" + }, "header": { - "active.background": "second", + "active": { + "background": "second" + }, "background": "bg", - "border.background": "second", - "closeButton.background": "bg", - "tab.selected.active.background": "cs", - "tab.selected.background": "cs" + "border": { + "background": "border" + }, + "closeButton": { + "background": "bg" + }, + "tab": { + "selected": { + "active": { + "background": "cs" + }, + "background": "cs" + } + } }, "Header": { "height": 42, "background": "second", - "borderColor": "second", - "inactiveBackground": "bg" + "borderColor": "border", + "inactiveBackground": "bg", + "labelLeftRightInsets": "0,12,0,16", + "toolbarLeftRightInsets": "0,12,0,8" }, "HeaderCloseButton": { "background": "bg" @@ -1506,6 +1851,12 @@ "inactive": { "Header.background": "bg", "HeaderTab.background": "cs" + }, + "Stripe": { + "DragAndDrop": { + "separatorColor": "accent50" + }, + "separatorColor": "table" } }, "Tree": { @@ -1522,13 +1873,17 @@ "selectionForeground": "selFg", "selectionInactiveBackground": "tree", "selectionInactiveForeground": "selFg", - "textBackground": "hc" + "textBackground": "hc", + "leftChildIndent": 10, + "rightChildIndent": 5 }, - "Tree.leftChildIndent": 10, - "Tree.rightChildIndent": 5, "UIDesigner": { - "Activity.borderColor": "border", - "Canvas.background": "cs", + "Activity": { + "borderColor": "border" + }, + "Canvas": { + "background": "cs" + }, "ColorPicker": { "background": "second", "foreground": "fg" @@ -1543,49 +1898,119 @@ "borderColor": "border", "hoverBorderColor": "hl" }, - "Label.foreground": "text", - "highStroke.foreground": "fg", + "Label": { + "foreground": "text" + }, + "highStroke": { + "foreground": "fg" + }, "motion": { "AddConstraintColor": "accent", "AddConstraintPlus": "accent", - "CSPanel.SelectedBackground": "tree", - "CSPanel.SelectedFocusBackground": "selBg", - "Component.foreground": "fg", - "ConstraintSet.background": "second", - "ConstraintSetText.foreground": "text", - "CursorTextColor.foreground": "fg", - "HoverColor.disabledBackground": "dis", - "Key.selectedForeground": "accent", - "Notification.background": "notif", + "Axis": { + "lineSeparatorColor": "fg" + }, + "CSPanel": { + "SelectedBackground": "tree", + "SelectedFocusBackground": "selBg" + }, + "Component": { + "foreground": "fg" + }, + "ConstraintSet": { + "background": "second" + }, + "ConstraintSetText": { + "foreground": "text" + }, + "CursorTextColor": { + "foreground": "fg" + }, + "HoverColor": { + "disabledBackground": "dis" + }, + "Key": { + "selectedForeground": "accent" + }, + "Notification": { + "background": "notif" + }, "PositionMarkColor": "accent", - "PrimaryPanel.background": "cs", - "SecondaryPanel.background": "bg", - "SecondaryPanel.header.background": "cs", - "SecondaryPanel.header.foreground": "text", - "TimeCursor.End.selectedForeground": "accent", - "TimeCursor.Start.selectedForeground": "accent", - "TimeCursor.selectedForeground": "accent", + "PrimaryPanel": { + "background": "cs" + }, + "SecondaryPanel": { + "background": "bg", + "header": { + "background": "cs", + "foreground": "text" + } + }, + "TimeCursor": { + "End": { + "selectedForeground": "accent" + }, + "selectedForeground": "accent", + "Start": { + "selectedForeground": "accent" + } + }, "borderColor": "border", - "cs_FocusText.infoForeground": "text", - "graphLine.lineSeparatorColor": "accent", - "motionGraph.background": "bg", - "ourAvg.background": "second", - "ourCS.background": "second", - "ourCS_Border.borderColor": "border", - "ourCS_SelectedBackground.selectionInactiveBackground": "table", - "ourCS_SelectedBorder.pressedBorderColor": "hl", - "ourCS_SelectedFocusBackground.selectionForeground": "selFg", - "ourCS_SelectedFocusBorder.focusedBorderColor": "accent", - "ourCS_TextColor.foreground": "text", - "ourML_BarColor.separatorColor": "border", - "timeLine.disabledBorderColor": "border" + "cs_FocusText": { + "infoForeground": "text" + }, + "graphLine": { + "lineSeparatorColor": "accent" + }, + "Grid": { + "lineSeparatorColor": "border" + }, + "label": { + "background": "second", + "textColor": "text" + }, + "motionGraph": { + "background": "bg" + }, + "ourAvg": { + "background": "second" + }, + "ourCS": { + "background": "second" + }, + "ourCS_Border": { + "borderColor": "border" + }, + "ourCS_SelectedBackground": { + "selectionInactiveBackground": "table" + }, + "ourCS_SelectedBorder": { + "pressedBorderColor": "hl" + }, + "ourCS_SelectedFocusBackground": { + "selectionForeground": "selFg" + }, + "ourCS_SelectedFocusBorder": { + "focusedBorderColor": "accent" + }, + "ourCS_TextColor": { + "foreground": "text" + }, + "ourML_BarColor": { + "separatorColor": "border" + }, + "timeLine": { + "disabledBorderColor": "border" + } }, "PackageDetails": { "border": "accent", "infoBanner": "accent" }, "PackageSearch": { - "PackagesList.rowHeight": 28, + "PackagesList": { + "rowHeight": 28 + }, "PackageTag": { "background": "excl", "foreground": "fg", @@ -1617,7 +2042,9 @@ "lines3d": "accent", "secondaryGraphLines": "border" }, - "percent.foreground": "fg", + "percent": { + "foreground": "fg" + }, "Placeholder": { "background": "bg", "borderColor": "border", @@ -1634,9 +2061,11 @@ "warningBorderColor": "notif" }, "VersionControl": { - "FileHistory.Commit": { - "otherBranchBackground": "excl", - "selectedBranchBackground": "bg" + "FileHistory": { + "Commit": { + "otherBranchBackground": "excl", + "selectedBranchBackground": "bg" + } }, "GitCommits": { "graphColor": "hl" @@ -1660,8 +2089,13 @@ "Commit": { "currentBranchBackground": "cs", "hoveredBackground": "tree", + "selectionInactiveForeground": "fg", + "Reference": { + "foreground": "text" + }, "rowHeight": 28, - "unmatchedForeground": "text" + "unmatchedForeground": "text", + "verticalPadding": 8 } }, "MarkerPopup": { @@ -1688,30 +2122,39 @@ "foreground": "fg" }, "WelcomeScreen": { - "AssociatedComponent.background": "bg", - "Details.background": "bg", - "List": { - "background": "hc", - "selectionBackground": "selBg", - "selectionInactiveBackground": "hl" + "AssociatedComponent": { + "background": "bg" }, - "SidePanel.background": "second", "background": "bg", "borderColor": "bg", "captionBackground": "cs", "captionForeground": "fg", + "Details": { + "background": "bg" + }, "footerBackground": "cs", "footerForeground": "fg", "groupIconBorderColor": "button", "headerBackground": "bg", "headerForeground": "fg", - "separatorColor": "border", + "List": { + "background": "hc", + "selectionBackground": "selBg", + "selectionInactiveBackground": "hl" + }, "Projects": { - "actions.background": "cs", - "actions.selectionBackground": "hl", + "actions": { + "background": "cs", + "selectionBackground": "hl", + "selectionBorderColor": "accent" + }, "background": "second", "selectionBackground": "selBg", "selectionInactiveBackground": "selBg" + }, + "separatorColor": "border", + "SidePanel": { + "background": "second" } }, "Window.border": "border", diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Palenight.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Palenight.theme.json index a000ee12..d8b56ace 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Palenight.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Palenight.theme.json @@ -16,7 +16,7 @@ "second": "#34324a", "dis": "#515772", "accent": "#ab47bc", - "accent2": "#ab47bc2", + "acc2": "#ffcb6b", "accent50": "#ab47bc50", "accent70": "#ab47bc70", "cs": "#202331", @@ -26,7 +26,7 @@ "hl": "#444267", "notif": "#202331", "hc": "#292D3E", - "shadow": "undefined", + "shadow": "#00000020", "white": "#eeffff", "blue": "#82aaff", "red": "#f07178", @@ -71,19 +71,25 @@ "hoverBorderColor": "accent50", "hoverSeparatorColor": "button", "pressedBackground": "accent50", - "pressedBorderColor": "accent50" + "pressedBorderColor": "accent50", + "separatorColor": "border" }, "ActionsList": { "icon.gap": 12, - "mnemonic.icon.gap": 12 + "mnemonic.icon.gap": 12, + "mnemonicInsets": "0,8,0,8", + "mnemonicsBorderInsets": "0,8,0,8", + "mnemonic.insets": "0,8,0,8" }, "ActionToolbar": { "background": "hc" }, - "AppInspector.GraphNode": { - "background": "second", - "borderColor": "border", - "focusedBorderColor": "accent" + "AppInspector": { + "GraphNode": { + "background": "second", + "borderColor": "border", + "focusedBorderColor": "accent" + } }, "AssignedMnemonic": { "background": "hl", @@ -99,13 +105,26 @@ "borderColor": "button", "foreground": "fg" }, - "BigSpinner.background": "bg", + "Banner": { + "foreground": "fg" + }, + "BigSpinner": { + "background": "bg" + }, "Bookmark": { "iconBackground": "accent", "Mnemonic": { "iconBackground": "hl", "iconBorderColor": "hl", "iconForeground": "fg" + }, + "MnemonicAssigned": { + "background": "table", + "foreground": "fg" + }, + "MnemonicCurrent": { + "background": "selBg", + "foreground": "selFg" } }, "BookmarkMnemonicAssigned": { @@ -128,13 +147,18 @@ "borderColor": "hl", "foreground": "fg" }, - "BookmarkIcon.background": "accent", - "Borders.ContrastBorderColor": "bg", - "Borders.color": "border", - "Breakpoint.iconHoverAlpha": 0.35, + "BookmarkIcon": { + "background": "accent" + }, + "Borders": { + "ContrastBorderColor": "bg", + "color": "border" + }, + "Breakpoint": { + "iconHoverAlpha": 0.35 + }, "Button": { "arc": 8, - "background": "bg", "darcula": { "borderColor": "button", "defaultBorderColor": "button", @@ -175,6 +199,7 @@ "focusedBorderColor": "accent", "foreground": "text", "highlight": "selFg", + "minimumSize": 72, "mt.background": "button", "mt.color1": "button", "mt.color2": "button", @@ -185,6 +210,12 @@ "select": "button", "shadowColor": "shadow", "shadowWidth": 0, + "Split": { + "default": { + "iconColor": "fg", + "separatorColor": "accent" + } + }, "startBackground": "table", "startBorderColor": "button", "ToolWindow": { @@ -195,11 +226,18 @@ "Tooltip.background": "notif", "Tooltip.borderColor": "border" }, + "CellEditor": { + "border": { + "width": 2 + } + }, "CheckBox": { "background": "bg", "background.selected": "accent", "borderColor": "bg", "borderColor.selected": "accent", + "border.width": 3, + "borderInsets": "4,4,4,4", "checkSignColor": "bg", "checkSignColor.selected": "bg", "checkSignColorDisabled": "bg", @@ -297,7 +335,9 @@ "foreground": "fg", "swatchesDefaultRecentColor": "fg" }, - "ComboBoxButton.background": "button", + "ComboBoxButton": { + "background": "button" + }, "ComboBox": { "ArrowButton": { "background": "button", @@ -327,14 +367,16 @@ "selectionBackground": "table", "selectionForeground": "activeFg" }, - "ComboPopup.border": "1,1,1,1,#ab47bc", + "ComboPopup": { + "border": "1,1,1,1,#ab47bc" + }, "CompletionPopup": { "Advertiser": { - "background": "bg", - "foreground": "fg", + "background": "second", + "foreground": "text", "borderInsets": "8,12,8,12" }, - "background": "second", + "background": "button", "foreground": "fg", "grayForeground": "text", "grayedForeground": "text", @@ -351,13 +393,20 @@ "selectionInactiveBackground": "hl", "selectionInactiveForeground": "text", "selectionInactiveInfoForeground": "text", - "selectionInfoForeground": "selFg" + "selectionInfoForeground": "selFg", + "selectionInnerInsets": "4,4,4,4" }, "ComplexPopup": { - "Header.background": "notif" + "Header": { + "background": "bg", + "insets": "12,12,12,12" + }, + "TextField": { + "inputInsets": "8,4,8,4" + } }, "Component": { - "arc": 4, + "arc": 6, "focusWidth": 2, "borderColor": "hl", "disabledBorderColor": "dis", @@ -440,7 +489,7 @@ "southPanelDivider": "bg" }, "DragAndDrop": { - "areaBackground": "tree", + "areaBackground": "selBg70", "areaBorderColor": "bg", "areaForeground": "fg", "backgroundBorderColor": "bg", @@ -453,18 +502,37 @@ "Editor": { "background": "hc", "foreground": "fg", + "Notification": { + "borderInsets": "10,12,10,12", + "WithoutStatus.borderInsets": "10,12,10,12" + }, + "ReplaceToolbar": { + "borderInsets": "4,12,4,12" + }, "shortcutForeground": "text", "SearchField": { "background": "cs", "borderInsets": "8,12,8,12" }, + "SearchReplaceModePanel": { + "borderInsets": "4,12,4,12" + }, + "SearchToolbar": { + "borderInsets": "4,12,4,12" + }, "Toolbar": { "borderColor": "border" + }, + "ToolTip": { + "border": "border", + "foreground": "fg", + "iconHoverBackground": "table", + "selectionBackground": "selBg" } }, "EditorGroupsTabs": { "background": "bg", - "borderColor": "second", + "borderColor": "border", "hoverBackground": "hl", "hoverColor": "hl", "inactiveUnderlineColor": "accent", @@ -474,6 +542,7 @@ }, "EditorPane": { "background": "hc", + "borderColor": "border", "caretForeground": "accent", "foreground": "fg", "inactiveBackground": "bg", @@ -483,21 +552,25 @@ "splitBorder": "border" }, "EditorTabs": { - "active.background": "table", - "active.foreground": "fg", - "active.underlineColor": "accent", + "active": { + "background": "table", + "foreground": "fg", + "underlineColor": "accent" + }, "background": "bg", - "borderColor": "second", "foreground": "fg", "hoverBackground": "hl", "hoverColor": "hl", "hoverMaskColor": "hl", "inactive.maskColor": "bg", - "inactiveColoredFileBackground": "bg", + "inactiveColoredFileBackground": "bg70", "inactiveMaskColor": "bg", "inactiveUnderlineColor": "dis", "selectedBackground": "table", "selectedForeground": "fg", + "tabContentInsetsActionsLeft": "0,6,0,6", + "tabContentInsetsActionsNone": "0,6,0,6", + "tabContentInsetsActionsRight": "0,6,0,6", "tabInsets": "-10,10,-10,10", "underlineColor": "accent", "underlineHeight": 3, @@ -515,6 +588,10 @@ "Gray": "excl", "excluded": "excl" }, + "FindPopup": { + "scopesPanelInsets": "4,16,4,16", + "bottomPanelInsets": "4,10,4,10" + }, "FlameGraph": { "JVMBackground": "#89DDF7", "JVMFocusBackground": "#82AAFF", @@ -555,15 +632,34 @@ "selectionForeground.unfocused": "selFg" }, "GotItTooltip": { + "animationBackground": "notif", "background": "notif", "borderColor": "notif", + "Button": { + "contrastBackground": "cs", + "endBackground": "button", + "foreground": "fg", + "startBackground": "button" + }, + "codeBackground": "cs", + "codeBorderColor": "bg", + "codeForeground": "fg", "endBackground": "button", "endBorderColor": "button", "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "imageBorderColor": "notif", "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "shortcutBackground": "notif", + "shortcutBorderColor": "border", "shortcutForeground": "text", "startBackground": "button", - "startBorderColor": "button" + "startBorderColor": "button", + "stepForeground": "text" }, "Group": { "disabledSeparatorColor": "border", @@ -587,7 +683,10 @@ "borderColor": "border", "defaultTextBorderInsets": "16,16,16,16", "foreground": "fg", + "fontSizeDelta": 0, + "horizontalGap": 10, "infoForeground": "text", + "maxWidth": 250, "shortcutForeground": "text", "shortcutTextColor": "text", "smallTextBorderInsets": "8,12,8,12", @@ -601,18 +700,29 @@ "MqTag": "text", "Tag": "text" }, - "Hyperlink.linkColor": "accent", - "IconBadge": { - "infoBackground": "accent" + "Hyperlink": { + "linkColor": "accent" + }, + "IconBadge": { + "infoBackground": "accent", + "newUiBackground": "accent" + }, + "IdeStatusBar": { + "border": "4,4,4,4" + }, + "InformationHint": { + "borderColor": "border" }, - "IdeStatusBar.border": "4,4,4,4", - "InformationHint.borderColor": "border", "inactiveCaption": "second", "inactiveCaptionBorder": "bg", "inactiveCaptionText": "text", "info": "text", "infoPanelForeground": "text", "infoText": "text", + "InlineBanner": { + "hoverBackground": "accent70", + "pressedBackground": "accent70" + }, "InplaceRefactoringPopup": { "background": "bg", "borderColor": "bg" @@ -622,10 +732,13 @@ "foreground": "fg" }, "InternalFrame": { + "activeTitleBackground": "bg", "activeTitleForeground": "fg", "background": "bg", "inactiveTitleBackground": "bg", - "inactiveTitleForeground": "text" + "inactiveTitleForeground": "text", + "optionDialogBackground": "bg", + "paletteBackground": "bg" }, "Label": { "background": "bg", @@ -676,20 +789,22 @@ "hoverBackground": "hl", "leftRightInset": 8, "separatorColor": "border", - "separatorInset": 4 + "separatorInset": 8 }, "foreground": "fg", "hoverBackground": "hl", "hoverInactiveBackground": "table", - "Line.hoverBackground": "selBg", + "Line": { + "hoverBackground": "selBg" + }, "rowHeight": "28", "selectionBackground": "tree", "selectionForeground": "selFg", "selectionInactiveBackground": "table", "selectionInactiveForeground": "activeFg", "Tag": { - "background": "button", - "foreground": "fg" + "foreground": "fg", + "background": "button" } }, "LiveIndicator": { @@ -703,31 +818,60 @@ "background": "hc", "foreground": "fg", "selectionForeground": "activeFg", - "selectionBackground": "selBg" + "selectionBackground": "selBg", + "transparentSelectionBackground": "tree" }, "MainToolbar": { "background": "bg", "Button": { - "buttonInsets": "0,0,0,0" + "buttonInsets": "0,4,0,4", + "iconSize": 20, + "size": "28,28" }, "Dropdown": { "borderInsets": "6,12,6,12", "background": "bg", "foreground": "fg", "hoverBackground": "hl", - "pressedBackground": "table" + "pressedBackground": "table", + "transparentHoverBackground": "accent70" }, + "foreground": "fg", "hoverBackground": "hl", "Icon": { - "borderInsets": "10,10,10,10", + "borderInsets": "4,4,4,4", "background": "bg", "hoverBackground": "hl", + "insets": "5,4,5,4", "pressedBackground": "table" }, "inactiveBackground": "bg", "pressedBackground": "table", - "separatorColor": "border" + "separatorColor": "border", + "SplitDropdown": { + "borderInsets": "6,6,6,6" + } }, + "MainWindow": { + "FullScreeControl": { + "Background": "hl" + }, + "Tab": { + "background": "bg", + "borderColor": "bg", + "foreground": "fg", + "hoverBackground": "hl", + "hoverForeground": "fg", + "selectedBackground": "selBg", + "selectedForeground": "selFg", + "selectedInactiveBackground": "excl", + "separatorColor": "border" + } + }, + "ManagedIdeBadgeBorder": "border", + "ManagedIdeBadgeBackground": "bg", + "ManagedIdeBadgeBackgroundHover": "accent70", + "ManagedIdeMenuItemHover": "selBg", "material": { "background": "bg", "branchColor": "fg", @@ -785,8 +929,12 @@ "disabledBackground": "bg", "disabledForeground": "dis", "foreground": "fg", + "insets": "0,4,0,4", "selectionBackground": "selBg", - "selectionForeground": "activeFg" + "selectionForeground": "activeFg", + "Selection": { + "arc": 8 + } }, "MlModelBinding.Viewer.CodeEditor.background": "bg", "MnemonicIcon": { @@ -797,6 +945,9 @@ "NavBar": { "arrowColor": "fg", "borderColor": "bg", + "Breadcrumbs": { + "itemInsets": "4,2,4,2" + }, "selectedColor": "accent" }, "NewClass": { @@ -806,15 +957,21 @@ "SearchField": { "background": "cs" }, - "separatorWidth": 6 + "separatorWidth": 10 }, "NewPSD.warning": "accent", + "NewUiOnboarding": { + "Dialog": { + "background": "second" + } + }, "Notification": { "arc": 16, "Error.foreground": "accent", "Link.foreground": "accent", "background": "notif", - "borderColor": "notif", + "borderColor": "border", + "borderInsets": "4,4,4,4", "errorBackground": "notif", "errorBorderColor": "notif", "errorForeground": "accent", @@ -855,18 +1012,27 @@ "ToolWindowWarning": { "foreground": "fg", "background": "notifWarn" + }, + "WelcomeScreen": { + "separatorColor": "border" } }, "Notifications": { "background": "notif", - "borderColor": "notif" + "borderColor": "border" }, "NotificationsToolwindow": { - "Notification.hoverBackground": "tree", - "newNotification.background": "notif", - "newNotification.hoverBackground": "tree" + "Notification": { + "hoverBackground": "tree" + }, + "newNotification": { + "background": "notif", + "hoverBackground": "tree" + } + }, + "OnePixelDivider": { + "background": "border" }, - "OnePixelDivider.background": "border", "OptionPane": { "background": "bg", "foreground": "fg", @@ -882,7 +1048,6 @@ "focusedColor": "accent" }, "Panel": { - "background": "bg", "foreground": "fg", "mouseShortcutBackground": "bg" }, @@ -911,16 +1076,6 @@ "Plugins": { "background": "bg", "borderColor": "border", - "disabledForeground": "dis", - "eapTagBackground": "hl", - "hoverBackground": "hl", - "lightSelectionBackground": "table", - "paidTagBackground": "hl", - "selectionBackground": "selBg", - "selectionForeground": "selFg", - "tagBackground": "hl", - "tagForeground": "accent", - "trialTagBackground": "hl", "Button": { "installBackground": "button", "installBorderColor": "button", @@ -928,10 +1083,15 @@ "installFillForeground": "dis", "installFocusedBackground": "hl", "installForeground": "fg", - "updateBackground": "accent", + "updateBackground": "button", "updateBorderColor": "button", "updateForeground": "fg" }, + "disabledForeground": "dis", + "eapTagBackground": "hl", + "hoverBackground": "hl", + "lightSelectionBackground": "table", + "paidTagBackground": "hl", "ScreenshotPagination": { "CurrentImage.fillColor": "accent" }, @@ -943,10 +1103,20 @@ "background": "second", "foreground": "fg" }, + "selectionBackground": "selBg", + "selectionForeground": "selFg", + "suggestedLabelBackground": "button", + "tagBackground": "hl", + "tagForeground": "accent", + "trialTagBackground": "hl", "Tab": { - "active.background": "table", - "active.foreground": "activeFg", - "hover.background": "table", + "active": { + "background": "table", + "foreground": "activeFg" + }, + "hover": { + "background": "table" + }, "hoverBackground": "table", "selectedBackground": "table", "selectedForeground": "selFg" @@ -954,6 +1124,7 @@ }, "Popup": { "Advertiser": { + "borderColor": "border", "borderInsets": "6,20,6,20", "background": "bg", "borderColor": "bg", @@ -968,24 +1139,33 @@ "color": "cs", "inactiveColor": "bg" }, - "background": "notif", + "background": "bg", "borderColor": "cs", "borderWidth": 0, "inactiveBorderColor": "bg", "innerBorderColor": "second", "Header": { "activeBackground": "bg", + "activeForeground": "fg", "inactiveBackground": "cs", - "inactiveForeground": "text" + "inactiveForeground": "dis", + "insets": "12,10,12,10" }, + "mnemonicForeground": "text", "paintBorder": false, "preferences": { "background": "bg", "borderColor": "bg", "foreground": "fg" }, - "Selection.arc": 8, - "Selection.leftRightInset": 8, + "SearchField": { + "borderInsets": "4,4,4,4", + "inputInsets": "4,4,4,4" + }, + "Selection": { + "arc": 8, + "leftRightInset": 8 + }, "Separator": { "foreground": "fg", "color": "border" @@ -1003,8 +1183,14 @@ "background": "bg", "borderWidth": 1, "border": "8,8,8,8", + "borderInsets": "10,10,10,10", "borderCornerRadius": 8, + "borderCornerRadiusX": 8, + "borderCornerRadiusY": 8, + "borderWidth": 1, "foreground": "fg", + "leftBorderWidth": 8, + "rightBorderWidth": 8, "Selection": { "arc": 8, "innerInsets": "8,2,8,2" @@ -1013,12 +1199,35 @@ "translucentBackground": "bg" }, "PopupMenuSeparator": { + "borderCornerRadius": 8, "height": 10, "stripeWidth": 2, "stripeIndent": 5, "withToEdge": 4, "borderCornerRadius": 8 }, + "PresentationAssistant": { + "Bright": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + }, + "Pale": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + } + }, + "Profiler": { + "neutralLifecycleEvent": "second", + "trackBackground": "button" + }, "ProgressBar": { "background": "bg", "foreground": "accent", @@ -1062,29 +1271,106 @@ "selectionBackground": "selBg", "selectionForeground": "selFg" }, + "Review": { + "Avatar": { + "Border": { + "Status": { + "Accepted": "accent", + "NeedReview": "hl" + } + } + }, + "Branch": { + "Background": "button", + "Background.Hover": "hl" + }, + "ChatItem": { + "BubblePanel": { + "Border": "button" + }, + "Hover": "table" + }, + "Editor": { + "Line": { + "Status": { + "Marker": "accent" + } + } + }, + "MetaInfo": { + "StatusLine": { + "Gray": "excl", + "Blue": "accent" + } + }, + "State": { + "Background": "second", + "Foreground": "fg" + }, + "Timeline": { + "Thread": { + "Diff": { + "AnchorLine": "table" + } + } + } + }, "ReviewList": { "state.background": "second", "state.foreground": "fg" }, + "RunToolbar": { + "Debug": { + "activeBackground": "hl" + }, + "Profile": { + "activeBackground": "hl" + }, + "Run": { + "activeBackground": "hl" + } + }, "RunWidget": { "background": "button", - "Debug.activeBackground": "hl", - "foreground": "fg", - "hoverBackground": "table", - "pressedBackground": "hl", - "Profile.activeBackground": "hl", + "Debug": { + "activeBackground": "hl" + }, + "foreground": "selFg", + "hoverBackground": "hl", + "iconColor": "fg", + "leftPressedBackground": "table", + "leftHoverBackground": "hl", + "pressedBackground": "table", + "Profile": { + "activeBackground": "hl" + }, "runningBackground": "hl", - "runningForeground": "selFg", - "Run.activeBackground": "hl", + "Run": { + "activeBackground": "hl" + }, "Running": { "background": "hl", - "foreground": "selFg", "leftHoverBackground": "hl", - "leftPressedBackground": "hl" + "leftPressedBackground": "table" }, - "separatorColor": "border" + "runningBackground": "hl", + "runningForeground": "selFg", + "runIconColor": "accent", + "separatorColor": "border", + "stopBackground": "second", + "StopButton": { + "leftHoverBackground": "hl", + "leftPressedBackground": "second" + }, + "toolbarHeight": 30, + "toolbarBorderHeight": 4 + }, + "ScreenView": { + "borderColor": "border", + "defaultBorderColor": "border", + "hoveredBorderColor": "hl", + "selectedBorderColor": "selBg" }, - "ScreenView.borderColor": "border", "scrollbar": "bg", "ScrollBar": { "background": "bg", @@ -1186,9 +1472,9 @@ }, "SegmentedButton": { "focusedSelectedButtonColor": "hl", + "selectedEndBorderColor": "accent", "selectedButtonColor": "button", - "selectedStartBorderColor": "border", - "selectedEndBorderColor": "border" + "selectedStartBorderColor": "accent" }, "Separator": { "background": "second", @@ -1198,6 +1484,7 @@ "Settings": { "Spotlight.borderColor": "accent" }, + "shortcutForeground": "text", "SidePanel": { "background": "hc" }, @@ -1222,6 +1509,7 @@ "foreground": "fg" }, "Spinner": { + "arrowButtonInsets": "1,1,1,1", "background": "bg", "border": "4,4,4,4", "disabledBackground": "excl", @@ -1232,11 +1520,16 @@ "background": "bg", "highlight": "hc" }, - "SplitPaneDivider.draggingColor": "second", - "StateWidget.activeBackground": "button", + "SplitPaneDivider": { + "draggingColor": "second" + }, + "StateWidget": { + "activeBackground": "button" + }, "StatusBar": { - "background": "bg", + "background": "bg10", "Breadcrumbs": { + "chevronInset": 0, "floatingBackground": "tree", "floatingForeground": "fg", "floatingToolbarInsets": "8,12,8,12", @@ -1244,6 +1537,7 @@ "hoverBackground": "tree", "hoverForeground": "fg", "itemBackgroundInsets": "2,4,2,4", + "itemInsets": 0, "selectionBackground": "selBg", "selectionForeground": "activeFg", "selectionInactiveBackground": "button", @@ -1264,6 +1558,13 @@ "widgetInsets": "8,12,8,12" } }, + "StripeToolbar": { + "Button": { + "iconSize": 20, + "iconPadding": 8, + "size": "40,40" + } + }, "TabbedPane": { "background": "bg", "borderColor": "hc", @@ -1290,6 +1591,7 @@ "selectedTabPadInsets": "0,0,0,0", "shadow": "hc", "tabHeight": 32, + "tabAreaInsets": 0, "tabInsets": "5,10,5,10", "tabSelectionArc": 4, "tabSelectionHeight": 2, @@ -1385,7 +1687,7 @@ "TitlePane": { "Button": { "hoverBackground": "hl", - "preferredSize": "48,40" + "preferredSize": "42,42" }, "background": "hc", "inactiveBackground": "bg", @@ -1407,15 +1709,23 @@ "onBackground": "accent", "onForeground": "accent" }, - "Toolbar.Floating.background": "button", + "Toolbar": { + "horizontalToolbarInsets": "8,8,8,8", + "Floating": { + "background": "button", + "borderColor": "border" + }, + "verticalToolbarInsets": "8,8,8,8" + }, "ToolBar": { "background": "hc", "borderHandleColor": "text", "comboBoxButtonBackground": "button", "floatingForeground": "text", "foreground": "fg", - "verticalToolbarInsets": "6,6,6,6", - "horizontalToolbarInsets": "6,6,6,6" + "horizontalToolbarInsets": "6,6,6,6", + "separatorColor": "border", + "verticalToolbarInsets": "6,6,6,6" }, "ToolbarComboWidget": { "background": "button", @@ -1426,6 +1736,21 @@ "actions.settings.icon.background.color": "bg", "description.title.text.color": "fg" }, + "Tooltip": { + "Learning": { + "codeBorderColor": "cs", + "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "spanBackground": "accent70", + "spanForeground": "fg" + }, + "separatorColor": "border" + }, "ToolTip": { "arc": 6, "actions": { @@ -1445,6 +1770,7 @@ "Learning": { "background": "accent", "borderColor": "accent", + "codeForeground": "fg", "foreground": "fg", "spanBackground": "accent50", "spanForeground": "fg", @@ -1463,25 +1789,44 @@ "Button": { "hoverBackground": "table", "DragAndDrop": { - "stripeBackground": "cs", - "buttonDropBackground": "accent70" + "stripeBackground": "bg", + "buttonDropBackground": "selBg70", + "buttonDropBorderColor": "accent", + "buttonFloatingBackground": "button" }, "selectedBackground": "cs", "selectedForeground": "activeFg" }, + "DragAndDrop": { + "areaBackground": "accent50" + }, "header": { - "active.background": "second", + "active": { + "background": "second" + }, "background": "bg", - "border.background": "second", - "closeButton.background": "bg", - "tab.selected.active.background": "cs", - "tab.selected.background": "cs" + "border": { + "background": "border" + }, + "closeButton": { + "background": "bg" + }, + "tab": { + "selected": { + "active": { + "background": "cs" + }, + "background": "cs" + } + } }, "Header": { "height": 42, "background": "second", - "borderColor": "second", - "inactiveBackground": "bg" + "borderColor": "border", + "inactiveBackground": "bg", + "labelLeftRightInsets": "0,12,0,16", + "toolbarLeftRightInsets": "0,12,0,8" }, "HeaderCloseButton": { "background": "bg" @@ -1506,6 +1851,12 @@ "inactive": { "Header.background": "bg", "HeaderTab.background": "cs" + }, + "Stripe": { + "DragAndDrop": { + "separatorColor": "accent50" + }, + "separatorColor": "table" } }, "Tree": { @@ -1522,13 +1873,17 @@ "selectionForeground": "selFg", "selectionInactiveBackground": "tree", "selectionInactiveForeground": "selFg", - "textBackground": "hc" + "textBackground": "hc", + "leftChildIndent": 10, + "rightChildIndent": 5 }, - "Tree.leftChildIndent": 10, - "Tree.rightChildIndent": 5, "UIDesigner": { - "Activity.borderColor": "border", - "Canvas.background": "cs", + "Activity": { + "borderColor": "border" + }, + "Canvas": { + "background": "cs" + }, "ColorPicker": { "background": "second", "foreground": "fg" @@ -1543,49 +1898,119 @@ "borderColor": "border", "hoverBorderColor": "hl" }, - "Label.foreground": "text", - "highStroke.foreground": "fg", + "Label": { + "foreground": "text" + }, + "highStroke": { + "foreground": "fg" + }, "motion": { "AddConstraintColor": "accent", "AddConstraintPlus": "accent", - "CSPanel.SelectedBackground": "tree", - "CSPanel.SelectedFocusBackground": "selBg", - "Component.foreground": "fg", - "ConstraintSet.background": "second", - "ConstraintSetText.foreground": "text", - "CursorTextColor.foreground": "fg", - "HoverColor.disabledBackground": "dis", - "Key.selectedForeground": "accent", - "Notification.background": "notif", + "Axis": { + "lineSeparatorColor": "fg" + }, + "CSPanel": { + "SelectedBackground": "tree", + "SelectedFocusBackground": "selBg" + }, + "Component": { + "foreground": "fg" + }, + "ConstraintSet": { + "background": "second" + }, + "ConstraintSetText": { + "foreground": "text" + }, + "CursorTextColor": { + "foreground": "fg" + }, + "HoverColor": { + "disabledBackground": "dis" + }, + "Key": { + "selectedForeground": "accent" + }, + "Notification": { + "background": "notif" + }, "PositionMarkColor": "accent", - "PrimaryPanel.background": "cs", - "SecondaryPanel.background": "bg", - "SecondaryPanel.header.background": "cs", - "SecondaryPanel.header.foreground": "text", - "TimeCursor.End.selectedForeground": "accent", - "TimeCursor.Start.selectedForeground": "accent", - "TimeCursor.selectedForeground": "accent", + "PrimaryPanel": { + "background": "cs" + }, + "SecondaryPanel": { + "background": "bg", + "header": { + "background": "cs", + "foreground": "text" + } + }, + "TimeCursor": { + "End": { + "selectedForeground": "accent" + }, + "selectedForeground": "accent", + "Start": { + "selectedForeground": "accent" + } + }, "borderColor": "border", - "cs_FocusText.infoForeground": "text", - "graphLine.lineSeparatorColor": "accent", - "motionGraph.background": "bg", - "ourAvg.background": "second", - "ourCS.background": "second", - "ourCS_Border.borderColor": "border", - "ourCS_SelectedBackground.selectionInactiveBackground": "table", - "ourCS_SelectedBorder.pressedBorderColor": "hl", - "ourCS_SelectedFocusBackground.selectionForeground": "selFg", - "ourCS_SelectedFocusBorder.focusedBorderColor": "accent", - "ourCS_TextColor.foreground": "text", - "ourML_BarColor.separatorColor": "border", - "timeLine.disabledBorderColor": "border" + "cs_FocusText": { + "infoForeground": "text" + }, + "graphLine": { + "lineSeparatorColor": "accent" + }, + "Grid": { + "lineSeparatorColor": "border" + }, + "label": { + "background": "second", + "textColor": "text" + }, + "motionGraph": { + "background": "bg" + }, + "ourAvg": { + "background": "second" + }, + "ourCS": { + "background": "second" + }, + "ourCS_Border": { + "borderColor": "border" + }, + "ourCS_SelectedBackground": { + "selectionInactiveBackground": "table" + }, + "ourCS_SelectedBorder": { + "pressedBorderColor": "hl" + }, + "ourCS_SelectedFocusBackground": { + "selectionForeground": "selFg" + }, + "ourCS_SelectedFocusBorder": { + "focusedBorderColor": "accent" + }, + "ourCS_TextColor": { + "foreground": "text" + }, + "ourML_BarColor": { + "separatorColor": "border" + }, + "timeLine": { + "disabledBorderColor": "border" + } }, "PackageDetails": { "border": "accent", "infoBanner": "accent" }, "PackageSearch": { - "PackagesList.rowHeight": 28, + "PackagesList": { + "rowHeight": 28 + }, "PackageTag": { "background": "excl", "foreground": "fg", @@ -1617,7 +2042,9 @@ "lines3d": "accent", "secondaryGraphLines": "border" }, - "percent.foreground": "fg", + "percent": { + "foreground": "fg" + }, "Placeholder": { "background": "bg", "borderColor": "border", @@ -1634,9 +2061,11 @@ "warningBorderColor": "notif" }, "VersionControl": { - "FileHistory.Commit": { - "otherBranchBackground": "excl", - "selectedBranchBackground": "bg" + "FileHistory": { + "Commit": { + "otherBranchBackground": "excl", + "selectedBranchBackground": "bg" + } }, "GitCommits": { "graphColor": "hl" @@ -1660,8 +2089,13 @@ "Commit": { "currentBranchBackground": "cs", "hoveredBackground": "tree", + "selectionInactiveForeground": "fg", + "Reference": { + "foreground": "text" + }, "rowHeight": 28, - "unmatchedForeground": "text" + "unmatchedForeground": "text", + "verticalPadding": 8 } }, "MarkerPopup": { @@ -1688,30 +2122,39 @@ "foreground": "fg" }, "WelcomeScreen": { - "AssociatedComponent.background": "bg", - "Details.background": "bg", - "List": { - "background": "hc", - "selectionBackground": "selBg", - "selectionInactiveBackground": "hl" + "AssociatedComponent": { + "background": "bg" }, - "SidePanel.background": "second", "background": "bg", "borderColor": "bg", "captionBackground": "cs", "captionForeground": "fg", + "Details": { + "background": "bg" + }, "footerBackground": "cs", "footerForeground": "fg", "groupIconBorderColor": "button", "headerBackground": "bg", "headerForeground": "fg", - "separatorColor": "border", + "List": { + "background": "hc", + "selectionBackground": "selBg", + "selectionInactiveBackground": "hl" + }, "Projects": { - "actions.background": "cs", - "actions.selectionBackground": "hl", + "actions": { + "background": "cs", + "selectionBackground": "hl", + "selectionBorderColor": "accent" + }, "background": "second", "selectionBackground": "selBg", "selectionInactiveBackground": "selBg" + }, + "separatorColor": "border", + "SidePanel": { + "background": "second" } }, "Window.border": "border", diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Monokai Pro.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Monokai Pro.theme.json index de4f8a8c..f6e3c525 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Monokai Pro.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Monokai Pro.theme.json @@ -16,7 +16,7 @@ "second": "#403E41", "dis": "#5b595c", "accent": "#ffd866", - "accent2": "#ffd8662", + "acc2": "#ff6188", "accent50": "#ffd86650", "accent70": "#ffd86670", "cs": "#221F22", @@ -26,7 +26,7 @@ "hl": "#5b595c", "notif": "#363437", "hc": "#2D2A2E", - "shadow": "undefined", + "shadow": "#00000020", "white": "#FCFCFA", "blue": "#A9DC76", "red": "#FF6188", @@ -71,19 +71,25 @@ "hoverBorderColor": "accent50", "hoverSeparatorColor": "button", "pressedBackground": "accent50", - "pressedBorderColor": "accent50" + "pressedBorderColor": "accent50", + "separatorColor": "border" }, "ActionsList": { "icon.gap": 12, - "mnemonic.icon.gap": 12 + "mnemonic.icon.gap": 12, + "mnemonicInsets": "0,8,0,8", + "mnemonicsBorderInsets": "0,8,0,8", + "mnemonic.insets": "0,8,0,8" }, "ActionToolbar": { "background": "hc" }, - "AppInspector.GraphNode": { - "background": "second", - "borderColor": "border", - "focusedBorderColor": "accent" + "AppInspector": { + "GraphNode": { + "background": "second", + "borderColor": "border", + "focusedBorderColor": "accent" + } }, "AssignedMnemonic": { "background": "hl", @@ -99,13 +105,26 @@ "borderColor": "button", "foreground": "fg" }, - "BigSpinner.background": "bg", + "Banner": { + "foreground": "fg" + }, + "BigSpinner": { + "background": "bg" + }, "Bookmark": { "iconBackground": "accent", "Mnemonic": { "iconBackground": "hl", "iconBorderColor": "hl", "iconForeground": "fg" + }, + "MnemonicAssigned": { + "background": "table", + "foreground": "fg" + }, + "MnemonicCurrent": { + "background": "selBg", + "foreground": "selFg" } }, "BookmarkMnemonicAssigned": { @@ -128,13 +147,18 @@ "borderColor": "hl", "foreground": "fg" }, - "BookmarkIcon.background": "accent", - "Borders.ContrastBorderColor": "bg", - "Borders.color": "border", - "Breakpoint.iconHoverAlpha": 0.35, + "BookmarkIcon": { + "background": "accent" + }, + "Borders": { + "ContrastBorderColor": "bg", + "color": "border" + }, + "Breakpoint": { + "iconHoverAlpha": 0.35 + }, "Button": { "arc": 8, - "background": "bg", "darcula": { "borderColor": "button", "defaultBorderColor": "button", @@ -175,6 +199,7 @@ "focusedBorderColor": "accent", "foreground": "text", "highlight": "selFg", + "minimumSize": 72, "mt.background": "button", "mt.color1": "button", "mt.color2": "button", @@ -185,6 +210,12 @@ "select": "button", "shadowColor": "shadow", "shadowWidth": 0, + "Split": { + "default": { + "iconColor": "fg", + "separatorColor": "accent" + } + }, "startBackground": "table", "startBorderColor": "button", "ToolWindow": { @@ -195,11 +226,18 @@ "Tooltip.background": "notif", "Tooltip.borderColor": "border" }, + "CellEditor": { + "border": { + "width": 2 + } + }, "CheckBox": { "background": "bg", "background.selected": "accent", "borderColor": "bg", "borderColor.selected": "accent", + "border.width": 3, + "borderInsets": "4,4,4,4", "checkSignColor": "bg", "checkSignColor.selected": "bg", "checkSignColorDisabled": "bg", @@ -297,7 +335,9 @@ "foreground": "fg", "swatchesDefaultRecentColor": "fg" }, - "ComboBoxButton.background": "button", + "ComboBoxButton": { + "background": "button" + }, "ComboBox": { "ArrowButton": { "background": "button", @@ -327,14 +367,16 @@ "selectionBackground": "table", "selectionForeground": "activeFg" }, - "ComboPopup.border": "1,1,1,1,#ffd866", + "ComboPopup": { + "border": "1,1,1,1,#ffd866" + }, "CompletionPopup": { "Advertiser": { - "background": "bg", - "foreground": "fg", + "background": "second", + "foreground": "text", "borderInsets": "8,12,8,12" }, - "background": "second", + "background": "button", "foreground": "fg", "grayForeground": "text", "grayedForeground": "text", @@ -351,13 +393,20 @@ "selectionInactiveBackground": "hl", "selectionInactiveForeground": "text", "selectionInactiveInfoForeground": "text", - "selectionInfoForeground": "selFg" + "selectionInfoForeground": "selFg", + "selectionInnerInsets": "4,4,4,4" }, "ComplexPopup": { - "Header.background": "notif" + "Header": { + "background": "bg", + "insets": "12,12,12,12" + }, + "TextField": { + "inputInsets": "8,4,8,4" + } }, "Component": { - "arc": 4, + "arc": 6, "focusWidth": 2, "borderColor": "hl", "disabledBorderColor": "dis", @@ -440,7 +489,7 @@ "southPanelDivider": "bg" }, "DragAndDrop": { - "areaBackground": "tree", + "areaBackground": "selBg70", "areaBorderColor": "bg", "areaForeground": "fg", "backgroundBorderColor": "bg", @@ -453,18 +502,37 @@ "Editor": { "background": "hc", "foreground": "fg", + "Notification": { + "borderInsets": "10,12,10,12", + "WithoutStatus.borderInsets": "10,12,10,12" + }, + "ReplaceToolbar": { + "borderInsets": "4,12,4,12" + }, "shortcutForeground": "text", "SearchField": { "background": "cs", "borderInsets": "8,12,8,12" }, + "SearchReplaceModePanel": { + "borderInsets": "4,12,4,12" + }, + "SearchToolbar": { + "borderInsets": "4,12,4,12" + }, "Toolbar": { "borderColor": "border" + }, + "ToolTip": { + "border": "border", + "foreground": "fg", + "iconHoverBackground": "table", + "selectionBackground": "selBg" } }, "EditorGroupsTabs": { "background": "bg", - "borderColor": "second", + "borderColor": "border", "hoverBackground": "hl", "hoverColor": "hl", "inactiveUnderlineColor": "accent", @@ -474,6 +542,7 @@ }, "EditorPane": { "background": "hc", + "borderColor": "border", "caretForeground": "accent", "foreground": "fg", "inactiveBackground": "bg", @@ -483,21 +552,25 @@ "splitBorder": "border" }, "EditorTabs": { - "active.background": "table", - "active.foreground": "fg", - "active.underlineColor": "accent", + "active": { + "background": "table", + "foreground": "fg", + "underlineColor": "accent" + }, "background": "bg", - "borderColor": "second", "foreground": "fg", "hoverBackground": "hl", "hoverColor": "hl", "hoverMaskColor": "hl", "inactive.maskColor": "bg", - "inactiveColoredFileBackground": "bg", + "inactiveColoredFileBackground": "bg70", "inactiveMaskColor": "bg", "inactiveUnderlineColor": "dis", "selectedBackground": "table", "selectedForeground": "fg", + "tabContentInsetsActionsLeft": "0,6,0,6", + "tabContentInsetsActionsNone": "0,6,0,6", + "tabContentInsetsActionsRight": "0,6,0,6", "tabInsets": "-10,10,-10,10", "underlineColor": "accent", "underlineHeight": 3, @@ -515,6 +588,10 @@ "Gray": "excl", "excluded": "excl" }, + "FindPopup": { + "scopesPanelInsets": "4,16,4,16", + "bottomPanelInsets": "4,10,4,10" + }, "FlameGraph": { "JVMBackground": "#89DDF7", "JVMFocusBackground": "#82AAFF", @@ -555,15 +632,34 @@ "selectionForeground.unfocused": "selFg" }, "GotItTooltip": { + "animationBackground": "notif", "background": "notif", "borderColor": "notif", + "Button": { + "contrastBackground": "cs", + "endBackground": "button", + "foreground": "fg", + "startBackground": "button" + }, + "codeBackground": "cs", + "codeBorderColor": "bg", + "codeForeground": "fg", "endBackground": "button", "endBorderColor": "button", "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "imageBorderColor": "notif", "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "shortcutBackground": "notif", + "shortcutBorderColor": "border", "shortcutForeground": "text", "startBackground": "button", - "startBorderColor": "button" + "startBorderColor": "button", + "stepForeground": "text" }, "Group": { "disabledSeparatorColor": "border", @@ -587,7 +683,10 @@ "borderColor": "border", "defaultTextBorderInsets": "16,16,16,16", "foreground": "fg", + "fontSizeDelta": 0, + "horizontalGap": 10, "infoForeground": "text", + "maxWidth": 250, "shortcutForeground": "text", "shortcutTextColor": "text", "smallTextBorderInsets": "8,12,8,12", @@ -601,18 +700,29 @@ "MqTag": "text", "Tag": "text" }, - "Hyperlink.linkColor": "accent", - "IconBadge": { - "infoBackground": "accent" + "Hyperlink": { + "linkColor": "accent" + }, + "IconBadge": { + "infoBackground": "accent", + "newUiBackground": "accent" + }, + "IdeStatusBar": { + "border": "4,4,4,4" + }, + "InformationHint": { + "borderColor": "border" }, - "IdeStatusBar.border": "4,4,4,4", - "InformationHint.borderColor": "border", "inactiveCaption": "second", "inactiveCaptionBorder": "bg", "inactiveCaptionText": "text", "info": "text", "infoPanelForeground": "text", "infoText": "text", + "InlineBanner": { + "hoverBackground": "accent70", + "pressedBackground": "accent70" + }, "InplaceRefactoringPopup": { "background": "bg", "borderColor": "bg" @@ -622,10 +732,13 @@ "foreground": "fg" }, "InternalFrame": { + "activeTitleBackground": "bg", "activeTitleForeground": "fg", "background": "bg", "inactiveTitleBackground": "bg", - "inactiveTitleForeground": "text" + "inactiveTitleForeground": "text", + "optionDialogBackground": "bg", + "paletteBackground": "bg" }, "Label": { "background": "bg", @@ -676,20 +789,22 @@ "hoverBackground": "hl", "leftRightInset": 8, "separatorColor": "border", - "separatorInset": 4 + "separatorInset": 8 }, "foreground": "fg", "hoverBackground": "hl", "hoverInactiveBackground": "table", - "Line.hoverBackground": "selBg", + "Line": { + "hoverBackground": "selBg" + }, "rowHeight": "28", "selectionBackground": "tree", "selectionForeground": "selFg", "selectionInactiveBackground": "table", "selectionInactiveForeground": "activeFg", "Tag": { - "background": "button", - "foreground": "fg" + "foreground": "fg", + "background": "button" } }, "LiveIndicator": { @@ -703,31 +818,60 @@ "background": "hc", "foreground": "fg", "selectionForeground": "activeFg", - "selectionBackground": "selBg" + "selectionBackground": "selBg", + "transparentSelectionBackground": "tree" }, "MainToolbar": { "background": "bg", "Button": { - "buttonInsets": "0,0,0,0" + "buttonInsets": "0,4,0,4", + "iconSize": 20, + "size": "28,28" }, "Dropdown": { "borderInsets": "6,12,6,12", "background": "bg", "foreground": "fg", "hoverBackground": "hl", - "pressedBackground": "table" + "pressedBackground": "table", + "transparentHoverBackground": "accent70" }, + "foreground": "fg", "hoverBackground": "hl", "Icon": { - "borderInsets": "10,10,10,10", + "borderInsets": "4,4,4,4", "background": "bg", "hoverBackground": "hl", + "insets": "5,4,5,4", "pressedBackground": "table" }, "inactiveBackground": "bg", "pressedBackground": "table", - "separatorColor": "border" + "separatorColor": "border", + "SplitDropdown": { + "borderInsets": "6,6,6,6" + } }, + "MainWindow": { + "FullScreeControl": { + "Background": "hl" + }, + "Tab": { + "background": "bg", + "borderColor": "bg", + "foreground": "fg", + "hoverBackground": "hl", + "hoverForeground": "fg", + "selectedBackground": "selBg", + "selectedForeground": "selFg", + "selectedInactiveBackground": "excl", + "separatorColor": "border" + } + }, + "ManagedIdeBadgeBorder": "border", + "ManagedIdeBadgeBackground": "bg", + "ManagedIdeBadgeBackgroundHover": "accent70", + "ManagedIdeMenuItemHover": "selBg", "material": { "background": "bg", "branchColor": "fg", @@ -785,8 +929,12 @@ "disabledBackground": "bg", "disabledForeground": "dis", "foreground": "fg", + "insets": "0,4,0,4", "selectionBackground": "selBg", - "selectionForeground": "activeFg" + "selectionForeground": "activeFg", + "Selection": { + "arc": 8 + } }, "MlModelBinding.Viewer.CodeEditor.background": "bg", "MnemonicIcon": { @@ -797,6 +945,9 @@ "NavBar": { "arrowColor": "fg", "borderColor": "bg", + "Breadcrumbs": { + "itemInsets": "4,2,4,2" + }, "selectedColor": "accent" }, "NewClass": { @@ -806,15 +957,21 @@ "SearchField": { "background": "cs" }, - "separatorWidth": 6 + "separatorWidth": 10 }, "NewPSD.warning": "accent", + "NewUiOnboarding": { + "Dialog": { + "background": "second" + } + }, "Notification": { "arc": 16, "Error.foreground": "accent", "Link.foreground": "accent", "background": "notif", - "borderColor": "notif", + "borderColor": "border", + "borderInsets": "4,4,4,4", "errorBackground": "notif", "errorBorderColor": "notif", "errorForeground": "accent", @@ -855,18 +1012,27 @@ "ToolWindowWarning": { "foreground": "fg", "background": "notifWarn" + }, + "WelcomeScreen": { + "separatorColor": "border" } }, "Notifications": { "background": "notif", - "borderColor": "notif" + "borderColor": "border" }, "NotificationsToolwindow": { - "Notification.hoverBackground": "tree", - "newNotification.background": "notif", - "newNotification.hoverBackground": "tree" + "Notification": { + "hoverBackground": "tree" + }, + "newNotification": { + "background": "notif", + "hoverBackground": "tree" + } + }, + "OnePixelDivider": { + "background": "border" }, - "OnePixelDivider.background": "border", "OptionPane": { "background": "bg", "foreground": "fg", @@ -882,7 +1048,6 @@ "focusedColor": "accent" }, "Panel": { - "background": "bg", "foreground": "fg", "mouseShortcutBackground": "bg" }, @@ -911,16 +1076,6 @@ "Plugins": { "background": "bg", "borderColor": "border", - "disabledForeground": "dis", - "eapTagBackground": "hl", - "hoverBackground": "hl", - "lightSelectionBackground": "table", - "paidTagBackground": "hl", - "selectionBackground": "selBg", - "selectionForeground": "selFg", - "tagBackground": "hl", - "tagForeground": "accent", - "trialTagBackground": "hl", "Button": { "installBackground": "button", "installBorderColor": "button", @@ -928,10 +1083,15 @@ "installFillForeground": "dis", "installFocusedBackground": "hl", "installForeground": "fg", - "updateBackground": "accent", + "updateBackground": "button", "updateBorderColor": "button", "updateForeground": "fg" }, + "disabledForeground": "dis", + "eapTagBackground": "hl", + "hoverBackground": "hl", + "lightSelectionBackground": "table", + "paidTagBackground": "hl", "ScreenshotPagination": { "CurrentImage.fillColor": "accent" }, @@ -943,10 +1103,20 @@ "background": "second", "foreground": "fg" }, + "selectionBackground": "selBg", + "selectionForeground": "selFg", + "suggestedLabelBackground": "button", + "tagBackground": "hl", + "tagForeground": "accent", + "trialTagBackground": "hl", "Tab": { - "active.background": "table", - "active.foreground": "activeFg", - "hover.background": "table", + "active": { + "background": "table", + "foreground": "activeFg" + }, + "hover": { + "background": "table" + }, "hoverBackground": "table", "selectedBackground": "table", "selectedForeground": "selFg" @@ -954,6 +1124,7 @@ }, "Popup": { "Advertiser": { + "borderColor": "border", "borderInsets": "6,20,6,20", "background": "bg", "borderColor": "bg", @@ -968,24 +1139,33 @@ "color": "cs", "inactiveColor": "bg" }, - "background": "notif", + "background": "bg", "borderColor": "cs", "borderWidth": 0, "inactiveBorderColor": "bg", "innerBorderColor": "second", "Header": { "activeBackground": "bg", + "activeForeground": "fg", "inactiveBackground": "cs", - "inactiveForeground": "text" + "inactiveForeground": "dis", + "insets": "12,10,12,10" }, + "mnemonicForeground": "text", "paintBorder": false, "preferences": { "background": "bg", "borderColor": "bg", "foreground": "fg" }, - "Selection.arc": 8, - "Selection.leftRightInset": 8, + "SearchField": { + "borderInsets": "4,4,4,4", + "inputInsets": "4,4,4,4" + }, + "Selection": { + "arc": 8, + "leftRightInset": 8 + }, "Separator": { "foreground": "fg", "color": "border" @@ -1003,8 +1183,14 @@ "background": "bg", "borderWidth": 1, "border": "8,8,8,8", + "borderInsets": "10,10,10,10", "borderCornerRadius": 8, + "borderCornerRadiusX": 8, + "borderCornerRadiusY": 8, + "borderWidth": 1, "foreground": "fg", + "leftBorderWidth": 8, + "rightBorderWidth": 8, "Selection": { "arc": 8, "innerInsets": "8,2,8,2" @@ -1013,12 +1199,35 @@ "translucentBackground": "bg" }, "PopupMenuSeparator": { + "borderCornerRadius": 8, "height": 10, "stripeWidth": 2, "stripeIndent": 5, "withToEdge": 4, "borderCornerRadius": 8 }, + "PresentationAssistant": { + "Bright": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + }, + "Pale": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + } + }, + "Profiler": { + "neutralLifecycleEvent": "second", + "trackBackground": "button" + }, "ProgressBar": { "background": "bg", "foreground": "accent", @@ -1062,29 +1271,106 @@ "selectionBackground": "selBg", "selectionForeground": "selFg" }, + "Review": { + "Avatar": { + "Border": { + "Status": { + "Accepted": "accent", + "NeedReview": "hl" + } + } + }, + "Branch": { + "Background": "button", + "Background.Hover": "hl" + }, + "ChatItem": { + "BubblePanel": { + "Border": "button" + }, + "Hover": "table" + }, + "Editor": { + "Line": { + "Status": { + "Marker": "accent" + } + } + }, + "MetaInfo": { + "StatusLine": { + "Gray": "excl", + "Blue": "accent" + } + }, + "State": { + "Background": "second", + "Foreground": "fg" + }, + "Timeline": { + "Thread": { + "Diff": { + "AnchorLine": "table" + } + } + } + }, "ReviewList": { "state.background": "second", "state.foreground": "fg" }, + "RunToolbar": { + "Debug": { + "activeBackground": "hl" + }, + "Profile": { + "activeBackground": "hl" + }, + "Run": { + "activeBackground": "hl" + } + }, "RunWidget": { "background": "button", - "Debug.activeBackground": "hl", - "foreground": "fg", - "hoverBackground": "table", - "pressedBackground": "hl", - "Profile.activeBackground": "hl", + "Debug": { + "activeBackground": "hl" + }, + "foreground": "selFg", + "hoverBackground": "hl", + "iconColor": "fg", + "leftPressedBackground": "table", + "leftHoverBackground": "hl", + "pressedBackground": "table", + "Profile": { + "activeBackground": "hl" + }, "runningBackground": "hl", - "runningForeground": "selFg", - "Run.activeBackground": "hl", + "Run": { + "activeBackground": "hl" + }, "Running": { "background": "hl", - "foreground": "selFg", "leftHoverBackground": "hl", - "leftPressedBackground": "hl" + "leftPressedBackground": "table" }, - "separatorColor": "border" + "runningBackground": "hl", + "runningForeground": "selFg", + "runIconColor": "accent", + "separatorColor": "border", + "stopBackground": "second", + "StopButton": { + "leftHoverBackground": "hl", + "leftPressedBackground": "second" + }, + "toolbarHeight": 30, + "toolbarBorderHeight": 4 + }, + "ScreenView": { + "borderColor": "border", + "defaultBorderColor": "border", + "hoveredBorderColor": "hl", + "selectedBorderColor": "selBg" }, - "ScreenView.borderColor": "border", "scrollbar": "bg", "ScrollBar": { "background": "bg", @@ -1186,9 +1472,9 @@ }, "SegmentedButton": { "focusedSelectedButtonColor": "hl", + "selectedEndBorderColor": "accent", "selectedButtonColor": "button", - "selectedStartBorderColor": "border", - "selectedEndBorderColor": "border" + "selectedStartBorderColor": "accent" }, "Separator": { "background": "second", @@ -1198,6 +1484,7 @@ "Settings": { "Spotlight.borderColor": "accent" }, + "shortcutForeground": "text", "SidePanel": { "background": "hc" }, @@ -1222,6 +1509,7 @@ "foreground": "fg" }, "Spinner": { + "arrowButtonInsets": "1,1,1,1", "background": "bg", "border": "4,4,4,4", "disabledBackground": "excl", @@ -1232,11 +1520,16 @@ "background": "bg", "highlight": "hc" }, - "SplitPaneDivider.draggingColor": "second", - "StateWidget.activeBackground": "button", + "SplitPaneDivider": { + "draggingColor": "second" + }, + "StateWidget": { + "activeBackground": "button" + }, "StatusBar": { - "background": "bg", + "background": "bg10", "Breadcrumbs": { + "chevronInset": 0, "floatingBackground": "tree", "floatingForeground": "fg", "floatingToolbarInsets": "8,12,8,12", @@ -1244,6 +1537,7 @@ "hoverBackground": "tree", "hoverForeground": "fg", "itemBackgroundInsets": "2,4,2,4", + "itemInsets": 0, "selectionBackground": "selBg", "selectionForeground": "activeFg", "selectionInactiveBackground": "button", @@ -1264,6 +1558,13 @@ "widgetInsets": "8,12,8,12" } }, + "StripeToolbar": { + "Button": { + "iconSize": 20, + "iconPadding": 8, + "size": "40,40" + } + }, "TabbedPane": { "background": "bg", "borderColor": "hc", @@ -1290,6 +1591,7 @@ "selectedTabPadInsets": "0,0,0,0", "shadow": "hc", "tabHeight": 32, + "tabAreaInsets": 0, "tabInsets": "5,10,5,10", "tabSelectionArc": 4, "tabSelectionHeight": 2, @@ -1385,7 +1687,7 @@ "TitlePane": { "Button": { "hoverBackground": "hl", - "preferredSize": "48,40" + "preferredSize": "42,42" }, "background": "hc", "inactiveBackground": "bg", @@ -1407,15 +1709,23 @@ "onBackground": "accent", "onForeground": "accent" }, - "Toolbar.Floating.background": "button", + "Toolbar": { + "horizontalToolbarInsets": "8,8,8,8", + "Floating": { + "background": "button", + "borderColor": "border" + }, + "verticalToolbarInsets": "8,8,8,8" + }, "ToolBar": { "background": "hc", "borderHandleColor": "text", "comboBoxButtonBackground": "button", "floatingForeground": "text", "foreground": "fg", - "verticalToolbarInsets": "6,6,6,6", - "horizontalToolbarInsets": "6,6,6,6" + "horizontalToolbarInsets": "6,6,6,6", + "separatorColor": "border", + "verticalToolbarInsets": "6,6,6,6" }, "ToolbarComboWidget": { "background": "button", @@ -1426,6 +1736,21 @@ "actions.settings.icon.background.color": "bg", "description.title.text.color": "fg" }, + "Tooltip": { + "Learning": { + "codeBorderColor": "cs", + "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "spanBackground": "accent70", + "spanForeground": "fg" + }, + "separatorColor": "border" + }, "ToolTip": { "arc": 6, "actions": { @@ -1445,6 +1770,7 @@ "Learning": { "background": "accent", "borderColor": "accent", + "codeForeground": "fg", "foreground": "fg", "spanBackground": "accent50", "spanForeground": "fg", @@ -1463,25 +1789,44 @@ "Button": { "hoverBackground": "table", "DragAndDrop": { - "stripeBackground": "cs", - "buttonDropBackground": "accent70" + "stripeBackground": "bg", + "buttonDropBackground": "selBg70", + "buttonDropBorderColor": "accent", + "buttonFloatingBackground": "button" }, "selectedBackground": "cs", "selectedForeground": "activeFg" }, + "DragAndDrop": { + "areaBackground": "accent50" + }, "header": { - "active.background": "second", + "active": { + "background": "second" + }, "background": "bg", - "border.background": "second", - "closeButton.background": "bg", - "tab.selected.active.background": "cs", - "tab.selected.background": "cs" + "border": { + "background": "border" + }, + "closeButton": { + "background": "bg" + }, + "tab": { + "selected": { + "active": { + "background": "cs" + }, + "background": "cs" + } + } }, "Header": { "height": 42, "background": "second", - "borderColor": "second", - "inactiveBackground": "bg" + "borderColor": "border", + "inactiveBackground": "bg", + "labelLeftRightInsets": "0,12,0,16", + "toolbarLeftRightInsets": "0,12,0,8" }, "HeaderCloseButton": { "background": "bg" @@ -1506,6 +1851,12 @@ "inactive": { "Header.background": "bg", "HeaderTab.background": "cs" + }, + "Stripe": { + "DragAndDrop": { + "separatorColor": "accent50" + }, + "separatorColor": "table" } }, "Tree": { @@ -1522,13 +1873,17 @@ "selectionForeground": "selFg", "selectionInactiveBackground": "tree", "selectionInactiveForeground": "selFg", - "textBackground": "hc" + "textBackground": "hc", + "leftChildIndent": 10, + "rightChildIndent": 5 }, - "Tree.leftChildIndent": 10, - "Tree.rightChildIndent": 5, "UIDesigner": { - "Activity.borderColor": "border", - "Canvas.background": "cs", + "Activity": { + "borderColor": "border" + }, + "Canvas": { + "background": "cs" + }, "ColorPicker": { "background": "second", "foreground": "fg" @@ -1543,49 +1898,119 @@ "borderColor": "border", "hoverBorderColor": "hl" }, - "Label.foreground": "text", - "highStroke.foreground": "fg", + "Label": { + "foreground": "text" + }, + "highStroke": { + "foreground": "fg" + }, "motion": { "AddConstraintColor": "accent", "AddConstraintPlus": "accent", - "CSPanel.SelectedBackground": "tree", - "CSPanel.SelectedFocusBackground": "selBg", - "Component.foreground": "fg", - "ConstraintSet.background": "second", - "ConstraintSetText.foreground": "text", - "CursorTextColor.foreground": "fg", - "HoverColor.disabledBackground": "dis", - "Key.selectedForeground": "accent", - "Notification.background": "notif", + "Axis": { + "lineSeparatorColor": "fg" + }, + "CSPanel": { + "SelectedBackground": "tree", + "SelectedFocusBackground": "selBg" + }, + "Component": { + "foreground": "fg" + }, + "ConstraintSet": { + "background": "second" + }, + "ConstraintSetText": { + "foreground": "text" + }, + "CursorTextColor": { + "foreground": "fg" + }, + "HoverColor": { + "disabledBackground": "dis" + }, + "Key": { + "selectedForeground": "accent" + }, + "Notification": { + "background": "notif" + }, "PositionMarkColor": "accent", - "PrimaryPanel.background": "cs", - "SecondaryPanel.background": "bg", - "SecondaryPanel.header.background": "cs", - "SecondaryPanel.header.foreground": "text", - "TimeCursor.End.selectedForeground": "accent", - "TimeCursor.Start.selectedForeground": "accent", - "TimeCursor.selectedForeground": "accent", + "PrimaryPanel": { + "background": "cs" + }, + "SecondaryPanel": { + "background": "bg", + "header": { + "background": "cs", + "foreground": "text" + } + }, + "TimeCursor": { + "End": { + "selectedForeground": "accent" + }, + "selectedForeground": "accent", + "Start": { + "selectedForeground": "accent" + } + }, "borderColor": "border", - "cs_FocusText.infoForeground": "text", - "graphLine.lineSeparatorColor": "accent", - "motionGraph.background": "bg", - "ourAvg.background": "second", - "ourCS.background": "second", - "ourCS_Border.borderColor": "border", - "ourCS_SelectedBackground.selectionInactiveBackground": "table", - "ourCS_SelectedBorder.pressedBorderColor": "hl", - "ourCS_SelectedFocusBackground.selectionForeground": "selFg", - "ourCS_SelectedFocusBorder.focusedBorderColor": "accent", - "ourCS_TextColor.foreground": "text", - "ourML_BarColor.separatorColor": "border", - "timeLine.disabledBorderColor": "border" + "cs_FocusText": { + "infoForeground": "text" + }, + "graphLine": { + "lineSeparatorColor": "accent" + }, + "Grid": { + "lineSeparatorColor": "border" + }, + "label": { + "background": "second", + "textColor": "text" + }, + "motionGraph": { + "background": "bg" + }, + "ourAvg": { + "background": "second" + }, + "ourCS": { + "background": "second" + }, + "ourCS_Border": { + "borderColor": "border" + }, + "ourCS_SelectedBackground": { + "selectionInactiveBackground": "table" + }, + "ourCS_SelectedBorder": { + "pressedBorderColor": "hl" + }, + "ourCS_SelectedFocusBackground": { + "selectionForeground": "selFg" + }, + "ourCS_SelectedFocusBorder": { + "focusedBorderColor": "accent" + }, + "ourCS_TextColor": { + "foreground": "text" + }, + "ourML_BarColor": { + "separatorColor": "border" + }, + "timeLine": { + "disabledBorderColor": "border" + } }, "PackageDetails": { "border": "accent", "infoBanner": "accent" }, "PackageSearch": { - "PackagesList.rowHeight": 28, + "PackagesList": { + "rowHeight": 28 + }, "PackageTag": { "background": "excl", "foreground": "fg", @@ -1617,7 +2042,9 @@ "lines3d": "accent", "secondaryGraphLines": "border" }, - "percent.foreground": "fg", + "percent": { + "foreground": "fg" + }, "Placeholder": { "background": "bg", "borderColor": "border", @@ -1634,9 +2061,11 @@ "warningBorderColor": "notif" }, "VersionControl": { - "FileHistory.Commit": { - "otherBranchBackground": "excl", - "selectedBranchBackground": "bg" + "FileHistory": { + "Commit": { + "otherBranchBackground": "excl", + "selectedBranchBackground": "bg" + } }, "GitCommits": { "graphColor": "hl" @@ -1660,8 +2089,13 @@ "Commit": { "currentBranchBackground": "cs", "hoveredBackground": "tree", + "selectionInactiveForeground": "fg", + "Reference": { + "foreground": "text" + }, "rowHeight": 28, - "unmatchedForeground": "text" + "unmatchedForeground": "text", + "verticalPadding": 8 } }, "MarkerPopup": { @@ -1688,30 +2122,39 @@ "foreground": "fg" }, "WelcomeScreen": { - "AssociatedComponent.background": "bg", - "Details.background": "bg", - "List": { - "background": "hc", - "selectionBackground": "selBg", - "selectionInactiveBackground": "hl" + "AssociatedComponent": { + "background": "bg" }, - "SidePanel.background": "second", "background": "bg", "borderColor": "bg", "captionBackground": "cs", "captionForeground": "fg", + "Details": { + "background": "bg" + }, "footerBackground": "cs", "footerForeground": "fg", "groupIconBorderColor": "button", "headerBackground": "bg", "headerForeground": "fg", - "separatorColor": "border", + "List": { + "background": "hc", + "selectionBackground": "selBg", + "selectionInactiveBackground": "hl" + }, "Projects": { - "actions.background": "cs", - "actions.selectionBackground": "hl", + "actions": { + "background": "cs", + "selectionBackground": "hl", + "selectionBorderColor": "accent" + }, "background": "second", "selectionBackground": "selBg", "selectionInactiveBackground": "selBg" + }, + "separatorColor": "border", + "SidePanel": { + "background": "second" } }, "Window.border": "border", diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Moonlight.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Moonlight.theme.json index 7c3020e0..436084a9 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Moonlight.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Moonlight.theme.json @@ -16,7 +16,7 @@ "second": "#2f334d", "dis": "#828bb8", "accent": "#74a0f1", - "accent2": "#74a0f12", + "acc2": "#ffdb8e", "accent50": "#74a0f150", "accent70": "#74a0f170", "cs": "#191a2a", @@ -26,7 +26,7 @@ "hl": "#444a73", "notif": "#191a2a", "hc": "#222436", - "shadow": "undefined", + "shadow": "#00000020", "white": "#c8d3f5", "blue": "#70b0ff", "red": "#ff757f", @@ -71,19 +71,25 @@ "hoverBorderColor": "accent50", "hoverSeparatorColor": "button", "pressedBackground": "accent50", - "pressedBorderColor": "accent50" + "pressedBorderColor": "accent50", + "separatorColor": "border" }, "ActionsList": { "icon.gap": 12, - "mnemonic.icon.gap": 12 + "mnemonic.icon.gap": 12, + "mnemonicInsets": "0,8,0,8", + "mnemonicsBorderInsets": "0,8,0,8", + "mnemonic.insets": "0,8,0,8" }, "ActionToolbar": { "background": "hc" }, - "AppInspector.GraphNode": { - "background": "second", - "borderColor": "border", - "focusedBorderColor": "accent" + "AppInspector": { + "GraphNode": { + "background": "second", + "borderColor": "border", + "focusedBorderColor": "accent" + } }, "AssignedMnemonic": { "background": "hl", @@ -99,13 +105,26 @@ "borderColor": "button", "foreground": "fg" }, - "BigSpinner.background": "bg", + "Banner": { + "foreground": "fg" + }, + "BigSpinner": { + "background": "bg" + }, "Bookmark": { "iconBackground": "accent", "Mnemonic": { "iconBackground": "hl", "iconBorderColor": "hl", "iconForeground": "fg" + }, + "MnemonicAssigned": { + "background": "table", + "foreground": "fg" + }, + "MnemonicCurrent": { + "background": "selBg", + "foreground": "selFg" } }, "BookmarkMnemonicAssigned": { @@ -128,13 +147,18 @@ "borderColor": "hl", "foreground": "fg" }, - "BookmarkIcon.background": "accent", - "Borders.ContrastBorderColor": "bg", - "Borders.color": "border", - "Breakpoint.iconHoverAlpha": 0.35, + "BookmarkIcon": { + "background": "accent" + }, + "Borders": { + "ContrastBorderColor": "bg", + "color": "border" + }, + "Breakpoint": { + "iconHoverAlpha": 0.35 + }, "Button": { "arc": 8, - "background": "bg", "darcula": { "borderColor": "button", "defaultBorderColor": "button", @@ -175,6 +199,7 @@ "focusedBorderColor": "accent", "foreground": "text", "highlight": "selFg", + "minimumSize": 72, "mt.background": "button", "mt.color1": "button", "mt.color2": "button", @@ -185,6 +210,12 @@ "select": "button", "shadowColor": "shadow", "shadowWidth": 0, + "Split": { + "default": { + "iconColor": "fg", + "separatorColor": "accent" + } + }, "startBackground": "table", "startBorderColor": "button", "ToolWindow": { @@ -195,11 +226,18 @@ "Tooltip.background": "notif", "Tooltip.borderColor": "border" }, + "CellEditor": { + "border": { + "width": 2 + } + }, "CheckBox": { "background": "bg", "background.selected": "accent", "borderColor": "bg", "borderColor.selected": "accent", + "border.width": 3, + "borderInsets": "4,4,4,4", "checkSignColor": "bg", "checkSignColor.selected": "bg", "checkSignColorDisabled": "bg", @@ -297,7 +335,9 @@ "foreground": "fg", "swatchesDefaultRecentColor": "fg" }, - "ComboBoxButton.background": "button", + "ComboBoxButton": { + "background": "button" + }, "ComboBox": { "ArrowButton": { "background": "button", @@ -327,14 +367,16 @@ "selectionBackground": "table", "selectionForeground": "activeFg" }, - "ComboPopup.border": "1,1,1,1,#74a0f1", + "ComboPopup": { + "border": "1,1,1,1,#74a0f1" + }, "CompletionPopup": { "Advertiser": { - "background": "bg", - "foreground": "fg", + "background": "second", + "foreground": "text", "borderInsets": "8,12,8,12" }, - "background": "second", + "background": "button", "foreground": "fg", "grayForeground": "text", "grayedForeground": "text", @@ -351,13 +393,20 @@ "selectionInactiveBackground": "hl", "selectionInactiveForeground": "text", "selectionInactiveInfoForeground": "text", - "selectionInfoForeground": "selFg" + "selectionInfoForeground": "selFg", + "selectionInnerInsets": "4,4,4,4" }, "ComplexPopup": { - "Header.background": "notif" + "Header": { + "background": "bg", + "insets": "12,12,12,12" + }, + "TextField": { + "inputInsets": "8,4,8,4" + } }, "Component": { - "arc": 4, + "arc": 6, "focusWidth": 2, "borderColor": "hl", "disabledBorderColor": "dis", @@ -440,7 +489,7 @@ "southPanelDivider": "bg" }, "DragAndDrop": { - "areaBackground": "tree", + "areaBackground": "selBg70", "areaBorderColor": "bg", "areaForeground": "fg", "backgroundBorderColor": "bg", @@ -453,18 +502,37 @@ "Editor": { "background": "hc", "foreground": "fg", + "Notification": { + "borderInsets": "10,12,10,12", + "WithoutStatus.borderInsets": "10,12,10,12" + }, + "ReplaceToolbar": { + "borderInsets": "4,12,4,12" + }, "shortcutForeground": "text", "SearchField": { "background": "cs", "borderInsets": "8,12,8,12" }, + "SearchReplaceModePanel": { + "borderInsets": "4,12,4,12" + }, + "SearchToolbar": { + "borderInsets": "4,12,4,12" + }, "Toolbar": { "borderColor": "border" + }, + "ToolTip": { + "border": "border", + "foreground": "fg", + "iconHoverBackground": "table", + "selectionBackground": "selBg" } }, "EditorGroupsTabs": { "background": "bg", - "borderColor": "second", + "borderColor": "border", "hoverBackground": "hl", "hoverColor": "hl", "inactiveUnderlineColor": "accent", @@ -474,6 +542,7 @@ }, "EditorPane": { "background": "hc", + "borderColor": "border", "caretForeground": "accent", "foreground": "fg", "inactiveBackground": "bg", @@ -483,21 +552,25 @@ "splitBorder": "border" }, "EditorTabs": { - "active.background": "table", - "active.foreground": "fg", - "active.underlineColor": "accent", + "active": { + "background": "table", + "foreground": "fg", + "underlineColor": "accent" + }, "background": "bg", - "borderColor": "second", "foreground": "fg", "hoverBackground": "hl", "hoverColor": "hl", "hoverMaskColor": "hl", "inactive.maskColor": "bg", - "inactiveColoredFileBackground": "bg", + "inactiveColoredFileBackground": "bg70", "inactiveMaskColor": "bg", "inactiveUnderlineColor": "dis", "selectedBackground": "table", "selectedForeground": "fg", + "tabContentInsetsActionsLeft": "0,6,0,6", + "tabContentInsetsActionsNone": "0,6,0,6", + "tabContentInsetsActionsRight": "0,6,0,6", "tabInsets": "-10,10,-10,10", "underlineColor": "accent", "underlineHeight": 3, @@ -515,6 +588,10 @@ "Gray": "excl", "excluded": "excl" }, + "FindPopup": { + "scopesPanelInsets": "4,16,4,16", + "bottomPanelInsets": "4,10,4,10" + }, "FlameGraph": { "JVMBackground": "#89DDF7", "JVMFocusBackground": "#82AAFF", @@ -555,15 +632,34 @@ "selectionForeground.unfocused": "selFg" }, "GotItTooltip": { + "animationBackground": "notif", "background": "notif", "borderColor": "notif", + "Button": { + "contrastBackground": "cs", + "endBackground": "button", + "foreground": "fg", + "startBackground": "button" + }, + "codeBackground": "cs", + "codeBorderColor": "bg", + "codeForeground": "fg", "endBackground": "button", "endBorderColor": "button", "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "imageBorderColor": "notif", "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "shortcutBackground": "notif", + "shortcutBorderColor": "border", "shortcutForeground": "text", "startBackground": "button", - "startBorderColor": "button" + "startBorderColor": "button", + "stepForeground": "text" }, "Group": { "disabledSeparatorColor": "border", @@ -587,7 +683,10 @@ "borderColor": "border", "defaultTextBorderInsets": "16,16,16,16", "foreground": "fg", + "fontSizeDelta": 0, + "horizontalGap": 10, "infoForeground": "text", + "maxWidth": 250, "shortcutForeground": "text", "shortcutTextColor": "text", "smallTextBorderInsets": "8,12,8,12", @@ -601,18 +700,29 @@ "MqTag": "text", "Tag": "text" }, - "Hyperlink.linkColor": "accent", - "IconBadge": { - "infoBackground": "accent" + "Hyperlink": { + "linkColor": "accent" + }, + "IconBadge": { + "infoBackground": "accent", + "newUiBackground": "accent" + }, + "IdeStatusBar": { + "border": "4,4,4,4" + }, + "InformationHint": { + "borderColor": "border" }, - "IdeStatusBar.border": "4,4,4,4", - "InformationHint.borderColor": "border", "inactiveCaption": "second", "inactiveCaptionBorder": "bg", "inactiveCaptionText": "text", "info": "text", "infoPanelForeground": "text", "infoText": "text", + "InlineBanner": { + "hoverBackground": "accent70", + "pressedBackground": "accent70" + }, "InplaceRefactoringPopup": { "background": "bg", "borderColor": "bg" @@ -622,10 +732,13 @@ "foreground": "fg" }, "InternalFrame": { + "activeTitleBackground": "bg", "activeTitleForeground": "fg", "background": "bg", "inactiveTitleBackground": "bg", - "inactiveTitleForeground": "text" + "inactiveTitleForeground": "text", + "optionDialogBackground": "bg", + "paletteBackground": "bg" }, "Label": { "background": "bg", @@ -676,20 +789,22 @@ "hoverBackground": "hl", "leftRightInset": 8, "separatorColor": "border", - "separatorInset": 4 + "separatorInset": 8 }, "foreground": "fg", "hoverBackground": "hl", "hoverInactiveBackground": "table", - "Line.hoverBackground": "selBg", + "Line": { + "hoverBackground": "selBg" + }, "rowHeight": "28", "selectionBackground": "tree", "selectionForeground": "selFg", "selectionInactiveBackground": "table", "selectionInactiveForeground": "activeFg", "Tag": { - "background": "button", - "foreground": "fg" + "foreground": "fg", + "background": "button" } }, "LiveIndicator": { @@ -703,31 +818,60 @@ "background": "hc", "foreground": "fg", "selectionForeground": "activeFg", - "selectionBackground": "selBg" + "selectionBackground": "selBg", + "transparentSelectionBackground": "tree" }, "MainToolbar": { "background": "bg", "Button": { - "buttonInsets": "0,0,0,0" + "buttonInsets": "0,4,0,4", + "iconSize": 20, + "size": "28,28" }, "Dropdown": { "borderInsets": "6,12,6,12", "background": "bg", "foreground": "fg", "hoverBackground": "hl", - "pressedBackground": "table" + "pressedBackground": "table", + "transparentHoverBackground": "accent70" }, + "foreground": "fg", "hoverBackground": "hl", "Icon": { - "borderInsets": "10,10,10,10", + "borderInsets": "4,4,4,4", "background": "bg", "hoverBackground": "hl", + "insets": "5,4,5,4", "pressedBackground": "table" }, "inactiveBackground": "bg", "pressedBackground": "table", - "separatorColor": "border" + "separatorColor": "border", + "SplitDropdown": { + "borderInsets": "6,6,6,6" + } }, + "MainWindow": { + "FullScreeControl": { + "Background": "hl" + }, + "Tab": { + "background": "bg", + "borderColor": "bg", + "foreground": "fg", + "hoverBackground": "hl", + "hoverForeground": "fg", + "selectedBackground": "selBg", + "selectedForeground": "selFg", + "selectedInactiveBackground": "excl", + "separatorColor": "border" + } + }, + "ManagedIdeBadgeBorder": "border", + "ManagedIdeBadgeBackground": "bg", + "ManagedIdeBadgeBackgroundHover": "accent70", + "ManagedIdeMenuItemHover": "selBg", "material": { "background": "bg", "branchColor": "fg", @@ -785,8 +929,12 @@ "disabledBackground": "bg", "disabledForeground": "dis", "foreground": "fg", + "insets": "0,4,0,4", "selectionBackground": "selBg", - "selectionForeground": "activeFg" + "selectionForeground": "activeFg", + "Selection": { + "arc": 8 + } }, "MlModelBinding.Viewer.CodeEditor.background": "bg", "MnemonicIcon": { @@ -797,6 +945,9 @@ "NavBar": { "arrowColor": "fg", "borderColor": "bg", + "Breadcrumbs": { + "itemInsets": "4,2,4,2" + }, "selectedColor": "accent" }, "NewClass": { @@ -806,15 +957,21 @@ "SearchField": { "background": "cs" }, - "separatorWidth": 6 + "separatorWidth": 10 }, "NewPSD.warning": "accent", + "NewUiOnboarding": { + "Dialog": { + "background": "second" + } + }, "Notification": { "arc": 16, "Error.foreground": "accent", "Link.foreground": "accent", "background": "notif", - "borderColor": "notif", + "borderColor": "border", + "borderInsets": "4,4,4,4", "errorBackground": "notif", "errorBorderColor": "notif", "errorForeground": "accent", @@ -855,18 +1012,27 @@ "ToolWindowWarning": { "foreground": "fg", "background": "notifWarn" + }, + "WelcomeScreen": { + "separatorColor": "border" } }, "Notifications": { "background": "notif", - "borderColor": "notif" + "borderColor": "border" }, "NotificationsToolwindow": { - "Notification.hoverBackground": "tree", - "newNotification.background": "notif", - "newNotification.hoverBackground": "tree" + "Notification": { + "hoverBackground": "tree" + }, + "newNotification": { + "background": "notif", + "hoverBackground": "tree" + } + }, + "OnePixelDivider": { + "background": "border" }, - "OnePixelDivider.background": "border", "OptionPane": { "background": "bg", "foreground": "fg", @@ -882,7 +1048,6 @@ "focusedColor": "accent" }, "Panel": { - "background": "bg", "foreground": "fg", "mouseShortcutBackground": "bg" }, @@ -911,16 +1076,6 @@ "Plugins": { "background": "bg", "borderColor": "border", - "disabledForeground": "dis", - "eapTagBackground": "hl", - "hoverBackground": "hl", - "lightSelectionBackground": "table", - "paidTagBackground": "hl", - "selectionBackground": "selBg", - "selectionForeground": "selFg", - "tagBackground": "hl", - "tagForeground": "accent", - "trialTagBackground": "hl", "Button": { "installBackground": "button", "installBorderColor": "button", @@ -928,10 +1083,15 @@ "installFillForeground": "dis", "installFocusedBackground": "hl", "installForeground": "fg", - "updateBackground": "accent", + "updateBackground": "button", "updateBorderColor": "button", "updateForeground": "fg" }, + "disabledForeground": "dis", + "eapTagBackground": "hl", + "hoverBackground": "hl", + "lightSelectionBackground": "table", + "paidTagBackground": "hl", "ScreenshotPagination": { "CurrentImage.fillColor": "accent" }, @@ -943,10 +1103,20 @@ "background": "second", "foreground": "fg" }, + "selectionBackground": "selBg", + "selectionForeground": "selFg", + "suggestedLabelBackground": "button", + "tagBackground": "hl", + "tagForeground": "accent", + "trialTagBackground": "hl", "Tab": { - "active.background": "table", - "active.foreground": "activeFg", - "hover.background": "table", + "active": { + "background": "table", + "foreground": "activeFg" + }, + "hover": { + "background": "table" + }, "hoverBackground": "table", "selectedBackground": "table", "selectedForeground": "selFg" @@ -954,6 +1124,7 @@ }, "Popup": { "Advertiser": { + "borderColor": "border", "borderInsets": "6,20,6,20", "background": "bg", "borderColor": "bg", @@ -968,24 +1139,33 @@ "color": "cs", "inactiveColor": "bg" }, - "background": "notif", + "background": "bg", "borderColor": "cs", "borderWidth": 0, "inactiveBorderColor": "bg", "innerBorderColor": "second", "Header": { "activeBackground": "bg", + "activeForeground": "fg", "inactiveBackground": "cs", - "inactiveForeground": "text" + "inactiveForeground": "dis", + "insets": "12,10,12,10" }, + "mnemonicForeground": "text", "paintBorder": false, "preferences": { "background": "bg", "borderColor": "bg", "foreground": "fg" }, - "Selection.arc": 8, - "Selection.leftRightInset": 8, + "SearchField": { + "borderInsets": "4,4,4,4", + "inputInsets": "4,4,4,4" + }, + "Selection": { + "arc": 8, + "leftRightInset": 8 + }, "Separator": { "foreground": "fg", "color": "border" @@ -1003,8 +1183,14 @@ "background": "bg", "borderWidth": 1, "border": "8,8,8,8", + "borderInsets": "10,10,10,10", "borderCornerRadius": 8, + "borderCornerRadiusX": 8, + "borderCornerRadiusY": 8, + "borderWidth": 1, "foreground": "fg", + "leftBorderWidth": 8, + "rightBorderWidth": 8, "Selection": { "arc": 8, "innerInsets": "8,2,8,2" @@ -1013,12 +1199,35 @@ "translucentBackground": "bg" }, "PopupMenuSeparator": { + "borderCornerRadius": 8, "height": 10, "stripeWidth": 2, "stripeIndent": 5, "withToEdge": 4, "borderCornerRadius": 8 }, + "PresentationAssistant": { + "Bright": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + }, + "Pale": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + } + }, + "Profiler": { + "neutralLifecycleEvent": "second", + "trackBackground": "button" + }, "ProgressBar": { "background": "bg", "foreground": "accent", @@ -1062,29 +1271,106 @@ "selectionBackground": "selBg", "selectionForeground": "selFg" }, + "Review": { + "Avatar": { + "Border": { + "Status": { + "Accepted": "accent", + "NeedReview": "hl" + } + } + }, + "Branch": { + "Background": "button", + "Background.Hover": "hl" + }, + "ChatItem": { + "BubblePanel": { + "Border": "button" + }, + "Hover": "table" + }, + "Editor": { + "Line": { + "Status": { + "Marker": "accent" + } + } + }, + "MetaInfo": { + "StatusLine": { + "Gray": "excl", + "Blue": "accent" + } + }, + "State": { + "Background": "second", + "Foreground": "fg" + }, + "Timeline": { + "Thread": { + "Diff": { + "AnchorLine": "table" + } + } + } + }, "ReviewList": { "state.background": "second", "state.foreground": "fg" }, + "RunToolbar": { + "Debug": { + "activeBackground": "hl" + }, + "Profile": { + "activeBackground": "hl" + }, + "Run": { + "activeBackground": "hl" + } + }, "RunWidget": { "background": "button", - "Debug.activeBackground": "hl", - "foreground": "fg", - "hoverBackground": "table", - "pressedBackground": "hl", - "Profile.activeBackground": "hl", + "Debug": { + "activeBackground": "hl" + }, + "foreground": "selFg", + "hoverBackground": "hl", + "iconColor": "fg", + "leftPressedBackground": "table", + "leftHoverBackground": "hl", + "pressedBackground": "table", + "Profile": { + "activeBackground": "hl" + }, "runningBackground": "hl", - "runningForeground": "selFg", - "Run.activeBackground": "hl", + "Run": { + "activeBackground": "hl" + }, "Running": { "background": "hl", - "foreground": "selFg", "leftHoverBackground": "hl", - "leftPressedBackground": "hl" + "leftPressedBackground": "table" }, - "separatorColor": "border" + "runningBackground": "hl", + "runningForeground": "selFg", + "runIconColor": "accent", + "separatorColor": "border", + "stopBackground": "second", + "StopButton": { + "leftHoverBackground": "hl", + "leftPressedBackground": "second" + }, + "toolbarHeight": 30, + "toolbarBorderHeight": 4 + }, + "ScreenView": { + "borderColor": "border", + "defaultBorderColor": "border", + "hoveredBorderColor": "hl", + "selectedBorderColor": "selBg" }, - "ScreenView.borderColor": "border", "scrollbar": "bg", "ScrollBar": { "background": "bg", @@ -1186,9 +1472,9 @@ }, "SegmentedButton": { "focusedSelectedButtonColor": "hl", + "selectedEndBorderColor": "accent", "selectedButtonColor": "button", - "selectedStartBorderColor": "border", - "selectedEndBorderColor": "border" + "selectedStartBorderColor": "accent" }, "Separator": { "background": "second", @@ -1198,6 +1484,7 @@ "Settings": { "Spotlight.borderColor": "accent" }, + "shortcutForeground": "text", "SidePanel": { "background": "hc" }, @@ -1222,6 +1509,7 @@ "foreground": "fg" }, "Spinner": { + "arrowButtonInsets": "1,1,1,1", "background": "bg", "border": "4,4,4,4", "disabledBackground": "excl", @@ -1232,11 +1520,16 @@ "background": "bg", "highlight": "hc" }, - "SplitPaneDivider.draggingColor": "second", - "StateWidget.activeBackground": "button", + "SplitPaneDivider": { + "draggingColor": "second" + }, + "StateWidget": { + "activeBackground": "button" + }, "StatusBar": { - "background": "bg", + "background": "bg10", "Breadcrumbs": { + "chevronInset": 0, "floatingBackground": "tree", "floatingForeground": "fg", "floatingToolbarInsets": "8,12,8,12", @@ -1244,6 +1537,7 @@ "hoverBackground": "tree", "hoverForeground": "fg", "itemBackgroundInsets": "2,4,2,4", + "itemInsets": 0, "selectionBackground": "selBg", "selectionForeground": "activeFg", "selectionInactiveBackground": "button", @@ -1264,6 +1558,13 @@ "widgetInsets": "8,12,8,12" } }, + "StripeToolbar": { + "Button": { + "iconSize": 20, + "iconPadding": 8, + "size": "40,40" + } + }, "TabbedPane": { "background": "bg", "borderColor": "hc", @@ -1290,6 +1591,7 @@ "selectedTabPadInsets": "0,0,0,0", "shadow": "hc", "tabHeight": 32, + "tabAreaInsets": 0, "tabInsets": "5,10,5,10", "tabSelectionArc": 4, "tabSelectionHeight": 2, @@ -1385,7 +1687,7 @@ "TitlePane": { "Button": { "hoverBackground": "hl", - "preferredSize": "48,40" + "preferredSize": "42,42" }, "background": "hc", "inactiveBackground": "bg", @@ -1407,15 +1709,23 @@ "onBackground": "accent", "onForeground": "accent" }, - "Toolbar.Floating.background": "button", + "Toolbar": { + "horizontalToolbarInsets": "8,8,8,8", + "Floating": { + "background": "button", + "borderColor": "border" + }, + "verticalToolbarInsets": "8,8,8,8" + }, "ToolBar": { "background": "hc", "borderHandleColor": "text", "comboBoxButtonBackground": "button", "floatingForeground": "text", "foreground": "fg", - "verticalToolbarInsets": "6,6,6,6", - "horizontalToolbarInsets": "6,6,6,6" + "horizontalToolbarInsets": "6,6,6,6", + "separatorColor": "border", + "verticalToolbarInsets": "6,6,6,6" }, "ToolbarComboWidget": { "background": "button", @@ -1426,6 +1736,21 @@ "actions.settings.icon.background.color": "bg", "description.title.text.color": "fg" }, + "Tooltip": { + "Learning": { + "codeBorderColor": "cs", + "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "spanBackground": "accent70", + "spanForeground": "fg" + }, + "separatorColor": "border" + }, "ToolTip": { "arc": 6, "actions": { @@ -1445,6 +1770,7 @@ "Learning": { "background": "accent", "borderColor": "accent", + "codeForeground": "fg", "foreground": "fg", "spanBackground": "accent50", "spanForeground": "fg", @@ -1463,25 +1789,44 @@ "Button": { "hoverBackground": "table", "DragAndDrop": { - "stripeBackground": "cs", - "buttonDropBackground": "accent70" + "stripeBackground": "bg", + "buttonDropBackground": "selBg70", + "buttonDropBorderColor": "accent", + "buttonFloatingBackground": "button" }, "selectedBackground": "cs", "selectedForeground": "activeFg" }, + "DragAndDrop": { + "areaBackground": "accent50" + }, "header": { - "active.background": "second", + "active": { + "background": "second" + }, "background": "bg", - "border.background": "second", - "closeButton.background": "bg", - "tab.selected.active.background": "cs", - "tab.selected.background": "cs" + "border": { + "background": "border" + }, + "closeButton": { + "background": "bg" + }, + "tab": { + "selected": { + "active": { + "background": "cs" + }, + "background": "cs" + } + } }, "Header": { "height": 42, "background": "second", - "borderColor": "second", - "inactiveBackground": "bg" + "borderColor": "border", + "inactiveBackground": "bg", + "labelLeftRightInsets": "0,12,0,16", + "toolbarLeftRightInsets": "0,12,0,8" }, "HeaderCloseButton": { "background": "bg" @@ -1506,6 +1851,12 @@ "inactive": { "Header.background": "bg", "HeaderTab.background": "cs" + }, + "Stripe": { + "DragAndDrop": { + "separatorColor": "accent50" + }, + "separatorColor": "table" } }, "Tree": { @@ -1522,13 +1873,17 @@ "selectionForeground": "selFg", "selectionInactiveBackground": "tree", "selectionInactiveForeground": "selFg", - "textBackground": "hc" + "textBackground": "hc", + "leftChildIndent": 10, + "rightChildIndent": 5 }, - "Tree.leftChildIndent": 10, - "Tree.rightChildIndent": 5, "UIDesigner": { - "Activity.borderColor": "border", - "Canvas.background": "cs", + "Activity": { + "borderColor": "border" + }, + "Canvas": { + "background": "cs" + }, "ColorPicker": { "background": "second", "foreground": "fg" @@ -1543,49 +1898,119 @@ "borderColor": "border", "hoverBorderColor": "hl" }, - "Label.foreground": "text", - "highStroke.foreground": "fg", + "Label": { + "foreground": "text" + }, + "highStroke": { + "foreground": "fg" + }, "motion": { "AddConstraintColor": "accent", "AddConstraintPlus": "accent", - "CSPanel.SelectedBackground": "tree", - "CSPanel.SelectedFocusBackground": "selBg", - "Component.foreground": "fg", - "ConstraintSet.background": "second", - "ConstraintSetText.foreground": "text", - "CursorTextColor.foreground": "fg", - "HoverColor.disabledBackground": "dis", - "Key.selectedForeground": "accent", - "Notification.background": "notif", + "Axis": { + "lineSeparatorColor": "fg" + }, + "CSPanel": { + "SelectedBackground": "tree", + "SelectedFocusBackground": "selBg" + }, + "Component": { + "foreground": "fg" + }, + "ConstraintSet": { + "background": "second" + }, + "ConstraintSetText": { + "foreground": "text" + }, + "CursorTextColor": { + "foreground": "fg" + }, + "HoverColor": { + "disabledBackground": "dis" + }, + "Key": { + "selectedForeground": "accent" + }, + "Notification": { + "background": "notif" + }, "PositionMarkColor": "accent", - "PrimaryPanel.background": "cs", - "SecondaryPanel.background": "bg", - "SecondaryPanel.header.background": "cs", - "SecondaryPanel.header.foreground": "text", - "TimeCursor.End.selectedForeground": "accent", - "TimeCursor.Start.selectedForeground": "accent", - "TimeCursor.selectedForeground": "accent", + "PrimaryPanel": { + "background": "cs" + }, + "SecondaryPanel": { + "background": "bg", + "header": { + "background": "cs", + "foreground": "text" + } + }, + "TimeCursor": { + "End": { + "selectedForeground": "accent" + }, + "selectedForeground": "accent", + "Start": { + "selectedForeground": "accent" + } + }, "borderColor": "border", - "cs_FocusText.infoForeground": "text", - "graphLine.lineSeparatorColor": "accent", - "motionGraph.background": "bg", - "ourAvg.background": "second", - "ourCS.background": "second", - "ourCS_Border.borderColor": "border", - "ourCS_SelectedBackground.selectionInactiveBackground": "table", - "ourCS_SelectedBorder.pressedBorderColor": "hl", - "ourCS_SelectedFocusBackground.selectionForeground": "selFg", - "ourCS_SelectedFocusBorder.focusedBorderColor": "accent", - "ourCS_TextColor.foreground": "text", - "ourML_BarColor.separatorColor": "border", - "timeLine.disabledBorderColor": "border" + "cs_FocusText": { + "infoForeground": "text" + }, + "graphLine": { + "lineSeparatorColor": "accent" + }, + "Grid": { + "lineSeparatorColor": "border" + }, + "label": { + "background": "second", + "textColor": "text" + }, + "motionGraph": { + "background": "bg" + }, + "ourAvg": { + "background": "second" + }, + "ourCS": { + "background": "second" + }, + "ourCS_Border": { + "borderColor": "border" + }, + "ourCS_SelectedBackground": { + "selectionInactiveBackground": "table" + }, + "ourCS_SelectedBorder": { + "pressedBorderColor": "hl" + }, + "ourCS_SelectedFocusBackground": { + "selectionForeground": "selFg" + }, + "ourCS_SelectedFocusBorder": { + "focusedBorderColor": "accent" + }, + "ourCS_TextColor": { + "foreground": "text" + }, + "ourML_BarColor": { + "separatorColor": "border" + }, + "timeLine": { + "disabledBorderColor": "border" + } }, "PackageDetails": { "border": "accent", "infoBanner": "accent" }, "PackageSearch": { - "PackagesList.rowHeight": 28, + "PackagesList": { + "rowHeight": 28 + }, "PackageTag": { "background": "excl", "foreground": "fg", @@ -1617,7 +2042,9 @@ "lines3d": "accent", "secondaryGraphLines": "border" }, - "percent.foreground": "fg", + "percent": { + "foreground": "fg" + }, "Placeholder": { "background": "bg", "borderColor": "border", @@ -1634,9 +2061,11 @@ "warningBorderColor": "notif" }, "VersionControl": { - "FileHistory.Commit": { - "otherBranchBackground": "excl", - "selectedBranchBackground": "bg" + "FileHistory": { + "Commit": { + "otherBranchBackground": "excl", + "selectedBranchBackground": "bg" + } }, "GitCommits": { "graphColor": "hl" @@ -1660,8 +2089,13 @@ "Commit": { "currentBranchBackground": "cs", "hoveredBackground": "tree", + "selectionInactiveForeground": "fg", + "Reference": { + "foreground": "text" + }, "rowHeight": 28, - "unmatchedForeground": "text" + "unmatchedForeground": "text", + "verticalPadding": 8 } }, "MarkerPopup": { @@ -1688,30 +2122,39 @@ "foreground": "fg" }, "WelcomeScreen": { - "AssociatedComponent.background": "bg", - "Details.background": "bg", - "List": { - "background": "hc", - "selectionBackground": "selBg", - "selectionInactiveBackground": "hl" + "AssociatedComponent": { + "background": "bg" }, - "SidePanel.background": "second", "background": "bg", "borderColor": "bg", "captionBackground": "cs", "captionForeground": "fg", + "Details": { + "background": "bg" + }, "footerBackground": "cs", "footerForeground": "fg", "groupIconBorderColor": "button", "headerBackground": "bg", "headerForeground": "fg", - "separatorColor": "border", + "List": { + "background": "hc", + "selectionBackground": "selBg", + "selectionInactiveBackground": "hl" + }, "Projects": { - "actions.background": "cs", - "actions.selectionBackground": "hl", + "actions": { + "background": "cs", + "selectionBackground": "hl", + "selectionBorderColor": "accent" + }, "background": "second", "selectionBackground": "selBg", "selectionInactiveBackground": "selBg" + }, + "separatorColor": "border", + "SidePanel": { + "background": "second" } }, "Window.border": "border", diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Night Owl.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Night Owl.theme.json index bb64595f..6c1f369e 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Night Owl.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Night Owl.theme.json @@ -16,7 +16,7 @@ "second": "#0b2942", "dis": "#697098", "accent": "#7e57c2", - "accent2": "#7e57c22", + "acc2": "#89ddff", "accent50": "#7e57c250", "accent70": "#7e57c270", "cs": "#010e1a", @@ -26,7 +26,7 @@ "hl": "#084d81", "notif": "#01111d", "hc": "#011627", - "shadow": "undefined", + "shadow": "#00000020", "white": "#addb67", "blue": "#82aaff", "red": "#7fdbca", @@ -71,19 +71,25 @@ "hoverBorderColor": "accent50", "hoverSeparatorColor": "button", "pressedBackground": "accent50", - "pressedBorderColor": "accent50" + "pressedBorderColor": "accent50", + "separatorColor": "border" }, "ActionsList": { "icon.gap": 12, - "mnemonic.icon.gap": 12 + "mnemonic.icon.gap": 12, + "mnemonicInsets": "0,8,0,8", + "mnemonicsBorderInsets": "0,8,0,8", + "mnemonic.insets": "0,8,0,8" }, "ActionToolbar": { "background": "hc" }, - "AppInspector.GraphNode": { - "background": "second", - "borderColor": "border", - "focusedBorderColor": "accent" + "AppInspector": { + "GraphNode": { + "background": "second", + "borderColor": "border", + "focusedBorderColor": "accent" + } }, "AssignedMnemonic": { "background": "hl", @@ -99,13 +105,26 @@ "borderColor": "button", "foreground": "fg" }, - "BigSpinner.background": "bg", + "Banner": { + "foreground": "fg" + }, + "BigSpinner": { + "background": "bg" + }, "Bookmark": { "iconBackground": "accent", "Mnemonic": { "iconBackground": "hl", "iconBorderColor": "hl", "iconForeground": "fg" + }, + "MnemonicAssigned": { + "background": "table", + "foreground": "fg" + }, + "MnemonicCurrent": { + "background": "selBg", + "foreground": "selFg" } }, "BookmarkMnemonicAssigned": { @@ -128,13 +147,18 @@ "borderColor": "hl", "foreground": "fg" }, - "BookmarkIcon.background": "accent", - "Borders.ContrastBorderColor": "bg", - "Borders.color": "border", - "Breakpoint.iconHoverAlpha": 0.35, + "BookmarkIcon": { + "background": "accent" + }, + "Borders": { + "ContrastBorderColor": "bg", + "color": "border" + }, + "Breakpoint": { + "iconHoverAlpha": 0.35 + }, "Button": { "arc": 8, - "background": "bg", "darcula": { "borderColor": "button", "defaultBorderColor": "button", @@ -175,6 +199,7 @@ "focusedBorderColor": "accent", "foreground": "text", "highlight": "selFg", + "minimumSize": 72, "mt.background": "button", "mt.color1": "button", "mt.color2": "button", @@ -185,6 +210,12 @@ "select": "button", "shadowColor": "shadow", "shadowWidth": 0, + "Split": { + "default": { + "iconColor": "fg", + "separatorColor": "accent" + } + }, "startBackground": "table", "startBorderColor": "button", "ToolWindow": { @@ -195,11 +226,18 @@ "Tooltip.background": "notif", "Tooltip.borderColor": "border" }, + "CellEditor": { + "border": { + "width": 2 + } + }, "CheckBox": { "background": "bg", "background.selected": "accent", "borderColor": "bg", "borderColor.selected": "accent", + "border.width": 3, + "borderInsets": "4,4,4,4", "checkSignColor": "bg", "checkSignColor.selected": "bg", "checkSignColorDisabled": "bg", @@ -297,7 +335,9 @@ "foreground": "fg", "swatchesDefaultRecentColor": "fg" }, - "ComboBoxButton.background": "button", + "ComboBoxButton": { + "background": "button" + }, "ComboBox": { "ArrowButton": { "background": "button", @@ -327,14 +367,16 @@ "selectionBackground": "table", "selectionForeground": "activeFg" }, - "ComboPopup.border": "1,1,1,1,#7e57c2", + "ComboPopup": { + "border": "1,1,1,1,#7e57c2" + }, "CompletionPopup": { "Advertiser": { - "background": "bg", - "foreground": "fg", + "background": "second", + "foreground": "text", "borderInsets": "8,12,8,12" }, - "background": "second", + "background": "button", "foreground": "fg", "grayForeground": "text", "grayedForeground": "text", @@ -351,13 +393,20 @@ "selectionInactiveBackground": "hl", "selectionInactiveForeground": "text", "selectionInactiveInfoForeground": "text", - "selectionInfoForeground": "selFg" + "selectionInfoForeground": "selFg", + "selectionInnerInsets": "4,4,4,4" }, "ComplexPopup": { - "Header.background": "notif" + "Header": { + "background": "bg", + "insets": "12,12,12,12" + }, + "TextField": { + "inputInsets": "8,4,8,4" + } }, "Component": { - "arc": 4, + "arc": 6, "focusWidth": 2, "borderColor": "hl", "disabledBorderColor": "dis", @@ -440,7 +489,7 @@ "southPanelDivider": "bg" }, "DragAndDrop": { - "areaBackground": "tree", + "areaBackground": "selBg70", "areaBorderColor": "bg", "areaForeground": "fg", "backgroundBorderColor": "bg", @@ -453,18 +502,37 @@ "Editor": { "background": "hc", "foreground": "fg", + "Notification": { + "borderInsets": "10,12,10,12", + "WithoutStatus.borderInsets": "10,12,10,12" + }, + "ReplaceToolbar": { + "borderInsets": "4,12,4,12" + }, "shortcutForeground": "text", "SearchField": { "background": "cs", "borderInsets": "8,12,8,12" }, + "SearchReplaceModePanel": { + "borderInsets": "4,12,4,12" + }, + "SearchToolbar": { + "borderInsets": "4,12,4,12" + }, "Toolbar": { "borderColor": "border" + }, + "ToolTip": { + "border": "border", + "foreground": "fg", + "iconHoverBackground": "table", + "selectionBackground": "selBg" } }, "EditorGroupsTabs": { "background": "bg", - "borderColor": "second", + "borderColor": "border", "hoverBackground": "hl", "hoverColor": "hl", "inactiveUnderlineColor": "accent", @@ -474,6 +542,7 @@ }, "EditorPane": { "background": "hc", + "borderColor": "border", "caretForeground": "accent", "foreground": "fg", "inactiveBackground": "bg", @@ -483,21 +552,25 @@ "splitBorder": "border" }, "EditorTabs": { - "active.background": "table", - "active.foreground": "fg", - "active.underlineColor": "accent", + "active": { + "background": "table", + "foreground": "fg", + "underlineColor": "accent" + }, "background": "bg", - "borderColor": "second", "foreground": "fg", "hoverBackground": "hl", "hoverColor": "hl", "hoverMaskColor": "hl", "inactive.maskColor": "bg", - "inactiveColoredFileBackground": "bg", + "inactiveColoredFileBackground": "bg70", "inactiveMaskColor": "bg", "inactiveUnderlineColor": "dis", "selectedBackground": "table", "selectedForeground": "fg", + "tabContentInsetsActionsLeft": "0,6,0,6", + "tabContentInsetsActionsNone": "0,6,0,6", + "tabContentInsetsActionsRight": "0,6,0,6", "tabInsets": "-10,10,-10,10", "underlineColor": "accent", "underlineHeight": 3, @@ -515,6 +588,10 @@ "Gray": "excl", "excluded": "excl" }, + "FindPopup": { + "scopesPanelInsets": "4,16,4,16", + "bottomPanelInsets": "4,10,4,10" + }, "FlameGraph": { "JVMBackground": "#89DDF7", "JVMFocusBackground": "#82AAFF", @@ -555,15 +632,34 @@ "selectionForeground.unfocused": "selFg" }, "GotItTooltip": { + "animationBackground": "notif", "background": "notif", "borderColor": "notif", + "Button": { + "contrastBackground": "cs", + "endBackground": "button", + "foreground": "fg", + "startBackground": "button" + }, + "codeBackground": "cs", + "codeBorderColor": "bg", + "codeForeground": "fg", "endBackground": "button", "endBorderColor": "button", "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "imageBorderColor": "notif", "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "shortcutBackground": "notif", + "shortcutBorderColor": "border", "shortcutForeground": "text", "startBackground": "button", - "startBorderColor": "button" + "startBorderColor": "button", + "stepForeground": "text" }, "Group": { "disabledSeparatorColor": "border", @@ -587,7 +683,10 @@ "borderColor": "border", "defaultTextBorderInsets": "16,16,16,16", "foreground": "fg", + "fontSizeDelta": 0, + "horizontalGap": 10, "infoForeground": "text", + "maxWidth": 250, "shortcutForeground": "text", "shortcutTextColor": "text", "smallTextBorderInsets": "8,12,8,12", @@ -601,18 +700,29 @@ "MqTag": "text", "Tag": "text" }, - "Hyperlink.linkColor": "accent", - "IconBadge": { - "infoBackground": "accent" + "Hyperlink": { + "linkColor": "accent" + }, + "IconBadge": { + "infoBackground": "accent", + "newUiBackground": "accent" + }, + "IdeStatusBar": { + "border": "4,4,4,4" + }, + "InformationHint": { + "borderColor": "border" }, - "IdeStatusBar.border": "4,4,4,4", - "InformationHint.borderColor": "border", "inactiveCaption": "second", "inactiveCaptionBorder": "bg", "inactiveCaptionText": "text", "info": "text", "infoPanelForeground": "text", "infoText": "text", + "InlineBanner": { + "hoverBackground": "accent70", + "pressedBackground": "accent70" + }, "InplaceRefactoringPopup": { "background": "bg", "borderColor": "bg" @@ -622,10 +732,13 @@ "foreground": "fg" }, "InternalFrame": { + "activeTitleBackground": "bg", "activeTitleForeground": "fg", "background": "bg", "inactiveTitleBackground": "bg", - "inactiveTitleForeground": "text" + "inactiveTitleForeground": "text", + "optionDialogBackground": "bg", + "paletteBackground": "bg" }, "Label": { "background": "bg", @@ -676,20 +789,22 @@ "hoverBackground": "hl", "leftRightInset": 8, "separatorColor": "border", - "separatorInset": 4 + "separatorInset": 8 }, "foreground": "fg", "hoverBackground": "hl", "hoverInactiveBackground": "table", - "Line.hoverBackground": "selBg", + "Line": { + "hoverBackground": "selBg" + }, "rowHeight": "28", "selectionBackground": "tree", "selectionForeground": "selFg", "selectionInactiveBackground": "table", "selectionInactiveForeground": "activeFg", "Tag": { - "background": "button", - "foreground": "fg" + "foreground": "fg", + "background": "button" } }, "LiveIndicator": { @@ -703,31 +818,60 @@ "background": "hc", "foreground": "fg", "selectionForeground": "activeFg", - "selectionBackground": "selBg" + "selectionBackground": "selBg", + "transparentSelectionBackground": "tree" }, "MainToolbar": { "background": "bg", "Button": { - "buttonInsets": "0,0,0,0" + "buttonInsets": "0,4,0,4", + "iconSize": 20, + "size": "28,28" }, "Dropdown": { "borderInsets": "6,12,6,12", "background": "bg", "foreground": "fg", "hoverBackground": "hl", - "pressedBackground": "table" + "pressedBackground": "table", + "transparentHoverBackground": "accent70" }, + "foreground": "fg", "hoverBackground": "hl", "Icon": { - "borderInsets": "10,10,10,10", + "borderInsets": "4,4,4,4", "background": "bg", "hoverBackground": "hl", + "insets": "5,4,5,4", "pressedBackground": "table" }, "inactiveBackground": "bg", "pressedBackground": "table", - "separatorColor": "border" + "separatorColor": "border", + "SplitDropdown": { + "borderInsets": "6,6,6,6" + } }, + "MainWindow": { + "FullScreeControl": { + "Background": "hl" + }, + "Tab": { + "background": "bg", + "borderColor": "bg", + "foreground": "fg", + "hoverBackground": "hl", + "hoverForeground": "fg", + "selectedBackground": "selBg", + "selectedForeground": "selFg", + "selectedInactiveBackground": "excl", + "separatorColor": "border" + } + }, + "ManagedIdeBadgeBorder": "border", + "ManagedIdeBadgeBackground": "bg", + "ManagedIdeBadgeBackgroundHover": "accent70", + "ManagedIdeMenuItemHover": "selBg", "material": { "background": "bg", "branchColor": "fg", @@ -785,8 +929,12 @@ "disabledBackground": "bg", "disabledForeground": "dis", "foreground": "fg", + "insets": "0,4,0,4", "selectionBackground": "selBg", - "selectionForeground": "activeFg" + "selectionForeground": "activeFg", + "Selection": { + "arc": 8 + } }, "MlModelBinding.Viewer.CodeEditor.background": "bg", "MnemonicIcon": { @@ -797,6 +945,9 @@ "NavBar": { "arrowColor": "fg", "borderColor": "bg", + "Breadcrumbs": { + "itemInsets": "4,2,4,2" + }, "selectedColor": "accent" }, "NewClass": { @@ -806,15 +957,21 @@ "SearchField": { "background": "cs" }, - "separatorWidth": 6 + "separatorWidth": 10 }, "NewPSD.warning": "accent", + "NewUiOnboarding": { + "Dialog": { + "background": "second" + } + }, "Notification": { "arc": 16, "Error.foreground": "accent", "Link.foreground": "accent", "background": "notif", - "borderColor": "notif", + "borderColor": "border", + "borderInsets": "4,4,4,4", "errorBackground": "notif", "errorBorderColor": "notif", "errorForeground": "accent", @@ -855,18 +1012,27 @@ "ToolWindowWarning": { "foreground": "fg", "background": "notifWarn" + }, + "WelcomeScreen": { + "separatorColor": "border" } }, "Notifications": { "background": "notif", - "borderColor": "notif" + "borderColor": "border" }, "NotificationsToolwindow": { - "Notification.hoverBackground": "tree", - "newNotification.background": "notif", - "newNotification.hoverBackground": "tree" + "Notification": { + "hoverBackground": "tree" + }, + "newNotification": { + "background": "notif", + "hoverBackground": "tree" + } + }, + "OnePixelDivider": { + "background": "border" }, - "OnePixelDivider.background": "border", "OptionPane": { "background": "bg", "foreground": "fg", @@ -882,7 +1048,6 @@ "focusedColor": "accent" }, "Panel": { - "background": "bg", "foreground": "fg", "mouseShortcutBackground": "bg" }, @@ -911,16 +1076,6 @@ "Plugins": { "background": "bg", "borderColor": "border", - "disabledForeground": "dis", - "eapTagBackground": "hl", - "hoverBackground": "hl", - "lightSelectionBackground": "table", - "paidTagBackground": "hl", - "selectionBackground": "selBg", - "selectionForeground": "selFg", - "tagBackground": "hl", - "tagForeground": "accent", - "trialTagBackground": "hl", "Button": { "installBackground": "button", "installBorderColor": "button", @@ -928,10 +1083,15 @@ "installFillForeground": "dis", "installFocusedBackground": "hl", "installForeground": "fg", - "updateBackground": "accent", + "updateBackground": "button", "updateBorderColor": "button", "updateForeground": "fg" }, + "disabledForeground": "dis", + "eapTagBackground": "hl", + "hoverBackground": "hl", + "lightSelectionBackground": "table", + "paidTagBackground": "hl", "ScreenshotPagination": { "CurrentImage.fillColor": "accent" }, @@ -943,10 +1103,20 @@ "background": "second", "foreground": "fg" }, + "selectionBackground": "selBg", + "selectionForeground": "selFg", + "suggestedLabelBackground": "button", + "tagBackground": "hl", + "tagForeground": "accent", + "trialTagBackground": "hl", "Tab": { - "active.background": "table", - "active.foreground": "activeFg", - "hover.background": "table", + "active": { + "background": "table", + "foreground": "activeFg" + }, + "hover": { + "background": "table" + }, "hoverBackground": "table", "selectedBackground": "table", "selectedForeground": "selFg" @@ -954,6 +1124,7 @@ }, "Popup": { "Advertiser": { + "borderColor": "border", "borderInsets": "6,20,6,20", "background": "bg", "borderColor": "bg", @@ -968,24 +1139,33 @@ "color": "cs", "inactiveColor": "bg" }, - "background": "notif", + "background": "bg", "borderColor": "cs", "borderWidth": 0, "inactiveBorderColor": "bg", "innerBorderColor": "second", "Header": { "activeBackground": "bg", + "activeForeground": "fg", "inactiveBackground": "cs", - "inactiveForeground": "text" + "inactiveForeground": "dis", + "insets": "12,10,12,10" }, + "mnemonicForeground": "text", "paintBorder": false, "preferences": { "background": "bg", "borderColor": "bg", "foreground": "fg" }, - "Selection.arc": 8, - "Selection.leftRightInset": 8, + "SearchField": { + "borderInsets": "4,4,4,4", + "inputInsets": "4,4,4,4" + }, + "Selection": { + "arc": 8, + "leftRightInset": 8 + }, "Separator": { "foreground": "fg", "color": "border" @@ -1003,8 +1183,14 @@ "background": "bg", "borderWidth": 1, "border": "8,8,8,8", + "borderInsets": "10,10,10,10", "borderCornerRadius": 8, + "borderCornerRadiusX": 8, + "borderCornerRadiusY": 8, + "borderWidth": 1, "foreground": "fg", + "leftBorderWidth": 8, + "rightBorderWidth": 8, "Selection": { "arc": 8, "innerInsets": "8,2,8,2" @@ -1013,12 +1199,35 @@ "translucentBackground": "bg" }, "PopupMenuSeparator": { + "borderCornerRadius": 8, "height": 10, "stripeWidth": 2, "stripeIndent": 5, "withToEdge": 4, "borderCornerRadius": 8 }, + "PresentationAssistant": { + "Bright": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + }, + "Pale": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + } + }, + "Profiler": { + "neutralLifecycleEvent": "second", + "trackBackground": "button" + }, "ProgressBar": { "background": "bg", "foreground": "accent", @@ -1062,29 +1271,106 @@ "selectionBackground": "selBg", "selectionForeground": "selFg" }, + "Review": { + "Avatar": { + "Border": { + "Status": { + "Accepted": "accent", + "NeedReview": "hl" + } + } + }, + "Branch": { + "Background": "button", + "Background.Hover": "hl" + }, + "ChatItem": { + "BubblePanel": { + "Border": "button" + }, + "Hover": "table" + }, + "Editor": { + "Line": { + "Status": { + "Marker": "accent" + } + } + }, + "MetaInfo": { + "StatusLine": { + "Gray": "excl", + "Blue": "accent" + } + }, + "State": { + "Background": "second", + "Foreground": "fg" + }, + "Timeline": { + "Thread": { + "Diff": { + "AnchorLine": "table" + } + } + } + }, "ReviewList": { "state.background": "second", "state.foreground": "fg" }, + "RunToolbar": { + "Debug": { + "activeBackground": "hl" + }, + "Profile": { + "activeBackground": "hl" + }, + "Run": { + "activeBackground": "hl" + } + }, "RunWidget": { "background": "button", - "Debug.activeBackground": "hl", - "foreground": "fg", - "hoverBackground": "table", - "pressedBackground": "hl", - "Profile.activeBackground": "hl", + "Debug": { + "activeBackground": "hl" + }, + "foreground": "selFg", + "hoverBackground": "hl", + "iconColor": "fg", + "leftPressedBackground": "table", + "leftHoverBackground": "hl", + "pressedBackground": "table", + "Profile": { + "activeBackground": "hl" + }, "runningBackground": "hl", - "runningForeground": "selFg", - "Run.activeBackground": "hl", + "Run": { + "activeBackground": "hl" + }, "Running": { "background": "hl", - "foreground": "selFg", "leftHoverBackground": "hl", - "leftPressedBackground": "hl" + "leftPressedBackground": "table" }, - "separatorColor": "border" + "runningBackground": "hl", + "runningForeground": "selFg", + "runIconColor": "accent", + "separatorColor": "border", + "stopBackground": "second", + "StopButton": { + "leftHoverBackground": "hl", + "leftPressedBackground": "second" + }, + "toolbarHeight": 30, + "toolbarBorderHeight": 4 + }, + "ScreenView": { + "borderColor": "border", + "defaultBorderColor": "border", + "hoveredBorderColor": "hl", + "selectedBorderColor": "selBg" }, - "ScreenView.borderColor": "border", "scrollbar": "bg", "ScrollBar": { "background": "bg", @@ -1186,9 +1472,9 @@ }, "SegmentedButton": { "focusedSelectedButtonColor": "hl", + "selectedEndBorderColor": "accent", "selectedButtonColor": "button", - "selectedStartBorderColor": "border", - "selectedEndBorderColor": "border" + "selectedStartBorderColor": "accent" }, "Separator": { "background": "second", @@ -1198,6 +1484,7 @@ "Settings": { "Spotlight.borderColor": "accent" }, + "shortcutForeground": "text", "SidePanel": { "background": "hc" }, @@ -1222,6 +1509,7 @@ "foreground": "fg" }, "Spinner": { + "arrowButtonInsets": "1,1,1,1", "background": "bg", "border": "4,4,4,4", "disabledBackground": "excl", @@ -1232,11 +1520,16 @@ "background": "bg", "highlight": "hc" }, - "SplitPaneDivider.draggingColor": "second", - "StateWidget.activeBackground": "button", + "SplitPaneDivider": { + "draggingColor": "second" + }, + "StateWidget": { + "activeBackground": "button" + }, "StatusBar": { - "background": "bg", + "background": "bg10", "Breadcrumbs": { + "chevronInset": 0, "floatingBackground": "tree", "floatingForeground": "fg", "floatingToolbarInsets": "8,12,8,12", @@ -1244,6 +1537,7 @@ "hoverBackground": "tree", "hoverForeground": "fg", "itemBackgroundInsets": "2,4,2,4", + "itemInsets": 0, "selectionBackground": "selBg", "selectionForeground": "activeFg", "selectionInactiveBackground": "button", @@ -1264,6 +1558,13 @@ "widgetInsets": "8,12,8,12" } }, + "StripeToolbar": { + "Button": { + "iconSize": 20, + "iconPadding": 8, + "size": "40,40" + } + }, "TabbedPane": { "background": "bg", "borderColor": "hc", @@ -1290,6 +1591,7 @@ "selectedTabPadInsets": "0,0,0,0", "shadow": "hc", "tabHeight": 32, + "tabAreaInsets": 0, "tabInsets": "5,10,5,10", "tabSelectionArc": 4, "tabSelectionHeight": 2, @@ -1385,7 +1687,7 @@ "TitlePane": { "Button": { "hoverBackground": "hl", - "preferredSize": "48,40" + "preferredSize": "42,42" }, "background": "hc", "inactiveBackground": "bg", @@ -1407,15 +1709,23 @@ "onBackground": "accent", "onForeground": "accent" }, - "Toolbar.Floating.background": "button", + "Toolbar": { + "horizontalToolbarInsets": "8,8,8,8", + "Floating": { + "background": "button", + "borderColor": "border" + }, + "verticalToolbarInsets": "8,8,8,8" + }, "ToolBar": { "background": "hc", "borderHandleColor": "text", "comboBoxButtonBackground": "button", "floatingForeground": "text", "foreground": "fg", - "verticalToolbarInsets": "6,6,6,6", - "horizontalToolbarInsets": "6,6,6,6" + "horizontalToolbarInsets": "6,6,6,6", + "separatorColor": "border", + "verticalToolbarInsets": "6,6,6,6" }, "ToolbarComboWidget": { "background": "button", @@ -1426,6 +1736,21 @@ "actions.settings.icon.background.color": "bg", "description.title.text.color": "fg" }, + "Tooltip": { + "Learning": { + "codeBorderColor": "cs", + "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "spanBackground": "accent70", + "spanForeground": "fg" + }, + "separatorColor": "border" + }, "ToolTip": { "arc": 6, "actions": { @@ -1445,6 +1770,7 @@ "Learning": { "background": "accent", "borderColor": "accent", + "codeForeground": "fg", "foreground": "fg", "spanBackground": "accent50", "spanForeground": "fg", @@ -1463,25 +1789,44 @@ "Button": { "hoverBackground": "table", "DragAndDrop": { - "stripeBackground": "cs", - "buttonDropBackground": "accent70" + "stripeBackground": "bg", + "buttonDropBackground": "selBg70", + "buttonDropBorderColor": "accent", + "buttonFloatingBackground": "button" }, "selectedBackground": "cs", "selectedForeground": "activeFg" }, + "DragAndDrop": { + "areaBackground": "accent50" + }, "header": { - "active.background": "second", + "active": { + "background": "second" + }, "background": "bg", - "border.background": "second", - "closeButton.background": "bg", - "tab.selected.active.background": "cs", - "tab.selected.background": "cs" + "border": { + "background": "border" + }, + "closeButton": { + "background": "bg" + }, + "tab": { + "selected": { + "active": { + "background": "cs" + }, + "background": "cs" + } + } }, "Header": { "height": 42, "background": "second", - "borderColor": "second", - "inactiveBackground": "bg" + "borderColor": "border", + "inactiveBackground": "bg", + "labelLeftRightInsets": "0,12,0,16", + "toolbarLeftRightInsets": "0,12,0,8" }, "HeaderCloseButton": { "background": "bg" @@ -1506,6 +1851,12 @@ "inactive": { "Header.background": "bg", "HeaderTab.background": "cs" + }, + "Stripe": { + "DragAndDrop": { + "separatorColor": "accent50" + }, + "separatorColor": "table" } }, "Tree": { @@ -1522,13 +1873,17 @@ "selectionForeground": "selFg", "selectionInactiveBackground": "tree", "selectionInactiveForeground": "selFg", - "textBackground": "hc" + "textBackground": "hc", + "leftChildIndent": 10, + "rightChildIndent": 5 }, - "Tree.leftChildIndent": 10, - "Tree.rightChildIndent": 5, "UIDesigner": { - "Activity.borderColor": "border", - "Canvas.background": "cs", + "Activity": { + "borderColor": "border" + }, + "Canvas": { + "background": "cs" + }, "ColorPicker": { "background": "second", "foreground": "fg" @@ -1543,49 +1898,119 @@ "borderColor": "border", "hoverBorderColor": "hl" }, - "Label.foreground": "text", - "highStroke.foreground": "fg", + "Label": { + "foreground": "text" + }, + "highStroke": { + "foreground": "fg" + }, "motion": { "AddConstraintColor": "accent", "AddConstraintPlus": "accent", - "CSPanel.SelectedBackground": "tree", - "CSPanel.SelectedFocusBackground": "selBg", - "Component.foreground": "fg", - "ConstraintSet.background": "second", - "ConstraintSetText.foreground": "text", - "CursorTextColor.foreground": "fg", - "HoverColor.disabledBackground": "dis", - "Key.selectedForeground": "accent", - "Notification.background": "notif", + "Axis": { + "lineSeparatorColor": "fg" + }, + "CSPanel": { + "SelectedBackground": "tree", + "SelectedFocusBackground": "selBg" + }, + "Component": { + "foreground": "fg" + }, + "ConstraintSet": { + "background": "second" + }, + "ConstraintSetText": { + "foreground": "text" + }, + "CursorTextColor": { + "foreground": "fg" + }, + "HoverColor": { + "disabledBackground": "dis" + }, + "Key": { + "selectedForeground": "accent" + }, + "Notification": { + "background": "notif" + }, "PositionMarkColor": "accent", - "PrimaryPanel.background": "cs", - "SecondaryPanel.background": "bg", - "SecondaryPanel.header.background": "cs", - "SecondaryPanel.header.foreground": "text", - "TimeCursor.End.selectedForeground": "accent", - "TimeCursor.Start.selectedForeground": "accent", - "TimeCursor.selectedForeground": "accent", + "PrimaryPanel": { + "background": "cs" + }, + "SecondaryPanel": { + "background": "bg", + "header": { + "background": "cs", + "foreground": "text" + } + }, + "TimeCursor": { + "End": { + "selectedForeground": "accent" + }, + "selectedForeground": "accent", + "Start": { + "selectedForeground": "accent" + } + }, "borderColor": "border", - "cs_FocusText.infoForeground": "text", - "graphLine.lineSeparatorColor": "accent", - "motionGraph.background": "bg", - "ourAvg.background": "second", - "ourCS.background": "second", - "ourCS_Border.borderColor": "border", - "ourCS_SelectedBackground.selectionInactiveBackground": "table", - "ourCS_SelectedBorder.pressedBorderColor": "hl", - "ourCS_SelectedFocusBackground.selectionForeground": "selFg", - "ourCS_SelectedFocusBorder.focusedBorderColor": "accent", - "ourCS_TextColor.foreground": "text", - "ourML_BarColor.separatorColor": "border", - "timeLine.disabledBorderColor": "border" + "cs_FocusText": { + "infoForeground": "text" + }, + "graphLine": { + "lineSeparatorColor": "accent" + }, + "Grid": { + "lineSeparatorColor": "border" + }, + "label": { + "background": "second", + "textColor": "text" + }, + "motionGraph": { + "background": "bg" + }, + "ourAvg": { + "background": "second" + }, + "ourCS": { + "background": "second" + }, + "ourCS_Border": { + "borderColor": "border" + }, + "ourCS_SelectedBackground": { + "selectionInactiveBackground": "table" + }, + "ourCS_SelectedBorder": { + "pressedBorderColor": "hl" + }, + "ourCS_SelectedFocusBackground": { + "selectionForeground": "selFg" + }, + "ourCS_SelectedFocusBorder": { + "focusedBorderColor": "accent" + }, + "ourCS_TextColor": { + "foreground": "text" + }, + "ourML_BarColor": { + "separatorColor": "border" + }, + "timeLine": { + "disabledBorderColor": "border" + } }, "PackageDetails": { "border": "accent", "infoBanner": "accent" }, "PackageSearch": { - "PackagesList.rowHeight": 28, + "PackagesList": { + "rowHeight": 28 + }, "PackageTag": { "background": "excl", "foreground": "fg", @@ -1617,7 +2042,9 @@ "lines3d": "accent", "secondaryGraphLines": "border" }, - "percent.foreground": "fg", + "percent": { + "foreground": "fg" + }, "Placeholder": { "background": "bg", "borderColor": "border", @@ -1634,9 +2061,11 @@ "warningBorderColor": "notif" }, "VersionControl": { - "FileHistory.Commit": { - "otherBranchBackground": "excl", - "selectedBranchBackground": "bg" + "FileHistory": { + "Commit": { + "otherBranchBackground": "excl", + "selectedBranchBackground": "bg" + } }, "GitCommits": { "graphColor": "hl" @@ -1660,8 +2089,13 @@ "Commit": { "currentBranchBackground": "cs", "hoveredBackground": "tree", + "selectionInactiveForeground": "fg", + "Reference": { + "foreground": "text" + }, "rowHeight": 28, - "unmatchedForeground": "text" + "unmatchedForeground": "text", + "verticalPadding": 8 } }, "MarkerPopup": { @@ -1688,30 +2122,39 @@ "foreground": "fg" }, "WelcomeScreen": { - "AssociatedComponent.background": "bg", - "Details.background": "bg", - "List": { - "background": "hc", - "selectionBackground": "selBg", - "selectionInactiveBackground": "hl" + "AssociatedComponent": { + "background": "bg" }, - "SidePanel.background": "second", "background": "bg", "borderColor": "bg", "captionBackground": "cs", "captionForeground": "fg", + "Details": { + "background": "bg" + }, "footerBackground": "cs", "footerForeground": "fg", "groupIconBorderColor": "button", "headerBackground": "bg", "headerForeground": "fg", - "separatorColor": "border", + "List": { + "background": "hc", + "selectionBackground": "selBg", + "selectionInactiveBackground": "hl" + }, "Projects": { - "actions.background": "cs", - "actions.selectionBackground": "hl", + "actions": { + "background": "cs", + "selectionBackground": "hl", + "selectionBorderColor": "accent" + }, "background": "second", "selectionBackground": "selBg", "selectionInactiveBackground": "selBg" + }, + "separatorColor": "border", + "SidePanel": { + "background": "second" } }, "Window.border": "border", diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Solarized Dark.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Solarized Dark.theme.json index 05bdde3c..44ff15fd 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Solarized Dark.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Solarized Dark.theme.json @@ -16,7 +16,7 @@ "second": "#003745", "dis": "#2E5861", "accent": "#d33682", - "accent2": "#d336822", + "acc2": "#2aa198", "accent50": "#d3368250", "accent70": "#d3368270", "cs": "#00252E", @@ -26,7 +26,7 @@ "hl": "#005a6f", "notif": "#2E4C52", "hc": "#002B36", - "shadow": "undefined", + "shadow": "#00000020", "white": "#268BD2", "blue": "#B58900", "red": "#268BD2", @@ -71,19 +71,25 @@ "hoverBorderColor": "accent50", "hoverSeparatorColor": "button", "pressedBackground": "accent50", - "pressedBorderColor": "accent50" + "pressedBorderColor": "accent50", + "separatorColor": "border" }, "ActionsList": { "icon.gap": 12, - "mnemonic.icon.gap": 12 + "mnemonic.icon.gap": 12, + "mnemonicInsets": "0,8,0,8", + "mnemonicsBorderInsets": "0,8,0,8", + "mnemonic.insets": "0,8,0,8" }, "ActionToolbar": { "background": "hc" }, - "AppInspector.GraphNode": { - "background": "second", - "borderColor": "border", - "focusedBorderColor": "accent" + "AppInspector": { + "GraphNode": { + "background": "second", + "borderColor": "border", + "focusedBorderColor": "accent" + } }, "AssignedMnemonic": { "background": "hl", @@ -99,13 +105,26 @@ "borderColor": "button", "foreground": "fg" }, - "BigSpinner.background": "bg", + "Banner": { + "foreground": "fg" + }, + "BigSpinner": { + "background": "bg" + }, "Bookmark": { "iconBackground": "accent", "Mnemonic": { "iconBackground": "hl", "iconBorderColor": "hl", "iconForeground": "fg" + }, + "MnemonicAssigned": { + "background": "table", + "foreground": "fg" + }, + "MnemonicCurrent": { + "background": "selBg", + "foreground": "selFg" } }, "BookmarkMnemonicAssigned": { @@ -128,13 +147,18 @@ "borderColor": "hl", "foreground": "fg" }, - "BookmarkIcon.background": "accent", - "Borders.ContrastBorderColor": "bg", - "Borders.color": "border", - "Breakpoint.iconHoverAlpha": 0.35, + "BookmarkIcon": { + "background": "accent" + }, + "Borders": { + "ContrastBorderColor": "bg", + "color": "border" + }, + "Breakpoint": { + "iconHoverAlpha": 0.35 + }, "Button": { "arc": 8, - "background": "bg", "darcula": { "borderColor": "button", "defaultBorderColor": "button", @@ -175,6 +199,7 @@ "focusedBorderColor": "accent", "foreground": "text", "highlight": "selFg", + "minimumSize": 72, "mt.background": "button", "mt.color1": "button", "mt.color2": "button", @@ -185,6 +210,12 @@ "select": "button", "shadowColor": "shadow", "shadowWidth": 0, + "Split": { + "default": { + "iconColor": "fg", + "separatorColor": "accent" + } + }, "startBackground": "table", "startBorderColor": "button", "ToolWindow": { @@ -195,11 +226,18 @@ "Tooltip.background": "notif", "Tooltip.borderColor": "border" }, + "CellEditor": { + "border": { + "width": 2 + } + }, "CheckBox": { "background": "bg", "background.selected": "accent", "borderColor": "bg", "borderColor.selected": "accent", + "border.width": 3, + "borderInsets": "4,4,4,4", "checkSignColor": "bg", "checkSignColor.selected": "bg", "checkSignColorDisabled": "bg", @@ -297,7 +335,9 @@ "foreground": "fg", "swatchesDefaultRecentColor": "fg" }, - "ComboBoxButton.background": "button", + "ComboBoxButton": { + "background": "button" + }, "ComboBox": { "ArrowButton": { "background": "button", @@ -327,14 +367,16 @@ "selectionBackground": "table", "selectionForeground": "activeFg" }, - "ComboPopup.border": "1,1,1,1,#d33682", + "ComboPopup": { + "border": "1,1,1,1,#d33682" + }, "CompletionPopup": { "Advertiser": { - "background": "bg", - "foreground": "fg", + "background": "second", + "foreground": "text", "borderInsets": "8,12,8,12" }, - "background": "second", + "background": "button", "foreground": "fg", "grayForeground": "text", "grayedForeground": "text", @@ -351,13 +393,20 @@ "selectionInactiveBackground": "hl", "selectionInactiveForeground": "text", "selectionInactiveInfoForeground": "text", - "selectionInfoForeground": "selFg" + "selectionInfoForeground": "selFg", + "selectionInnerInsets": "4,4,4,4" }, "ComplexPopup": { - "Header.background": "notif" + "Header": { + "background": "bg", + "insets": "12,12,12,12" + }, + "TextField": { + "inputInsets": "8,4,8,4" + } }, "Component": { - "arc": 4, + "arc": 6, "focusWidth": 2, "borderColor": "hl", "disabledBorderColor": "dis", @@ -440,7 +489,7 @@ "southPanelDivider": "bg" }, "DragAndDrop": { - "areaBackground": "tree", + "areaBackground": "selBg70", "areaBorderColor": "bg", "areaForeground": "fg", "backgroundBorderColor": "bg", @@ -453,18 +502,37 @@ "Editor": { "background": "hc", "foreground": "fg", + "Notification": { + "borderInsets": "10,12,10,12", + "WithoutStatus.borderInsets": "10,12,10,12" + }, + "ReplaceToolbar": { + "borderInsets": "4,12,4,12" + }, "shortcutForeground": "text", "SearchField": { "background": "cs", "borderInsets": "8,12,8,12" }, + "SearchReplaceModePanel": { + "borderInsets": "4,12,4,12" + }, + "SearchToolbar": { + "borderInsets": "4,12,4,12" + }, "Toolbar": { "borderColor": "border" + }, + "ToolTip": { + "border": "border", + "foreground": "fg", + "iconHoverBackground": "table", + "selectionBackground": "selBg" } }, "EditorGroupsTabs": { "background": "bg", - "borderColor": "second", + "borderColor": "border", "hoverBackground": "hl", "hoverColor": "hl", "inactiveUnderlineColor": "accent", @@ -474,6 +542,7 @@ }, "EditorPane": { "background": "hc", + "borderColor": "border", "caretForeground": "accent", "foreground": "fg", "inactiveBackground": "bg", @@ -483,21 +552,25 @@ "splitBorder": "border" }, "EditorTabs": { - "active.background": "table", - "active.foreground": "fg", - "active.underlineColor": "accent", + "active": { + "background": "table", + "foreground": "fg", + "underlineColor": "accent" + }, "background": "bg", - "borderColor": "second", "foreground": "fg", "hoverBackground": "hl", "hoverColor": "hl", "hoverMaskColor": "hl", "inactive.maskColor": "bg", - "inactiveColoredFileBackground": "bg", + "inactiveColoredFileBackground": "bg70", "inactiveMaskColor": "bg", "inactiveUnderlineColor": "dis", "selectedBackground": "table", "selectedForeground": "fg", + "tabContentInsetsActionsLeft": "0,6,0,6", + "tabContentInsetsActionsNone": "0,6,0,6", + "tabContentInsetsActionsRight": "0,6,0,6", "tabInsets": "-10,10,-10,10", "underlineColor": "accent", "underlineHeight": 3, @@ -515,6 +588,10 @@ "Gray": "excl", "excluded": "excl" }, + "FindPopup": { + "scopesPanelInsets": "4,16,4,16", + "bottomPanelInsets": "4,10,4,10" + }, "FlameGraph": { "JVMBackground": "#89DDF7", "JVMFocusBackground": "#82AAFF", @@ -555,15 +632,34 @@ "selectionForeground.unfocused": "selFg" }, "GotItTooltip": { + "animationBackground": "notif", "background": "notif", "borderColor": "notif", + "Button": { + "contrastBackground": "cs", + "endBackground": "button", + "foreground": "fg", + "startBackground": "button" + }, + "codeBackground": "cs", + "codeBorderColor": "bg", + "codeForeground": "fg", "endBackground": "button", "endBorderColor": "button", "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "imageBorderColor": "notif", "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "shortcutBackground": "notif", + "shortcutBorderColor": "border", "shortcutForeground": "text", "startBackground": "button", - "startBorderColor": "button" + "startBorderColor": "button", + "stepForeground": "text" }, "Group": { "disabledSeparatorColor": "border", @@ -587,7 +683,10 @@ "borderColor": "border", "defaultTextBorderInsets": "16,16,16,16", "foreground": "fg", + "fontSizeDelta": 0, + "horizontalGap": 10, "infoForeground": "text", + "maxWidth": 250, "shortcutForeground": "text", "shortcutTextColor": "text", "smallTextBorderInsets": "8,12,8,12", @@ -601,18 +700,29 @@ "MqTag": "text", "Tag": "text" }, - "Hyperlink.linkColor": "accent", - "IconBadge": { - "infoBackground": "accent" + "Hyperlink": { + "linkColor": "accent" + }, + "IconBadge": { + "infoBackground": "accent", + "newUiBackground": "accent" + }, + "IdeStatusBar": { + "border": "4,4,4,4" + }, + "InformationHint": { + "borderColor": "border" }, - "IdeStatusBar.border": "4,4,4,4", - "InformationHint.borderColor": "border", "inactiveCaption": "second", "inactiveCaptionBorder": "bg", "inactiveCaptionText": "text", "info": "text", "infoPanelForeground": "text", "infoText": "text", + "InlineBanner": { + "hoverBackground": "accent70", + "pressedBackground": "accent70" + }, "InplaceRefactoringPopup": { "background": "bg", "borderColor": "bg" @@ -622,10 +732,13 @@ "foreground": "fg" }, "InternalFrame": { + "activeTitleBackground": "bg", "activeTitleForeground": "fg", "background": "bg", "inactiveTitleBackground": "bg", - "inactiveTitleForeground": "text" + "inactiveTitleForeground": "text", + "optionDialogBackground": "bg", + "paletteBackground": "bg" }, "Label": { "background": "bg", @@ -676,20 +789,22 @@ "hoverBackground": "hl", "leftRightInset": 8, "separatorColor": "border", - "separatorInset": 4 + "separatorInset": 8 }, "foreground": "fg", "hoverBackground": "hl", "hoverInactiveBackground": "table", - "Line.hoverBackground": "selBg", + "Line": { + "hoverBackground": "selBg" + }, "rowHeight": "28", "selectionBackground": "tree", "selectionForeground": "selFg", "selectionInactiveBackground": "table", "selectionInactiveForeground": "activeFg", "Tag": { - "background": "button", - "foreground": "fg" + "foreground": "fg", + "background": "button" } }, "LiveIndicator": { @@ -703,31 +818,60 @@ "background": "hc", "foreground": "fg", "selectionForeground": "activeFg", - "selectionBackground": "selBg" + "selectionBackground": "selBg", + "transparentSelectionBackground": "tree" }, "MainToolbar": { "background": "bg", "Button": { - "buttonInsets": "0,0,0,0" + "buttonInsets": "0,4,0,4", + "iconSize": 20, + "size": "28,28" }, "Dropdown": { "borderInsets": "6,12,6,12", "background": "bg", "foreground": "fg", "hoverBackground": "hl", - "pressedBackground": "table" + "pressedBackground": "table", + "transparentHoverBackground": "accent70" }, + "foreground": "fg", "hoverBackground": "hl", "Icon": { - "borderInsets": "10,10,10,10", + "borderInsets": "4,4,4,4", "background": "bg", "hoverBackground": "hl", + "insets": "5,4,5,4", "pressedBackground": "table" }, "inactiveBackground": "bg", "pressedBackground": "table", - "separatorColor": "border" + "separatorColor": "border", + "SplitDropdown": { + "borderInsets": "6,6,6,6" + } }, + "MainWindow": { + "FullScreeControl": { + "Background": "hl" + }, + "Tab": { + "background": "bg", + "borderColor": "bg", + "foreground": "fg", + "hoverBackground": "hl", + "hoverForeground": "fg", + "selectedBackground": "selBg", + "selectedForeground": "selFg", + "selectedInactiveBackground": "excl", + "separatorColor": "border" + } + }, + "ManagedIdeBadgeBorder": "border", + "ManagedIdeBadgeBackground": "bg", + "ManagedIdeBadgeBackgroundHover": "accent70", + "ManagedIdeMenuItemHover": "selBg", "material": { "background": "bg", "branchColor": "fg", @@ -785,8 +929,12 @@ "disabledBackground": "bg", "disabledForeground": "dis", "foreground": "fg", + "insets": "0,4,0,4", "selectionBackground": "selBg", - "selectionForeground": "activeFg" + "selectionForeground": "activeFg", + "Selection": { + "arc": 8 + } }, "MlModelBinding.Viewer.CodeEditor.background": "bg", "MnemonicIcon": { @@ -797,6 +945,9 @@ "NavBar": { "arrowColor": "fg", "borderColor": "bg", + "Breadcrumbs": { + "itemInsets": "4,2,4,2" + }, "selectedColor": "accent" }, "NewClass": { @@ -806,15 +957,21 @@ "SearchField": { "background": "cs" }, - "separatorWidth": 6 + "separatorWidth": 10 }, "NewPSD.warning": "accent", + "NewUiOnboarding": { + "Dialog": { + "background": "second" + } + }, "Notification": { "arc": 16, "Error.foreground": "accent", "Link.foreground": "accent", "background": "notif", - "borderColor": "notif", + "borderColor": "border", + "borderInsets": "4,4,4,4", "errorBackground": "notif", "errorBorderColor": "notif", "errorForeground": "accent", @@ -855,18 +1012,27 @@ "ToolWindowWarning": { "foreground": "fg", "background": "notifWarn" + }, + "WelcomeScreen": { + "separatorColor": "border" } }, "Notifications": { "background": "notif", - "borderColor": "notif" + "borderColor": "border" }, "NotificationsToolwindow": { - "Notification.hoverBackground": "tree", - "newNotification.background": "notif", - "newNotification.hoverBackground": "tree" + "Notification": { + "hoverBackground": "tree" + }, + "newNotification": { + "background": "notif", + "hoverBackground": "tree" + } + }, + "OnePixelDivider": { + "background": "border" }, - "OnePixelDivider.background": "border", "OptionPane": { "background": "bg", "foreground": "fg", @@ -882,7 +1048,6 @@ "focusedColor": "accent" }, "Panel": { - "background": "bg", "foreground": "fg", "mouseShortcutBackground": "bg" }, @@ -911,16 +1076,6 @@ "Plugins": { "background": "bg", "borderColor": "border", - "disabledForeground": "dis", - "eapTagBackground": "hl", - "hoverBackground": "hl", - "lightSelectionBackground": "table", - "paidTagBackground": "hl", - "selectionBackground": "selBg", - "selectionForeground": "selFg", - "tagBackground": "hl", - "tagForeground": "accent", - "trialTagBackground": "hl", "Button": { "installBackground": "button", "installBorderColor": "button", @@ -928,10 +1083,15 @@ "installFillForeground": "dis", "installFocusedBackground": "hl", "installForeground": "fg", - "updateBackground": "accent", + "updateBackground": "button", "updateBorderColor": "button", "updateForeground": "fg" }, + "disabledForeground": "dis", + "eapTagBackground": "hl", + "hoverBackground": "hl", + "lightSelectionBackground": "table", + "paidTagBackground": "hl", "ScreenshotPagination": { "CurrentImage.fillColor": "accent" }, @@ -943,10 +1103,20 @@ "background": "second", "foreground": "fg" }, + "selectionBackground": "selBg", + "selectionForeground": "selFg", + "suggestedLabelBackground": "button", + "tagBackground": "hl", + "tagForeground": "accent", + "trialTagBackground": "hl", "Tab": { - "active.background": "table", - "active.foreground": "activeFg", - "hover.background": "table", + "active": { + "background": "table", + "foreground": "activeFg" + }, + "hover": { + "background": "table" + }, "hoverBackground": "table", "selectedBackground": "table", "selectedForeground": "selFg" @@ -954,6 +1124,7 @@ }, "Popup": { "Advertiser": { + "borderColor": "border", "borderInsets": "6,20,6,20", "background": "bg", "borderColor": "bg", @@ -968,24 +1139,33 @@ "color": "cs", "inactiveColor": "bg" }, - "background": "notif", + "background": "bg", "borderColor": "cs", "borderWidth": 0, "inactiveBorderColor": "bg", "innerBorderColor": "second", "Header": { "activeBackground": "bg", + "activeForeground": "fg", "inactiveBackground": "cs", - "inactiveForeground": "text" + "inactiveForeground": "dis", + "insets": "12,10,12,10" }, + "mnemonicForeground": "text", "paintBorder": false, "preferences": { "background": "bg", "borderColor": "bg", "foreground": "fg" }, - "Selection.arc": 8, - "Selection.leftRightInset": 8, + "SearchField": { + "borderInsets": "4,4,4,4", + "inputInsets": "4,4,4,4" + }, + "Selection": { + "arc": 8, + "leftRightInset": 8 + }, "Separator": { "foreground": "fg", "color": "border" @@ -1003,8 +1183,14 @@ "background": "bg", "borderWidth": 1, "border": "8,8,8,8", + "borderInsets": "10,10,10,10", "borderCornerRadius": 8, + "borderCornerRadiusX": 8, + "borderCornerRadiusY": 8, + "borderWidth": 1, "foreground": "fg", + "leftBorderWidth": 8, + "rightBorderWidth": 8, "Selection": { "arc": 8, "innerInsets": "8,2,8,2" @@ -1013,12 +1199,35 @@ "translucentBackground": "bg" }, "PopupMenuSeparator": { + "borderCornerRadius": 8, "height": 10, "stripeWidth": 2, "stripeIndent": 5, "withToEdge": 4, "borderCornerRadius": 8 }, + "PresentationAssistant": { + "Bright": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + }, + "Pale": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + } + }, + "Profiler": { + "neutralLifecycleEvent": "second", + "trackBackground": "button" + }, "ProgressBar": { "background": "bg", "foreground": "accent", @@ -1062,29 +1271,106 @@ "selectionBackground": "selBg", "selectionForeground": "selFg" }, + "Review": { + "Avatar": { + "Border": { + "Status": { + "Accepted": "accent", + "NeedReview": "hl" + } + } + }, + "Branch": { + "Background": "button", + "Background.Hover": "hl" + }, + "ChatItem": { + "BubblePanel": { + "Border": "button" + }, + "Hover": "table" + }, + "Editor": { + "Line": { + "Status": { + "Marker": "accent" + } + } + }, + "MetaInfo": { + "StatusLine": { + "Gray": "excl", + "Blue": "accent" + } + }, + "State": { + "Background": "second", + "Foreground": "fg" + }, + "Timeline": { + "Thread": { + "Diff": { + "AnchorLine": "table" + } + } + } + }, "ReviewList": { "state.background": "second", "state.foreground": "fg" }, + "RunToolbar": { + "Debug": { + "activeBackground": "hl" + }, + "Profile": { + "activeBackground": "hl" + }, + "Run": { + "activeBackground": "hl" + } + }, "RunWidget": { "background": "button", - "Debug.activeBackground": "hl", - "foreground": "fg", - "hoverBackground": "table", - "pressedBackground": "hl", - "Profile.activeBackground": "hl", + "Debug": { + "activeBackground": "hl" + }, + "foreground": "selFg", + "hoverBackground": "hl", + "iconColor": "fg", + "leftPressedBackground": "table", + "leftHoverBackground": "hl", + "pressedBackground": "table", + "Profile": { + "activeBackground": "hl" + }, "runningBackground": "hl", - "runningForeground": "selFg", - "Run.activeBackground": "hl", + "Run": { + "activeBackground": "hl" + }, "Running": { "background": "hl", - "foreground": "selFg", "leftHoverBackground": "hl", - "leftPressedBackground": "hl" + "leftPressedBackground": "table" }, - "separatorColor": "border" + "runningBackground": "hl", + "runningForeground": "selFg", + "runIconColor": "accent", + "separatorColor": "border", + "stopBackground": "second", + "StopButton": { + "leftHoverBackground": "hl", + "leftPressedBackground": "second" + }, + "toolbarHeight": 30, + "toolbarBorderHeight": 4 + }, + "ScreenView": { + "borderColor": "border", + "defaultBorderColor": "border", + "hoveredBorderColor": "hl", + "selectedBorderColor": "selBg" }, - "ScreenView.borderColor": "border", "scrollbar": "bg", "ScrollBar": { "background": "bg", @@ -1186,9 +1472,9 @@ }, "SegmentedButton": { "focusedSelectedButtonColor": "hl", + "selectedEndBorderColor": "accent", "selectedButtonColor": "button", - "selectedStartBorderColor": "border", - "selectedEndBorderColor": "border" + "selectedStartBorderColor": "accent" }, "Separator": { "background": "second", @@ -1198,6 +1484,7 @@ "Settings": { "Spotlight.borderColor": "accent" }, + "shortcutForeground": "text", "SidePanel": { "background": "hc" }, @@ -1222,6 +1509,7 @@ "foreground": "fg" }, "Spinner": { + "arrowButtonInsets": "1,1,1,1", "background": "bg", "border": "4,4,4,4", "disabledBackground": "excl", @@ -1232,11 +1520,16 @@ "background": "bg", "highlight": "hc" }, - "SplitPaneDivider.draggingColor": "second", - "StateWidget.activeBackground": "button", + "SplitPaneDivider": { + "draggingColor": "second" + }, + "StateWidget": { + "activeBackground": "button" + }, "StatusBar": { - "background": "bg", + "background": "bg10", "Breadcrumbs": { + "chevronInset": 0, "floatingBackground": "tree", "floatingForeground": "fg", "floatingToolbarInsets": "8,12,8,12", @@ -1244,6 +1537,7 @@ "hoverBackground": "tree", "hoverForeground": "fg", "itemBackgroundInsets": "2,4,2,4", + "itemInsets": 0, "selectionBackground": "selBg", "selectionForeground": "activeFg", "selectionInactiveBackground": "button", @@ -1264,6 +1558,13 @@ "widgetInsets": "8,12,8,12" } }, + "StripeToolbar": { + "Button": { + "iconSize": 20, + "iconPadding": 8, + "size": "40,40" + } + }, "TabbedPane": { "background": "bg", "borderColor": "hc", @@ -1290,6 +1591,7 @@ "selectedTabPadInsets": "0,0,0,0", "shadow": "hc", "tabHeight": 32, + "tabAreaInsets": 0, "tabInsets": "5,10,5,10", "tabSelectionArc": 4, "tabSelectionHeight": 2, @@ -1385,7 +1687,7 @@ "TitlePane": { "Button": { "hoverBackground": "hl", - "preferredSize": "48,40" + "preferredSize": "42,42" }, "background": "hc", "inactiveBackground": "bg", @@ -1407,15 +1709,23 @@ "onBackground": "accent", "onForeground": "accent" }, - "Toolbar.Floating.background": "button", + "Toolbar": { + "horizontalToolbarInsets": "8,8,8,8", + "Floating": { + "background": "button", + "borderColor": "border" + }, + "verticalToolbarInsets": "8,8,8,8" + }, "ToolBar": { "background": "hc", "borderHandleColor": "text", "comboBoxButtonBackground": "button", "floatingForeground": "text", "foreground": "fg", - "verticalToolbarInsets": "6,6,6,6", - "horizontalToolbarInsets": "6,6,6,6" + "horizontalToolbarInsets": "6,6,6,6", + "separatorColor": "border", + "verticalToolbarInsets": "6,6,6,6" }, "ToolbarComboWidget": { "background": "button", @@ -1426,6 +1736,21 @@ "actions.settings.icon.background.color": "bg", "description.title.text.color": "fg" }, + "Tooltip": { + "Learning": { + "codeBorderColor": "cs", + "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "spanBackground": "accent70", + "spanForeground": "fg" + }, + "separatorColor": "border" + }, "ToolTip": { "arc": 6, "actions": { @@ -1445,6 +1770,7 @@ "Learning": { "background": "accent", "borderColor": "accent", + "codeForeground": "fg", "foreground": "fg", "spanBackground": "accent50", "spanForeground": "fg", @@ -1463,25 +1789,44 @@ "Button": { "hoverBackground": "table", "DragAndDrop": { - "stripeBackground": "cs", - "buttonDropBackground": "accent70" + "stripeBackground": "bg", + "buttonDropBackground": "selBg70", + "buttonDropBorderColor": "accent", + "buttonFloatingBackground": "button" }, "selectedBackground": "cs", "selectedForeground": "activeFg" }, + "DragAndDrop": { + "areaBackground": "accent50" + }, "header": { - "active.background": "second", + "active": { + "background": "second" + }, "background": "bg", - "border.background": "second", - "closeButton.background": "bg", - "tab.selected.active.background": "cs", - "tab.selected.background": "cs" + "border": { + "background": "border" + }, + "closeButton": { + "background": "bg" + }, + "tab": { + "selected": { + "active": { + "background": "cs" + }, + "background": "cs" + } + } }, "Header": { "height": 42, "background": "second", - "borderColor": "second", - "inactiveBackground": "bg" + "borderColor": "border", + "inactiveBackground": "bg", + "labelLeftRightInsets": "0,12,0,16", + "toolbarLeftRightInsets": "0,12,0,8" }, "HeaderCloseButton": { "background": "bg" @@ -1506,6 +1851,12 @@ "inactive": { "Header.background": "bg", "HeaderTab.background": "cs" + }, + "Stripe": { + "DragAndDrop": { + "separatorColor": "accent50" + }, + "separatorColor": "table" } }, "Tree": { @@ -1522,13 +1873,17 @@ "selectionForeground": "selFg", "selectionInactiveBackground": "tree", "selectionInactiveForeground": "selFg", - "textBackground": "hc" + "textBackground": "hc", + "leftChildIndent": 10, + "rightChildIndent": 5 }, - "Tree.leftChildIndent": 10, - "Tree.rightChildIndent": 5, "UIDesigner": { - "Activity.borderColor": "border", - "Canvas.background": "cs", + "Activity": { + "borderColor": "border" + }, + "Canvas": { + "background": "cs" + }, "ColorPicker": { "background": "second", "foreground": "fg" @@ -1543,49 +1898,119 @@ "borderColor": "border", "hoverBorderColor": "hl" }, - "Label.foreground": "text", - "highStroke.foreground": "fg", + "Label": { + "foreground": "text" + }, + "highStroke": { + "foreground": "fg" + }, "motion": { "AddConstraintColor": "accent", "AddConstraintPlus": "accent", - "CSPanel.SelectedBackground": "tree", - "CSPanel.SelectedFocusBackground": "selBg", - "Component.foreground": "fg", - "ConstraintSet.background": "second", - "ConstraintSetText.foreground": "text", - "CursorTextColor.foreground": "fg", - "HoverColor.disabledBackground": "dis", - "Key.selectedForeground": "accent", - "Notification.background": "notif", + "Axis": { + "lineSeparatorColor": "fg" + }, + "CSPanel": { + "SelectedBackground": "tree", + "SelectedFocusBackground": "selBg" + }, + "Component": { + "foreground": "fg" + }, + "ConstraintSet": { + "background": "second" + }, + "ConstraintSetText": { + "foreground": "text" + }, + "CursorTextColor": { + "foreground": "fg" + }, + "HoverColor": { + "disabledBackground": "dis" + }, + "Key": { + "selectedForeground": "accent" + }, + "Notification": { + "background": "notif" + }, "PositionMarkColor": "accent", - "PrimaryPanel.background": "cs", - "SecondaryPanel.background": "bg", - "SecondaryPanel.header.background": "cs", - "SecondaryPanel.header.foreground": "text", - "TimeCursor.End.selectedForeground": "accent", - "TimeCursor.Start.selectedForeground": "accent", - "TimeCursor.selectedForeground": "accent", + "PrimaryPanel": { + "background": "cs" + }, + "SecondaryPanel": { + "background": "bg", + "header": { + "background": "cs", + "foreground": "text" + } + }, + "TimeCursor": { + "End": { + "selectedForeground": "accent" + }, + "selectedForeground": "accent", + "Start": { + "selectedForeground": "accent" + } + }, "borderColor": "border", - "cs_FocusText.infoForeground": "text", - "graphLine.lineSeparatorColor": "accent", - "motionGraph.background": "bg", - "ourAvg.background": "second", - "ourCS.background": "second", - "ourCS_Border.borderColor": "border", - "ourCS_SelectedBackground.selectionInactiveBackground": "table", - "ourCS_SelectedBorder.pressedBorderColor": "hl", - "ourCS_SelectedFocusBackground.selectionForeground": "selFg", - "ourCS_SelectedFocusBorder.focusedBorderColor": "accent", - "ourCS_TextColor.foreground": "text", - "ourML_BarColor.separatorColor": "border", - "timeLine.disabledBorderColor": "border" + "cs_FocusText": { + "infoForeground": "text" + }, + "graphLine": { + "lineSeparatorColor": "accent" + }, + "Grid": { + "lineSeparatorColor": "border" + }, + "label": { + "background": "second", + "textColor": "text" + }, + "motionGraph": { + "background": "bg" + }, + "ourAvg": { + "background": "second" + }, + "ourCS": { + "background": "second" + }, + "ourCS_Border": { + "borderColor": "border" + }, + "ourCS_SelectedBackground": { + "selectionInactiveBackground": "table" + }, + "ourCS_SelectedBorder": { + "pressedBorderColor": "hl" + }, + "ourCS_SelectedFocusBackground": { + "selectionForeground": "selFg" + }, + "ourCS_SelectedFocusBorder": { + "focusedBorderColor": "accent" + }, + "ourCS_TextColor": { + "foreground": "text" + }, + "ourML_BarColor": { + "separatorColor": "border" + }, + "timeLine": { + "disabledBorderColor": "border" + } }, "PackageDetails": { "border": "accent", "infoBanner": "accent" }, "PackageSearch": { - "PackagesList.rowHeight": 28, + "PackagesList": { + "rowHeight": 28 + }, "PackageTag": { "background": "excl", "foreground": "fg", @@ -1617,7 +2042,9 @@ "lines3d": "accent", "secondaryGraphLines": "border" }, - "percent.foreground": "fg", + "percent": { + "foreground": "fg" + }, "Placeholder": { "background": "bg", "borderColor": "border", @@ -1634,9 +2061,11 @@ "warningBorderColor": "notif" }, "VersionControl": { - "FileHistory.Commit": { - "otherBranchBackground": "excl", - "selectedBranchBackground": "bg" + "FileHistory": { + "Commit": { + "otherBranchBackground": "excl", + "selectedBranchBackground": "bg" + } }, "GitCommits": { "graphColor": "hl" @@ -1660,8 +2089,13 @@ "Commit": { "currentBranchBackground": "cs", "hoveredBackground": "tree", + "selectionInactiveForeground": "fg", + "Reference": { + "foreground": "text" + }, "rowHeight": 28, - "unmatchedForeground": "text" + "unmatchedForeground": "text", + "verticalPadding": 8 } }, "MarkerPopup": { @@ -1688,30 +2122,39 @@ "foreground": "fg" }, "WelcomeScreen": { - "AssociatedComponent.background": "bg", - "Details.background": "bg", - "List": { - "background": "hc", - "selectionBackground": "selBg", - "selectionInactiveBackground": "hl" + "AssociatedComponent": { + "background": "bg" }, - "SidePanel.background": "second", "background": "bg", "borderColor": "bg", "captionBackground": "cs", "captionForeground": "fg", + "Details": { + "background": "bg" + }, "footerBackground": "cs", "footerForeground": "fg", "groupIconBorderColor": "button", "headerBackground": "bg", "headerForeground": "fg", - "separatorColor": "border", + "List": { + "background": "hc", + "selectionBackground": "selBg", + "selectionInactiveBackground": "hl" + }, "Projects": { - "actions.background": "cs", - "actions.selectionBackground": "hl", + "actions": { + "background": "cs", + "selectionBackground": "hl", + "selectionBorderColor": "accent" + }, "background": "second", "selectionBackground": "selBg", "selectionInactiveBackground": "selBg" + }, + "separatorColor": "border", + "SidePanel": { + "background": "second" } }, "Window.border": "border", diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Solarized Light.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Solarized Light.theme.json index 400cc37e..56a1e959 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Solarized Light.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Solarized Light.theme.json @@ -16,7 +16,7 @@ "second": "#F6F0DE", "dis": "#C9CCC3", "accent": "#d33682", - "accent2": "#d336822", + "acc2": "#fede5d", "accent50": "#d3368250", "accent70": "#d3368270", "cs": "#eee8d5", @@ -26,7 +26,7 @@ "hl": "#d1cbb8", "notif": "#EDE8D4", "hc": "#fdf6e3", - "shadow": "undefined", + "shadow": "#ffffff20", "white": "#268BD2", "blue": "#B58900", "red": "#268BD2", @@ -71,19 +71,25 @@ "hoverBorderColor": "accent50", "hoverSeparatorColor": "button", "pressedBackground": "accent50", - "pressedBorderColor": "accent50" + "pressedBorderColor": "accent50", + "separatorColor": "border" }, "ActionsList": { "icon.gap": 12, - "mnemonic.icon.gap": 12 + "mnemonic.icon.gap": 12, + "mnemonicInsets": "0,8,0,8", + "mnemonicsBorderInsets": "0,8,0,8", + "mnemonic.insets": "0,8,0,8" }, "ActionToolbar": { "background": "hc" }, - "AppInspector.GraphNode": { - "background": "second", - "borderColor": "border", - "focusedBorderColor": "accent" + "AppInspector": { + "GraphNode": { + "background": "second", + "borderColor": "border", + "focusedBorderColor": "accent" + } }, "AssignedMnemonic": { "background": "hl", @@ -99,13 +105,26 @@ "borderColor": "button", "foreground": "fg" }, - "BigSpinner.background": "bg", + "Banner": { + "foreground": "fg" + }, + "BigSpinner": { + "background": "bg" + }, "Bookmark": { "iconBackground": "accent", "Mnemonic": { "iconBackground": "hl", "iconBorderColor": "hl", "iconForeground": "fg" + }, + "MnemonicAssigned": { + "background": "table", + "foreground": "fg" + }, + "MnemonicCurrent": { + "background": "selBg", + "foreground": "selFg" } }, "BookmarkMnemonicAssigned": { @@ -128,13 +147,18 @@ "borderColor": "hl", "foreground": "fg" }, - "BookmarkIcon.background": "accent", - "Borders.ContrastBorderColor": "bg", - "Borders.color": "border", - "Breakpoint.iconHoverAlpha": 0.35, + "BookmarkIcon": { + "background": "accent" + }, + "Borders": { + "ContrastBorderColor": "bg", + "color": "border" + }, + "Breakpoint": { + "iconHoverAlpha": 0.35 + }, "Button": { "arc": 8, - "background": "bg", "darcula": { "borderColor": "button", "defaultBorderColor": "button", @@ -175,6 +199,7 @@ "focusedBorderColor": "accent", "foreground": "text", "highlight": "selFg", + "minimumSize": 72, "mt.background": "button", "mt.color1": "button", "mt.color2": "button", @@ -185,6 +210,12 @@ "select": "button", "shadowColor": "shadow", "shadowWidth": 0, + "Split": { + "default": { + "iconColor": "fg", + "separatorColor": "accent" + } + }, "startBackground": "table", "startBorderColor": "button", "ToolWindow": { @@ -195,11 +226,18 @@ "Tooltip.background": "notif", "Tooltip.borderColor": "border" }, + "CellEditor": { + "border": { + "width": 2 + } + }, "CheckBox": { "background": "bg", "background.selected": "accent", "borderColor": "bg", "borderColor.selected": "accent", + "border.width": 3, + "borderInsets": "4,4,4,4", "checkSignColor": "bg", "checkSignColor.selected": "bg", "checkSignColorDisabled": "bg", @@ -297,7 +335,9 @@ "foreground": "fg", "swatchesDefaultRecentColor": "fg" }, - "ComboBoxButton.background": "button", + "ComboBoxButton": { + "background": "button" + }, "ComboBox": { "ArrowButton": { "background": "button", @@ -327,14 +367,16 @@ "selectionBackground": "table", "selectionForeground": "activeFg" }, - "ComboPopup.border": "1,1,1,1,#d33682", + "ComboPopup": { + "border": "1,1,1,1,#d33682" + }, "CompletionPopup": { "Advertiser": { - "background": "bg", - "foreground": "fg", + "background": "second", + "foreground": "text", "borderInsets": "8,12,8,12" }, - "background": "second", + "background": "button", "foreground": "fg", "grayForeground": "text", "grayedForeground": "text", @@ -351,13 +393,20 @@ "selectionInactiveBackground": "hl", "selectionInactiveForeground": "text", "selectionInactiveInfoForeground": "text", - "selectionInfoForeground": "selFg" + "selectionInfoForeground": "selFg", + "selectionInnerInsets": "4,4,4,4" }, "ComplexPopup": { - "Header.background": "notif" + "Header": { + "background": "bg", + "insets": "12,12,12,12" + }, + "TextField": { + "inputInsets": "8,4,8,4" + } }, "Component": { - "arc": 4, + "arc": 6, "focusWidth": 2, "borderColor": "hl", "disabledBorderColor": "dis", @@ -440,7 +489,7 @@ "southPanelDivider": "bg" }, "DragAndDrop": { - "areaBackground": "tree", + "areaBackground": "selBg70", "areaBorderColor": "bg", "areaForeground": "fg", "backgroundBorderColor": "bg", @@ -453,18 +502,37 @@ "Editor": { "background": "hc", "foreground": "fg", + "Notification": { + "borderInsets": "10,12,10,12", + "WithoutStatus.borderInsets": "10,12,10,12" + }, + "ReplaceToolbar": { + "borderInsets": "4,12,4,12" + }, "shortcutForeground": "text", "SearchField": { "background": "cs", "borderInsets": "8,12,8,12" }, + "SearchReplaceModePanel": { + "borderInsets": "4,12,4,12" + }, + "SearchToolbar": { + "borderInsets": "4,12,4,12" + }, "Toolbar": { "borderColor": "border" + }, + "ToolTip": { + "border": "border", + "foreground": "fg", + "iconHoverBackground": "table", + "selectionBackground": "selBg" } }, "EditorGroupsTabs": { "background": "bg", - "borderColor": "second", + "borderColor": "border", "hoverBackground": "hl", "hoverColor": "hl", "inactiveUnderlineColor": "accent", @@ -474,6 +542,7 @@ }, "EditorPane": { "background": "hc", + "borderColor": "border", "caretForeground": "accent", "foreground": "fg", "inactiveBackground": "bg", @@ -483,21 +552,25 @@ "splitBorder": "border" }, "EditorTabs": { - "active.background": "table", - "active.foreground": "fg", - "active.underlineColor": "accent", + "active": { + "background": "table", + "foreground": "fg", + "underlineColor": "accent" + }, "background": "bg", - "borderColor": "second", "foreground": "fg", "hoverBackground": "hl", "hoverColor": "hl", "hoverMaskColor": "hl", "inactive.maskColor": "bg", - "inactiveColoredFileBackground": "bg", + "inactiveColoredFileBackground": "bg70", "inactiveMaskColor": "bg", "inactiveUnderlineColor": "dis", "selectedBackground": "table", "selectedForeground": "fg", + "tabContentInsetsActionsLeft": "0,6,0,6", + "tabContentInsetsActionsNone": "0,6,0,6", + "tabContentInsetsActionsRight": "0,6,0,6", "tabInsets": "-10,10,-10,10", "underlineColor": "accent", "underlineHeight": 3, @@ -515,6 +588,10 @@ "Gray": "excl", "excluded": "excl" }, + "FindPopup": { + "scopesPanelInsets": "4,16,4,16", + "bottomPanelInsets": "4,10,4,10" + }, "FlameGraph": { "JVMBackground": "#89DDF7", "JVMFocusBackground": "#82AAFF", @@ -555,15 +632,34 @@ "selectionForeground.unfocused": "selFg" }, "GotItTooltip": { + "animationBackground": "notif", "background": "notif", "borderColor": "notif", + "Button": { + "contrastBackground": "cs", + "endBackground": "button", + "foreground": "fg", + "startBackground": "button" + }, + "codeBackground": "cs", + "codeBorderColor": "bg", + "codeForeground": "fg", "endBackground": "button", "endBorderColor": "button", "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "imageBorderColor": "notif", "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "shortcutBackground": "notif", + "shortcutBorderColor": "border", "shortcutForeground": "text", "startBackground": "button", - "startBorderColor": "button" + "startBorderColor": "button", + "stepForeground": "text" }, "Group": { "disabledSeparatorColor": "border", @@ -587,7 +683,10 @@ "borderColor": "border", "defaultTextBorderInsets": "16,16,16,16", "foreground": "fg", + "fontSizeDelta": 0, + "horizontalGap": 10, "infoForeground": "text", + "maxWidth": 250, "shortcutForeground": "text", "shortcutTextColor": "text", "smallTextBorderInsets": "8,12,8,12", @@ -601,18 +700,29 @@ "MqTag": "text", "Tag": "text" }, - "Hyperlink.linkColor": "accent", - "IconBadge": { - "infoBackground": "accent" + "Hyperlink": { + "linkColor": "accent" + }, + "IconBadge": { + "infoBackground": "accent", + "newUiBackground": "accent" + }, + "IdeStatusBar": { + "border": "4,4,4,4" + }, + "InformationHint": { + "borderColor": "border" }, - "IdeStatusBar.border": "4,4,4,4", - "InformationHint.borderColor": "border", "inactiveCaption": "second", "inactiveCaptionBorder": "bg", "inactiveCaptionText": "text", "info": "text", "infoPanelForeground": "text", "infoText": "text", + "InlineBanner": { + "hoverBackground": "accent70", + "pressedBackground": "accent70" + }, "InplaceRefactoringPopup": { "background": "bg", "borderColor": "bg" @@ -622,10 +732,13 @@ "foreground": "fg" }, "InternalFrame": { + "activeTitleBackground": "bg", "activeTitleForeground": "fg", "background": "bg", "inactiveTitleBackground": "bg", - "inactiveTitleForeground": "text" + "inactiveTitleForeground": "text", + "optionDialogBackground": "bg", + "paletteBackground": "bg" }, "Label": { "background": "bg", @@ -676,20 +789,22 @@ "hoverBackground": "hl", "leftRightInset": 8, "separatorColor": "border", - "separatorInset": 4 + "separatorInset": 8 }, "foreground": "fg", "hoverBackground": "hl", "hoverInactiveBackground": "table", - "Line.hoverBackground": "selBg", + "Line": { + "hoverBackground": "selBg" + }, "rowHeight": "28", "selectionBackground": "tree", "selectionForeground": "selFg", "selectionInactiveBackground": "table", "selectionInactiveForeground": "activeFg", "Tag": { - "background": "button", - "foreground": "fg" + "foreground": "fg", + "background": "button" } }, "LiveIndicator": { @@ -703,31 +818,60 @@ "background": "hc", "foreground": "fg", "selectionForeground": "activeFg", - "selectionBackground": "selBg" + "selectionBackground": "selBg", + "transparentSelectionBackground": "tree" }, "MainToolbar": { "background": "bg", "Button": { - "buttonInsets": "0,0,0,0" + "buttonInsets": "0,4,0,4", + "iconSize": 20, + "size": "28,28" }, "Dropdown": { "borderInsets": "6,12,6,12", "background": "bg", "foreground": "fg", "hoverBackground": "hl", - "pressedBackground": "table" + "pressedBackground": "table", + "transparentHoverBackground": "accent70" }, + "foreground": "fg", "hoverBackground": "hl", "Icon": { - "borderInsets": "10,10,10,10", + "borderInsets": "4,4,4,4", "background": "bg", "hoverBackground": "hl", + "insets": "5,4,5,4", "pressedBackground": "table" }, "inactiveBackground": "bg", "pressedBackground": "table", - "separatorColor": "border" + "separatorColor": "border", + "SplitDropdown": { + "borderInsets": "6,6,6,6" + } }, + "MainWindow": { + "FullScreeControl": { + "Background": "hl" + }, + "Tab": { + "background": "bg", + "borderColor": "bg", + "foreground": "fg", + "hoverBackground": "hl", + "hoverForeground": "fg", + "selectedBackground": "selBg", + "selectedForeground": "selFg", + "selectedInactiveBackground": "excl", + "separatorColor": "border" + } + }, + "ManagedIdeBadgeBorder": "border", + "ManagedIdeBadgeBackground": "bg", + "ManagedIdeBadgeBackgroundHover": "accent70", + "ManagedIdeMenuItemHover": "selBg", "material": { "background": "bg", "branchColor": "fg", @@ -785,8 +929,12 @@ "disabledBackground": "bg", "disabledForeground": "dis", "foreground": "fg", + "insets": "0,4,0,4", "selectionBackground": "selBg", - "selectionForeground": "activeFg" + "selectionForeground": "activeFg", + "Selection": { + "arc": 8 + } }, "MlModelBinding.Viewer.CodeEditor.background": "bg", "MnemonicIcon": { @@ -797,6 +945,9 @@ "NavBar": { "arrowColor": "fg", "borderColor": "bg", + "Breadcrumbs": { + "itemInsets": "4,2,4,2" + }, "selectedColor": "accent" }, "NewClass": { @@ -806,15 +957,21 @@ "SearchField": { "background": "cs" }, - "separatorWidth": 6 + "separatorWidth": 10 }, "NewPSD.warning": "accent", + "NewUiOnboarding": { + "Dialog": { + "background": "second" + } + }, "Notification": { "arc": 16, "Error.foreground": "accent", "Link.foreground": "accent", "background": "notif", - "borderColor": "notif", + "borderColor": "border", + "borderInsets": "4,4,4,4", "errorBackground": "notif", "errorBorderColor": "notif", "errorForeground": "accent", @@ -855,18 +1012,27 @@ "ToolWindowWarning": { "foreground": "fg", "background": "notifWarn" + }, + "WelcomeScreen": { + "separatorColor": "border" } }, "Notifications": { "background": "notif", - "borderColor": "notif" + "borderColor": "border" }, "NotificationsToolwindow": { - "Notification.hoverBackground": "tree", - "newNotification.background": "notif", - "newNotification.hoverBackground": "tree" + "Notification": { + "hoverBackground": "tree" + }, + "newNotification": { + "background": "notif", + "hoverBackground": "tree" + } + }, + "OnePixelDivider": { + "background": "border" }, - "OnePixelDivider.background": "border", "OptionPane": { "background": "bg", "foreground": "fg", @@ -882,7 +1048,6 @@ "focusedColor": "accent" }, "Panel": { - "background": "bg", "foreground": "fg", "mouseShortcutBackground": "bg" }, @@ -911,16 +1076,6 @@ "Plugins": { "background": "bg", "borderColor": "border", - "disabledForeground": "dis", - "eapTagBackground": "hl", - "hoverBackground": "hl", - "lightSelectionBackground": "table", - "paidTagBackground": "hl", - "selectionBackground": "selBg", - "selectionForeground": "selFg", - "tagBackground": "hl", - "tagForeground": "accent", - "trialTagBackground": "hl", "Button": { "installBackground": "button", "installBorderColor": "button", @@ -928,10 +1083,15 @@ "installFillForeground": "dis", "installFocusedBackground": "hl", "installForeground": "fg", - "updateBackground": "accent", + "updateBackground": "button", "updateBorderColor": "button", "updateForeground": "fg" }, + "disabledForeground": "dis", + "eapTagBackground": "hl", + "hoverBackground": "hl", + "lightSelectionBackground": "table", + "paidTagBackground": "hl", "ScreenshotPagination": { "CurrentImage.fillColor": "accent" }, @@ -943,10 +1103,20 @@ "background": "second", "foreground": "fg" }, + "selectionBackground": "selBg", + "selectionForeground": "selFg", + "suggestedLabelBackground": "button", + "tagBackground": "hl", + "tagForeground": "accent", + "trialTagBackground": "hl", "Tab": { - "active.background": "table", - "active.foreground": "activeFg", - "hover.background": "table", + "active": { + "background": "table", + "foreground": "activeFg" + }, + "hover": { + "background": "table" + }, "hoverBackground": "table", "selectedBackground": "table", "selectedForeground": "selFg" @@ -954,6 +1124,7 @@ }, "Popup": { "Advertiser": { + "borderColor": "border", "borderInsets": "6,20,6,20", "background": "bg", "borderColor": "bg", @@ -968,24 +1139,33 @@ "color": "cs", "inactiveColor": "bg" }, - "background": "notif", + "background": "bg", "borderColor": "cs", "borderWidth": 0, "inactiveBorderColor": "bg", "innerBorderColor": "second", "Header": { "activeBackground": "bg", + "activeForeground": "fg", "inactiveBackground": "cs", - "inactiveForeground": "text" + "inactiveForeground": "dis", + "insets": "12,10,12,10" }, + "mnemonicForeground": "text", "paintBorder": false, "preferences": { "background": "bg", "borderColor": "bg", "foreground": "fg" }, - "Selection.arc": 8, - "Selection.leftRightInset": 8, + "SearchField": { + "borderInsets": "4,4,4,4", + "inputInsets": "4,4,4,4" + }, + "Selection": { + "arc": 8, + "leftRightInset": 8 + }, "Separator": { "foreground": "fg", "color": "border" @@ -1003,8 +1183,14 @@ "background": "bg", "borderWidth": 1, "border": "8,8,8,8", + "borderInsets": "10,10,10,10", "borderCornerRadius": 8, + "borderCornerRadiusX": 8, + "borderCornerRadiusY": 8, + "borderWidth": 1, "foreground": "fg", + "leftBorderWidth": 8, + "rightBorderWidth": 8, "Selection": { "arc": 8, "innerInsets": "8,2,8,2" @@ -1013,12 +1199,35 @@ "translucentBackground": "bg" }, "PopupMenuSeparator": { + "borderCornerRadius": 8, "height": 10, "stripeWidth": 2, "stripeIndent": 5, "withToEdge": 4, "borderCornerRadius": 8 }, + "PresentationAssistant": { + "Bright": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + }, + "Pale": { + "keymapLabel": "text", + "Popup": { + "border": "border", + "foreground": "fg" + }, + "PopupBackground": "notif" + } + }, + "Profiler": { + "neutralLifecycleEvent": "second", + "trackBackground": "button" + }, "ProgressBar": { "background": "bg", "foreground": "accent", @@ -1062,29 +1271,106 @@ "selectionBackground": "selBg", "selectionForeground": "selFg" }, + "Review": { + "Avatar": { + "Border": { + "Status": { + "Accepted": "accent", + "NeedReview": "hl" + } + } + }, + "Branch": { + "Background": "button", + "Background.Hover": "hl" + }, + "ChatItem": { + "BubblePanel": { + "Border": "button" + }, + "Hover": "table" + }, + "Editor": { + "Line": { + "Status": { + "Marker": "accent" + } + } + }, + "MetaInfo": { + "StatusLine": { + "Gray": "excl", + "Blue": "accent" + } + }, + "State": { + "Background": "second", + "Foreground": "fg" + }, + "Timeline": { + "Thread": { + "Diff": { + "AnchorLine": "table" + } + } + } + }, "ReviewList": { "state.background": "second", "state.foreground": "fg" }, + "RunToolbar": { + "Debug": { + "activeBackground": "hl" + }, + "Profile": { + "activeBackground": "hl" + }, + "Run": { + "activeBackground": "hl" + } + }, "RunWidget": { "background": "button", - "Debug.activeBackground": "hl", - "foreground": "fg", - "hoverBackground": "table", - "pressedBackground": "hl", - "Profile.activeBackground": "hl", + "Debug": { + "activeBackground": "hl" + }, + "foreground": "selFg", + "hoverBackground": "hl", + "iconColor": "fg", + "leftPressedBackground": "table", + "leftHoverBackground": "hl", + "pressedBackground": "table", + "Profile": { + "activeBackground": "hl" + }, "runningBackground": "hl", - "runningForeground": "selFg", - "Run.activeBackground": "hl", + "Run": { + "activeBackground": "hl" + }, "Running": { "background": "hl", - "foreground": "selFg", "leftHoverBackground": "hl", - "leftPressedBackground": "hl" + "leftPressedBackground": "table" }, - "separatorColor": "border" + "runningBackground": "hl", + "runningForeground": "selFg", + "runIconColor": "accent", + "separatorColor": "border", + "stopBackground": "second", + "StopButton": { + "leftHoverBackground": "hl", + "leftPressedBackground": "second" + }, + "toolbarHeight": 30, + "toolbarBorderHeight": 4 + }, + "ScreenView": { + "borderColor": "border", + "defaultBorderColor": "border", + "hoveredBorderColor": "hl", + "selectedBorderColor": "selBg" }, - "ScreenView.borderColor": "border", "scrollbar": "bg", "ScrollBar": { "background": "bg", @@ -1186,9 +1472,9 @@ }, "SegmentedButton": { "focusedSelectedButtonColor": "hl", + "selectedEndBorderColor": "accent", "selectedButtonColor": "button", - "selectedStartBorderColor": "border", - "selectedEndBorderColor": "border" + "selectedStartBorderColor": "accent" }, "Separator": { "background": "second", @@ -1198,6 +1484,7 @@ "Settings": { "Spotlight.borderColor": "accent" }, + "shortcutForeground": "text", "SidePanel": { "background": "hc" }, @@ -1222,6 +1509,7 @@ "foreground": "fg" }, "Spinner": { + "arrowButtonInsets": "1,1,1,1", "background": "bg", "border": "4,4,4,4", "disabledBackground": "excl", @@ -1232,11 +1520,16 @@ "background": "bg", "highlight": "hc" }, - "SplitPaneDivider.draggingColor": "second", - "StateWidget.activeBackground": "button", + "SplitPaneDivider": { + "draggingColor": "second" + }, + "StateWidget": { + "activeBackground": "button" + }, "StatusBar": { - "background": "bg", + "background": "bg10", "Breadcrumbs": { + "chevronInset": 0, "floatingBackground": "tree", "floatingForeground": "fg", "floatingToolbarInsets": "8,12,8,12", @@ -1244,6 +1537,7 @@ "hoverBackground": "tree", "hoverForeground": "fg", "itemBackgroundInsets": "2,4,2,4", + "itemInsets": 0, "selectionBackground": "selBg", "selectionForeground": "activeFg", "selectionInactiveBackground": "button", @@ -1264,6 +1558,13 @@ "widgetInsets": "8,12,8,12" } }, + "StripeToolbar": { + "Button": { + "iconSize": 20, + "iconPadding": 8, + "size": "40,40" + } + }, "TabbedPane": { "background": "bg", "borderColor": "hc", @@ -1290,6 +1591,7 @@ "selectedTabPadInsets": "0,0,0,0", "shadow": "hc", "tabHeight": 32, + "tabAreaInsets": 0, "tabInsets": "5,10,5,10", "tabSelectionArc": 4, "tabSelectionHeight": 2, @@ -1385,7 +1687,7 @@ "TitlePane": { "Button": { "hoverBackground": "hl", - "preferredSize": "48,40" + "preferredSize": "42,42" }, "background": "hc", "inactiveBackground": "bg", @@ -1407,15 +1709,23 @@ "onBackground": "accent", "onForeground": "accent" }, - "Toolbar.Floating.background": "button", + "Toolbar": { + "horizontalToolbarInsets": "8,8,8,8", + "Floating": { + "background": "button", + "borderColor": "border" + }, + "verticalToolbarInsets": "8,8,8,8" + }, "ToolBar": { "background": "hc", "borderHandleColor": "text", "comboBoxButtonBackground": "button", "floatingForeground": "text", "foreground": "fg", - "verticalToolbarInsets": "6,6,6,6", - "horizontalToolbarInsets": "6,6,6,6" + "horizontalToolbarInsets": "6,6,6,6", + "separatorColor": "border", + "verticalToolbarInsets": "6,6,6,6" }, "ToolbarComboWidget": { "background": "button", @@ -1426,6 +1736,21 @@ "actions.settings.icon.background.color": "bg", "description.title.text.color": "fg" }, + "Tooltip": { + "Learning": { + "codeBorderColor": "cs", + "foreground": "fg", + "Header": { + "foreground": "fg" + }, + "linkForeground": "accent", + "linkUnderlineHoveredColor": "accent", + "secondaryActionForeground": "text", + "spanBackground": "accent70", + "spanForeground": "fg" + }, + "separatorColor": "border" + }, "ToolTip": { "arc": 6, "actions": { @@ -1445,6 +1770,7 @@ "Learning": { "background": "accent", "borderColor": "accent", + "codeForeground": "fg", "foreground": "fg", "spanBackground": "accent50", "spanForeground": "fg", @@ -1463,25 +1789,44 @@ "Button": { "hoverBackground": "table", "DragAndDrop": { - "stripeBackground": "cs", - "buttonDropBackground": "accent70" + "stripeBackground": "bg", + "buttonDropBackground": "selBg70", + "buttonDropBorderColor": "accent", + "buttonFloatingBackground": "button" }, "selectedBackground": "cs", "selectedForeground": "activeFg" }, + "DragAndDrop": { + "areaBackground": "accent50" + }, "header": { - "active.background": "second", + "active": { + "background": "second" + }, "background": "bg", - "border.background": "second", - "closeButton.background": "bg", - "tab.selected.active.background": "cs", - "tab.selected.background": "cs" + "border": { + "background": "border" + }, + "closeButton": { + "background": "bg" + }, + "tab": { + "selected": { + "active": { + "background": "cs" + }, + "background": "cs" + } + } }, "Header": { "height": 42, "background": "second", - "borderColor": "second", - "inactiveBackground": "bg" + "borderColor": "border", + "inactiveBackground": "bg", + "labelLeftRightInsets": "0,12,0,16", + "toolbarLeftRightInsets": "0,12,0,8" }, "HeaderCloseButton": { "background": "bg" @@ -1506,6 +1851,12 @@ "inactive": { "Header.background": "bg", "HeaderTab.background": "cs" + }, + "Stripe": { + "DragAndDrop": { + "separatorColor": "accent50" + }, + "separatorColor": "table" } }, "Tree": { @@ -1522,13 +1873,17 @@ "selectionForeground": "selFg", "selectionInactiveBackground": "tree", "selectionInactiveForeground": "selFg", - "textBackground": "hc" + "textBackground": "hc", + "leftChildIndent": 10, + "rightChildIndent": 5 }, - "Tree.leftChildIndent": 10, - "Tree.rightChildIndent": 5, "UIDesigner": { - "Activity.borderColor": "border", - "Canvas.background": "cs", + "Activity": { + "borderColor": "border" + }, + "Canvas": { + "background": "cs" + }, "ColorPicker": { "background": "second", "foreground": "fg" @@ -1543,49 +1898,119 @@ "borderColor": "border", "hoverBorderColor": "hl" }, - "Label.foreground": "text", - "highStroke.foreground": "fg", + "Label": { + "foreground": "text" + }, + "highStroke": { + "foreground": "fg" + }, "motion": { "AddConstraintColor": "accent", "AddConstraintPlus": "accent", - "CSPanel.SelectedBackground": "tree", - "CSPanel.SelectedFocusBackground": "selBg", - "Component.foreground": "fg", - "ConstraintSet.background": "second", - "ConstraintSetText.foreground": "text", - "CursorTextColor.foreground": "fg", - "HoverColor.disabledBackground": "dis", - "Key.selectedForeground": "accent", - "Notification.background": "notif", + "Axis": { + "lineSeparatorColor": "fg" + }, + "CSPanel": { + "SelectedBackground": "tree", + "SelectedFocusBackground": "selBg" + }, + "Component": { + "foreground": "fg" + }, + "ConstraintSet": { + "background": "second" + }, + "ConstraintSetText": { + "foreground": "text" + }, + "CursorTextColor": { + "foreground": "fg" + }, + "HoverColor": { + "disabledBackground": "dis" + }, + "Key": { + "selectedForeground": "accent" + }, + "Notification": { + "background": "notif" + }, "PositionMarkColor": "accent", - "PrimaryPanel.background": "cs", - "SecondaryPanel.background": "bg", - "SecondaryPanel.header.background": "cs", - "SecondaryPanel.header.foreground": "text", - "TimeCursor.End.selectedForeground": "accent", - "TimeCursor.Start.selectedForeground": "accent", - "TimeCursor.selectedForeground": "accent", + "PrimaryPanel": { + "background": "cs" + }, + "SecondaryPanel": { + "background": "bg", + "header": { + "background": "cs", + "foreground": "text" + } + }, + "TimeCursor": { + "End": { + "selectedForeground": "accent" + }, + "selectedForeground": "accent", + "Start": { + "selectedForeground": "accent" + } + }, "borderColor": "border", - "cs_FocusText.infoForeground": "text", - "graphLine.lineSeparatorColor": "accent", - "motionGraph.background": "bg", - "ourAvg.background": "second", - "ourCS.background": "second", - "ourCS_Border.borderColor": "border", - "ourCS_SelectedBackground.selectionInactiveBackground": "table", - "ourCS_SelectedBorder.pressedBorderColor": "hl", - "ourCS_SelectedFocusBackground.selectionForeground": "selFg", - "ourCS_SelectedFocusBorder.focusedBorderColor": "accent", - "ourCS_TextColor.foreground": "text", - "ourML_BarColor.separatorColor": "border", - "timeLine.disabledBorderColor": "border" + "cs_FocusText": { + "infoForeground": "text" + }, + "graphLine": { + "lineSeparatorColor": "accent" + }, + "Grid": { + "lineSeparatorColor": "border" + }, + "label": { + "background": "second", + "textColor": "text" + }, + "motionGraph": { + "background": "bg" + }, + "ourAvg": { + "background": "second" + }, + "ourCS": { + "background": "second" + }, + "ourCS_Border": { + "borderColor": "border" + }, + "ourCS_SelectedBackground": { + "selectionInactiveBackground": "table" + }, + "ourCS_SelectedBorder": { + "pressedBorderColor": "hl" + }, + "ourCS_SelectedFocusBackground": { + "selectionForeground": "selFg" + }, + "ourCS_SelectedFocusBorder": { + "focusedBorderColor": "accent" + }, + "ourCS_TextColor": { + "foreground": "text" + }, + "ourML_BarColor": { + "separatorColor": "border" + }, + "timeLine": { + "disabledBorderColor": "border" + } }, "PackageDetails": { "border": "accent", "infoBanner": "accent" }, "PackageSearch": { - "PackagesList.rowHeight": 28, + "PackagesList": { + "rowHeight": 28 + }, "PackageTag": { "background": "excl", "foreground": "fg", @@ -1617,7 +2042,9 @@ "lines3d": "accent", "secondaryGraphLines": "border" }, - "percent.foreground": "fg", + "percent": { + "foreground": "fg" + }, "Placeholder": { "background": "bg", "borderColor": "border", @@ -1634,9 +2061,11 @@ "warningBorderColor": "notif" }, "VersionControl": { - "FileHistory.Commit": { - "otherBranchBackground": "excl", - "selectedBranchBackground": "bg" + "FileHistory": { + "Commit": { + "otherBranchBackground": "excl", + "selectedBranchBackground": "bg" + } }, "GitCommits": { "graphColor": "hl" @@ -1660,8 +2089,13 @@ "Commit": { "currentBranchBackground": "cs", "hoveredBackground": "tree", + "selectionInactiveForeground": "fg", + "Reference": { + "foreground": "text" + }, "rowHeight": 28, - "unmatchedForeground": "text" + "unmatchedForeground": "text", + "verticalPadding": 8 } }, "MarkerPopup": { @@ -1688,30 +2122,39 @@ "foreground": "fg" }, "WelcomeScreen": { - "AssociatedComponent.background": "bg", - "Details.background": "bg", - "List": { - "background": "hc", - "selectionBackground": "selBg", - "selectionInactiveBackground": "hl" + "AssociatedComponent": { + "background": "bg" }, - "SidePanel.background": "second", "background": "bg", "borderColor": "bg", "captionBackground": "cs", "captionForeground": "fg", + "Details": { + "background": "bg" + }, "footerBackground": "cs", "footerForeground": "fg", "groupIconBorderColor": "button", "headerBackground": "bg", "headerForeground": "fg", - "separatorColor": "border", + "List": { + "background": "hc", + "selectionBackground": "selBg", + "selectionInactiveBackground": "hl" + }, "Projects": { - "actions.background": "cs", - "actions.selectionBackground": "hl", + "actions": { + "background": "cs", + "selectionBackground": "hl", + "selectionBorderColor": "accent" + }, "background": "second", "selectionBackground": "selBg", "selectionInactiveBackground": "selBg" + }, + "separatorColor": "border", + "SidePanel": { + "background": "second" } }, "Window.border": "border",