diff --git a/CHANGELOG.md b/CHANGELOG.md index 60e0aa78..d12c0bb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,8 @@ FlatLaf Change Log `FlatUIDefaultsInspector.createInspectorPanel()`. - Copy selected keys and values into clipboard via context menu. - IntelliJ Themes: - - Updated "Dracula" and "Gradianto" themes. + - Added "Material Theme UI Lite / Moonlight" theme. + - Updated "Dracula", "Gradianto" and "Material Theme UI Lite" themes. #### Fixed bugs 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 a1f0fd19..49b4e182 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 @@ -410,6 +410,22 @@ "sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite", "sourceCodePath": "blob/master/src/main/resources/themes/Monokai Pro Contrast.theme.json" }, + "material-theme-ui-lite/Moonlight.theme.json": { + "name": "Material Theme UI Lite / Moonlight", + "dark": true, + "license": "MIT", + "licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt", + "sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite", + "sourceCodePath": "blob/master/src/main/resources/themes/Moonlight.theme.json" + }, + "material-theme-ui-lite/Moonlight Contrast.theme.json": { + "name": "Material Theme UI Lite / Moonlight Contrast", + "dark": true, + "license": "MIT", + "licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt", + "sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite", + "sourceCodePath": "blob/master/src/main/resources/themes/Moonlight Contrast.theme.json" + }, "material-theme-ui-lite/Night Owl.theme.json": { "name": "Material Theme UI Lite / Night Owl", "dark": true, diff --git a/flatlaf-intellij-themes/README.md b/flatlaf-intellij-themes/README.md index ad0d1534..cac648ef 100644 --- a/flatlaf-intellij-themes/README.md +++ b/flatlaf-intellij-themes/README.md @@ -101,6 +101,8 @@ Name | Class [Material Palenight Contrast (Material)](https://github.com/mallowigi/material-theme-ui-lite) | `com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatMaterialPalenightContrastIJTheme` [Monokai Pro (Material)](https://github.com/mallowigi/material-theme-ui-lite) | `com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatMonokaiProIJTheme` [Monokai Pro Contrast (Material)](https://github.com/mallowigi/material-theme-ui-lite) | `com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatMonokaiProContrastIJTheme` +[Moonlight (Material)](https://github.com/mallowigi/material-theme-ui-lite) | `com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatMoonlightIJTheme` +[Moonlight Contrast (Material)](https://github.com/mallowigi/material-theme-ui-lite) | `com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatMoonlightContrastIJTheme` [Night Owl (Material)](https://github.com/mallowigi/material-theme-ui-lite) | `com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatNightOwlIJTheme` [Night Owl Contrast (Material)](https://github.com/mallowigi/material-theme-ui-lite) | `com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatNightOwlContrastIJTheme` [Solarized Dark (Material)](https://github.com/mallowigi/material-theme-ui-lite) | `com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatSolarizedDarkIJTheme` diff --git a/flatlaf-intellij-themes/src/main/java/com/formdev/flatlaf/intellijthemes/FlatAllIJThemes.java b/flatlaf-intellij-themes/src/main/java/com/formdev/flatlaf/intellijthemes/FlatAllIJThemes.java index 4dad3a7d..d6b2833a 100644 --- a/flatlaf-intellij-themes/src/main/java/com/formdev/flatlaf/intellijthemes/FlatAllIJThemes.java +++ b/flatlaf-intellij-themes/src/main/java/com/formdev/flatlaf/intellijthemes/FlatAllIJThemes.java @@ -82,6 +82,8 @@ public class FlatAllIJThemes new FlatIJLookAndFeelInfo( "Material Palenight Contrast (Material)", "com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatMaterialPalenightContrastIJTheme", true ), new FlatIJLookAndFeelInfo( "Monokai Pro (Material)", "com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatMonokaiProIJTheme", true ), new FlatIJLookAndFeelInfo( "Monokai Pro Contrast (Material)", "com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatMonokaiProContrastIJTheme", true ), + new FlatIJLookAndFeelInfo( "Moonlight (Material)", "com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatMoonlightIJTheme", true ), + new FlatIJLookAndFeelInfo( "Moonlight Contrast (Material)", "com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatMoonlightContrastIJTheme", true ), new FlatIJLookAndFeelInfo( "Night Owl (Material)", "com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatNightOwlIJTheme", true ), new FlatIJLookAndFeelInfo( "Night Owl Contrast (Material)", "com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatNightOwlContrastIJTheme", true ), new FlatIJLookAndFeelInfo( "Solarized Dark (Material)", "com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatSolarizedDarkIJTheme", true ), diff --git a/flatlaf-intellij-themes/src/main/java/com/formdev/flatlaf/intellijthemes/materialthemeuilite/FlatMoonlightContrastIJTheme.java b/flatlaf-intellij-themes/src/main/java/com/formdev/flatlaf/intellijthemes/materialthemeuilite/FlatMoonlightContrastIJTheme.java new file mode 100644 index 00000000..e2d60dd0 --- /dev/null +++ b/flatlaf-intellij-themes/src/main/java/com/formdev/flatlaf/intellijthemes/materialthemeuilite/FlatMoonlightContrastIJTheme.java @@ -0,0 +1,54 @@ +/* + * Copyright 2020 FormDev Software GmbH + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.formdev.flatlaf.intellijthemes.materialthemeuilite; + +// +// DO NOT MODIFY +// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator +// + +import com.formdev.flatlaf.IntelliJTheme; + +/** + * @author Karl Tauber + */ +public class FlatMoonlightContrastIJTheme + extends IntelliJTheme.ThemeLaf +{ + public static final String NAME = "Moonlight Contrast (Material)"; + + public static boolean install() { + try { + return install( new FlatMoonlightContrastIJTheme() ); + } catch( RuntimeException ex ) { + return false; + } + } + + public static void installLafInfo() { + installLafInfo( NAME, FlatMoonlightContrastIJTheme.class ); + } + + public FlatMoonlightContrastIJTheme() { + super( Utils.loadTheme( "Moonlight Contrast.theme.json" ) ); + } + + @Override + public String getName() { + return NAME; + } +} diff --git a/flatlaf-intellij-themes/src/main/java/com/formdev/flatlaf/intellijthemes/materialthemeuilite/FlatMoonlightIJTheme.java b/flatlaf-intellij-themes/src/main/java/com/formdev/flatlaf/intellijthemes/materialthemeuilite/FlatMoonlightIJTheme.java new file mode 100644 index 00000000..6b2026c3 --- /dev/null +++ b/flatlaf-intellij-themes/src/main/java/com/formdev/flatlaf/intellijthemes/materialthemeuilite/FlatMoonlightIJTheme.java @@ -0,0 +1,54 @@ +/* + * Copyright 2020 FormDev Software GmbH + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.formdev.flatlaf.intellijthemes.materialthemeuilite; + +// +// DO NOT MODIFY +// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator +// + +import com.formdev.flatlaf.IntelliJTheme; + +/** + * @author Karl Tauber + */ +public class FlatMoonlightIJTheme + extends IntelliJTheme.ThemeLaf +{ + public static final String NAME = "Moonlight (Material)"; + + public static boolean install() { + try { + return install( new FlatMoonlightIJTheme() ); + } catch( RuntimeException ex ) { + return false; + } + } + + public static void installLafInfo() { + installLafInfo( NAME, FlatMoonlightIJTheme.class ); + } + + public FlatMoonlightIJTheme() { + super( Utils.loadTheme( "Moonlight.theme.json" ) ); + } + + @Override + public String getName() { + return NAME; + } +} diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Arc Dark Contrast.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Arc Dark Contrast.theme.json index 4516c784..5809bd42 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Arc Dark Contrast.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Arc Dark Contrast.theme.json @@ -3,18 +3,24 @@ "dark": true, "author": "Mallowigi", "editorScheme": "/colors/Arc Dark.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/arcdark.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { "acceleratorSelectionForeground": "#8b9eb5", "background": "#2f343f", "borderColor": "#404552", - "disabledBackground": "#37373d", + "disabledBackground": "#474B57", "disabledForeground": "#D3DAE3", "disabledText": "#D3DAE3", - "focusColor": "#08507C", + "focusColor": "#3F3F46", "focusedBorderColor": "#42A5F5", "foreground": "#D3DAE3", - "inactiveBackground": "#37373d", + "inactiveBackground": "#474B57", "inactiveForeground": "#8b9eb5", "infoForeground": "#8b9eb5", "selectionBackground": "#8888FF", @@ -54,7 +60,7 @@ "disabledText": "#D3DAE3", "endBackground": "#383C4A", "endBorderColor": "#383C4A", - "focus": "#08507C", + "focus": "#3F3F46", "focusedBorderColor": "#42A5F5", "foreground": "#8b9eb5", "highlight": "#FFFFFF", @@ -72,7 +78,10 @@ "Tooltip.borderColor": "#404552", "Tooltip.background": "#262a33" }, - "Content.background": "#262b33", + "Content": { + "background": "#262b33", + "selectionBackground": "#8888FF" + }, "CheckBox": { "background": "#2f343f", "disabledText": "#D3DAE3", @@ -89,6 +98,14 @@ "selectionBackground": "#8888FF", "selectionForeground": "#FFFFFF" }, + "CodeWithMe": { + "Avatar.foreground": "#D3DAE3", + "AccessEnabled": { + "accessDot": "#42A5F5", + "dropdownBorder": "#393f4c", + "pillBackground": "$second" + } + }, "ColorChooser": { "background": "#2f343f", "foreground": "#D3DAE3", @@ -104,6 +121,7 @@ }, "background": "#262b33", "buttonBackground": "#383C4A", + "darcula.hoveredArrowButtonForeground": "#42A5F5", "disabledForeground": "#D3DAE3", "foreground": "#D3DAE3", "modifiedItemForeground": "#42A5F5", @@ -130,7 +148,7 @@ }, "Component": { "arc": 4, - "borderColor": "#08507C", + "borderColor": "#3F3F46", "disabledBorderColor": "#383C4A", "focusColor": "#42A5F5", "focusedBorderColor": "#42A5F5", @@ -156,23 +174,25 @@ } }, "DebuggerTabs": { - "selectedBackground": "#08507C", - "underlinedTabBackground": "#08507C" + "selectedBackground": "#3F3F46", + "underlinedTabBackground": "#3F3F46" }, "DebuggerPopup": { - "borderColor": "#08507C" + "borderColor": "#3F3F46" }, "DefaultTabs": { "background": "#2f343f", "borderColor": "#2f343f", "hoverBackground": "#41416A", "hoverColor": "#262b33", - "hoverMaskColor": "#08507C", + "hoverMaskColor": "#3F3F46", + "inactiveColoredTabBackground": "#2f343f", "inactiveColoredFileBackground": "#383C4A", - "inactiveUnderlineColor": "#D3DAE3", + "inactiveUnderlineColor": "#42A5F5", "inactiveMaskColor": "#262b33", "underlineColor": "#42A5F5", - "underlinedTabBackground": "#41416A" + "underlinedTabBackground": "#41416A", + "underlinedTabForeground": "#FFFFFF" }, "Desktop.background": "#2f343f", "DialogWrapper.southPanelBackground": "#2f343f", @@ -198,21 +218,23 @@ }, "EditorTabs": { "borderColor": "#393f4c", - "hoverColor": "#08507C", - "hoverMaskColor": "#08507C", + "hoverBackground": "#3F3F46", + "hoverColor": "#3F3F46", + "hoverMaskColor": "#3F3F46", "inactiveMaskColor": "#2f343f", - "inactiveColoredFileBackground": "#2f343f2", + "inactiveColoredFileBackground": "#2f343f", "inactiveUnderlineColor": "#D3DAE3", "selectedForeground": "#D3DAE3", "selectedBackground": "#41416A", "underlineColor": "#42A5F5", - "underlinedTabBackground": "#41416A" + "underlinedTabBackground": "#41416A", + "underlinedTabForeground": "#FFFFFF" }, "EditorGroupsTabs": { "background": "#2f343f", "borderColor": "#393f4c", - "hoverBackground": "#08507C", - "hoverColor": "#08507C", + "hoverBackground": "#3F3F46", + "hoverColor": "#3F3F46", "inactiveUnderlineColor": "#42A5F5", "underlineColor": "#42A5F5", "underlinedTabBackground": "#41416A", @@ -221,7 +243,7 @@ "FileColor": { "Green": "#387002", "Blue": "#004BA0", - "Yellow": "#37373d", + "Yellow": "#474B57", "Orange": "#B53D00", "Violet": "#4D2C91", "Rose": "#A00037" @@ -246,12 +268,13 @@ "selectionForeground": "#FFFFFF", "selectionBackground": "#41416A" }, + "GotItTooltip.borderColor": "#262a33", "Group": { "disabledSeparatorColor": "#404552", "separatorColor": "#404552" }, "GutterTooltip": { - "infoForeground": "#D3DAE3", + "infoForeground": "#8b9eb5", "lineSeparatorColor": "#2f343f" }, "HeaderColor": { @@ -288,7 +311,8 @@ "disabledText": "#D3DAE3", "foreground": "#D3DAE3", "infoForeground": "#8b9eb5", - "selectedForeground": "#FFFFFF" + "selectedForeground": "#FFFFFF", + "selectedDisabledForeground": "#D3DAE3" }, "Link": { "activeForeground": "#42A5F5", @@ -301,10 +325,12 @@ "List": { "background": "#393f4c", "foreground": "#D3DAE3", + "hoverBackground": "#08507C70", + "hoverInactiveBackground": "#41416A", "selectionBackground": "#8888FF50", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#09477170" + "selectionInactiveBackground": "#08507C70" }, "material": { "background": "#2f343f", @@ -320,8 +346,8 @@ }, "MemoryIndicator": { "allocatedBackground": "#393f4c", - "usedColor": "#08507C", - "usedBackground": "#08507C" + "usedColor": "#3F3F46", + "usedBackground": "#3F3F46" }, "Menu": { "acceleratorForeground": "#8b9eb5", @@ -409,7 +435,7 @@ "ParameterInfo": { "background": "#393f4c", "borderColor": "#41416A", - "currentOverloadBackground": "#41416A", + "currentOverloadBackground": "#3F3F46", "currentParameterForeground": "#42A5F5", "disabledForeground": "#D3DAE3", "foreground": "#D3DAE3", @@ -428,21 +454,22 @@ "Plugins": { "background": "#2f343f", "disabledForeground": "#D3DAE3", - "eapTagBackground": "#08507C", - "lightSelectionBackground": "#8888FF", - "paidTagBackground": "#08507C", + "eapTagBackground": "#3F3F46", + "hoverBackground": "#08507C70", + "lightSelectionBackground": "#41416A", + "paidTagBackground": "#3F3F46", "selectionBackground": "#8888FF", "tagForeground": "#42A5F5", - "tagBackground": "#08507C", - "trialTagBackground": "#08507C", + "tagBackground": "#3F3F46", + "trialTagBackground": "#3F3F46", "Button": { "installBackground": "#383C4A", "installBorderColor": "#383C4A", "installForeground": "#D3DAE3", - "installFocusedBackground": "#08507C", + "installFocusedBackground": "#3F3F46", "installFillForeground": "#D3DAE3", "installFillBackground": "#383C4A", - "updateBackground": "#383C4A", + "updateBackground": "#42A5F5", "updateBorderColor": "#383C4A", "updateForeground": "#D3DAE3" }, @@ -496,8 +523,8 @@ "indeterminateEndColor": "#42A5F5", "indeterminateStartColor": "#42A5F5", "progressColor": "#42A5F5", - "selectionBackground": "#08507C", - "trackColor": "#08507C" + "selectionBackground": "#3F3F46", + "trackColor": "#3F3F46" }, "PsiViewer": { "referenceHighlightColor": "#42A5F5" @@ -517,6 +544,7 @@ "selectionBackground": "#8888FF", "selectionForeground": "#FFFFFF" }, + "ScreenView.borderColor": "#404552", "ScrollBar": { "background": "#2f343f", "hoverThumbBorderColor": "#42A5F5", @@ -538,7 +566,7 @@ "trackColor": "#2f343f30" } }, - "thumb": "#08507C", + "thumb": "#3F3F46", "thumbBorderColor": "#42A5F570", "thumbColor": "#42A5F570", "trackColor": "#2f343f30", @@ -571,14 +599,23 @@ "Tab": { "active.foreground": "#FFFFFF", "selectedForeground": "#FFFFFF", - "selectedBackground": "#08507C" + "selectedBackground": "#3F3F46" } }, "SearchMatch": { "endBackground": "#42A5F5", - "startBackground": "#42A5F5" + "startBackground": "#42A5F5", + "endColor": "#42A5F5", + "startColor": "#42A5F5" }, "SearchField.errorBackground": "#262a33", + "SearchOption": { + "selectedBackground": "#41416A" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#8b9eb5", + "Repeated.File.Foreground": "#D3DAE3" + }, "Separator": { "background": "#393f4c", "foreground": "#393f4c", @@ -599,7 +636,7 @@ "thumb": "#42A5F5" }, "SpeedSearch": { - "background": "#08507C", + "background": "#3F3F46", "borderColor": "#404552", "foreground": "#D3DAE3", "errorForeground": "#D3DAE3" @@ -616,11 +653,13 @@ }, "SplitPaneDivider.draggingColor": "#393f4c", "StatusBar": { - "borderColor": "#2f343f" + "borderColor": "#2f343f", + "hoverBackground": "#3F3F46", + "LightEditBackground": "#41416A" }, "TabbedPane": { "background": "#2f343f", - "contentAreaColor": "#08507C", + "contentAreaColor": "#3F3F46", "contentBorderInsets": "3,1,1,1", "darkShadow": "#404552", "disabledForeground": "#D3DAE3", @@ -630,7 +669,7 @@ "fontSizeOffset": 0, "foreground": "#D3DAE3", "highlight": "#404552", - "hoverColor": "#08507C", + "hoverColor": "#3F3F46", "labelShift": 0, "selectedForeground": "#FFFFFF", "selectedLabelShift": 0, @@ -643,9 +682,11 @@ }, "TabbedPane.mt.tab.background": "#262b33", "Table": { + "alternativeRowBackground": "#262b33", "background": "#2f343f", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#D3DAE3", "dropLineColor": "#42A5F5", "dropLineShortColor": "#42A5F5", "focusCellBackground": "#41416A", @@ -653,6 +694,8 @@ "foreground": "#D3DAE3", "gridColor": "#2f343f", "highlightOuter": "#41416A", + "hoverBackground": "#08507C70", + "hoverInactiveBackground": "#41416A", "lightSelectionForeground": "#FFFFFF", "lightSelectionInactiveForeground": "#8b9eb5", "lightSelectionInactiveBackground": "#393f4c", @@ -704,7 +747,7 @@ }, "TitlePane": { "background": "#262b33", - "Button.hoverBackground": "#08507C", + "Button.hoverBackground": "#3F3F46", "inactiveBackground": "#2f343f", "infoForeground": "#8b9eb5", "inactiveInfoForeground": "#8b9eb5" @@ -729,8 +772,8 @@ "ToolTip": { "Actions.background": "#2f343f", "Actions.infoForeground": "#8b9eb5", - "background": "#2f343f", - "borderColor": "#08507C", + "background": "#262a33", + "borderColor": "#404552", "foreground": "#D3DAE3", "infoForeground": "#8b9eb5", "separatorColor": "#404552", @@ -751,50 +794,93 @@ "background": "#2f343f" }, "HeaderTab": { - "hoverBackground": "#08507C", - "hoverInactiveBackground": "#393f4c", + "borderColor": "#3F3F46", + "hoverBackground": "#3F3F46", + "hoverInactiveBackground": "#3F3F46", "inactiveUnderlineColor": "#42A5F5", "selectedBackground": "#262b33", "selectedInactiveBackground": "#262b33", "underlineColor": "#42A5F5", - "underlinedTabBackground": "#08507C", - "underlinedTabInactiveBackground": "#393f4c" + "underlinedTabBackground": "#41416A", + "underlinedTabInactiveBackground": "#393f4c", + "underlinedTabForeground": "#FFFFFF", + "underlinedTabInactiveForeground": "#D3DAE3" } }, "Tree": { "background": "#262b33", "foreground": "#8b9eb5", "hash": "#404552", + "hoverBackground": "#08507C70", + "hoverInactiveBackground": "#41416A", "modifiedItemForeground": "#42A5F5", "rowHeight": 28, - "selectionBackground": "#09477170", + "selectionBackground": "#08507C70", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#09477170", + "selectionInactiveBackground": "#08507C70", "textBackground": "#262b33" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { + "UIDesigner": { "Activity.borderColor": "#404552", - "ColorPicker.background": "#2f343f", - "ColorPicker.foreground": "#D3DAE3", - "Component.borderColor": "#404552", - "Component.background": "#2f343f", - "Component.foreground": "#D3DAE3", - "Connector.borderColor": "#404552", - "Connector.hoverBorderColor": "#08507C", + "Canvas.background": "#262b33", + "ColorPicker": { + "background": "#2f343f", + "foreground": "#D3DAE3" + }, + "Component": { + "borderColor": "#404552", + "background": "#2f343f", + "foreground": "#D3DAE3", + "hoverBorderColor": "#3F3F46" + }, + "Connector": { + "borderColor": "#404552", + "hoverBorderColor": "#3F3F46" + }, "Canvas.background": "#262b33", "highStroke.foreground": "#D3DAE3", "Label.foreground": "#8b9eb5", - "List.selectionBackground": "#09477170", - "Panel.borderColor": "#404552", - "Panel.background": "#2f343f", + "List.selectionBackground": "#08507C70", + "motion": { + "borderColor": "#404552", + "Component.foreground": "#D3DAE3", + "ConstraintSetText.foreground": "#8b9eb5", + "ConstraintSet.background": "#393f4c", + "CSPanel.SelectedFocusBackground": "#8888FF", + "CSPanel.SelectedBackground": "#08507C70", + "cs_FocusText.infoForeground": "#8b9eb5", + "CursorTextColor.foreground": "#D3DAE3", + "HoverColor.disabledBackground": "#D3DAE3", + "motionGraph.background": "#2f343f", + "Notification.background": "#262a33", + "ourAvg.background": "#393f4c", + "ourCS.background": "#393f4c", + "ourCS_Border.borderColor": "#404552", + "ourCS_TextColor.foreground": "#8b9eb5", + "ourCS_SelectedFocusBackground.selectionForeground": "#FFFFFF", + "ourCS_SelectedBackground.selectionInactiveBackground": "#41416A", + "ourCS_SelectedBorder.pressedBorderColor": "#3F3F46", + "ourML_BarColor.separatorColor": "#404552", + "PrimaryPanel.background": "#262b33", + "SecondaryPanel.background": "#2f343f", + "SecondaryPanel.header.foreground": "#8b9eb5", + "SecondaryPanel.header.background": "#262b33", + "timeLine.disabledBorderColor": "#404552" + }, + "Panel": { + "borderColor": "#404552", + "background": "#2f343f" + }, "percent.foreground": "#D3DAE3", - "Placeholder.background": "#2f343f", - "Placeholder.borderColor": "#404552", - "Placeholder.foreground": "#D3DAE3", - "Placeholder.selectedForeground": "#FFFFFF", + "Placeholder": { + "background": "#2f343f", + "borderColor": "#404552", + "foreground": "#D3DAE3", + "selectedForeground": "#FFFFFF" + }, "Preview.background": "#2f343f", "stroke.acceleratorForeground": "#8b9eb5" }, @@ -809,7 +895,7 @@ "selectedBranchBackground": "#2f343f" }, "GitCommits": { - "graphColor": "#08507C" + "graphColor": "#3F3F46" }, "GitLog": { "localBranchIconColor": "#42A5F5", @@ -828,11 +914,12 @@ }, "Log": { "Commit.unmatchedForeground": "#8b9eb5", - "Commit.currentBranchBackground": "#393f4c" + "Commit.currentBranchBackground": "#393f4c", + "Commit.hoveredBackground": "#08507C70" }, "RefLabel": { "foreground": "#FFFFFF", - "backgroundBase": "#08507C" + "backgroundBase": "#3F3F46" } }, "Viewport": { @@ -840,16 +927,22 @@ "foreground": "#D3DAE3" }, "WelcomeScreen": { + "AssociatedComponent.background": "#2f343f", "background": "#2f343f", "borderColor": "#2f343f", "captionBackground": "#262b33", "captionForeground": "#D3DAE3", + "Details.background": "#2f343f", "footerBackground": "#262b33", "footerForeground": "#D3DAE3", "headerBackground": "#2f343f", "headerForeground": "#D3DAE3", + "List.background": "#262b33", "separatorColor": "#404552", + "SidePanel.background": "#393f4c", "Projects": { + "actions.background": "#262b33", + "actions.selectionBackground": "#3F3F46", "background": "#393f4c", "selectionBackground": "#8888FF", "selectionInactiveBackground": "#393f4c" @@ -881,8 +974,8 @@ "Actions.Yellow": "#F9EE98", "Checkbox.Background.Default": "#262b33", "Checkbox.Background.Default.Dark": "#262b33", - "Checkbox.Background.Disabled": "#37373d", - "Checkbox.Background.Disabled.Dark": "#37373d", + "Checkbox.Background.Disabled": "#474B57", + "Checkbox.Background.Disabled.Dark": "#474B57", "Checkbox.Border.Default": "#404552", "Checkbox.Border.Default.Dark": "#404552", "Checkbox.Border.Disabled": "#D3DAE3", 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 ad9510f4..21780d61 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 @@ -3,18 +3,24 @@ "dark": true, "author": "Mallowigi", "editorScheme": "/colors/Arc Dark.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/arcdark.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { "acceleratorSelectionForeground": "#8b9eb5", "background": "#2f343f", "borderColor": "#404552", - "disabledBackground": "#37373d", + "disabledBackground": "#474B57", "disabledForeground": "#D3DAE3", "disabledText": "#D3DAE3", - "focusColor": "#08507C", + "focusColor": "#3F3F46", "focusedBorderColor": "#42A5F5", "foreground": "#D3DAE3", - "inactiveBackground": "#37373d", + "inactiveBackground": "#474B57", "inactiveForeground": "#8b9eb5", "infoForeground": "#8b9eb5", "selectionBackground": "#8888FF", @@ -54,7 +60,7 @@ "disabledText": "#D3DAE3", "endBackground": "#383C4A", "endBorderColor": "#383C4A", - "focus": "#08507C", + "focus": "#3F3F46", "focusedBorderColor": "#42A5F5", "foreground": "#8b9eb5", "highlight": "#FFFFFF", @@ -72,7 +78,10 @@ "Tooltip.borderColor": "#404552", "Tooltip.background": "#262a33" }, - "Content.background": "#262b33", + "Content": { + "background": "#262b33", + "selectionBackground": "#8888FF" + }, "CheckBox": { "background": "#2f343f", "disabledText": "#D3DAE3", @@ -89,6 +98,14 @@ "selectionBackground": "#8888FF", "selectionForeground": "#FFFFFF" }, + "CodeWithMe": { + "Avatar.foreground": "#D3DAE3", + "AccessEnabled": { + "accessDot": "#42A5F5", + "dropdownBorder": "#393f4c", + "pillBackground": "$second" + } + }, "ColorChooser": { "background": "#2f343f", "foreground": "#D3DAE3", @@ -104,6 +121,7 @@ }, "background": "#2f343f", "buttonBackground": "#383C4A", + "darcula.hoveredArrowButtonForeground": "#42A5F5", "disabledForeground": "#D3DAE3", "foreground": "#D3DAE3", "modifiedItemForeground": "#42A5F5", @@ -130,7 +148,7 @@ }, "Component": { "arc": 4, - "borderColor": "#08507C", + "borderColor": "#3F3F46", "disabledBorderColor": "#383C4A", "focusColor": "#42A5F5", "focusedBorderColor": "#42A5F5", @@ -156,23 +174,25 @@ } }, "DebuggerTabs": { - "selectedBackground": "#08507C", - "underlinedTabBackground": "#08507C" + "selectedBackground": "#3F3F46", + "underlinedTabBackground": "#3F3F46" }, "DebuggerPopup": { - "borderColor": "#08507C" + "borderColor": "#3F3F46" }, "DefaultTabs": { "background": "#2f343f", "borderColor": "#2f343f", "hoverBackground": "#41416A", "hoverColor": "#2f343f", - "hoverMaskColor": "#08507C", + "hoverMaskColor": "#3F3F46", + "inactiveColoredTabBackground": "#2f343f", "inactiveColoredFileBackground": "#383C4A", - "inactiveUnderlineColor": "#D3DAE3", + "inactiveUnderlineColor": "#42A5F5", "inactiveMaskColor": "#2f343f", "underlineColor": "#42A5F5", - "underlinedTabBackground": "#41416A" + "underlinedTabBackground": "#41416A", + "underlinedTabForeground": "#FFFFFF" }, "Desktop.background": "#2f343f", "DialogWrapper.southPanelBackground": "#2f343f", @@ -198,21 +218,23 @@ }, "EditorTabs": { "borderColor": "#393f4c", - "hoverColor": "#08507C", - "hoverMaskColor": "#08507C", + "hoverBackground": "#3F3F46", + "hoverColor": "#3F3F46", + "hoverMaskColor": "#3F3F46", "inactiveMaskColor": "#2f343f", - "inactiveColoredFileBackground": "#2f343f2", + "inactiveColoredFileBackground": "#2f343f", "inactiveUnderlineColor": "#D3DAE3", "selectedForeground": "#D3DAE3", "selectedBackground": "#41416A", "underlineColor": "#42A5F5", - "underlinedTabBackground": "#41416A" + "underlinedTabBackground": "#41416A", + "underlinedTabForeground": "#FFFFFF" }, "EditorGroupsTabs": { "background": "#2f343f", "borderColor": "#393f4c", - "hoverBackground": "#08507C", - "hoverColor": "#08507C", + "hoverBackground": "#3F3F46", + "hoverColor": "#3F3F46", "inactiveUnderlineColor": "#42A5F5", "underlineColor": "#42A5F5", "underlinedTabBackground": "#41416A", @@ -221,7 +243,7 @@ "FileColor": { "Green": "#387002", "Blue": "#004BA0", - "Yellow": "#37373d", + "Yellow": "#474B57", "Orange": "#B53D00", "Violet": "#4D2C91", "Rose": "#A00037" @@ -246,12 +268,13 @@ "selectionForeground": "#FFFFFF", "selectionBackground": "#41416A" }, + "GotItTooltip.borderColor": "#262a33", "Group": { "disabledSeparatorColor": "#404552", "separatorColor": "#404552" }, "GutterTooltip": { - "infoForeground": "#D3DAE3", + "infoForeground": "#8b9eb5", "lineSeparatorColor": "#2f343f" }, "HeaderColor": { @@ -288,7 +311,8 @@ "disabledText": "#D3DAE3", "foreground": "#D3DAE3", "infoForeground": "#8b9eb5", - "selectedForeground": "#FFFFFF" + "selectedForeground": "#FFFFFF", + "selectedDisabledForeground": "#D3DAE3" }, "Link": { "activeForeground": "#42A5F5", @@ -301,10 +325,12 @@ "List": { "background": "#393f4c", "foreground": "#D3DAE3", + "hoverBackground": "#08507C70", + "hoverInactiveBackground": "#41416A", "selectionBackground": "#8888FF50", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#09477170" + "selectionInactiveBackground": "#08507C70" }, "material": { "background": "#2f343f", @@ -320,8 +346,8 @@ }, "MemoryIndicator": { "allocatedBackground": "#393f4c", - "usedColor": "#08507C", - "usedBackground": "#08507C" + "usedColor": "#3F3F46", + "usedBackground": "#3F3F46" }, "Menu": { "acceleratorForeground": "#8b9eb5", @@ -409,7 +435,7 @@ "ParameterInfo": { "background": "#393f4c", "borderColor": "#41416A", - "currentOverloadBackground": "#41416A", + "currentOverloadBackground": "#3F3F46", "currentParameterForeground": "#42A5F5", "disabledForeground": "#D3DAE3", "foreground": "#D3DAE3", @@ -428,21 +454,22 @@ "Plugins": { "background": "#2f343f", "disabledForeground": "#D3DAE3", - "eapTagBackground": "#08507C", - "lightSelectionBackground": "#8888FF", - "paidTagBackground": "#08507C", + "eapTagBackground": "#3F3F46", + "hoverBackground": "#08507C70", + "lightSelectionBackground": "#41416A", + "paidTagBackground": "#3F3F46", "selectionBackground": "#8888FF", "tagForeground": "#42A5F5", - "tagBackground": "#08507C", - "trialTagBackground": "#08507C", + "tagBackground": "#3F3F46", + "trialTagBackground": "#3F3F46", "Button": { "installBackground": "#383C4A", "installBorderColor": "#383C4A", "installForeground": "#D3DAE3", - "installFocusedBackground": "#08507C", + "installFocusedBackground": "#3F3F46", "installFillForeground": "#D3DAE3", "installFillBackground": "#383C4A", - "updateBackground": "#383C4A", + "updateBackground": "#42A5F5", "updateBorderColor": "#383C4A", "updateForeground": "#D3DAE3" }, @@ -496,8 +523,8 @@ "indeterminateEndColor": "#42A5F5", "indeterminateStartColor": "#42A5F5", "progressColor": "#42A5F5", - "selectionBackground": "#08507C", - "trackColor": "#08507C" + "selectionBackground": "#3F3F46", + "trackColor": "#3F3F46" }, "PsiViewer": { "referenceHighlightColor": "#42A5F5" @@ -517,6 +544,7 @@ "selectionBackground": "#8888FF", "selectionForeground": "#FFFFFF" }, + "ScreenView.borderColor": "#404552", "ScrollBar": { "background": "#2f343f", "hoverThumbBorderColor": "#42A5F5", @@ -538,7 +566,7 @@ "trackColor": "#2f343f30" } }, - "thumb": "#08507C", + "thumb": "#3F3F46", "thumbBorderColor": "#42A5F570", "thumbColor": "#42A5F570", "trackColor": "#2f343f30", @@ -571,14 +599,23 @@ "Tab": { "active.foreground": "#FFFFFF", "selectedForeground": "#FFFFFF", - "selectedBackground": "#08507C" + "selectedBackground": "#3F3F46" } }, "SearchMatch": { "endBackground": "#42A5F5", - "startBackground": "#42A5F5" + "startBackground": "#42A5F5", + "endColor": "#42A5F5", + "startColor": "#42A5F5" }, "SearchField.errorBackground": "#262a33", + "SearchOption": { + "selectedBackground": "#41416A" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#8b9eb5", + "Repeated.File.Foreground": "#D3DAE3" + }, "Separator": { "background": "#393f4c", "foreground": "#393f4c", @@ -599,7 +636,7 @@ "thumb": "#42A5F5" }, "SpeedSearch": { - "background": "#08507C", + "background": "#3F3F46", "borderColor": "#404552", "foreground": "#D3DAE3", "errorForeground": "#D3DAE3" @@ -616,11 +653,13 @@ }, "SplitPaneDivider.draggingColor": "#393f4c", "StatusBar": { - "borderColor": "#2f343f" + "borderColor": "#2f343f", + "hoverBackground": "#3F3F46", + "LightEditBackground": "#41416A" }, "TabbedPane": { "background": "#2f343f", - "contentAreaColor": "#08507C", + "contentAreaColor": "#3F3F46", "contentBorderInsets": "3,1,1,1", "darkShadow": "#404552", "disabledForeground": "#D3DAE3", @@ -630,7 +669,7 @@ "fontSizeOffset": 0, "foreground": "#D3DAE3", "highlight": "#404552", - "hoverColor": "#08507C", + "hoverColor": "#3F3F46", "labelShift": 0, "selectedForeground": "#FFFFFF", "selectedLabelShift": 0, @@ -643,9 +682,11 @@ }, "TabbedPane.mt.tab.background": "#2f343f", "Table": { + "alternativeRowBackground": "#262b33", "background": "#2f343f", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#D3DAE3", "dropLineColor": "#42A5F5", "dropLineShortColor": "#42A5F5", "focusCellBackground": "#41416A", @@ -653,6 +694,8 @@ "foreground": "#D3DAE3", "gridColor": "#2f343f", "highlightOuter": "#41416A", + "hoverBackground": "#08507C70", + "hoverInactiveBackground": "#41416A", "lightSelectionForeground": "#FFFFFF", "lightSelectionInactiveForeground": "#8b9eb5", "lightSelectionInactiveBackground": "#393f4c", @@ -704,7 +747,7 @@ }, "TitlePane": { "background": "#262b33", - "Button.hoverBackground": "#08507C", + "Button.hoverBackground": "#3F3F46", "inactiveBackground": "#2f343f", "infoForeground": "#8b9eb5", "inactiveInfoForeground": "#8b9eb5" @@ -729,8 +772,8 @@ "ToolTip": { "Actions.background": "#2f343f", "Actions.infoForeground": "#8b9eb5", - "background": "#2f343f", - "borderColor": "#08507C", + "background": "#262a33", + "borderColor": "#404552", "foreground": "#D3DAE3", "infoForeground": "#8b9eb5", "separatorColor": "#404552", @@ -751,50 +794,93 @@ "background": "#2f343f" }, "HeaderTab": { - "hoverBackground": "#08507C", - "hoverInactiveBackground": "#393f4c", + "borderColor": "#3F3F46", + "hoverBackground": "#3F3F46", + "hoverInactiveBackground": "#3F3F46", "inactiveUnderlineColor": "#42A5F5", "selectedBackground": "#262b33", "selectedInactiveBackground": "#262b33", "underlineColor": "#42A5F5", - "underlinedTabBackground": "#08507C", - "underlinedTabInactiveBackground": "#393f4c" + "underlinedTabBackground": "#41416A", + "underlinedTabInactiveBackground": "#393f4c", + "underlinedTabForeground": "#FFFFFF", + "underlinedTabInactiveForeground": "#D3DAE3" } }, "Tree": { "background": "#2f343f", "foreground": "#8b9eb5", "hash": "#404552", + "hoverBackground": "#08507C70", + "hoverInactiveBackground": "#41416A", "modifiedItemForeground": "#42A5F5", "rowHeight": 28, - "selectionBackground": "#09477170", + "selectionBackground": "#08507C70", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#09477170", + "selectionInactiveBackground": "#08507C70", "textBackground": "#2f343f" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { + "UIDesigner": { "Activity.borderColor": "#404552", - "ColorPicker.background": "#2f343f", - "ColorPicker.foreground": "#D3DAE3", - "Component.borderColor": "#404552", - "Component.background": "#2f343f", - "Component.foreground": "#D3DAE3", - "Connector.borderColor": "#404552", - "Connector.hoverBorderColor": "#08507C", + "Canvas.background": "#262b33", + "ColorPicker": { + "background": "#2f343f", + "foreground": "#D3DAE3" + }, + "Component": { + "borderColor": "#404552", + "background": "#2f343f", + "foreground": "#D3DAE3", + "hoverBorderColor": "#3F3F46" + }, + "Connector": { + "borderColor": "#404552", + "hoverBorderColor": "#3F3F46" + }, "Canvas.background": "#262b33", "highStroke.foreground": "#D3DAE3", "Label.foreground": "#8b9eb5", - "List.selectionBackground": "#09477170", - "Panel.borderColor": "#404552", - "Panel.background": "#2f343f", + "List.selectionBackground": "#08507C70", + "motion": { + "borderColor": "#404552", + "Component.foreground": "#D3DAE3", + "ConstraintSetText.foreground": "#8b9eb5", + "ConstraintSet.background": "#393f4c", + "CSPanel.SelectedFocusBackground": "#8888FF", + "CSPanel.SelectedBackground": "#08507C70", + "cs_FocusText.infoForeground": "#8b9eb5", + "CursorTextColor.foreground": "#D3DAE3", + "HoverColor.disabledBackground": "#D3DAE3", + "motionGraph.background": "#2f343f", + "Notification.background": "#262a33", + "ourAvg.background": "#393f4c", + "ourCS.background": "#393f4c", + "ourCS_Border.borderColor": "#404552", + "ourCS_TextColor.foreground": "#8b9eb5", + "ourCS_SelectedFocusBackground.selectionForeground": "#FFFFFF", + "ourCS_SelectedBackground.selectionInactiveBackground": "#41416A", + "ourCS_SelectedBorder.pressedBorderColor": "#3F3F46", + "ourML_BarColor.separatorColor": "#404552", + "PrimaryPanel.background": "#262b33", + "SecondaryPanel.background": "#2f343f", + "SecondaryPanel.header.foreground": "#8b9eb5", + "SecondaryPanel.header.background": "#262b33", + "timeLine.disabledBorderColor": "#404552" + }, + "Panel": { + "borderColor": "#404552", + "background": "#2f343f" + }, "percent.foreground": "#D3DAE3", - "Placeholder.background": "#2f343f", - "Placeholder.borderColor": "#404552", - "Placeholder.foreground": "#D3DAE3", - "Placeholder.selectedForeground": "#FFFFFF", + "Placeholder": { + "background": "#2f343f", + "borderColor": "#404552", + "foreground": "#D3DAE3", + "selectedForeground": "#FFFFFF" + }, "Preview.background": "#2f343f", "stroke.acceleratorForeground": "#8b9eb5" }, @@ -809,7 +895,7 @@ "selectedBranchBackground": "#2f343f" }, "GitCommits": { - "graphColor": "#08507C" + "graphColor": "#3F3F46" }, "GitLog": { "localBranchIconColor": "#42A5F5", @@ -828,11 +914,12 @@ }, "Log": { "Commit.unmatchedForeground": "#8b9eb5", - "Commit.currentBranchBackground": "#393f4c" + "Commit.currentBranchBackground": "#393f4c", + "Commit.hoveredBackground": "#08507C70" }, "RefLabel": { "foreground": "#FFFFFF", - "backgroundBase": "#08507C" + "backgroundBase": "#3F3F46" } }, "Viewport": { @@ -840,16 +927,22 @@ "foreground": "#D3DAE3" }, "WelcomeScreen": { + "AssociatedComponent.background": "#2f343f", "background": "#2f343f", "borderColor": "#2f343f", "captionBackground": "#262b33", "captionForeground": "#D3DAE3", + "Details.background": "#2f343f", "footerBackground": "#262b33", "footerForeground": "#D3DAE3", "headerBackground": "#2f343f", "headerForeground": "#D3DAE3", + "List.background": "#262b33", "separatorColor": "#404552", + "SidePanel.background": "#393f4c", "Projects": { + "actions.background": "#262b33", + "actions.selectionBackground": "#3F3F46", "background": "#393f4c", "selectionBackground": "#8888FF", "selectionInactiveBackground": "#393f4c" @@ -881,8 +974,8 @@ "Actions.Yellow": "#F9EE98", "Checkbox.Background.Default": "#262b33", "Checkbox.Background.Default.Dark": "#262b33", - "Checkbox.Background.Disabled": "#37373d", - "Checkbox.Background.Disabled.Dark": "#37373d", + "Checkbox.Background.Disabled": "#474B57", + "Checkbox.Background.Disabled.Dark": "#474B57", "Checkbox.Border.Default": "#404552", "Checkbox.Border.Default.Dark": "#404552", "Checkbox.Border.Disabled": "#D3DAE3", diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Atom One Dark Contrast.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Atom One Dark Contrast.theme.json index 97f50d4d..957ed9e9 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Atom One Dark Contrast.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Atom One Dark Contrast.theme.json @@ -3,6 +3,12 @@ "dark": true, "author": "Mallowigi", "editorScheme": "/colors/Atom One Dark.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/onedark.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { "acceleratorSelectionForeground": "#979FAD", @@ -17,7 +23,7 @@ "inactiveBackground": "#3c4150", "inactiveForeground": "#979FAD", "infoForeground": "#979FAD", - "selectionBackground": "#4D515D", + "selectionBackground": "#3A3F4B", "selectionBackgroundInactive": "#2F333D", "selectionForeground": "#FFFFFF", "selectionInactiveBackground": "#2F333D", @@ -33,7 +39,7 @@ "pressedBorderColor": "#2979ff50" }, "Autocomplete": { - "selectionBackground": "#4D515D" + "selectionBackground": "#3A3F4B" }, "Borders.ContrastBorderColor": "#282C34", "Borders.color": "#282C34", @@ -72,7 +78,10 @@ "Tooltip.borderColor": "#282C34", "Tooltip.background": "#282C34" }, - "Content.background": "#21252B", + "Content": { + "background": "#21252B", + "selectionBackground": "#3A3F4B" + }, "CheckBox": { "background": "#282C34", "disabledText": "#6B727D", @@ -86,9 +95,17 @@ "disabledBackground": "#282C34", "disabledForeground": "#6B727D", "foreground": "#979FAD", - "selectionBackground": "#4D515D", + "selectionBackground": "#3A3F4B", "selectionForeground": "#FFFFFF" }, + "CodeWithMe": { + "Avatar.foreground": "#979FAD", + "AccessEnabled": { + "accessDot": "#2979ff", + "dropdownBorder": "#2F333D", + "pillBackground": "$second" + } + }, "ColorChooser": { "background": "#282C34", "foreground": "#979FAD", @@ -104,6 +121,7 @@ }, "background": "#21252B", "buttonBackground": "#3A3F4B", + "darcula.hoveredArrowButtonForeground": "#2979ff", "disabledForeground": "#6B727D", "foreground": "#979FAD", "modifiedItemForeground": "#2979ff", @@ -123,8 +141,8 @@ "selectedGrayedForeground": "#FFFFFF", "selectionGrayForeground": "#FFFFFF", "selectionInactiveInfoForeground": "#979FAD", - "selectionInactiveBackground": "#4D515D50", - "selectionBackground": "#4D515D80", + "selectionInactiveBackground": "#3A3F4B50", + "selectionBackground": "#3A3F4B80", "selectionForeground": "#FFFFFF", "selectionInfoForeground": "#FFFFFF" }, @@ -168,11 +186,13 @@ "hoverBackground": "#383E49", "hoverColor": "#21252B", "hoverMaskColor": "#383D48", + "inactiveColoredTabBackground": "#282C34", "inactiveColoredFileBackground": "#3A3F4B", - "inactiveUnderlineColor": "#6B727D", + "inactiveUnderlineColor": "#2979ff", "inactiveMaskColor": "#21252B", "underlineColor": "#2979ff", - "underlinedTabBackground": "#383E49" + "underlinedTabBackground": "#383E49", + "underlinedTabForeground": "#FFFFFF" }, "Desktop.background": "#282C34", "DialogWrapper.southPanelBackground": "#282C34", @@ -193,20 +213,22 @@ "foreground": "#979FAD", "inactiveBackground": "#282C34", "inactiveForeground": "#6B727D", - "selectionBackground": "#4D515D", + "selectionBackground": "#3A3F4B", "selectionForeground": "#FFFFFF" }, "EditorTabs": { "borderColor": "#2F333D", + "hoverBackground": "#383D48", "hoverColor": "#383D48", "hoverMaskColor": "#383D48", "inactiveMaskColor": "#282C34", - "inactiveColoredFileBackground": "#282C342", + "inactiveColoredFileBackground": "#282C34", "inactiveUnderlineColor": "#6B727D", "selectedForeground": "#979FAD", "selectedBackground": "#383E49", "underlineColor": "#2979ff", - "underlinedTabBackground": "#383E49" + "underlinedTabBackground": "#383E49", + "underlinedTabForeground": "#FFFFFF" }, "EditorGroupsTabs": { "background": "#282C34", @@ -246,6 +268,7 @@ "selectionForeground": "#FFFFFF", "selectionBackground": "#383E49" }, + "GotItTooltip.borderColor": "#282C34", "Group": { "disabledSeparatorColor": "#282C34", "separatorColor": "#282C34" @@ -288,7 +311,8 @@ "disabledText": "#6B727D", "foreground": "#979FAD", "infoForeground": "#979FAD", - "selectedForeground": "#FFFFFF" + "selectedForeground": "#FFFFFF", + "selectedDisabledForeground": "#979FAD" }, "Link": { "activeForeground": "#2979ff", @@ -301,10 +325,12 @@ "List": { "background": "#2F333D", "foreground": "#979FAD", - "selectionBackground": "#4D515D50", + "hoverBackground": "#3A3F4B70", + "hoverInactiveBackground": "#383E49", + "selectionBackground": "#3A3F4B50", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#3A3F4B80" + "selectionInactiveBackground": "#3A3F4B70" }, "material": { "background": "#282C34", @@ -332,7 +358,7 @@ "disabledBackground": "#2F333D", "disabledForeground": "#6B727D", "foreground": "#979FAD", - "selectionBackground": "#4D515D", + "selectionBackground": "#3A3F4B", "selectionForeground": "#FFFFFF", "separatorColor": "#282C34" }, @@ -343,7 +369,7 @@ "disabledForeground": "#6B727D", "foreground": "#979FAD", "highlight": "#282C34", - "selectionBackground": "#4D515D", + "selectionBackground": "#3A3F4B", "selectionForeground": "#FFFFFF", "shadow": "#21252B" }, @@ -355,7 +381,7 @@ "disabledBackground": "#282C34", "disabledForeground": "#6B727D", "foreground": "#979FAD", - "selectionBackground": "#4D515D", + "selectionBackground": "#3A3F4B", "selectionForeground": "#FFFFFF" }, "NavBar": { @@ -409,7 +435,7 @@ "ParameterInfo": { "background": "#2F333D", "borderColor": "#383E49", - "currentOverloadBackground": "#383E49", + "currentOverloadBackground": "#383D48", "currentParameterForeground": "#2979ff", "disabledForeground": "#6B727D", "foreground": "#979FAD", @@ -429,9 +455,10 @@ "background": "#282C34", "disabledForeground": "#6B727D", "eapTagBackground": "#383D48", - "lightSelectionBackground": "#4D515D", + "hoverBackground": "#3A3F4B70", + "lightSelectionBackground": "#383E49", "paidTagBackground": "#383D48", - "selectionBackground": "#4D515D", + "selectionBackground": "#3A3F4B", "tagForeground": "#2979ff", "tagBackground": "#383D48", "trialTagBackground": "#383D48", @@ -442,7 +469,7 @@ "installFocusedBackground": "#383D48", "installFillForeground": "#6B727D", "installFillBackground": "#3A3F4B", - "updateBackground": "#3A3F4B", + "updateBackground": "#2979ff", "updateBorderColor": "#3A3F4B", "updateForeground": "#979FAD" }, @@ -514,9 +541,10 @@ "disabledBackground": "#282C34", "disabledForeground": "#6B727D", "foreground": "#979FAD", - "selectionBackground": "#4D515D", + "selectionBackground": "#3A3F4B", "selectionForeground": "#FFFFFF" }, + "ScreenView.borderColor": "#282C34", "ScrollBar": { "background": "#282C34", "hoverThumbBorderColor": "#2979ff", @@ -576,9 +604,18 @@ }, "SearchMatch": { "endBackground": "#2979ff", - "startBackground": "#2979ff" + "startBackground": "#2979ff", + "endColor": "#2979ff", + "startColor": "#2979ff" }, "SearchField.errorBackground": "#282C34", + "SearchOption": { + "selectedBackground": "#383E49" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#979FAD", + "Repeated.File.Foreground": "#979FAD" + }, "Separator": { "background": "#2F333D", "foreground": "#2F333D", @@ -616,7 +653,9 @@ }, "SplitPaneDivider.draggingColor": "#2F333D", "StatusBar": { - "borderColor": "#282C34" + "borderColor": "#282C34", + "hoverBackground": "#383D48", + "LightEditBackground": "#383E49" }, "TabbedPane": { "background": "#282C34", @@ -643,9 +682,11 @@ }, "TabbedPane.mt.tab.background": "#21252B", "Table": { + "alternativeRowBackground": "#21252B", "background": "#282C34", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#6B727D", "dropLineColor": "#2979ff", "dropLineShortColor": "#2979ff", "focusCellBackground": "#383E49", @@ -653,6 +694,8 @@ "foreground": "#979FAD", "gridColor": "#282C34", "highlightOuter": "#383E49", + "hoverBackground": "#3A3F4B70", + "hoverInactiveBackground": "#383E49", "lightSelectionForeground": "#FFFFFF", "lightSelectionInactiveForeground": "#979FAD", "lightSelectionInactiveBackground": "#2F333D", @@ -730,7 +773,7 @@ "Actions.background": "#282C34", "Actions.infoForeground": "#979FAD", "background": "#282C34", - "borderColor": "#383D48", + "borderColor": "#282C34", "foreground": "#979FAD", "infoForeground": "#979FAD", "separatorColor": "#282C34", @@ -751,50 +794,93 @@ "background": "#282C34" }, "HeaderTab": { + "borderColor": "#383D48", "hoverBackground": "#383D48", - "hoverInactiveBackground": "#2F333D", + "hoverInactiveBackground": "#383D48", "inactiveUnderlineColor": "#2979ff", "selectedBackground": "#21252B", "selectedInactiveBackground": "#21252B", "underlineColor": "#2979ff", - "underlinedTabBackground": "#383D48", - "underlinedTabInactiveBackground": "#2F333D" + "underlinedTabBackground": "#383E49", + "underlinedTabInactiveBackground": "#2F333D", + "underlinedTabForeground": "#FFFFFF", + "underlinedTabInactiveForeground": "#979FAD" } }, "Tree": { "background": "#21252B", "foreground": "#979FAD", "hash": "#282C34", + "hoverBackground": "#3A3F4B70", + "hoverInactiveBackground": "#383E49", "modifiedItemForeground": "#2979ff", "rowHeight": 28, - "selectionBackground": "#3A3F4B80", + "selectionBackground": "#3A3F4B70", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#3A3F4B80", + "selectionInactiveBackground": "#3A3F4B70", "textBackground": "#21252B" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { + "UIDesigner": { "Activity.borderColor": "#282C34", - "ColorPicker.background": "#282C34", - "ColorPicker.foreground": "#979FAD", - "Component.borderColor": "#282C34", - "Component.background": "#282C34", - "Component.foreground": "#979FAD", - "Connector.borderColor": "#282C34", - "Connector.hoverBorderColor": "#383D48", + "Canvas.background": "#21252B", + "ColorPicker": { + "background": "#282C34", + "foreground": "#979FAD" + }, + "Component": { + "borderColor": "#282C34", + "background": "#282C34", + "foreground": "#979FAD", + "hoverBorderColor": "#383D48" + }, + "Connector": { + "borderColor": "#282C34", + "hoverBorderColor": "#383D48" + }, "Canvas.background": "#21252B", "highStroke.foreground": "#979FAD", "Label.foreground": "#979FAD", - "List.selectionBackground": "#3A3F4B80", - "Panel.borderColor": "#282C34", - "Panel.background": "#282C34", + "List.selectionBackground": "#3A3F4B70", + "motion": { + "borderColor": "#282C34", + "Component.foreground": "#979FAD", + "ConstraintSetText.foreground": "#979FAD", + "ConstraintSet.background": "#2F333D", + "CSPanel.SelectedFocusBackground": "#3A3F4B", + "CSPanel.SelectedBackground": "#3A3F4B70", + "cs_FocusText.infoForeground": "#979FAD", + "CursorTextColor.foreground": "#979FAD", + "HoverColor.disabledBackground": "#6B727D", + "motionGraph.background": "#282C34", + "Notification.background": "#282C34", + "ourAvg.background": "#2F333D", + "ourCS.background": "#2F333D", + "ourCS_Border.borderColor": "#282C34", + "ourCS_TextColor.foreground": "#979FAD", + "ourCS_SelectedFocusBackground.selectionForeground": "#FFFFFF", + "ourCS_SelectedBackground.selectionInactiveBackground": "#383E49", + "ourCS_SelectedBorder.pressedBorderColor": "#383D48", + "ourML_BarColor.separatorColor": "#282C34", + "PrimaryPanel.background": "#21252B", + "SecondaryPanel.background": "#282C34", + "SecondaryPanel.header.foreground": "#979FAD", + "SecondaryPanel.header.background": "#21252B", + "timeLine.disabledBorderColor": "#282C34" + }, + "Panel": { + "borderColor": "#282C34", + "background": "#282C34" + }, "percent.foreground": "#979FAD", - "Placeholder.background": "#282C34", - "Placeholder.borderColor": "#282C34", - "Placeholder.foreground": "#979FAD", - "Placeholder.selectedForeground": "#FFFFFF", + "Placeholder": { + "background": "#282C34", + "borderColor": "#282C34", + "foreground": "#979FAD", + "selectedForeground": "#FFFFFF" + }, "Preview.background": "#282C34", "stroke.acceleratorForeground": "#979FAD" }, @@ -828,7 +914,8 @@ }, "Log": { "Commit.unmatchedForeground": "#979FAD", - "Commit.currentBranchBackground": "#2F333D" + "Commit.currentBranchBackground": "#2F333D", + "Commit.hoveredBackground": "#3A3F4B70" }, "RefLabel": { "foreground": "#FFFFFF", @@ -840,18 +927,24 @@ "foreground": "#979FAD" }, "WelcomeScreen": { + "AssociatedComponent.background": "#282C34", "background": "#282C34", "borderColor": "#282C34", "captionBackground": "#21252B", "captionForeground": "#979FAD", + "Details.background": "#282C34", "footerBackground": "#21252B", "footerForeground": "#979FAD", "headerBackground": "#282C34", "headerForeground": "#979FAD", + "List.background": "#21252B", "separatorColor": "#282C34", + "SidePanel.background": "#2F333D", "Projects": { + "actions.background": "#21252B", + "actions.selectionBackground": "#383D48", "background": "#2F333D", - "selectionBackground": "#4D515D", + "selectionBackground": "#3A3F4B", "selectionInactiveBackground": "#2F333D" } }, 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 e1407de6..be20805f 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 @@ -3,6 +3,12 @@ "dark": true, "author": "Mallowigi", "editorScheme": "/colors/Atom One Dark.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/onedark.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { "acceleratorSelectionForeground": "#979FAD", @@ -17,7 +23,7 @@ "inactiveBackground": "#3c4150", "inactiveForeground": "#979FAD", "infoForeground": "#979FAD", - "selectionBackground": "#4D515D", + "selectionBackground": "#3A3F4B", "selectionBackgroundInactive": "#2F333D", "selectionForeground": "#FFFFFF", "selectionInactiveBackground": "#2F333D", @@ -33,7 +39,7 @@ "pressedBorderColor": "#2979ff50" }, "Autocomplete": { - "selectionBackground": "#4D515D" + "selectionBackground": "#3A3F4B" }, "Borders.ContrastBorderColor": "#282C34", "Borders.color": "#282C34", @@ -72,7 +78,10 @@ "Tooltip.borderColor": "#282C34", "Tooltip.background": "#282C34" }, - "Content.background": "#21252B", + "Content": { + "background": "#21252B", + "selectionBackground": "#3A3F4B" + }, "CheckBox": { "background": "#282C34", "disabledText": "#6B727D", @@ -86,9 +95,17 @@ "disabledBackground": "#282C34", "disabledForeground": "#6B727D", "foreground": "#979FAD", - "selectionBackground": "#4D515D", + "selectionBackground": "#3A3F4B", "selectionForeground": "#FFFFFF" }, + "CodeWithMe": { + "Avatar.foreground": "#979FAD", + "AccessEnabled": { + "accessDot": "#2979ff", + "dropdownBorder": "#2F333D", + "pillBackground": "$second" + } + }, "ColorChooser": { "background": "#282C34", "foreground": "#979FAD", @@ -104,6 +121,7 @@ }, "background": "#282C34", "buttonBackground": "#3A3F4B", + "darcula.hoveredArrowButtonForeground": "#2979ff", "disabledForeground": "#6B727D", "foreground": "#979FAD", "modifiedItemForeground": "#2979ff", @@ -123,8 +141,8 @@ "selectedGrayedForeground": "#FFFFFF", "selectionGrayForeground": "#FFFFFF", "selectionInactiveInfoForeground": "#979FAD", - "selectionInactiveBackground": "#4D515D50", - "selectionBackground": "#4D515D80", + "selectionInactiveBackground": "#3A3F4B50", + "selectionBackground": "#3A3F4B80", "selectionForeground": "#FFFFFF", "selectionInfoForeground": "#FFFFFF" }, @@ -168,11 +186,13 @@ "hoverBackground": "#383E49", "hoverColor": "#282C34", "hoverMaskColor": "#383D48", + "inactiveColoredTabBackground": "#282C34", "inactiveColoredFileBackground": "#3A3F4B", - "inactiveUnderlineColor": "#6B727D", + "inactiveUnderlineColor": "#2979ff", "inactiveMaskColor": "#282C34", "underlineColor": "#2979ff", - "underlinedTabBackground": "#383E49" + "underlinedTabBackground": "#383E49", + "underlinedTabForeground": "#FFFFFF" }, "Desktop.background": "#282C34", "DialogWrapper.southPanelBackground": "#282C34", @@ -193,20 +213,22 @@ "foreground": "#979FAD", "inactiveBackground": "#282C34", "inactiveForeground": "#6B727D", - "selectionBackground": "#4D515D", + "selectionBackground": "#3A3F4B", "selectionForeground": "#FFFFFF" }, "EditorTabs": { "borderColor": "#2F333D", + "hoverBackground": "#383D48", "hoverColor": "#383D48", "hoverMaskColor": "#383D48", "inactiveMaskColor": "#282C34", - "inactiveColoredFileBackground": "#282C342", + "inactiveColoredFileBackground": "#282C34", "inactiveUnderlineColor": "#6B727D", "selectedForeground": "#979FAD", "selectedBackground": "#383E49", "underlineColor": "#2979ff", - "underlinedTabBackground": "#383E49" + "underlinedTabBackground": "#383E49", + "underlinedTabForeground": "#FFFFFF" }, "EditorGroupsTabs": { "background": "#282C34", @@ -246,6 +268,7 @@ "selectionForeground": "#FFFFFF", "selectionBackground": "#383E49" }, + "GotItTooltip.borderColor": "#282C34", "Group": { "disabledSeparatorColor": "#282C34", "separatorColor": "#282C34" @@ -288,7 +311,8 @@ "disabledText": "#6B727D", "foreground": "#979FAD", "infoForeground": "#979FAD", - "selectedForeground": "#FFFFFF" + "selectedForeground": "#FFFFFF", + "selectedDisabledForeground": "#979FAD" }, "Link": { "activeForeground": "#2979ff", @@ -301,10 +325,12 @@ "List": { "background": "#2F333D", "foreground": "#979FAD", - "selectionBackground": "#4D515D50", + "hoverBackground": "#3A3F4B70", + "hoverInactiveBackground": "#383E49", + "selectionBackground": "#3A3F4B50", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#3A3F4B80" + "selectionInactiveBackground": "#3A3F4B70" }, "material": { "background": "#282C34", @@ -332,7 +358,7 @@ "disabledBackground": "#2F333D", "disabledForeground": "#6B727D", "foreground": "#979FAD", - "selectionBackground": "#4D515D", + "selectionBackground": "#3A3F4B", "selectionForeground": "#FFFFFF", "separatorColor": "#282C34" }, @@ -343,7 +369,7 @@ "disabledForeground": "#6B727D", "foreground": "#979FAD", "highlight": "#282C34", - "selectionBackground": "#4D515D", + "selectionBackground": "#3A3F4B", "selectionForeground": "#FFFFFF", "shadow": "#282C34" }, @@ -355,7 +381,7 @@ "disabledBackground": "#282C34", "disabledForeground": "#6B727D", "foreground": "#979FAD", - "selectionBackground": "#4D515D", + "selectionBackground": "#3A3F4B", "selectionForeground": "#FFFFFF" }, "NavBar": { @@ -409,7 +435,7 @@ "ParameterInfo": { "background": "#2F333D", "borderColor": "#383E49", - "currentOverloadBackground": "#383E49", + "currentOverloadBackground": "#383D48", "currentParameterForeground": "#2979ff", "disabledForeground": "#6B727D", "foreground": "#979FAD", @@ -429,9 +455,10 @@ "background": "#282C34", "disabledForeground": "#6B727D", "eapTagBackground": "#383D48", - "lightSelectionBackground": "#4D515D", + "hoverBackground": "#3A3F4B70", + "lightSelectionBackground": "#383E49", "paidTagBackground": "#383D48", - "selectionBackground": "#4D515D", + "selectionBackground": "#3A3F4B", "tagForeground": "#2979ff", "tagBackground": "#383D48", "trialTagBackground": "#383D48", @@ -442,7 +469,7 @@ "installFocusedBackground": "#383D48", "installFillForeground": "#6B727D", "installFillBackground": "#3A3F4B", - "updateBackground": "#3A3F4B", + "updateBackground": "#2979ff", "updateBorderColor": "#3A3F4B", "updateForeground": "#979FAD" }, @@ -514,9 +541,10 @@ "disabledBackground": "#282C34", "disabledForeground": "#6B727D", "foreground": "#979FAD", - "selectionBackground": "#4D515D", + "selectionBackground": "#3A3F4B", "selectionForeground": "#FFFFFF" }, + "ScreenView.borderColor": "#282C34", "ScrollBar": { "background": "#282C34", "hoverThumbBorderColor": "#2979ff", @@ -576,9 +604,18 @@ }, "SearchMatch": { "endBackground": "#2979ff", - "startBackground": "#2979ff" + "startBackground": "#2979ff", + "endColor": "#2979ff", + "startColor": "#2979ff" }, "SearchField.errorBackground": "#282C34", + "SearchOption": { + "selectedBackground": "#383E49" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#979FAD", + "Repeated.File.Foreground": "#979FAD" + }, "Separator": { "background": "#2F333D", "foreground": "#2F333D", @@ -616,7 +653,9 @@ }, "SplitPaneDivider.draggingColor": "#2F333D", "StatusBar": { - "borderColor": "#282C34" + "borderColor": "#282C34", + "hoverBackground": "#383D48", + "LightEditBackground": "#383E49" }, "TabbedPane": { "background": "#282C34", @@ -643,9 +682,11 @@ }, "TabbedPane.mt.tab.background": "#282C34", "Table": { + "alternativeRowBackground": "#21252B", "background": "#282C34", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#6B727D", "dropLineColor": "#2979ff", "dropLineShortColor": "#2979ff", "focusCellBackground": "#383E49", @@ -653,6 +694,8 @@ "foreground": "#979FAD", "gridColor": "#282C34", "highlightOuter": "#383E49", + "hoverBackground": "#3A3F4B70", + "hoverInactiveBackground": "#383E49", "lightSelectionForeground": "#FFFFFF", "lightSelectionInactiveForeground": "#979FAD", "lightSelectionInactiveBackground": "#2F333D", @@ -730,7 +773,7 @@ "Actions.background": "#282C34", "Actions.infoForeground": "#979FAD", "background": "#282C34", - "borderColor": "#383D48", + "borderColor": "#282C34", "foreground": "#979FAD", "infoForeground": "#979FAD", "separatorColor": "#282C34", @@ -751,50 +794,93 @@ "background": "#282C34" }, "HeaderTab": { + "borderColor": "#383D48", "hoverBackground": "#383D48", - "hoverInactiveBackground": "#2F333D", + "hoverInactiveBackground": "#383D48", "inactiveUnderlineColor": "#2979ff", "selectedBackground": "#21252B", "selectedInactiveBackground": "#21252B", "underlineColor": "#2979ff", - "underlinedTabBackground": "#383D48", - "underlinedTabInactiveBackground": "#2F333D" + "underlinedTabBackground": "#383E49", + "underlinedTabInactiveBackground": "#2F333D", + "underlinedTabForeground": "#FFFFFF", + "underlinedTabInactiveForeground": "#979FAD" } }, "Tree": { "background": "#282C34", "foreground": "#979FAD", "hash": "#282C34", + "hoverBackground": "#3A3F4B70", + "hoverInactiveBackground": "#383E49", "modifiedItemForeground": "#2979ff", "rowHeight": 28, - "selectionBackground": "#3A3F4B80", + "selectionBackground": "#3A3F4B70", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#3A3F4B80", + "selectionInactiveBackground": "#3A3F4B70", "textBackground": "#282C34" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { + "UIDesigner": { "Activity.borderColor": "#282C34", - "ColorPicker.background": "#282C34", - "ColorPicker.foreground": "#979FAD", - "Component.borderColor": "#282C34", - "Component.background": "#282C34", - "Component.foreground": "#979FAD", - "Connector.borderColor": "#282C34", - "Connector.hoverBorderColor": "#383D48", + "Canvas.background": "#21252B", + "ColorPicker": { + "background": "#282C34", + "foreground": "#979FAD" + }, + "Component": { + "borderColor": "#282C34", + "background": "#282C34", + "foreground": "#979FAD", + "hoverBorderColor": "#383D48" + }, + "Connector": { + "borderColor": "#282C34", + "hoverBorderColor": "#383D48" + }, "Canvas.background": "#21252B", "highStroke.foreground": "#979FAD", "Label.foreground": "#979FAD", - "List.selectionBackground": "#3A3F4B80", - "Panel.borderColor": "#282C34", - "Panel.background": "#282C34", + "List.selectionBackground": "#3A3F4B70", + "motion": { + "borderColor": "#282C34", + "Component.foreground": "#979FAD", + "ConstraintSetText.foreground": "#979FAD", + "ConstraintSet.background": "#2F333D", + "CSPanel.SelectedFocusBackground": "#3A3F4B", + "CSPanel.SelectedBackground": "#3A3F4B70", + "cs_FocusText.infoForeground": "#979FAD", + "CursorTextColor.foreground": "#979FAD", + "HoverColor.disabledBackground": "#6B727D", + "motionGraph.background": "#282C34", + "Notification.background": "#282C34", + "ourAvg.background": "#2F333D", + "ourCS.background": "#2F333D", + "ourCS_Border.borderColor": "#282C34", + "ourCS_TextColor.foreground": "#979FAD", + "ourCS_SelectedFocusBackground.selectionForeground": "#FFFFFF", + "ourCS_SelectedBackground.selectionInactiveBackground": "#383E49", + "ourCS_SelectedBorder.pressedBorderColor": "#383D48", + "ourML_BarColor.separatorColor": "#282C34", + "PrimaryPanel.background": "#21252B", + "SecondaryPanel.background": "#282C34", + "SecondaryPanel.header.foreground": "#979FAD", + "SecondaryPanel.header.background": "#21252B", + "timeLine.disabledBorderColor": "#282C34" + }, + "Panel": { + "borderColor": "#282C34", + "background": "#282C34" + }, "percent.foreground": "#979FAD", - "Placeholder.background": "#282C34", - "Placeholder.borderColor": "#282C34", - "Placeholder.foreground": "#979FAD", - "Placeholder.selectedForeground": "#FFFFFF", + "Placeholder": { + "background": "#282C34", + "borderColor": "#282C34", + "foreground": "#979FAD", + "selectedForeground": "#FFFFFF" + }, "Preview.background": "#282C34", "stroke.acceleratorForeground": "#979FAD" }, @@ -828,7 +914,8 @@ }, "Log": { "Commit.unmatchedForeground": "#979FAD", - "Commit.currentBranchBackground": "#2F333D" + "Commit.currentBranchBackground": "#2F333D", + "Commit.hoveredBackground": "#3A3F4B70" }, "RefLabel": { "foreground": "#FFFFFF", @@ -840,18 +927,24 @@ "foreground": "#979FAD" }, "WelcomeScreen": { + "AssociatedComponent.background": "#282C34", "background": "#282C34", "borderColor": "#282C34", "captionBackground": "#21252B", "captionForeground": "#979FAD", + "Details.background": "#282C34", "footerBackground": "#21252B", "footerForeground": "#979FAD", "headerBackground": "#282C34", "headerForeground": "#979FAD", + "List.background": "#21252B", "separatorColor": "#282C34", + "SidePanel.background": "#2F333D", "Projects": { + "actions.background": "#21252B", + "actions.selectionBackground": "#383D48", "background": "#2F333D", - "selectionBackground": "#4D515D", + "selectionBackground": "#3A3F4B", "selectionInactiveBackground": "#2F333D" } }, diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Atom One Light Contrast.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Atom One Light Contrast.theme.json index fac18fc2..264a0a0b 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Atom One Light Contrast.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Atom One Light Contrast.theme.json @@ -1,29 +1,35 @@ { - "name": "Atom One Light Contrast", + "name": "Atom One Light", "dark": false, "author": "Mallowigi", "editorScheme": "/colors/Atom One Light.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/onelight.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { - "acceleratorSelectionForeground": "#7f7f7f", - "background": "#F4F4F4", + "acceleratorSelectionForeground": "#9D9D9F", + "background": "#FAFAFA", "borderColor": "#DBDBDC", - "disabledBackground": "#CACACB", - "disabledForeground": "#b8b8b9", - "disabledText": "#b8b8b9", - "focusColor": "#FFFFFF", + "disabledBackground": "#DBDBDC", + "disabledForeground": "#424243", + "disabledText": "#424243", + "focusColor": "#EAEAEB", "focusedBorderColor": "#2979ff", "foreground": "#232324", - "inactiveBackground": "#CACACB", - "inactiveForeground": "#7f7f7f", - "infoForeground": "#7f7f7f", - "selectionBackground": "#FFFFFF", + "inactiveBackground": "#DBDBDC", + "inactiveForeground": "#9D9D9F", + "infoForeground": "#9D9D9F", + "selectionBackground": "#DBDBDC", "selectionBackgroundInactive": "#EAEAEB", "selectionForeground": "#232324", "selectionInactiveBackground": "#EAEAEB", "separatorColor": "#DBDBDC" }, - "activeCaption": "#F4F4F4", + "activeCaption": "#FAFAFA", "ActionButton": { "hoverBackground": "#2979ff50", "hoverBorderColor": "#2979ff50", @@ -33,13 +39,13 @@ "pressedBorderColor": "#2979ff50" }, "Autocomplete": { - "selectionBackground": "#FFFFFF" + "selectionBackground": "#DBDBDC" }, - "Borders.ContrastBorderColor": "#F4F4F4", + "Borders.ContrastBorderColor": "#FAFAFA", "Borders.color": "#DBDBDC", "Button": { "arc": 0, - "background": "#F4F4F4", + "background": "#FAFAFA", "default": { "endBackground": "#DBDBDC", "endBorderColor": "#DBDBDC", @@ -51,15 +57,15 @@ "startBorderColor": "#DBDBDC" }, "disabledBorderColor": "#DBDBDC", - "disabledText": "#b8b8b9", + "disabledText": "#424243", "endBackground": "#DBDBDC", "endBorderColor": "#DBDBDC", - "focus": "#FFFFFF", + "focus": "#EAEAEB", "focusedBorderColor": "#2979ff", - "foreground": "#7f7f7f", + "foreground": "#9D9D9F", "highlight": "#232324", "mt.background": "#DBDBDC", - "mt.foreground": "#7f7f7f", + "mt.foreground": "#9D9D9F", "mt.selectedForeground": "#232324", "mt.selection.color1": "#DBDBDC", "mt.selection.color2": "#DBDBDC", @@ -72,25 +78,36 @@ "Tooltip.borderColor": "#DBDBDC", "Tooltip.background": "#F2F2F2" }, - "Content.background": "#eaeaeb", + "Content": { + "background": "#FFFFFF", + "selectionBackground": "#DBDBDC" + }, "CheckBox": { - "background": "#F4F4F4", - "disabledText": "#b8b8b9", + "background": "#FAFAFA", + "disabledText": "#424243", "foreground": "#232324", "select": "#2979ff" }, "CheckBoxMenuItem": { - "acceleratorForeground": "#7f7f7f", - "acceleratorSelectionForeground": "#7f7f7f", - "background": "#F4F4F4", - "disabledBackground": "#F4F4F4", - "disabledForeground": "#b8b8b9", + "acceleratorForeground": "#9D9D9F", + "acceleratorSelectionForeground": "#9D9D9F", + "background": "#FAFAFA", + "disabledBackground": "#FAFAFA", + "disabledForeground": "#424243", "foreground": "#232324", - "selectionBackground": "#FFFFFF", + "selectionBackground": "#DBDBDC", "selectionForeground": "#232324" }, + "CodeWithMe": { + "Avatar.foreground": "#232324", + "AccessEnabled": { + "accessDot": "#2979ff", + "dropdownBorder": "#EAEAEB", + "pillBackground": "$second" + } + }, "ColorChooser": { - "background": "#F4F4F4", + "background": "#FAFAFA", "foreground": "#232324", "swatchesDefaultRecentColor": "#232324" }, @@ -98,13 +115,14 @@ "ComboBox": { "ArrowButton": { "background": "#DBDBDC", - "disabledIconColor": "#b8b8b9", + "disabledIconColor": "#424243", "iconColor": "#232324", - "nonEditableBackground": "#F4F4F4" + "nonEditableBackground": "#FAFAFA" }, - "background": "#eaeaeb", + "background": "#FFFFFF", "buttonBackground": "#DBDBDC", - "disabledForeground": "#b8b8b9", + "darcula.hoveredArrowButtonForeground": "#2979ff", + "disabledForeground": "#424243", "foreground": "#232324", "modifiedItemForeground": "#2979ff", "nonEditableBackground": "#EAEAEB", @@ -116,103 +134,107 @@ "CompletionPopup": { "background": "#EAEAEB", "foreground": "#232324", - "infoForeground": "#7f7f7f", + "infoForeground": "#9D9D9F", "matchForeground": "#2979ff", "matchSelectionForeground": "#2979ff", "nonFocusedState": "false", "selectedGrayedForeground": "#232324", "selectionGrayForeground": "#232324", - "selectionInactiveInfoForeground": "#7f7f7f", - "selectionInactiveBackground": "#FFFFFF50", - "selectionBackground": "#FFFFFF80", + "selectionInactiveInfoForeground": "#9D9D9F", + "selectionInactiveBackground": "#DBDBDC50", + "selectionBackground": "#DBDBDC80", "selectionForeground": "#232324", "selectionInfoForeground": "#232324" }, "Component": { "arc": 4, - "borderColor": "#FFFFFF", + "borderColor": "#EAEAEB", "disabledBorderColor": "#DBDBDC", "focusColor": "#2979ff", "focusedBorderColor": "#2979ff", "hoverIconColor": "#2979ff", - "infoForeground": "#7f7f7f", + "infoForeground": "#9D9D9F", "iconColor": "#232324" }, - "control": "#F4F4F4", - "controlText": "#7f7f7f", + "control": "#FAFAFA", + "controlText": "#9D9D9F", "Counter": { "background": "#2979ff", "foreground": "#232324" }, "Debugger": { "Variables": { - "collectingDataForeground": "#7f7f7f", + "collectingDataForeground": "#9D9D9F", "changedValueForeground": "#2979ff", "errorMessageForeground": "#E4564A", - "evaluatingExpressionForeground": "#7f7f7f", + "evaluatingExpressionForeground": "#9D9D9F", "exceptionForeground": "#C18401", "modifyingValueForeground": "#2979ff", "valueForeground": "#2979ff" } }, "DebuggerTabs": { - "selectedBackground": "#FFFFFF", - "underlinedTabBackground": "#FFFFFF" + "selectedBackground": "#EAEAEB", + "underlinedTabBackground": "#EAEAEB" }, "DebuggerPopup": { - "borderColor": "#FFFFFF" + "borderColor": "#EAEAEB" }, "DefaultTabs": { - "background": "#F4F4F4", - "borderColor": "#F4F4F4", + "background": "#FAFAFA", + "borderColor": "#FAFAFA", "hoverBackground": "#DBDBDC", - "hoverColor": "#eaeaeb", - "hoverMaskColor": "#FFFFFF", + "hoverColor": "#FFFFFF", + "hoverMaskColor": "#EAEAEB", + "inactiveColoredTabBackground": "#FAFAFA", "inactiveColoredFileBackground": "#DBDBDC", - "inactiveUnderlineColor": "#b8b8b9", - "inactiveMaskColor": "#eaeaeb", + "inactiveUnderlineColor": "#2979ff", + "inactiveMaskColor": "#FFFFFF", "underlineColor": "#2979ff", - "underlinedTabBackground": "#DBDBDC" + "underlinedTabBackground": "#DBDBDC", + "underlinedTabForeground": "#232324" }, - "Desktop.background": "#F4F4F4", - "DialogWrapper.southPanelBackground": "#F4F4F4", - "DialogWrapper.southPanelDivider": "#F4F4F4", + "Desktop.background": "#FAFAFA", + "DialogWrapper.southPanelBackground": "#FAFAFA", + "DialogWrapper.southPanelDivider": "#FAFAFA", "DragAndDrop": { - "areaBackground": "#F4F4F4", - "areaBorderColor": "#F4F4F4", + "areaBackground": "#FAFAFA", + "areaBorderColor": "#FAFAFA", "areaForeground": "#232324" }, "Editor": { - "background": "#eaeaeb", + "background": "#FFFFFF", "foreground": "#232324", - "shortcutForeground": "#7f7f7f" + "shortcutForeground": "#9D9D9F" }, "EditorPane": { - "background": "#eaeaeb", + "background": "#FFFFFF", "caretForeground": "#2979ff", "foreground": "#232324", - "inactiveBackground": "#F4F4F4", - "inactiveForeground": "#b8b8b9", - "selectionBackground": "#FFFFFF", + "inactiveBackground": "#FAFAFA", + "inactiveForeground": "#424243", + "selectionBackground": "#DBDBDC", "selectionForeground": "#232324" }, "EditorTabs": { "borderColor": "#EAEAEB", - "hoverColor": "#FFFFFF", - "hoverMaskColor": "#FFFFFF", - "inactiveMaskColor": "#F4F4F4", - "inactiveColoredFileBackground": "#F4F4F42", - "inactiveUnderlineColor": "#b8b8b9", + "hoverBackground": "#EAEAEB", + "hoverColor": "#EAEAEB", + "hoverMaskColor": "#EAEAEB", + "inactiveMaskColor": "#FAFAFA", + "inactiveColoredFileBackground": "#FAFAFA", + "inactiveUnderlineColor": "#424243", "selectedForeground": "#232324", "selectedBackground": "#DBDBDC", "underlineColor": "#2979ff", - "underlinedTabBackground": "#DBDBDC" + "underlinedTabBackground": "#DBDBDC", + "underlinedTabForeground": "#232324" }, "EditorGroupsTabs": { - "background": "#F4F4F4", + "background": "#FAFAFA", "borderColor": "#EAEAEB", - "hoverBackground": "#FFFFFF", - "hoverColor": "#FFFFFF", + "hoverBackground": "#EAEAEB", + "hoverColor": "#EAEAEB", "inactiveUnderlineColor": "#2979ff", "underlineColor": "#2979ff", "underlinedTabBackground": "#DBDBDC", @@ -221,7 +243,7 @@ "FileColor": { "Green": "#387002", "Blue": "#004BA0", - "Yellow": "#CACACB", + "Yellow": "#DBDBDC", "Orange": "#B53D00", "Violet": "#4D2C91", "Rose": "#A00037" @@ -238,136 +260,140 @@ }, "Focus.color": "#DBDBDC", "FormattedTextField": { - "background": "#eaeaeb", + "background": "#FFFFFF", "caretForeground": "#2979ff", "foreground": "#232324", "inactiveBackground": "#DBDBDC", - "inactiveForeground": "#b8b8b9", + "inactiveForeground": "#424243", "selectionForeground": "#232324", "selectionBackground": "#DBDBDC" }, + "GotItTooltip.borderColor": "#F2F2F2", "Group": { "disabledSeparatorColor": "#DBDBDC", "separatorColor": "#DBDBDC" }, "GutterTooltip": { - "infoForeground": "#232324", - "lineSeparatorColor": "#F4F4F4" + "infoForeground": "#9D9D9F", + "lineSeparatorColor": "#FAFAFA" }, "HeaderColor": { - "active": "#F4F4F4", - "inactive": "#eaeaeb" + "active": "#FAFAFA", + "inactive": "#FFFFFF" }, "HelpTooltip": { - "background": "#F4F4F4", + "background": "#FAFAFA", "borderColor": "#DBDBDC", "foreground": "#232324", - "infoForeground": "#7f7f7f", - "shortcutForeground": "#7f7f7f" + "infoForeground": "#9D9D9F", + "shortcutForeground": "#9D9D9F" }, "Hyperlink.linkColor": "#2979ff", "inactiveCaption": "#EAEAEB", - "inactiveCaptionBorder": "#F4F4F4", - "inactiveCaptionText": "#7f7f7f", - "info": "#7f7f7f", - "infoText": "#7f7f7f", + "inactiveCaptionBorder": "#FAFAFA", + "inactiveCaptionText": "#9D9D9F", + "info": "#9D9D9F", + "infoText": "#9D9D9F", "IdeStatusBar.border": "4,4,4,4", "InformationHint.borderColor": "#DBDBDC", "InplaceRefactoringPopup": { - "borderColor": "#F4F4F4" + "borderColor": "#FAFAFA" }, "InternalFrame": { "activeTitleForeground": "#232324", - "background": "#F4F4F4", - "inactiveTitleForeground": "#7f7f7f" + "background": "#FAFAFA", + "inactiveTitleForeground": "#9D9D9F" }, "Label": { - "background": "#F4F4F4", - "disabledForeground": "#b8b8b9", - "disabledShadow": "#F4F4F4", - "disabledText": "#b8b8b9", + "background": "#FAFAFA", + "disabledForeground": "#424243", + "disabledShadow": "#FAFAFA", + "disabledText": "#424243", "foreground": "#232324", - "infoForeground": "#7f7f7f", - "selectedForeground": "#232324" + "infoForeground": "#9D9D9F", + "selectedForeground": "#232324", + "selectedDisabledForeground": "#232324" }, "Link": { "activeForeground": "#2979ff", "hoverForeground": "#2979ff", "pressedForeground": "#2979ff", - "secondaryForeground": "#7f7f7f", + "secondaryForeground": "#9D9D9F", "visitedForeground": "#2979ff" }, "link.foreground": "#2979ff", "List": { "background": "#EAEAEB", "foreground": "#232324", - "selectionBackground": "#FFFFFF50", + "hoverBackground": "#DBDBDC80", + "hoverInactiveBackground": "#DBDBDC", + "selectionBackground": "#DBDBDC50", "selectionForeground": "#232324", "selectionInactiveForeground": "#232324", "selectionInactiveBackground": "#DBDBDC80" }, "material": { - "background": "#F4F4F4", + "background": "#FAFAFA", "branchColor": "#232324", - "contrast": "#eaeaeb", + "contrast": "#FFFFFF", "foreground": "#232324", "mergeCommits": "#DBDBDC", - "primaryColor": "#7f7f7f", + "primaryColor": "#9D9D9F", "selectionForeground": "#232324", - "tab.backgroundColor": "#F4F4F4", + "tab.backgroundColor": "#FAFAFA", "tab.borderColor": "#2979ff", - "tagColor": "#7f7f7f" + "tagColor": "#9D9D9F" }, "MemoryIndicator": { "allocatedBackground": "#EAEAEB", - "usedColor": "#FFFFFF", - "usedBackground": "#FFFFFF" + "usedColor": "#EAEAEB", + "usedBackground": "#EAEAEB" }, "Menu": { - "acceleratorForeground": "#7f7f7f", + "acceleratorForeground": "#9D9D9F", "acceleratorSelectionForeground": "#232324", - "background": "#F4F4F4", + "background": "#FAFAFA", "border": "4,2,4,2", "borderColor": "#EAEAEB", "disabledBackground": "#EAEAEB", - "disabledForeground": "#b8b8b9", + "disabledForeground": "#424243", "foreground": "#232324", - "selectionBackground": "#FFFFFF", + "selectionBackground": "#DBDBDC", "selectionForeground": "#232324", "separatorColor": "#DBDBDC" }, "MenuBar": { - "background": "#eaeaeb", - "borderColor": "#F4F4F4", - "disabledBackground": "#F4F4F4", - "disabledForeground": "#b8b8b9", + "background": "#FFFFFF", + "borderColor": "#FAFAFA", + "disabledBackground": "#FAFAFA", + "disabledForeground": "#424243", "foreground": "#232324", - "highlight": "#F4F4F4", - "selectionBackground": "#FFFFFF", + "highlight": "#FAFAFA", + "selectionBackground": "#DBDBDC", "selectionForeground": "#232324", - "shadow": "#eaeaeb" + "shadow": "#FFFFFF" }, "MenuItem": { - "acceleratorForeground": "#7f7f7f", + "acceleratorForeground": "#9D9D9F", "acceleratorSelectionForeground": "#232324", "border": "4,2,4,2", - "background": "#F4F4F4", - "disabledBackground": "#F4F4F4", - "disabledForeground": "#b8b8b9", + "background": "#FAFAFA", + "disabledBackground": "#FAFAFA", + "disabledForeground": "#424243", "foreground": "#232324", - "selectionBackground": "#FFFFFF", + "selectionBackground": "#DBDBDC", "selectionForeground": "#232324" }, "NavBar": { "arrowColor": "#232324", - "borderColor": "#F4F4F4" + "borderColor": "#FAFAFA" }, "NewClass": { "Panel": { - "background": "#F4F4F4" + "background": "#FAFAFA" }, "SearchField": { - "background": "#eaeaeb" + "background": "#FFFFFF" } }, "NewPSD.warning": "#2979ff", @@ -393,61 +419,62 @@ }, "OnePixelDivider.background": "#DBDBDC", "OptionPane": { - "background": "#F4F4F4", + "background": "#FAFAFA", "foreground": "#232324", "messageForeground": "#232324" }, "Outline": { "color": "#DBDBDC", "focusedColor": "#2979ff", - "disabledColor": "#b8b8b9" + "disabledColor": "#424243" }, "Panel": { - "background": "#F4F4F4", + "background": "#FAFAFA", "foreground": "#232324" }, "ParameterInfo": { "background": "#EAEAEB", "borderColor": "#DBDBDC", - "currentOverloadBackground": "#DBDBDC", + "currentOverloadBackground": "#EAEAEB", "currentParameterForeground": "#2979ff", - "disabledForeground": "#b8b8b9", + "disabledForeground": "#424243", "foreground": "#232324", - "infoForeground": "#7f7f7f", + "infoForeground": "#9D9D9F", "lineSeparatorColor": "#DBDBDC" }, "PasswordField": { - "background": "#eaeaeb", + "background": "#FFFFFF", "capsLockIconColor": "#2979ff", "caretForeground": "#2979ff", "foreground": "#232324", - "inactiveForeground": "#b8b8b9", + "inactiveForeground": "#424243", "selectionBackground": "#DBDBDC", "selectionForeground": "#232324" }, "Plugins": { - "background": "#F4F4F4", - "disabledForeground": "#b8b8b9", - "eapTagBackground": "#FFFFFF", - "lightSelectionBackground": "#FFFFFF", - "paidTagBackground": "#FFFFFF", - "selectionBackground": "#FFFFFF", + "background": "#FAFAFA", + "disabledForeground": "#424243", + "eapTagBackground": "#EAEAEB", + "hoverBackground": "#DBDBDC80", + "lightSelectionBackground": "#DBDBDC", + "paidTagBackground": "#EAEAEB", + "selectionBackground": "#DBDBDC", "tagForeground": "#2979ff", - "tagBackground": "#FFFFFF", - "trialTagBackground": "#FFFFFF", + "tagBackground": "#EAEAEB", + "trialTagBackground": "#EAEAEB", "Button": { "installBackground": "#DBDBDC", "installBorderColor": "#DBDBDC", "installForeground": "#232324", - "installFocusedBackground": "#FFFFFF", - "installFillForeground": "#b8b8b9", + "installFocusedBackground": "#EAEAEB", + "installFillForeground": "#424243", "installFillBackground": "#DBDBDC", - "updateBackground": "#DBDBDC", + "updateBackground": "#2979ff", "updateBorderColor": "#DBDBDC", "updateForeground": "#232324" }, "SearchField": { - "background": "#eaeaeb", + "background": "#FFFFFF", "borderColor": "#DBDBDC" }, "SectionHeader": { @@ -462,133 +489,143 @@ }, "Popup": { "Advertiser": { - "background": "#F4F4F4", - "borderColor": "#F4F4F4", + "background": "#FAFAFA", + "borderColor": "#FAFAFA", "foreground": "#2979ff" }, - "borderColor": "#eaeaeb", - "inactiveBorderColor": "#F4F4F4", + "borderColor": "#FFFFFF", + "inactiveBorderColor": "#FAFAFA", "innerBorderColor": "#EAEAEB", "Header": { - "activeBackground": "#F4F4F4", - "inactiveBackground": "#eaeaeb" + "activeBackground": "#FAFAFA", + "inactiveBackground": "#FFFFFF" }, "paintBorder": true, "separatorForeground": "#232324", "separatorColor": "#EAEAEB", "Toolbar": { - "Floating.background": "#eaeaeb", - "background": "#eaeaeb", - "borderColor": "#eaeaeb" + "Floating.background": "#FFFFFF", + "background": "#FFFFFF", + "borderColor": "#FFFFFF" } }, "PopupMenu": { - "background": "#F4F4F4", + "background": "#FAFAFA", "border": "2,0,2,0", "foreground": "#232324", - "translucentBackground": "#F4F4F4" + "translucentBackground": "#FAFAFA" }, "PopupMenuSeparator.height": 10, "PopupMenuSeparator.stripeIndent": 5, "ProgressBar": { - "background": "#F4F4F4", + "background": "#FAFAFA", "foreground": "#2979ff", "indeterminateEndColor": "#2979ff", "indeterminateStartColor": "#2979ff", "progressColor": "#2979ff", - "selectionBackground": "#FFFFFF", - "trackColor": "#FFFFFF" + "selectionBackground": "#EAEAEB", + "trackColor": "#EAEAEB" }, "PsiViewer": { "referenceHighlightColor": "#2979ff" }, "RadioButton": { - "background": "#F4F4F4", - "disabledText": "#b8b8b9", + "background": "#FAFAFA", + "disabledText": "#424243", "foreground": "#232324" }, "RadioButtonMenuItem": { - "acceleratorForeground": "#7f7f7f", - "acceleratorSelectionForeground": "#7f7f7f", - "background": "#F4F4F4", - "disabledBackground": "#F4F4F4", - "disabledForeground": "#b8b8b9", + "acceleratorForeground": "#9D9D9F", + "acceleratorSelectionForeground": "#9D9D9F", + "background": "#FAFAFA", + "disabledBackground": "#FAFAFA", + "disabledForeground": "#424243", "foreground": "#232324", - "selectionBackground": "#FFFFFF", + "selectionBackground": "#DBDBDC", "selectionForeground": "#232324" }, + "ScreenView.borderColor": "#DBDBDC", "ScrollBar": { - "background": "#F4F4F4", + "background": "#FAFAFA", "hoverThumbBorderColor": "#2979ff", "hoverThumbColor": "#2979ff", - "hoverTrackColor": "#F4F4F430", + "hoverTrackColor": "#FAFAFA30", "Mac": { "hoverThumbBorderColor": "#2979ff", "hoverThumbColor": "#2979ff", - "hoverTrackColor": "#F4F4F430", + "hoverTrackColor": "#FAFAFA30", "thumbBorderColor": "#2979ff70", "thumbColor": "#2979ff70", - "trackColor": "#F4F4F430", + "trackColor": "#FAFAFA30", "Transparent": { "hoverThumbBorderColor": "#2979ff", "hoverThumbColor": "#2979ff", - "hoverTrackColor": "#F4F4F430", + "hoverTrackColor": "#FAFAFA30", "thumbBorderColor": "#2979ff70", "thumbColor": "#2979ff70", - "trackColor": "#F4F4F430" + "trackColor": "#FAFAFA30" } }, - "thumb": "#FFFFFF", + "thumb": "#EAEAEB", "thumbBorderColor": "#2979ff70", "thumbColor": "#2979ff70", - "trackColor": "#F4F4F430", + "trackColor": "#FAFAFA30", "Transparent": { "hoverThumbBorderColor": "#2979ff", "hoverThumbColor": "#2979ff", - "hoverTrackColor": "#F4F4F430", + "hoverTrackColor": "#FAFAFA30", "thumbBorderColor": "#2979ff70", "thumbColor": "#2979ff70", - "trackColor": "#F4F4F430" + "trackColor": "#FAFAFA30" } }, "SearchEverywhere": { "Advertiser": { - "background": "#eaeaeb", - "foreground": "#7f7f7f" + "background": "#FFFFFF", + "foreground": "#9D9D9F" }, "Header": { - "background": "#F4F4F4" + "background": "#FAFAFA" }, "List": { - "separatorForeground": "#7f7f7f", + "separatorForeground": "#9D9D9F", "separatorColor": "#DBDBDC" }, "SearchField": { - "background": "#F4F4F4", - "borderColor": "#eaeaeb", - "infoForeground": "#7f7f7f" + "background": "#FAFAFA", + "borderColor": "#FFFFFF", + "infoForeground": "#9D9D9F" }, "Tab": { "active.foreground": "#232324", "selectedForeground": "#232324", - "selectedBackground": "#FFFFFF" + "selectedBackground": "#EAEAEB" } }, "SearchMatch": { "endBackground": "#2979ff", - "startBackground": "#2979ff" + "startBackground": "#2979ff", + "endColor": "#2979ff", + "startColor": "#2979ff" }, "SearchField.errorBackground": "#F2F2F2", + "SearchOption": { + "selectedBackground": "#DBDBDC" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#9D9D9F", + "Repeated.File.Foreground": "#232324" + }, "Separator": { "background": "#EAEAEB", "foreground": "#EAEAEB", "separatorColor": "#EAEAEB" }, "SidePanel": { - "background": "#eaeaeb" + "background": "#FFFFFF" }, "Slider": { - "background": "#F4F4F4", + "background": "#FAFAFA", "buttonBorderColor": "#2979ff", "buttonColor": "#2979ff", "foreground": "#232324", @@ -599,38 +636,40 @@ "thumb": "#2979ff" }, "SpeedSearch": { - "background": "#FFFFFF", + "background": "#EAEAEB", "borderColor": "#DBDBDC", "foreground": "#232324", "errorForeground": "#232324" }, "Spinner": { - "background": "#F4F4F4", + "background": "#FAFAFA", "border": "3,3,3,3", "foreground": "#232324", "selectionForeground": "#232324" }, "SplitPane": { - "background": "#F4F4F4", - "highlight": "#eaeaeb" + "background": "#FAFAFA", + "highlight": "#FFFFFF" }, "SplitPaneDivider.draggingColor": "#EAEAEB", "StatusBar": { - "borderColor": "#F4F4F4" + "borderColor": "#FAFAFA", + "hoverBackground": "#EAEAEB", + "LightEditBackground": "#DBDBDC" }, "TabbedPane": { - "background": "#F4F4F4", - "contentAreaColor": "#FFFFFF", + "background": "#FAFAFA", + "contentAreaColor": "#EAEAEB", "contentBorderInsets": "3,1,1,1", "darkShadow": "#DBDBDC", - "disabledForeground": "#b8b8b9", - "disabledUnderlineColor": "#b8b8b9", + "disabledForeground": "#424243", + "disabledUnderlineColor": "#424243", "focus": "#DBDBDC", "focusColor": "#DBDBDC", "fontSizeOffset": 0, "foreground": "#232324", "highlight": "#DBDBDC", - "hoverColor": "#FFFFFF", + "hoverColor": "#EAEAEB", "labelShift": 0, "selectedForeground": "#232324", "selectedLabelShift": 0, @@ -641,162 +680,209 @@ "tabSelectionHeight": 2, "underlineColor": "#2979ff" }, - "TabbedPane.mt.tab.background": "#eaeaeb", + "TabbedPane.mt.tab.background": "#FFFFFF", "Table": { - "background": "#F4F4F4", + "alternativeRowBackground": "#FFFFFF", + "background": "#FAFAFA", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#424243", "dropLineColor": "#2979ff", "dropLineShortColor": "#2979ff", "focusCellBackground": "#DBDBDC", "focusCellForeground": "#232324", "foreground": "#232324", - "gridColor": "#F4F4F4", + "gridColor": "#FAFAFA", "highlightOuter": "#DBDBDC", + "hoverBackground": "#DBDBDC80", + "hoverInactiveBackground": "#DBDBDC", "lightSelectionForeground": "#232324", - "lightSelectionInactiveForeground": "#7f7f7f", + "lightSelectionInactiveForeground": "#9D9D9F", "lightSelectionInactiveBackground": "#EAEAEB", "selectionBackground": "#DBDBDC", "selectionForeground": "#232324", "selectionInactiveBackground": "#DBDBDC", "selectionInactiveForeground": "#232324", "sortIconColor": "#232324", - "stripeColor": "#eaeaeb" + "stripeColor": "#FFFFFF" }, "TableHeader": { - "background": "#F4F4F4", - "borderColor": "#F4F4F4", + "background": "#FAFAFA", + "borderColor": "#FAFAFA", "bottomSeparatorColor": "#EAEAEB", "cellBorder": "4,0,4,0", - "disabledForeground": "#b8b8b9", + "disabledForeground": "#424243", "foreground": "#232324", "focusCellBackground": "#DBDBDC", "focusCellForeground": "#232324", "height": 25, "separatorColor": "#EAEAEB" }, - "text": "#7f7f7f", - "textInactiveText": "#7f7f7f", - "textText": "#7f7f7f", + "text": "#9D9D9F", + "textInactiveText": "#9D9D9F", + "textText": "#9D9D9F", "TextArea": { - "background": "#eaeaeb", + "background": "#FFFFFF", "caretForeground": "#2979ff", "foreground": "#232324", - "inactiveForeground": "#b8b8b9", + "inactiveForeground": "#424243", "selectionBackground": "#DBDBDC", "selectionForeground": "#232324" }, "TextField": { - "background": "#eaeaeb", + "background": "#FFFFFF", "caretForeground": "#2979ff", "foreground": "#232324", - "inactiveForeground": "#b8b8b9", + "inactiveForeground": "#424243", "selectionBackground": "#DBDBDC", "selectionForeground": "#232324" }, "TextPane": { - "background": "#eaeaeb", + "background": "#FFFFFF", "caretForeground": "#2979ff", "foreground": "#232324", - "inactiveForeground": "#b8b8b9", + "inactiveForeground": "#424243", "selectionBackground": "#DBDBDC", "selectionForeground": "#232324" }, "TitlePane": { - "background": "#eaeaeb", - "Button.hoverBackground": "#FFFFFF", - "inactiveBackground": "#F4F4F4", - "infoForeground": "#7f7f7f", - "inactiveInfoForeground": "#7f7f7f" + "background": "#FFFFFF", + "Button.hoverBackground": "#EAEAEB", + "inactiveBackground": "#FAFAFA", + "infoForeground": "#9D9D9F", + "inactiveInfoForeground": "#9D9D9F" }, "TitledBorder.titleColor": "#232324", "ToggleButton": { "borderColor": "#DBDBDC", "buttonColor": "#232324", - "disabledText": "#b8b8b9", + "disabledText": "#424243", "foreground": "#232324", - "offForeground": "#F4F4F4", - "offBackground": "#F4F4F4", + "offForeground": "#FAFAFA", + "offBackground": "#FAFAFA", "onBackground": "#2979ff", "onForeground": "#2979ff" }, "ToolBar": { - "background": "#eaeaeb", - "borderHandleColor": "#7f7f7f", - "floatingForeground": "#7f7f7f", + "background": "#FFFFFF", + "borderHandleColor": "#9D9D9F", + "floatingForeground": "#9D9D9F", "foreground": "#232324" }, "ToolTip": { - "Actions.background": "#F4F4F4", - "Actions.infoForeground": "#7f7f7f", - "background": "#F4F4F4", - "borderColor": "#FFFFFF", + "Actions.background": "#FAFAFA", + "Actions.infoForeground": "#9D9D9F", + "background": "#F2F2F2", + "borderColor": "#DBDBDC", "foreground": "#232324", - "infoForeground": "#7f7f7f", + "infoForeground": "#9D9D9F", "separatorColor": "#DBDBDC", - "shortcutForeground": "#7f7f7f" + "shortcutForeground": "#9D9D9F" }, "ToolWindow": { "Button": { "hoverBackground": "#DBDBDC", "selectedForeground": "#232324", - "selectedBackground": "#eaeaeb" + "selectedBackground": "#FFFFFF" }, "Header": { - "background": "#F4F4F4", + "background": "#FAFAFA", "borderColor": "#EAEAEB", - "inactiveBackground": "#F4F4F4" + "inactiveBackground": "#FAFAFA" }, "HeaderCloseButton": { - "background": "#F4F4F4" + "background": "#FAFAFA" }, "HeaderTab": { - "hoverBackground": "#FFFFFF", + "borderColor": "#EAEAEB", + "hoverBackground": "#EAEAEB", "hoverInactiveBackground": "#EAEAEB", "inactiveUnderlineColor": "#2979ff", - "selectedBackground": "#eaeaeb", - "selectedInactiveBackground": "#eaeaeb", + "selectedBackground": "#FFFFFF", + "selectedInactiveBackground": "#FFFFFF", "underlineColor": "#2979ff", - "underlinedTabBackground": "#FFFFFF", - "underlinedTabInactiveBackground": "#EAEAEB" + "underlinedTabBackground": "#DBDBDC", + "underlinedTabInactiveBackground": "#EAEAEB", + "underlinedTabForeground": "#232324", + "underlinedTabInactiveForeground": "#232324" } }, "Tree": { - "background": "#eaeaeb", - "foreground": "#7f7f7f", + "background": "#FFFFFF", + "foreground": "#9D9D9F", "hash": "#DBDBDC", + "hoverBackground": "#DBDBDC80", + "hoverInactiveBackground": "#DBDBDC", "modifiedItemForeground": "#2979ff", "rowHeight": 28, "selectionBackground": "#DBDBDC80", "selectionForeground": "#232324", "selectionInactiveForeground": "#232324", "selectionInactiveBackground": "#DBDBDC80", - "textBackground": "#eaeaeb" + "textBackground": "#FFFFFF" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { + "UIDesigner": { "Activity.borderColor": "#DBDBDC", - "ColorPicker.background": "#F4F4F4", - "ColorPicker.foreground": "#232324", - "Component.borderColor": "#DBDBDC", - "Component.background": "#F4F4F4", - "Component.foreground": "#232324", - "Connector.borderColor": "#DBDBDC", - "Connector.hoverBorderColor": "#FFFFFF", - "Canvas.background": "#eaeaeb", + "Canvas.background": "#FFFFFF", + "ColorPicker": { + "background": "#FAFAFA", + "foreground": "#232324" + }, + "Component": { + "borderColor": "#DBDBDC", + "background": "#FAFAFA", + "foreground": "#232324", + "hoverBorderColor": "#EAEAEB" + }, + "Connector": { + "borderColor": "#DBDBDC", + "hoverBorderColor": "#EAEAEB" + }, + "Canvas.background": "#FFFFFF", "highStroke.foreground": "#232324", - "Label.foreground": "#7f7f7f", + "Label.foreground": "#9D9D9F", "List.selectionBackground": "#DBDBDC80", - "Panel.borderColor": "#DBDBDC", - "Panel.background": "#F4F4F4", + "motion": { + "borderColor": "#DBDBDC", + "Component.foreground": "#232324", + "ConstraintSetText.foreground": "#9D9D9F", + "ConstraintSet.background": "#EAEAEB", + "CSPanel.SelectedFocusBackground": "#DBDBDC", + "CSPanel.SelectedBackground": "#DBDBDC80", + "cs_FocusText.infoForeground": "#9D9D9F", + "CursorTextColor.foreground": "#232324", + "HoverColor.disabledBackground": "#424243", + "motionGraph.background": "#FAFAFA", + "Notification.background": "#F2F2F2", + "ourAvg.background": "#EAEAEB", + "ourCS.background": "#EAEAEB", + "ourCS_Border.borderColor": "#DBDBDC", + "ourCS_TextColor.foreground": "#9D9D9F", + "ourCS_SelectedFocusBackground.selectionForeground": "#232324", + "ourCS_SelectedBackground.selectionInactiveBackground": "#DBDBDC", + "ourCS_SelectedBorder.pressedBorderColor": "#EAEAEB", + "ourML_BarColor.separatorColor": "#DBDBDC", + "PrimaryPanel.background": "#FFFFFF", + "SecondaryPanel.background": "#FAFAFA", + "SecondaryPanel.header.foreground": "#9D9D9F", + "SecondaryPanel.header.background": "#FFFFFF", + "timeLine.disabledBorderColor": "#DBDBDC" + }, + "Panel": { + "borderColor": "#DBDBDC", + "background": "#FAFAFA" + }, "percent.foreground": "#232324", - "Placeholder.background": "#F4F4F4", - "Placeholder.borderColor": "#DBDBDC", - "Placeholder.foreground": "#232324", - "Placeholder.selectedForeground": "#232324", - "Preview.background": "#F4F4F4", - "stroke.acceleratorForeground": "#7f7f7f" + "Placeholder": { + "background": "#FAFAFA", + "borderColor": "#DBDBDC", + "foreground": "#232324", + "selectedForeground": "#232324" + }, + "Preview.background": "#FAFAFA", + "stroke.acceleratorForeground": "#9D9D9F" }, "ValidationTooltip": { "errorBackground": "#F2F2F2", @@ -806,95 +892,102 @@ }, "VersionControl": { "FileHistory.Commit": { - "selectedBranchBackground": "#F4F4F4" + "selectedBranchBackground": "#FAFAFA" }, "GitCommits": { - "graphColor": "#FFFFFF" + "graphColor": "#EAEAEB" }, "GitLog": { "localBranchIconColor": "#2979ff", - "otherIconColor": "#7f7f7f", + "otherIconColor": "#9D9D9F", "remoteBranchIconColor": "#232324", - "tagIconColor": "#7f7f7f" + "tagIconColor": "#9D9D9F" }, "HgLog": { "branchIconColor": "#2979ff", "bookmarkIconColor": "#232324", - "closedBranchIconColor": "#b8b8b9", - "localTagIconColor": "#7f7f7f", - "mqTagIconColor": "#7f7f7f", - "tagIconColor": "#7f7f7f", - "tipIconColor": "#7f7f7f" + "closedBranchIconColor": "#424243", + "localTagIconColor": "#9D9D9F", + "mqTagIconColor": "#9D9D9F", + "tagIconColor": "#9D9D9F", + "tipIconColor": "#9D9D9F" }, "Log": { - "Commit.unmatchedForeground": "#7f7f7f", - "Commit.currentBranchBackground": "#EAEAEB" + "Commit.unmatchedForeground": "#9D9D9F", + "Commit.currentBranchBackground": "#EAEAEB", + "Commit.hoveredBackground": "#DBDBDC80" }, "RefLabel": { "foreground": "#232324", - "backgroundBase": "#FFFFFF" + "backgroundBase": "#EAEAEB" } }, "Viewport": { - "background": "#eaeaeb", + "background": "#FFFFFF", "foreground": "#232324" }, "WelcomeScreen": { - "background": "#F4F4F4", - "borderColor": "#F4F4F4", - "captionBackground": "#eaeaeb", + "AssociatedComponent.background": "#FAFAFA", + "background": "#FAFAFA", + "borderColor": "#FAFAFA", + "captionBackground": "#FFFFFF", "captionForeground": "#232324", - "footerBackground": "#eaeaeb", + "Details.background": "#FAFAFA", + "footerBackground": "#FFFFFF", "footerForeground": "#232324", - "headerBackground": "#F4F4F4", + "headerBackground": "#FAFAFA", "headerForeground": "#232324", + "List.background": "#FFFFFF", "separatorColor": "#DBDBDC", + "SidePanel.background": "#EAEAEB", "Projects": { + "actions.background": "#FFFFFF", + "actions.selectionBackground": "#EAEAEB", "background": "#EAEAEB", - "selectionBackground": "#FFFFFF", + "selectionBackground": "#DBDBDC", "selectionInactiveBackground": "#EAEAEB" } }, - "window": "#eaeaeb", + "window": "#FFFFFF", "windowBorder": "#DBDBDC", - "windowText": "#7f7f7f", + "windowText": "#9D9D9F", "Window.border": "#DBDBDC" }, "icons": { "ColorPalette": { - "#43494A": "#eaeaeb", - "#6B6B6B": "#7f7f7f", - "#A7A7A7": "#F4F4F4", + "#43494A": "#FFFFFF", + "#6B6B6B": "#9D9D9F", + "#A7A7A7": "#FAFAFA", "#3D6185": "#2979ff", "#466D94": "#2979ff", - "#3C3F41": "#F4F4F4", - "#545556": "#b8b8b9", - "#606060": "#b8b8b9", + "#3C3F41": "#FAFAFA", + "#545556": "#424243", + "#606060": "#424243", "#9AA7B0": "#232324", "#675133": "#2979ff", "Actions.Blue": "#4078F2", "Actions.Green": "#50A14E", - "Actions.Grey": "#7f7f7f", + "Actions.Grey": "#9D9D9F", "Actions.GreyInline": "#A0A1A7", "Actions.GreyInline.Dark": "#232324", "Actions.Red": "#E4564A", "Actions.Yellow": "#C18401", - "Checkbox.Background.Default": "#eaeaeb", - "Checkbox.Background.Default.Dark": "#eaeaeb", - "Checkbox.Background.Disabled": "#CACACB", - "Checkbox.Background.Disabled.Dark": "#CACACB", + "Checkbox.Background.Default": "#FFFFFF", + "Checkbox.Background.Default.Dark": "#FFFFFF", + "Checkbox.Background.Disabled": "#DBDBDC", + "Checkbox.Background.Disabled.Dark": "#DBDBDC", "Checkbox.Border.Default": "#DBDBDC", "Checkbox.Border.Default.Dark": "#DBDBDC", - "Checkbox.Border.Disabled": "#b8b8b9", - "Checkbox.Border.Disabled.Dark": "#b8b8b9", + "Checkbox.Border.Disabled": "#424243", + "Checkbox.Border.Disabled.Dark": "#424243", "Checkbox.Focus.Thin.Default": "#2979ff", "Checkbox.Focus.Thin.Default.Dark": "#2979ff", "Checkbox.Focus.Wide": "#2979ff", "Checkbox.Focus.Wide.Dark": "#2979ff", - "Checkbox.Foreground.Disabled": "#b8b8b9", - "Checkbox.Foreground.Disabled.Dark": "#b8b8b9", + "Checkbox.Foreground.Disabled": "#424243", + "Checkbox.Foreground.Disabled.Dark": "#424243", "Checkbox.Background.Selected": "#2979ff", - "Checkbox.Background.Selected.Dark": "#F4F4F4", + "Checkbox.Background.Selected.Dark": "#FAFAFA", "Checkbox.Border.Selected": "#2979ff", "Checkbox.Border.Selected.Dark": "#2979ff", "Checkbox.Foreground.Selected": "#2979ff", 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 e916dc36..ada213dc 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 @@ -3,27 +3,33 @@ "dark": false, "author": "Mallowigi", "editorScheme": "/colors/Atom One Light.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/onelight.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { - "acceleratorSelectionForeground": "#7f7f7f", - "background": "#F4F4F4", + "acceleratorSelectionForeground": "#9D9D9F", + "background": "#FAFAFA", "borderColor": "#DBDBDC", - "disabledBackground": "#CACACB", - "disabledForeground": "#b8b8b9", - "disabledText": "#b8b8b9", - "focusColor": "#FFFFFF", + "disabledBackground": "#DBDBDC", + "disabledForeground": "#424243", + "disabledText": "#424243", + "focusColor": "#EAEAEB", "focusedBorderColor": "#2979ff", "foreground": "#232324", - "inactiveBackground": "#CACACB", - "inactiveForeground": "#7f7f7f", - "infoForeground": "#7f7f7f", - "selectionBackground": "#FFFFFF", + "inactiveBackground": "#DBDBDC", + "inactiveForeground": "#9D9D9F", + "infoForeground": "#9D9D9F", + "selectionBackground": "#DBDBDC", "selectionBackgroundInactive": "#EAEAEB", "selectionForeground": "#232324", "selectionInactiveBackground": "#EAEAEB", "separatorColor": "#DBDBDC" }, - "activeCaption": "#F4F4F4", + "activeCaption": "#FAFAFA", "ActionButton": { "hoverBackground": "#2979ff50", "hoverBorderColor": "#2979ff50", @@ -33,13 +39,13 @@ "pressedBorderColor": "#2979ff50" }, "Autocomplete": { - "selectionBackground": "#FFFFFF" + "selectionBackground": "#DBDBDC" }, - "Borders.ContrastBorderColor": "#F4F4F4", + "Borders.ContrastBorderColor": "#FAFAFA", "Borders.color": "#DBDBDC", "Button": { "arc": 0, - "background": "#F4F4F4", + "background": "#FAFAFA", "default": { "endBackground": "#DBDBDC", "endBorderColor": "#DBDBDC", @@ -51,15 +57,15 @@ "startBorderColor": "#DBDBDC" }, "disabledBorderColor": "#DBDBDC", - "disabledText": "#b8b8b9", + "disabledText": "#424243", "endBackground": "#DBDBDC", "endBorderColor": "#DBDBDC", - "focus": "#FFFFFF", + "focus": "#EAEAEB", "focusedBorderColor": "#2979ff", - "foreground": "#7f7f7f", + "foreground": "#9D9D9F", "highlight": "#232324", "mt.background": "#DBDBDC", - "mt.foreground": "#7f7f7f", + "mt.foreground": "#9D9D9F", "mt.selectedForeground": "#232324", "mt.selection.color1": "#DBDBDC", "mt.selection.color2": "#DBDBDC", @@ -72,25 +78,36 @@ "Tooltip.borderColor": "#DBDBDC", "Tooltip.background": "#F2F2F2" }, - "Content.background": "#eaeaeb", + "Content": { + "background": "#FFFFFF", + "selectionBackground": "#DBDBDC" + }, "CheckBox": { - "background": "#F4F4F4", - "disabledText": "#b8b8b9", + "background": "#FAFAFA", + "disabledText": "#424243", "foreground": "#232324", "select": "#2979ff" }, "CheckBoxMenuItem": { - "acceleratorForeground": "#7f7f7f", - "acceleratorSelectionForeground": "#7f7f7f", - "background": "#F4F4F4", - "disabledBackground": "#F4F4F4", - "disabledForeground": "#b8b8b9", + "acceleratorForeground": "#9D9D9F", + "acceleratorSelectionForeground": "#9D9D9F", + "background": "#FAFAFA", + "disabledBackground": "#FAFAFA", + "disabledForeground": "#424243", "foreground": "#232324", - "selectionBackground": "#FFFFFF", + "selectionBackground": "#DBDBDC", "selectionForeground": "#232324" }, + "CodeWithMe": { + "Avatar.foreground": "#232324", + "AccessEnabled": { + "accessDot": "#2979ff", + "dropdownBorder": "#EAEAEB", + "pillBackground": "$second" + } + }, "ColorChooser": { - "background": "#F4F4F4", + "background": "#FAFAFA", "foreground": "#232324", "swatchesDefaultRecentColor": "#232324" }, @@ -98,13 +115,14 @@ "ComboBox": { "ArrowButton": { "background": "#DBDBDC", - "disabledIconColor": "#b8b8b9", + "disabledIconColor": "#424243", "iconColor": "#232324", - "nonEditableBackground": "#F4F4F4" + "nonEditableBackground": "#FAFAFA" }, - "background": "#F4F4F4", + "background": "#FAFAFA", "buttonBackground": "#DBDBDC", - "disabledForeground": "#b8b8b9", + "darcula.hoveredArrowButtonForeground": "#2979ff", + "disabledForeground": "#424243", "foreground": "#232324", "modifiedItemForeground": "#2979ff", "nonEditableBackground": "#EAEAEB", @@ -116,103 +134,107 @@ "CompletionPopup": { "background": "#EAEAEB", "foreground": "#232324", - "infoForeground": "#7f7f7f", + "infoForeground": "#9D9D9F", "matchForeground": "#2979ff", "matchSelectionForeground": "#2979ff", "nonFocusedState": "false", "selectedGrayedForeground": "#232324", "selectionGrayForeground": "#232324", - "selectionInactiveInfoForeground": "#7f7f7f", - "selectionInactiveBackground": "#FFFFFF50", - "selectionBackground": "#FFFFFF80", + "selectionInactiveInfoForeground": "#9D9D9F", + "selectionInactiveBackground": "#DBDBDC50", + "selectionBackground": "#DBDBDC80", "selectionForeground": "#232324", "selectionInfoForeground": "#232324" }, "Component": { "arc": 4, - "borderColor": "#FFFFFF", + "borderColor": "#EAEAEB", "disabledBorderColor": "#DBDBDC", "focusColor": "#2979ff", "focusedBorderColor": "#2979ff", "hoverIconColor": "#2979ff", - "infoForeground": "#7f7f7f", + "infoForeground": "#9D9D9F", "iconColor": "#232324" }, - "control": "#F4F4F4", - "controlText": "#7f7f7f", + "control": "#FAFAFA", + "controlText": "#9D9D9F", "Counter": { "background": "#2979ff", "foreground": "#232324" }, "Debugger": { "Variables": { - "collectingDataForeground": "#7f7f7f", + "collectingDataForeground": "#9D9D9F", "changedValueForeground": "#2979ff", "errorMessageForeground": "#E4564A", - "evaluatingExpressionForeground": "#7f7f7f", + "evaluatingExpressionForeground": "#9D9D9F", "exceptionForeground": "#C18401", "modifyingValueForeground": "#2979ff", "valueForeground": "#2979ff" } }, "DebuggerTabs": { - "selectedBackground": "#FFFFFF", - "underlinedTabBackground": "#FFFFFF" + "selectedBackground": "#EAEAEB", + "underlinedTabBackground": "#EAEAEB" }, "DebuggerPopup": { - "borderColor": "#FFFFFF" + "borderColor": "#EAEAEB" }, "DefaultTabs": { - "background": "#F4F4F4", - "borderColor": "#F4F4F4", + "background": "#FAFAFA", + "borderColor": "#FAFAFA", "hoverBackground": "#DBDBDC", - "hoverColor": "#F4F4F4", - "hoverMaskColor": "#FFFFFF", + "hoverColor": "#FAFAFA", + "hoverMaskColor": "#EAEAEB", + "inactiveColoredTabBackground": "#FAFAFA", "inactiveColoredFileBackground": "#DBDBDC", - "inactiveUnderlineColor": "#b8b8b9", - "inactiveMaskColor": "#F4F4F4", + "inactiveUnderlineColor": "#2979ff", + "inactiveMaskColor": "#FAFAFA", "underlineColor": "#2979ff", - "underlinedTabBackground": "#DBDBDC" + "underlinedTabBackground": "#DBDBDC", + "underlinedTabForeground": "#232324" }, - "Desktop.background": "#F4F4F4", - "DialogWrapper.southPanelBackground": "#F4F4F4", - "DialogWrapper.southPanelDivider": "#F4F4F4", + "Desktop.background": "#FAFAFA", + "DialogWrapper.southPanelBackground": "#FAFAFA", + "DialogWrapper.southPanelDivider": "#FAFAFA", "DragAndDrop": { - "areaBackground": "#F4F4F4", - "areaBorderColor": "#F4F4F4", + "areaBackground": "#FAFAFA", + "areaBorderColor": "#FAFAFA", "areaForeground": "#232324" }, "Editor": { - "background": "#F4F4F4", + "background": "#FAFAFA", "foreground": "#232324", - "shortcutForeground": "#7f7f7f" + "shortcutForeground": "#9D9D9F" }, "EditorPane": { - "background": "#F4F4F4", + "background": "#FAFAFA", "caretForeground": "#2979ff", "foreground": "#232324", - "inactiveBackground": "#F4F4F4", - "inactiveForeground": "#b8b8b9", - "selectionBackground": "#FFFFFF", + "inactiveBackground": "#FAFAFA", + "inactiveForeground": "#424243", + "selectionBackground": "#DBDBDC", "selectionForeground": "#232324" }, "EditorTabs": { "borderColor": "#EAEAEB", - "hoverColor": "#FFFFFF", - "hoverMaskColor": "#FFFFFF", - "inactiveMaskColor": "#F4F4F4", - "inactiveColoredFileBackground": "#F4F4F42", - "inactiveUnderlineColor": "#b8b8b9", + "hoverBackground": "#EAEAEB", + "hoverColor": "#EAEAEB", + "hoverMaskColor": "#EAEAEB", + "inactiveMaskColor": "#FAFAFA", + "inactiveColoredFileBackground": "#FAFAFA", + "inactiveUnderlineColor": "#424243", "selectedForeground": "#232324", "selectedBackground": "#DBDBDC", "underlineColor": "#2979ff", - "underlinedTabBackground": "#DBDBDC" + "underlinedTabBackground": "#DBDBDC", + "underlinedTabForeground": "#232324" }, "EditorGroupsTabs": { - "background": "#F4F4F4", + "background": "#FAFAFA", "borderColor": "#EAEAEB", - "hoverBackground": "#FFFFFF", - "hoverColor": "#FFFFFF", + "hoverBackground": "#EAEAEB", + "hoverColor": "#EAEAEB", "inactiveUnderlineColor": "#2979ff", "underlineColor": "#2979ff", "underlinedTabBackground": "#DBDBDC", @@ -221,7 +243,7 @@ "FileColor": { "Green": "#387002", "Blue": "#004BA0", - "Yellow": "#CACACB", + "Yellow": "#DBDBDC", "Orange": "#B53D00", "Violet": "#4D2C91", "Rose": "#A00037" @@ -238,136 +260,140 @@ }, "Focus.color": "#DBDBDC", "FormattedTextField": { - "background": "#F4F4F4", + "background": "#FAFAFA", "caretForeground": "#2979ff", "foreground": "#232324", "inactiveBackground": "#DBDBDC", - "inactiveForeground": "#b8b8b9", + "inactiveForeground": "#424243", "selectionForeground": "#232324", "selectionBackground": "#DBDBDC" }, + "GotItTooltip.borderColor": "#F2F2F2", "Group": { "disabledSeparatorColor": "#DBDBDC", "separatorColor": "#DBDBDC" }, "GutterTooltip": { - "infoForeground": "#232324", - "lineSeparatorColor": "#F4F4F4" + "infoForeground": "#9D9D9F", + "lineSeparatorColor": "#FAFAFA" }, "HeaderColor": { - "active": "#F4F4F4", - "inactive": "#eaeaeb" + "active": "#FAFAFA", + "inactive": "#FFFFFF" }, "HelpTooltip": { - "background": "#F4F4F4", + "background": "#FAFAFA", "borderColor": "#DBDBDC", "foreground": "#232324", - "infoForeground": "#7f7f7f", - "shortcutForeground": "#7f7f7f" + "infoForeground": "#9D9D9F", + "shortcutForeground": "#9D9D9F" }, "Hyperlink.linkColor": "#2979ff", "inactiveCaption": "#EAEAEB", - "inactiveCaptionBorder": "#F4F4F4", - "inactiveCaptionText": "#7f7f7f", - "info": "#7f7f7f", - "infoText": "#7f7f7f", + "inactiveCaptionBorder": "#FAFAFA", + "inactiveCaptionText": "#9D9D9F", + "info": "#9D9D9F", + "infoText": "#9D9D9F", "IdeStatusBar.border": "4,4,4,4", "InformationHint.borderColor": "#DBDBDC", "InplaceRefactoringPopup": { - "borderColor": "#F4F4F4" + "borderColor": "#FAFAFA" }, "InternalFrame": { "activeTitleForeground": "#232324", - "background": "#F4F4F4", - "inactiveTitleForeground": "#7f7f7f" + "background": "#FAFAFA", + "inactiveTitleForeground": "#9D9D9F" }, "Label": { - "background": "#F4F4F4", - "disabledForeground": "#b8b8b9", - "disabledShadow": "#F4F4F4", - "disabledText": "#b8b8b9", + "background": "#FAFAFA", + "disabledForeground": "#424243", + "disabledShadow": "#FAFAFA", + "disabledText": "#424243", "foreground": "#232324", - "infoForeground": "#7f7f7f", - "selectedForeground": "#232324" + "infoForeground": "#9D9D9F", + "selectedForeground": "#232324", + "selectedDisabledForeground": "#232324" }, "Link": { "activeForeground": "#2979ff", "hoverForeground": "#2979ff", "pressedForeground": "#2979ff", - "secondaryForeground": "#7f7f7f", + "secondaryForeground": "#9D9D9F", "visitedForeground": "#2979ff" }, "link.foreground": "#2979ff", "List": { "background": "#EAEAEB", "foreground": "#232324", - "selectionBackground": "#FFFFFF50", + "hoverBackground": "#DBDBDC80", + "hoverInactiveBackground": "#DBDBDC", + "selectionBackground": "#DBDBDC50", "selectionForeground": "#232324", "selectionInactiveForeground": "#232324", "selectionInactiveBackground": "#DBDBDC80" }, "material": { - "background": "#F4F4F4", + "background": "#FAFAFA", "branchColor": "#232324", - "contrast": "#eaeaeb", + "contrast": "#FFFFFF", "foreground": "#232324", "mergeCommits": "#DBDBDC", - "primaryColor": "#7f7f7f", + "primaryColor": "#9D9D9F", "selectionForeground": "#232324", - "tab.backgroundColor": "#F4F4F4", + "tab.backgroundColor": "#FAFAFA", "tab.borderColor": "#2979ff", - "tagColor": "#7f7f7f" + "tagColor": "#9D9D9F" }, "MemoryIndicator": { "allocatedBackground": "#EAEAEB", - "usedColor": "#FFFFFF", - "usedBackground": "#FFFFFF" + "usedColor": "#EAEAEB", + "usedBackground": "#EAEAEB" }, "Menu": { - "acceleratorForeground": "#7f7f7f", + "acceleratorForeground": "#9D9D9F", "acceleratorSelectionForeground": "#232324", - "background": "#F4F4F4", + "background": "#FAFAFA", "border": "4,2,4,2", "borderColor": "#EAEAEB", "disabledBackground": "#EAEAEB", - "disabledForeground": "#b8b8b9", + "disabledForeground": "#424243", "foreground": "#232324", - "selectionBackground": "#FFFFFF", + "selectionBackground": "#DBDBDC", "selectionForeground": "#232324", "separatorColor": "#DBDBDC" }, "MenuBar": { - "background": "#F4F4F4", - "borderColor": "#F4F4F4", - "disabledBackground": "#F4F4F4", - "disabledForeground": "#b8b8b9", + "background": "#FAFAFA", + "borderColor": "#FAFAFA", + "disabledBackground": "#FAFAFA", + "disabledForeground": "#424243", "foreground": "#232324", - "highlight": "#F4F4F4", - "selectionBackground": "#FFFFFF", + "highlight": "#FAFAFA", + "selectionBackground": "#DBDBDC", "selectionForeground": "#232324", - "shadow": "#F4F4F4" + "shadow": "#FAFAFA" }, "MenuItem": { - "acceleratorForeground": "#7f7f7f", + "acceleratorForeground": "#9D9D9F", "acceleratorSelectionForeground": "#232324", "border": "4,2,4,2", - "background": "#F4F4F4", - "disabledBackground": "#F4F4F4", - "disabledForeground": "#b8b8b9", + "background": "#FAFAFA", + "disabledBackground": "#FAFAFA", + "disabledForeground": "#424243", "foreground": "#232324", - "selectionBackground": "#FFFFFF", + "selectionBackground": "#DBDBDC", "selectionForeground": "#232324" }, "NavBar": { "arrowColor": "#232324", - "borderColor": "#F4F4F4" + "borderColor": "#FAFAFA" }, "NewClass": { "Panel": { - "background": "#F4F4F4" + "background": "#FAFAFA" }, "SearchField": { - "background": "#F4F4F4" + "background": "#FAFAFA" } }, "NewPSD.warning": "#2979ff", @@ -393,61 +419,62 @@ }, "OnePixelDivider.background": "#DBDBDC", "OptionPane": { - "background": "#F4F4F4", + "background": "#FAFAFA", "foreground": "#232324", "messageForeground": "#232324" }, "Outline": { "color": "#DBDBDC", "focusedColor": "#2979ff", - "disabledColor": "#b8b8b9" + "disabledColor": "#424243" }, "Panel": { - "background": "#F4F4F4", + "background": "#FAFAFA", "foreground": "#232324" }, "ParameterInfo": { "background": "#EAEAEB", "borderColor": "#DBDBDC", - "currentOverloadBackground": "#DBDBDC", + "currentOverloadBackground": "#EAEAEB", "currentParameterForeground": "#2979ff", - "disabledForeground": "#b8b8b9", + "disabledForeground": "#424243", "foreground": "#232324", - "infoForeground": "#7f7f7f", + "infoForeground": "#9D9D9F", "lineSeparatorColor": "#DBDBDC" }, "PasswordField": { - "background": "#F4F4F4", + "background": "#FAFAFA", "capsLockIconColor": "#2979ff", "caretForeground": "#2979ff", "foreground": "#232324", - "inactiveForeground": "#b8b8b9", + "inactiveForeground": "#424243", "selectionBackground": "#DBDBDC", "selectionForeground": "#232324" }, "Plugins": { - "background": "#F4F4F4", - "disabledForeground": "#b8b8b9", - "eapTagBackground": "#FFFFFF", - "lightSelectionBackground": "#FFFFFF", - "paidTagBackground": "#FFFFFF", - "selectionBackground": "#FFFFFF", + "background": "#FAFAFA", + "disabledForeground": "#424243", + "eapTagBackground": "#EAEAEB", + "hoverBackground": "#DBDBDC80", + "lightSelectionBackground": "#DBDBDC", + "paidTagBackground": "#EAEAEB", + "selectionBackground": "#DBDBDC", "tagForeground": "#2979ff", - "tagBackground": "#FFFFFF", - "trialTagBackground": "#FFFFFF", + "tagBackground": "#EAEAEB", + "trialTagBackground": "#EAEAEB", "Button": { "installBackground": "#DBDBDC", "installBorderColor": "#DBDBDC", "installForeground": "#232324", - "installFocusedBackground": "#FFFFFF", - "installFillForeground": "#b8b8b9", + "installFocusedBackground": "#EAEAEB", + "installFillForeground": "#424243", "installFillBackground": "#DBDBDC", - "updateBackground": "#DBDBDC", + "updateBackground": "#2979ff", "updateBorderColor": "#DBDBDC", "updateForeground": "#232324" }, "SearchField": { - "background": "#F4F4F4", + "background": "#FAFAFA", "borderColor": "#DBDBDC" }, "SectionHeader": { @@ -462,133 +489,143 @@ }, "Popup": { "Advertiser": { - "background": "#F4F4F4", - "borderColor": "#F4F4F4", + "background": "#FAFAFA", + "borderColor": "#FAFAFA", "foreground": "#2979ff" }, - "borderColor": "#eaeaeb", - "inactiveBorderColor": "#F4F4F4", + "borderColor": "#FFFFFF", + "inactiveBorderColor": "#FAFAFA", "innerBorderColor": "#EAEAEB", "Header": { - "activeBackground": "#F4F4F4", - "inactiveBackground": "#eaeaeb" + "activeBackground": "#FAFAFA", + "inactiveBackground": "#FFFFFF" }, "paintBorder": true, "separatorForeground": "#232324", "separatorColor": "#EAEAEB", "Toolbar": { - "Floating.background": "#eaeaeb", - "background": "#eaeaeb", - "borderColor": "#eaeaeb" + "Floating.background": "#FFFFFF", + "background": "#FFFFFF", + "borderColor": "#FFFFFF" } }, "PopupMenu": { - "background": "#F4F4F4", + "background": "#FAFAFA", "border": "2,0,2,0", "foreground": "#232324", - "translucentBackground": "#F4F4F4" + "translucentBackground": "#FAFAFA" }, "PopupMenuSeparator.height": 10, "PopupMenuSeparator.stripeIndent": 5, "ProgressBar": { - "background": "#F4F4F4", + "background": "#FAFAFA", "foreground": "#2979ff", "indeterminateEndColor": "#2979ff", "indeterminateStartColor": "#2979ff", "progressColor": "#2979ff", - "selectionBackground": "#FFFFFF", - "trackColor": "#FFFFFF" + "selectionBackground": "#EAEAEB", + "trackColor": "#EAEAEB" }, "PsiViewer": { "referenceHighlightColor": "#2979ff" }, "RadioButton": { - "background": "#F4F4F4", - "disabledText": "#b8b8b9", + "background": "#FAFAFA", + "disabledText": "#424243", "foreground": "#232324" }, "RadioButtonMenuItem": { - "acceleratorForeground": "#7f7f7f", - "acceleratorSelectionForeground": "#7f7f7f", - "background": "#F4F4F4", - "disabledBackground": "#F4F4F4", - "disabledForeground": "#b8b8b9", + "acceleratorForeground": "#9D9D9F", + "acceleratorSelectionForeground": "#9D9D9F", + "background": "#FAFAFA", + "disabledBackground": "#FAFAFA", + "disabledForeground": "#424243", "foreground": "#232324", - "selectionBackground": "#FFFFFF", + "selectionBackground": "#DBDBDC", "selectionForeground": "#232324" }, + "ScreenView.borderColor": "#DBDBDC", "ScrollBar": { - "background": "#F4F4F4", + "background": "#FAFAFA", "hoverThumbBorderColor": "#2979ff", "hoverThumbColor": "#2979ff", - "hoverTrackColor": "#F4F4F430", + "hoverTrackColor": "#FAFAFA30", "Mac": { "hoverThumbBorderColor": "#2979ff", "hoverThumbColor": "#2979ff", - "hoverTrackColor": "#F4F4F430", + "hoverTrackColor": "#FAFAFA30", "thumbBorderColor": "#2979ff70", "thumbColor": "#2979ff70", - "trackColor": "#F4F4F430", + "trackColor": "#FAFAFA30", "Transparent": { "hoverThumbBorderColor": "#2979ff", "hoverThumbColor": "#2979ff", - "hoverTrackColor": "#F4F4F430", + "hoverTrackColor": "#FAFAFA30", "thumbBorderColor": "#2979ff70", "thumbColor": "#2979ff70", - "trackColor": "#F4F4F430" + "trackColor": "#FAFAFA30" } }, - "thumb": "#FFFFFF", + "thumb": "#EAEAEB", "thumbBorderColor": "#2979ff70", "thumbColor": "#2979ff70", - "trackColor": "#F4F4F430", + "trackColor": "#FAFAFA30", "Transparent": { "hoverThumbBorderColor": "#2979ff", "hoverThumbColor": "#2979ff", - "hoverTrackColor": "#F4F4F430", + "hoverTrackColor": "#FAFAFA30", "thumbBorderColor": "#2979ff70", "thumbColor": "#2979ff70", - "trackColor": "#F4F4F430" + "trackColor": "#FAFAFA30" } }, "SearchEverywhere": { "Advertiser": { - "background": "#eaeaeb", - "foreground": "#7f7f7f" + "background": "#FFFFFF", + "foreground": "#9D9D9F" }, "Header": { - "background": "#F4F4F4" + "background": "#FAFAFA" }, "List": { - "separatorForeground": "#7f7f7f", + "separatorForeground": "#9D9D9F", "separatorColor": "#DBDBDC" }, "SearchField": { - "background": "#F4F4F4", - "borderColor": "#eaeaeb", - "infoForeground": "#7f7f7f" + "background": "#FAFAFA", + "borderColor": "#FFFFFF", + "infoForeground": "#9D9D9F" }, "Tab": { "active.foreground": "#232324", "selectedForeground": "#232324", - "selectedBackground": "#FFFFFF" + "selectedBackground": "#EAEAEB" } }, "SearchMatch": { "endBackground": "#2979ff", - "startBackground": "#2979ff" + "startBackground": "#2979ff", + "endColor": "#2979ff", + "startColor": "#2979ff" }, "SearchField.errorBackground": "#F2F2F2", + "SearchOption": { + "selectedBackground": "#DBDBDC" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#9D9D9F", + "Repeated.File.Foreground": "#232324" + }, "Separator": { "background": "#EAEAEB", "foreground": "#EAEAEB", "separatorColor": "#EAEAEB" }, "SidePanel": { - "background": "#F4F4F4" + "background": "#FAFAFA" }, "Slider": { - "background": "#F4F4F4", + "background": "#FAFAFA", "buttonBorderColor": "#2979ff", "buttonColor": "#2979ff", "foreground": "#232324", @@ -599,38 +636,40 @@ "thumb": "#2979ff" }, "SpeedSearch": { - "background": "#FFFFFF", + "background": "#EAEAEB", "borderColor": "#DBDBDC", "foreground": "#232324", "errorForeground": "#232324" }, "Spinner": { - "background": "#F4F4F4", + "background": "#FAFAFA", "border": "3,3,3,3", "foreground": "#232324", "selectionForeground": "#232324" }, "SplitPane": { - "background": "#F4F4F4", - "highlight": "#F4F4F4" + "background": "#FAFAFA", + "highlight": "#FAFAFA" }, "SplitPaneDivider.draggingColor": "#EAEAEB", "StatusBar": { - "borderColor": "#F4F4F4" + "borderColor": "#FAFAFA", + "hoverBackground": "#EAEAEB", + "LightEditBackground": "#DBDBDC" }, "TabbedPane": { - "background": "#F4F4F4", - "contentAreaColor": "#FFFFFF", + "background": "#FAFAFA", + "contentAreaColor": "#EAEAEB", "contentBorderInsets": "3,1,1,1", "darkShadow": "#DBDBDC", - "disabledForeground": "#b8b8b9", - "disabledUnderlineColor": "#b8b8b9", + "disabledForeground": "#424243", + "disabledUnderlineColor": "#424243", "focus": "#DBDBDC", "focusColor": "#DBDBDC", "fontSizeOffset": 0, "foreground": "#232324", "highlight": "#DBDBDC", - "hoverColor": "#FFFFFF", + "hoverColor": "#EAEAEB", "labelShift": 0, "selectedForeground": "#232324", "selectedLabelShift": 0, @@ -641,162 +680,209 @@ "tabSelectionHeight": 2, "underlineColor": "#2979ff" }, - "TabbedPane.mt.tab.background": "#F4F4F4", + "TabbedPane.mt.tab.background": "#FAFAFA", "Table": { - "background": "#F4F4F4", + "alternativeRowBackground": "#FFFFFF", + "background": "#FAFAFA", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#424243", "dropLineColor": "#2979ff", "dropLineShortColor": "#2979ff", "focusCellBackground": "#DBDBDC", "focusCellForeground": "#232324", "foreground": "#232324", - "gridColor": "#F4F4F4", + "gridColor": "#FAFAFA", "highlightOuter": "#DBDBDC", + "hoverBackground": "#DBDBDC80", + "hoverInactiveBackground": "#DBDBDC", "lightSelectionForeground": "#232324", - "lightSelectionInactiveForeground": "#7f7f7f", + "lightSelectionInactiveForeground": "#9D9D9F", "lightSelectionInactiveBackground": "#EAEAEB", "selectionBackground": "#DBDBDC", "selectionForeground": "#232324", "selectionInactiveBackground": "#DBDBDC", "selectionInactiveForeground": "#232324", "sortIconColor": "#232324", - "stripeColor": "#eaeaeb" + "stripeColor": "#FFFFFF" }, "TableHeader": { - "background": "#F4F4F4", - "borderColor": "#F4F4F4", + "background": "#FAFAFA", + "borderColor": "#FAFAFA", "bottomSeparatorColor": "#EAEAEB", "cellBorder": "4,0,4,0", - "disabledForeground": "#b8b8b9", + "disabledForeground": "#424243", "foreground": "#232324", "focusCellBackground": "#DBDBDC", "focusCellForeground": "#232324", "height": 25, "separatorColor": "#EAEAEB" }, - "text": "#7f7f7f", - "textInactiveText": "#7f7f7f", - "textText": "#7f7f7f", + "text": "#9D9D9F", + "textInactiveText": "#9D9D9F", + "textText": "#9D9D9F", "TextArea": { - "background": "#F4F4F4", + "background": "#FAFAFA", "caretForeground": "#2979ff", "foreground": "#232324", - "inactiveForeground": "#b8b8b9", + "inactiveForeground": "#424243", "selectionBackground": "#DBDBDC", "selectionForeground": "#232324" }, "TextField": { - "background": "#F4F4F4", + "background": "#FAFAFA", "caretForeground": "#2979ff", "foreground": "#232324", - "inactiveForeground": "#b8b8b9", + "inactiveForeground": "#424243", "selectionBackground": "#DBDBDC", "selectionForeground": "#232324" }, "TextPane": { - "background": "#F4F4F4", + "background": "#FAFAFA", "caretForeground": "#2979ff", "foreground": "#232324", - "inactiveForeground": "#b8b8b9", + "inactiveForeground": "#424243", "selectionBackground": "#DBDBDC", "selectionForeground": "#232324" }, "TitlePane": { - "background": "#eaeaeb", - "Button.hoverBackground": "#FFFFFF", - "inactiveBackground": "#F4F4F4", - "infoForeground": "#7f7f7f", - "inactiveInfoForeground": "#7f7f7f" + "background": "#FFFFFF", + "Button.hoverBackground": "#EAEAEB", + "inactiveBackground": "#FAFAFA", + "infoForeground": "#9D9D9F", + "inactiveInfoForeground": "#9D9D9F" }, "TitledBorder.titleColor": "#232324", "ToggleButton": { "borderColor": "#DBDBDC", "buttonColor": "#232324", - "disabledText": "#b8b8b9", + "disabledText": "#424243", "foreground": "#232324", - "offForeground": "#F4F4F4", - "offBackground": "#F4F4F4", + "offForeground": "#FAFAFA", + "offBackground": "#FAFAFA", "onBackground": "#2979ff", "onForeground": "#2979ff" }, "ToolBar": { - "background": "#F4F4F4", - "borderHandleColor": "#7f7f7f", - "floatingForeground": "#7f7f7f", + "background": "#FAFAFA", + "borderHandleColor": "#9D9D9F", + "floatingForeground": "#9D9D9F", "foreground": "#232324" }, "ToolTip": { - "Actions.background": "#F4F4F4", - "Actions.infoForeground": "#7f7f7f", - "background": "#F4F4F4", - "borderColor": "#FFFFFF", + "Actions.background": "#FAFAFA", + "Actions.infoForeground": "#9D9D9F", + "background": "#F2F2F2", + "borderColor": "#DBDBDC", "foreground": "#232324", - "infoForeground": "#7f7f7f", + "infoForeground": "#9D9D9F", "separatorColor": "#DBDBDC", - "shortcutForeground": "#7f7f7f" + "shortcutForeground": "#9D9D9F" }, "ToolWindow": { "Button": { "hoverBackground": "#DBDBDC", "selectedForeground": "#232324", - "selectedBackground": "#eaeaeb" + "selectedBackground": "#FFFFFF" }, "Header": { - "background": "#F4F4F4", + "background": "#FAFAFA", "borderColor": "#EAEAEB", - "inactiveBackground": "#F4F4F4" + "inactiveBackground": "#FAFAFA" }, "HeaderCloseButton": { - "background": "#F4F4F4" + "background": "#FAFAFA" }, "HeaderTab": { - "hoverBackground": "#FFFFFF", + "borderColor": "#EAEAEB", + "hoverBackground": "#EAEAEB", "hoverInactiveBackground": "#EAEAEB", "inactiveUnderlineColor": "#2979ff", - "selectedBackground": "#eaeaeb", - "selectedInactiveBackground": "#eaeaeb", + "selectedBackground": "#FFFFFF", + "selectedInactiveBackground": "#FFFFFF", "underlineColor": "#2979ff", - "underlinedTabBackground": "#FFFFFF", - "underlinedTabInactiveBackground": "#EAEAEB" + "underlinedTabBackground": "#DBDBDC", + "underlinedTabInactiveBackground": "#EAEAEB", + "underlinedTabForeground": "#232324", + "underlinedTabInactiveForeground": "#232324" } }, "Tree": { - "background": "#F4F4F4", - "foreground": "#7f7f7f", + "background": "#FAFAFA", + "foreground": "#9D9D9F", "hash": "#DBDBDC", + "hoverBackground": "#DBDBDC80", + "hoverInactiveBackground": "#DBDBDC", "modifiedItemForeground": "#2979ff", "rowHeight": 28, "selectionBackground": "#DBDBDC80", "selectionForeground": "#232324", "selectionInactiveForeground": "#232324", "selectionInactiveBackground": "#DBDBDC80", - "textBackground": "#F4F4F4" + "textBackground": "#FAFAFA" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { + "UIDesigner": { "Activity.borderColor": "#DBDBDC", - "ColorPicker.background": "#F4F4F4", - "ColorPicker.foreground": "#232324", - "Component.borderColor": "#DBDBDC", - "Component.background": "#F4F4F4", - "Component.foreground": "#232324", - "Connector.borderColor": "#DBDBDC", - "Connector.hoverBorderColor": "#FFFFFF", - "Canvas.background": "#eaeaeb", + "Canvas.background": "#FFFFFF", + "ColorPicker": { + "background": "#FAFAFA", + "foreground": "#232324" + }, + "Component": { + "borderColor": "#DBDBDC", + "background": "#FAFAFA", + "foreground": "#232324", + "hoverBorderColor": "#EAEAEB" + }, + "Connector": { + "borderColor": "#DBDBDC", + "hoverBorderColor": "#EAEAEB" + }, + "Canvas.background": "#FFFFFF", "highStroke.foreground": "#232324", - "Label.foreground": "#7f7f7f", + "Label.foreground": "#9D9D9F", "List.selectionBackground": "#DBDBDC80", - "Panel.borderColor": "#DBDBDC", - "Panel.background": "#F4F4F4", + "motion": { + "borderColor": "#DBDBDC", + "Component.foreground": "#232324", + "ConstraintSetText.foreground": "#9D9D9F", + "ConstraintSet.background": "#EAEAEB", + "CSPanel.SelectedFocusBackground": "#DBDBDC", + "CSPanel.SelectedBackground": "#DBDBDC80", + "cs_FocusText.infoForeground": "#9D9D9F", + "CursorTextColor.foreground": "#232324", + "HoverColor.disabledBackground": "#424243", + "motionGraph.background": "#FAFAFA", + "Notification.background": "#F2F2F2", + "ourAvg.background": "#EAEAEB", + "ourCS.background": "#EAEAEB", + "ourCS_Border.borderColor": "#DBDBDC", + "ourCS_TextColor.foreground": "#9D9D9F", + "ourCS_SelectedFocusBackground.selectionForeground": "#232324", + "ourCS_SelectedBackground.selectionInactiveBackground": "#DBDBDC", + "ourCS_SelectedBorder.pressedBorderColor": "#EAEAEB", + "ourML_BarColor.separatorColor": "#DBDBDC", + "PrimaryPanel.background": "#FFFFFF", + "SecondaryPanel.background": "#FAFAFA", + "SecondaryPanel.header.foreground": "#9D9D9F", + "SecondaryPanel.header.background": "#FFFFFF", + "timeLine.disabledBorderColor": "#DBDBDC" + }, + "Panel": { + "borderColor": "#DBDBDC", + "background": "#FAFAFA" + }, "percent.foreground": "#232324", - "Placeholder.background": "#F4F4F4", - "Placeholder.borderColor": "#DBDBDC", - "Placeholder.foreground": "#232324", - "Placeholder.selectedForeground": "#232324", - "Preview.background": "#F4F4F4", - "stroke.acceleratorForeground": "#7f7f7f" + "Placeholder": { + "background": "#FAFAFA", + "borderColor": "#DBDBDC", + "foreground": "#232324", + "selectedForeground": "#232324" + }, + "Preview.background": "#FAFAFA", + "stroke.acceleratorForeground": "#9D9D9F" }, "ValidationTooltip": { "errorBackground": "#F2F2F2", @@ -806,95 +892,102 @@ }, "VersionControl": { "FileHistory.Commit": { - "selectedBranchBackground": "#F4F4F4" + "selectedBranchBackground": "#FAFAFA" }, "GitCommits": { - "graphColor": "#FFFFFF" + "graphColor": "#EAEAEB" }, "GitLog": { "localBranchIconColor": "#2979ff", - "otherIconColor": "#7f7f7f", + "otherIconColor": "#9D9D9F", "remoteBranchIconColor": "#232324", - "tagIconColor": "#7f7f7f" + "tagIconColor": "#9D9D9F" }, "HgLog": { "branchIconColor": "#2979ff", "bookmarkIconColor": "#232324", - "closedBranchIconColor": "#b8b8b9", - "localTagIconColor": "#7f7f7f", - "mqTagIconColor": "#7f7f7f", - "tagIconColor": "#7f7f7f", - "tipIconColor": "#7f7f7f" + "closedBranchIconColor": "#424243", + "localTagIconColor": "#9D9D9F", + "mqTagIconColor": "#9D9D9F", + "tagIconColor": "#9D9D9F", + "tipIconColor": "#9D9D9F" }, "Log": { - "Commit.unmatchedForeground": "#7f7f7f", - "Commit.currentBranchBackground": "#EAEAEB" + "Commit.unmatchedForeground": "#9D9D9F", + "Commit.currentBranchBackground": "#EAEAEB", + "Commit.hoveredBackground": "#DBDBDC80" }, "RefLabel": { "foreground": "#232324", - "backgroundBase": "#FFFFFF" + "backgroundBase": "#EAEAEB" } }, "Viewport": { - "background": "#F4F4F4", + "background": "#FAFAFA", "foreground": "#232324" }, "WelcomeScreen": { - "background": "#F4F4F4", - "borderColor": "#F4F4F4", - "captionBackground": "#eaeaeb", + "AssociatedComponent.background": "#FAFAFA", + "background": "#FAFAFA", + "borderColor": "#FAFAFA", + "captionBackground": "#FFFFFF", "captionForeground": "#232324", - "footerBackground": "#eaeaeb", + "Details.background": "#FAFAFA", + "footerBackground": "#FFFFFF", "footerForeground": "#232324", - "headerBackground": "#F4F4F4", + "headerBackground": "#FAFAFA", "headerForeground": "#232324", + "List.background": "#FFFFFF", "separatorColor": "#DBDBDC", + "SidePanel.background": "#EAEAEB", "Projects": { + "actions.background": "#FFFFFF", + "actions.selectionBackground": "#EAEAEB", "background": "#EAEAEB", - "selectionBackground": "#FFFFFF", + "selectionBackground": "#DBDBDC", "selectionInactiveBackground": "#EAEAEB" } }, - "window": "#F4F4F4", + "window": "#FAFAFA", "windowBorder": "#DBDBDC", - "windowText": "#7f7f7f", + "windowText": "#9D9D9F", "Window.border": "#DBDBDC" }, "icons": { "ColorPalette": { - "#43494A": "#eaeaeb", - "#6B6B6B": "#7f7f7f", - "#A7A7A7": "#F4F4F4", + "#43494A": "#FFFFFF", + "#6B6B6B": "#9D9D9F", + "#A7A7A7": "#FAFAFA", "#3D6185": "#2979ff", "#466D94": "#2979ff", - "#3C3F41": "#F4F4F4", - "#545556": "#b8b8b9", - "#606060": "#b8b8b9", + "#3C3F41": "#FAFAFA", + "#545556": "#424243", + "#606060": "#424243", "#9AA7B0": "#232324", "#675133": "#2979ff", "Actions.Blue": "#4078F2", "Actions.Green": "#50A14E", - "Actions.Grey": "#7f7f7f", + "Actions.Grey": "#9D9D9F", "Actions.GreyInline": "#A0A1A7", "Actions.GreyInline.Dark": "#232324", "Actions.Red": "#E4564A", "Actions.Yellow": "#C18401", - "Checkbox.Background.Default": "#eaeaeb", - "Checkbox.Background.Default.Dark": "#eaeaeb", - "Checkbox.Background.Disabled": "#CACACB", - "Checkbox.Background.Disabled.Dark": "#CACACB", + "Checkbox.Background.Default": "#FFFFFF", + "Checkbox.Background.Default.Dark": "#FFFFFF", + "Checkbox.Background.Disabled": "#DBDBDC", + "Checkbox.Background.Disabled.Dark": "#DBDBDC", "Checkbox.Border.Default": "#DBDBDC", "Checkbox.Border.Default.Dark": "#DBDBDC", - "Checkbox.Border.Disabled": "#b8b8b9", - "Checkbox.Border.Disabled.Dark": "#b8b8b9", + "Checkbox.Border.Disabled": "#424243", + "Checkbox.Border.Disabled.Dark": "#424243", "Checkbox.Focus.Thin.Default": "#2979ff", "Checkbox.Focus.Thin.Default.Dark": "#2979ff", "Checkbox.Focus.Wide": "#2979ff", "Checkbox.Focus.Wide.Dark": "#2979ff", - "Checkbox.Foreground.Disabled": "#b8b8b9", - "Checkbox.Foreground.Disabled.Dark": "#b8b8b9", + "Checkbox.Foreground.Disabled": "#424243", + "Checkbox.Foreground.Disabled.Dark": "#424243", "Checkbox.Background.Selected": "#2979ff", - "Checkbox.Background.Selected.Dark": "#F4F4F4", + "Checkbox.Background.Selected.Dark": "#FAFAFA", "Checkbox.Border.Selected": "#2979ff", "Checkbox.Border.Selected.Dark": "#2979ff", "Checkbox.Foreground.Selected": "#2979ff", diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Dracula Contrast.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Dracula Contrast.theme.json index 43655460..557e007c 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Dracula Contrast.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Dracula Contrast.theme.json @@ -3,34 +3,40 @@ "dark": true, "author": "Mallowigi", "editorScheme": "/colors/Dracula.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/dracula.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { "acceleratorSelectionForeground": "#6272A4", "background": "#282A36", "borderColor": "#21222C", - "disabledBackground": "#313341", + "disabledBackground": "#34353D", "disabledForeground": "#6272A4", "disabledText": "#6272A4", - "focusColor": "#6272A4", - "focusedBorderColor": "#FF79C5", + "focusColor": "#44475a", + "focusedBorderColor": "#9580ff", "foreground": "#F8F8F2", - "inactiveBackground": "#313341", + "inactiveBackground": "#34353D", "inactiveForeground": "#6272A4", "infoForeground": "#6272A4", "selectionBackground": "#44475A", "selectionBackgroundInactive": "#282A36", - "selectionForeground": "#8BE9FD", + "selectionForeground": "#FFFFFF", "selectionInactiveBackground": "#282A36", "separatorColor": "#21222C" }, "activeCaption": "#282A36", "ActionButton": { - "hoverBackground": "#FF79C550", - "hoverBorderColor": "#FF79C550", + "hoverBackground": "#9580ff50", + "hoverBorderColor": "#9580ff50", "hoverSeparatorColor": "#393C4B", - "focusedBorderColor": "#FF79C550", - "pressedBackground": "#FF79C550", - "pressedBorderColor": "#FF79C550" + "focusedBorderColor": "#9580ff50", + "pressedBackground": "#9580ff50", + "pressedBorderColor": "#9580ff50" }, "Autocomplete": { "selectionBackground": "#44475A" @@ -44,8 +50,8 @@ "endBackground": "#44475A", "endBorderColor": "#44475A", "foreground": "#8BE9FD", - "focusColor": "#FF79C5", - "focusedBorderColor": "#FF79C5", + "focusColor": "#9580ff", + "focusedBorderColor": "#9580ff", "shadowColor": "#44475A", "startBackground": "#44475A", "startBorderColor": "#44475A" @@ -54,13 +60,13 @@ "disabledText": "#6272A4", "endBackground": "#393C4B", "endBorderColor": "#393C4B", - "focus": "#6272A4", - "focusedBorderColor": "#FF79C5", + "focus": "#44475a", + "focusedBorderColor": "#9580ff", "foreground": "#6272A4", - "highlight": "#8BE9FD", + "highlight": "#FFFFFF", "mt.background": "#393C4B", "mt.foreground": "#6272A4", - "mt.selectedForeground": "#8BE9FD", + "mt.selectedForeground": "#FFFFFF", "mt.selection.color1": "#44475A", "mt.selection.color2": "#44475A", "startBackground": "#393C4B", @@ -72,12 +78,15 @@ "Tooltip.borderColor": "#21222C", "Tooltip.background": "#1D2228" }, - "Content.background": "#191A21", + "Content": { + "background": "#191A21", + "selectionBackground": "#44475A" + }, "CheckBox": { "background": "#282A36", "disabledText": "#6272A4", "foreground": "#F8F8F2", - "select": "#FF79C5" + "select": "#9580ff" }, "CheckBoxMenuItem": { "acceleratorForeground": "#6272A4", @@ -89,6 +98,14 @@ "selectionBackground": "#44475A", "selectionForeground": "#8BE9FD" }, + "CodeWithMe": { + "Avatar.foreground": "#F8F8F2", + "AccessEnabled": { + "accessDot": "#9580ff", + "dropdownBorder": "#282A36", + "pillBackground": "$second" + } + }, "ColorChooser": { "background": "#282A36", "foreground": "#F8F8F2", @@ -104,9 +121,10 @@ }, "background": "#191A21", "buttonBackground": "#393C4B", + "darcula.hoveredArrowButtonForeground": "#9580ff", "disabledForeground": "#6272A4", "foreground": "#F8F8F2", - "modifiedItemForeground": "#FF79C5", + "modifiedItemForeground": "#9580ff", "nonEditableBackground": "#282A36", "padding": "5,5,5,5", "selectionBackground": "#44475A", @@ -117,62 +135,64 @@ "background": "#282A36", "foreground": "#F8F8F2", "infoForeground": "#6272A4", - "matchForeground": "#FF79C5", - "matchSelectionForeground": "#FF79C5", + "matchForeground": "#9580ff", + "matchSelectionForeground": "#9580ff", "nonFocusedState": "false", - "selectedGrayedForeground": "#8BE9FD", - "selectionGrayForeground": "#8BE9FD", + "selectedGrayedForeground": "#FFFFFF", + "selectionGrayForeground": "#FFFFFF", "selectionInactiveInfoForeground": "#6272A4", "selectionInactiveBackground": "#44475A50", "selectionBackground": "#44475A80", - "selectionForeground": "#8BE9FD", - "selectionInfoForeground": "#8BE9FD" + "selectionForeground": "#FFFFFF", + "selectionInfoForeground": "#FFFFFF" }, "Component": { "arc": 4, - "borderColor": "#6272A4", + "borderColor": "#44475a", "disabledBorderColor": "#393C4B", - "focusColor": "#FF79C5", - "focusedBorderColor": "#FF79C5", - "hoverIconColor": "#FF79C5", + "focusColor": "#9580ff", + "focusedBorderColor": "#9580ff", + "hoverIconColor": "#9580ff", "infoForeground": "#6272A4", "iconColor": "#F8F8F2" }, "control": "#282A36", "controlText": "#6272A4", "Counter": { - "background": "#FF79C5", - "foreground": "#8BE9FD" + "background": "#9580ff", + "foreground": "#FFFFFF" }, "Debugger": { "Variables": { "collectingDataForeground": "#6272A4", - "changedValueForeground": "#FF79C5", - "errorMessageForeground": "#FF79C6", + "changedValueForeground": "#9580ff", + "errorMessageForeground": "#8BE9FD", "evaluatingExpressionForeground": "#6272A4", "exceptionForeground": "#50FA7B", - "modifyingValueForeground": "#FF79C5", - "valueForeground": "#FF79C5" + "modifyingValueForeground": "#9580ff", + "valueForeground": "#9580ff" } }, "DebuggerTabs": { - "selectedBackground": "#6272A4", - "underlinedTabBackground": "#6272A4" + "selectedBackground": "#44475a", + "underlinedTabBackground": "#44475a" }, "DebuggerPopup": { - "borderColor": "#6272A4" + "borderColor": "#44475a" }, "DefaultTabs": { "background": "#282A36", "borderColor": "#282A36", "hoverBackground": "#44475A", "hoverColor": "#191A21", - "hoverMaskColor": "#6272A4", + "hoverMaskColor": "#44475a", + "inactiveColoredTabBackground": "#282A36", "inactiveColoredFileBackground": "#393C4B", - "inactiveUnderlineColor": "#6272A4", + "inactiveUnderlineColor": "#9580ff", "inactiveMaskColor": "#191A21", - "underlineColor": "#FF79C5", - "underlinedTabBackground": "#44475A" + "underlineColor": "#9580ff", + "underlinedTabBackground": "#44475A", + "underlinedTabForeground": "#FFFFFF" }, "Desktop.background": "#282A36", "DialogWrapper.southPanelBackground": "#282A36", @@ -189,7 +209,7 @@ }, "EditorPane": { "background": "#191A21", - "caretForeground": "#FF79C5", + "caretForeground": "#9580ff", "foreground": "#F8F8F2", "inactiveBackground": "#282A36", "inactiveForeground": "#6272A4", @@ -198,30 +218,32 @@ }, "EditorTabs": { "borderColor": "#282A36", - "hoverColor": "#6272A4", - "hoverMaskColor": "#6272A4", + "hoverBackground": "#44475a", + "hoverColor": "#44475a", + "hoverMaskColor": "#44475a", "inactiveMaskColor": "#282A36", - "inactiveColoredFileBackground": "#282A362", + "inactiveColoredFileBackground": "#282A36", "inactiveUnderlineColor": "#6272A4", "selectedForeground": "#F8F8F2", "selectedBackground": "#44475A", - "underlineColor": "#FF79C5", - "underlinedTabBackground": "#44475A" + "underlineColor": "#9580ff", + "underlinedTabBackground": "#44475A", + "underlinedTabForeground": "#FFFFFF" }, "EditorGroupsTabs": { "background": "#282A36", "borderColor": "#282A36", - "hoverBackground": "#6272A4", - "hoverColor": "#6272A4", - "inactiveUnderlineColor": "#FF79C5", - "underlineColor": "#FF79C5", + "hoverBackground": "#44475a", + "hoverColor": "#44475a", + "inactiveUnderlineColor": "#9580ff", + "underlineColor": "#9580ff", "underlinedTabBackground": "#44475A", "underlinedTabForeground": "#F8F8F2" }, "FileColor": { "Green": "#387002", "Blue": "#004BA0", - "Yellow": "#313341", + "Yellow": "#34353D", "Orange": "#B53D00", "Violet": "#4D2C91", "Rose": "#A00037" @@ -239,19 +261,20 @@ "Focus.color": "#21222C", "FormattedTextField": { "background": "#191A21", - "caretForeground": "#FF79C5", + "caretForeground": "#9580ff", "foreground": "#F8F8F2", "inactiveBackground": "#393C4B", "inactiveForeground": "#6272A4", "selectionForeground": "#8BE9FD", "selectionBackground": "#44475A" }, + "GotItTooltip.borderColor": "#1D2228", "Group": { "disabledSeparatorColor": "#21222C", "separatorColor": "#21222C" }, "GutterTooltip": { - "infoForeground": "#F8F8F2", + "infoForeground": "#6272A4", "lineSeparatorColor": "#282A36" }, "HeaderColor": { @@ -265,7 +288,7 @@ "infoForeground": "#6272A4", "shortcutForeground": "#6272A4" }, - "Hyperlink.linkColor": "#FF79C5", + "Hyperlink.linkColor": "#9580ff", "inactiveCaption": "#282A36", "inactiveCaptionBorder": "#282A36", "inactiveCaptionText": "#6272A4", @@ -288,23 +311,26 @@ "disabledText": "#6272A4", "foreground": "#F8F8F2", "infoForeground": "#6272A4", - "selectedForeground": "#8BE9FD" + "selectedForeground": "#8BE9FD", + "selectedDisabledForeground": "#F8F8F2" }, "Link": { - "activeForeground": "#FF79C5", - "hoverForeground": "#FF79C5", - "pressedForeground": "#FF79C5", + "activeForeground": "#9580ff", + "hoverForeground": "#9580ff", + "pressedForeground": "#9580ff", "secondaryForeground": "#6272A4", - "visitedForeground": "#FF79C5" + "visitedForeground": "#9580ff" }, - "link.foreground": "#FF79C5", + "link.foreground": "#9580ff", "List": { "background": "#282A36", "foreground": "#F8F8F2", + "hoverBackground": "#44475A70", + "hoverInactiveBackground": "#44475A", "selectionBackground": "#44475A50", - "selectionForeground": "#8BE9FD", + "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#8BE9FD", - "selectionInactiveBackground": "#44475A50" + "selectionInactiveBackground": "#44475A70" }, "material": { "background": "#282A36", @@ -313,19 +339,19 @@ "foreground": "#F8F8F2", "mergeCommits": "#393C4B", "primaryColor": "#6272A4", - "selectionForeground": "#8BE9FD", + "selectionForeground": "#FFFFFF", "tab.backgroundColor": "#282A36", - "tab.borderColor": "#FF79C5", + "tab.borderColor": "#9580ff", "tagColor": "#6272A4" }, "MemoryIndicator": { "allocatedBackground": "#282A36", - "usedColor": "#6272A4", - "usedBackground": "#6272A4" + "usedColor": "#44475a", + "usedBackground": "#44475a" }, "Menu": { "acceleratorForeground": "#6272A4", - "acceleratorSelectionForeground": "#8BE9FD", + "acceleratorSelectionForeground": "#FFFFFF", "background": "#282A36", "border": "4,2,4,2", "borderColor": "#282A36", @@ -333,7 +359,7 @@ "disabledForeground": "#6272A4", "foreground": "#F8F8F2", "selectionBackground": "#44475A", - "selectionForeground": "#8BE9FD", + "selectionForeground": "#FFFFFF", "separatorColor": "#21222C" }, "MenuBar": { @@ -344,19 +370,19 @@ "foreground": "#F8F8F2", "highlight": "#282A36", "selectionBackground": "#44475A", - "selectionForeground": "#8BE9FD", + "selectionForeground": "#FFFFFF", "shadow": "#191A21" }, "MenuItem": { "acceleratorForeground": "#6272A4", - "acceleratorSelectionForeground": "#8BE9FD", + "acceleratorSelectionForeground": "#FFFFFF", "border": "4,2,4,2", "background": "#282A36", "disabledBackground": "#282A36", "disabledForeground": "#6272A4", "foreground": "#F8F8F2", "selectionBackground": "#44475A", - "selectionForeground": "#8BE9FD" + "selectionForeground": "#FFFFFF" }, "NavBar": { "arrowColor": "#F8F8F2", @@ -370,7 +396,7 @@ "background": "#191A21" } }, - "NewPSD.warning": "#FF79C5", + "NewPSD.warning": "#9580ff", "Notification": { "background": "#1D2228", "borderColor": "#1D2228", @@ -399,7 +425,7 @@ }, "Outline": { "color": "#393C4B", - "focusedColor": "#FF79C5", + "focusedColor": "#9580ff", "disabledColor": "#6272A4" }, "Panel": { @@ -409,8 +435,8 @@ "ParameterInfo": { "background": "#282A36", "borderColor": "#44475A", - "currentOverloadBackground": "#44475A", - "currentParameterForeground": "#FF79C5", + "currentOverloadBackground": "#44475a", + "currentParameterForeground": "#9580ff", "disabledForeground": "#6272A4", "foreground": "#F8F8F2", "infoForeground": "#6272A4", @@ -418,8 +444,8 @@ }, "PasswordField": { "background": "#191A21", - "capsLockIconColor": "#FF79C5", - "caretForeground": "#FF79C5", + "capsLockIconColor": "#9580ff", + "caretForeground": "#9580ff", "foreground": "#F8F8F2", "inactiveForeground": "#6272A4", "selectionBackground": "#44475A", @@ -428,21 +454,22 @@ "Plugins": { "background": "#282A36", "disabledForeground": "#6272A4", - "eapTagBackground": "#6272A4", + "eapTagBackground": "#44475a", + "hoverBackground": "#44475A70", "lightSelectionBackground": "#44475A", - "paidTagBackground": "#6272A4", + "paidTagBackground": "#44475a", "selectionBackground": "#44475A", - "tagForeground": "#FF79C5", - "tagBackground": "#6272A4", - "trialTagBackground": "#6272A4", + "tagForeground": "#9580ff", + "tagBackground": "#44475a", + "trialTagBackground": "#44475a", "Button": { "installBackground": "#393C4B", "installBorderColor": "#393C4B", "installForeground": "#F8F8F2", - "installFocusedBackground": "#6272A4", + "installFocusedBackground": "#44475a", "installFillForeground": "#6272A4", "installFillBackground": "#393C4B", - "updateBackground": "#393C4B", + "updateBackground": "#9580ff", "updateBorderColor": "#393C4B", "updateForeground": "#F8F8F2" }, @@ -456,7 +483,7 @@ }, "Tab": { "hoverBackground": "#44475A", - "selectedForeground": "#8BE9FD", + "selectedForeground": "#FFFFFF", "selectedBackground": "#44475A" } }, @@ -464,7 +491,7 @@ "Advertiser": { "background": "#282A36", "borderColor": "#282A36", - "foreground": "#FF79C5" + "foreground": "#9580ff" }, "borderColor": "#191A21", "inactiveBorderColor": "#282A36", @@ -492,15 +519,15 @@ "PopupMenuSeparator.stripeIndent": 5, "ProgressBar": { "background": "#282A36", - "foreground": "#FF79C5", - "indeterminateEndColor": "#FF79C5", - "indeterminateStartColor": "#FF79C5", - "progressColor": "#FF79C5", - "selectionBackground": "#6272A4", - "trackColor": "#6272A4" + "foreground": "#9580ff", + "indeterminateEndColor": "#9580ff", + "indeterminateStartColor": "#9580ff", + "progressColor": "#9580ff", + "selectionBackground": "#44475a", + "trackColor": "#44475a" }, "PsiViewer": { - "referenceHighlightColor": "#FF79C5" + "referenceHighlightColor": "#9580ff" }, "RadioButton": { "background": "#282A36", @@ -515,39 +542,40 @@ "disabledForeground": "#6272A4", "foreground": "#F8F8F2", "selectionBackground": "#44475A", - "selectionForeground": "#8BE9FD" + "selectionForeground": "#FFFFFF" }, + "ScreenView.borderColor": "#21222C", "ScrollBar": { "background": "#282A36", - "hoverThumbBorderColor": "#FF79C5", - "hoverThumbColor": "#FF79C5", + "hoverThumbBorderColor": "#9580ff", + "hoverThumbColor": "#9580ff", "hoverTrackColor": "#282A3630", "Mac": { - "hoverThumbBorderColor": "#FF79C5", - "hoverThumbColor": "#FF79C5", + "hoverThumbBorderColor": "#9580ff", + "hoverThumbColor": "#9580ff", "hoverTrackColor": "#282A3630", - "thumbBorderColor": "#FF79C570", - "thumbColor": "#FF79C570", + "thumbBorderColor": "#9580ff70", + "thumbColor": "#9580ff70", "trackColor": "#282A3630", "Transparent": { - "hoverThumbBorderColor": "#FF79C5", - "hoverThumbColor": "#FF79C5", + "hoverThumbBorderColor": "#9580ff", + "hoverThumbColor": "#9580ff", "hoverTrackColor": "#282A3630", - "thumbBorderColor": "#FF79C570", - "thumbColor": "#FF79C570", + "thumbBorderColor": "#9580ff70", + "thumbColor": "#9580ff70", "trackColor": "#282A3630" } }, - "thumb": "#6272A4", - "thumbBorderColor": "#FF79C570", - "thumbColor": "#FF79C570", + "thumb": "#44475a", + "thumbBorderColor": "#9580ff70", + "thumbColor": "#9580ff70", "trackColor": "#282A3630", "Transparent": { - "hoverThumbBorderColor": "#FF79C5", - "hoverThumbColor": "#FF79C5", + "hoverThumbBorderColor": "#9580ff", + "hoverThumbColor": "#9580ff", "hoverTrackColor": "#282A3630", - "thumbBorderColor": "#FF79C570", - "thumbColor": "#FF79C570", + "thumbBorderColor": "#9580ff70", + "thumbColor": "#9580ff70", "trackColor": "#282A3630" } }, @@ -571,14 +599,23 @@ "Tab": { "active.foreground": "#8BE9FD", "selectedForeground": "#8BE9FD", - "selectedBackground": "#6272A4" + "selectedBackground": "#44475a" } }, "SearchMatch": { - "endBackground": "#FF79C5", - "startBackground": "#FF79C5" + "endBackground": "#9580ff", + "startBackground": "#9580ff", + "endColor": "#9580ff", + "startColor": "#9580ff" }, "SearchField.errorBackground": "#1D2228", + "SearchOption": { + "selectedBackground": "#44475A" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#6272A4", + "Repeated.File.Foreground": "#F8F8F2" + }, "Separator": { "background": "#282A36", "foreground": "#282A36", @@ -589,17 +626,17 @@ }, "Slider": { "background": "#282A36", - "buttonBorderColor": "#FF79C5", - "buttonColor": "#FF79C5", + "buttonBorderColor": "#9580ff", + "buttonColor": "#9580ff", "foreground": "#F8F8F2", "majorTickLength": 6, "tickColor": "#282A36", "trackColor": "#44475A", "trackWidth": 7, - "thumb": "#FF79C5" + "thumb": "#9580ff" }, "SpeedSearch": { - "background": "#6272A4", + "background": "#44475a", "borderColor": "#21222C", "foreground": "#F8F8F2", "errorForeground": "#F8F8F2" @@ -616,11 +653,13 @@ }, "SplitPaneDivider.draggingColor": "#282A36", "StatusBar": { - "borderColor": "#282A36" + "borderColor": "#282A36", + "hoverBackground": "#44475a", + "LightEditBackground": "#44475A" }, "TabbedPane": { "background": "#282A36", - "contentAreaColor": "#6272A4", + "contentAreaColor": "#44475a", "contentBorderInsets": "3,1,1,1", "darkShadow": "#21222C", "disabledForeground": "#6272A4", @@ -630,7 +669,7 @@ "fontSizeOffset": 0, "foreground": "#F8F8F2", "highlight": "#21222C", - "hoverColor": "#6272A4", + "hoverColor": "#44475a", "labelShift": 0, "selectedForeground": "#8BE9FD", "selectedLabelShift": 0, @@ -639,27 +678,31 @@ "tabHeight": 32, "tabInsets": "5,10,5,10", "tabSelectionHeight": 2, - "underlineColor": "#FF79C5" + "underlineColor": "#9580ff" }, "TabbedPane.mt.tab.background": "#191A21", "Table": { + "alternativeRowBackground": "#191A21", "background": "#282A36", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", - "dropLineColor": "#FF79C5", - "dropLineShortColor": "#FF79C5", + "disabledForeground": "#6272A4", + "dropLineColor": "#9580ff", + "dropLineShortColor": "#9580ff", "focusCellBackground": "#44475A", "focusCellForeground": "#8BE9FD", "foreground": "#F8F8F2", "gridColor": "#282A36", "highlightOuter": "#44475A", + "hoverBackground": "#44475A70", + "hoverInactiveBackground": "#44475A", "lightSelectionForeground": "#8BE9FD", "lightSelectionInactiveForeground": "#6272A4", "lightSelectionInactiveBackground": "#282A36", "selectionBackground": "#44475A", "selectionForeground": "#8BE9FD", "selectionInactiveBackground": "#44475A", - "selectionInactiveForeground": "#8BE9FD", + "selectionInactiveForeground": "#FFFFFF", "sortIconColor": "#F8F8F2", "stripeColor": "#191A21" }, @@ -680,7 +723,7 @@ "textText": "#6272A4", "TextArea": { "background": "#191A21", - "caretForeground": "#FF79C5", + "caretForeground": "#9580ff", "foreground": "#F8F8F2", "inactiveForeground": "#6272A4", "selectionBackground": "#44475A", @@ -688,7 +731,7 @@ }, "TextField": { "background": "#191A21", - "caretForeground": "#FF79C5", + "caretForeground": "#9580ff", "foreground": "#F8F8F2", "inactiveForeground": "#6272A4", "selectionBackground": "#44475A", @@ -696,7 +739,7 @@ }, "TextPane": { "background": "#191A21", - "caretForeground": "#FF79C5", + "caretForeground": "#9580ff", "foreground": "#F8F8F2", "inactiveForeground": "#6272A4", "selectionBackground": "#44475A", @@ -704,7 +747,7 @@ }, "TitlePane": { "background": "#191A21", - "Button.hoverBackground": "#6272A4", + "Button.hoverBackground": "#44475a", "inactiveBackground": "#282A36", "infoForeground": "#6272A4", "inactiveInfoForeground": "#6272A4" @@ -717,8 +760,8 @@ "foreground": "#F8F8F2", "offForeground": "#282A36", "offBackground": "#282A36", - "onBackground": "#FF79C5", - "onForeground": "#FF79C5" + "onBackground": "#9580ff", + "onForeground": "#9580ff" }, "ToolBar": { "background": "#191A21", @@ -729,8 +772,8 @@ "ToolTip": { "Actions.background": "#282A36", "Actions.infoForeground": "#6272A4", - "background": "#282A36", - "borderColor": "#6272A4", + "background": "#1D2228", + "borderColor": "#21222C", "foreground": "#F8F8F2", "infoForeground": "#6272A4", "separatorColor": "#21222C", @@ -751,50 +794,93 @@ "background": "#282A36" }, "HeaderTab": { - "hoverBackground": "#6272A4", - "hoverInactiveBackground": "#282A36", - "inactiveUnderlineColor": "#FF79C5", + "borderColor": "#44475a", + "hoverBackground": "#44475a", + "hoverInactiveBackground": "#44475a", + "inactiveUnderlineColor": "#9580ff", "selectedBackground": "#191A21", "selectedInactiveBackground": "#191A21", - "underlineColor": "#FF79C5", - "underlinedTabBackground": "#6272A4", - "underlinedTabInactiveBackground": "#282A36" + "underlineColor": "#9580ff", + "underlinedTabBackground": "#44475A", + "underlinedTabInactiveBackground": "#282A36", + "underlinedTabForeground": "#FFFFFF", + "underlinedTabInactiveForeground": "#F8F8F2" } }, "Tree": { "background": "#191A21", "foreground": "#6272A4", "hash": "#21222C", - "modifiedItemForeground": "#FF79C5", + "hoverBackground": "#44475A70", + "hoverInactiveBackground": "#44475A", + "modifiedItemForeground": "#9580ff", "rowHeight": 28, - "selectionBackground": "#44475A50", - "selectionForeground": "#8BE9FD", - "selectionInactiveForeground": "#8BE9FD", - "selectionInactiveBackground": "#44475A50", + "selectionBackground": "#44475A70", + "selectionForeground": "#FFFFFF", + "selectionInactiveForeground": "#FFFFFF", + "selectionInactiveBackground": "#44475A70", "textBackground": "#191A21" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { + "UIDesigner": { "Activity.borderColor": "#21222C", - "ColorPicker.background": "#282A36", - "ColorPicker.foreground": "#F8F8F2", - "Component.borderColor": "#21222C", - "Component.background": "#282A36", - "Component.foreground": "#F8F8F2", - "Connector.borderColor": "#21222C", - "Connector.hoverBorderColor": "#6272A4", + "Canvas.background": "#191A21", + "ColorPicker": { + "background": "#282A36", + "foreground": "#F8F8F2" + }, + "Component": { + "borderColor": "#21222C", + "background": "#282A36", + "foreground": "#F8F8F2", + "hoverBorderColor": "#44475a" + }, + "Connector": { + "borderColor": "#21222C", + "hoverBorderColor": "#44475a" + }, "Canvas.background": "#191A21", "highStroke.foreground": "#F8F8F2", "Label.foreground": "#6272A4", - "List.selectionBackground": "#44475A50", - "Panel.borderColor": "#21222C", - "Panel.background": "#282A36", + "List.selectionBackground": "#44475A70", + "motion": { + "borderColor": "#21222C", + "Component.foreground": "#F8F8F2", + "ConstraintSetText.foreground": "#6272A4", + "ConstraintSet.background": "#282A36", + "CSPanel.SelectedFocusBackground": "#44475A", + "CSPanel.SelectedBackground": "#44475A70", + "cs_FocusText.infoForeground": "#6272A4", + "CursorTextColor.foreground": "#F8F8F2", + "HoverColor.disabledBackground": "#6272A4", + "motionGraph.background": "#282A36", + "Notification.background": "#1D2228", + "ourAvg.background": "#282A36", + "ourCS.background": "#282A36", + "ourCS_Border.borderColor": "#21222C", + "ourCS_TextColor.foreground": "#6272A4", + "ourCS_SelectedFocusBackground.selectionForeground": "#FFFFFF", + "ourCS_SelectedBackground.selectionInactiveBackground": "#44475A", + "ourCS_SelectedBorder.pressedBorderColor": "#44475a", + "ourML_BarColor.separatorColor": "#21222C", + "PrimaryPanel.background": "#191A21", + "SecondaryPanel.background": "#282A36", + "SecondaryPanel.header.foreground": "#6272A4", + "SecondaryPanel.header.background": "#191A21", + "timeLine.disabledBorderColor": "#21222C" + }, + "Panel": { + "borderColor": "#21222C", + "background": "#282A36" + }, "percent.foreground": "#F8F8F2", - "Placeholder.background": "#282A36", - "Placeholder.borderColor": "#21222C", - "Placeholder.foreground": "#F8F8F2", - "Placeholder.selectedForeground": "#8BE9FD", + "Placeholder": { + "background": "#282A36", + "borderColor": "#21222C", + "foreground": "#F8F8F2", + "selectedForeground": "#FFFFFF" + }, "Preview.background": "#282A36", "stroke.acceleratorForeground": "#6272A4" }, @@ -809,16 +895,16 @@ "selectedBranchBackground": "#282A36" }, "GitCommits": { - "graphColor": "#6272A4" + "graphColor": "#44475a" }, "GitLog": { - "localBranchIconColor": "#FF79C5", + "localBranchIconColor": "#9580ff", "otherIconColor": "#6272A4", "remoteBranchIconColor": "#F8F8F2", "tagIconColor": "#6272A4" }, "HgLog": { - "branchIconColor": "#FF79C5", + "branchIconColor": "#9580ff", "bookmarkIconColor": "#8BE9FD", "closedBranchIconColor": "#6272A4", "localTagIconColor": "#6272A4", @@ -828,11 +914,12 @@ }, "Log": { "Commit.unmatchedForeground": "#6272A4", - "Commit.currentBranchBackground": "#282A36" + "Commit.currentBranchBackground": "#282A36", + "Commit.hoveredBackground": "#44475A70" }, "RefLabel": { "foreground": "#8BE9FD", - "backgroundBase": "#6272A4" + "backgroundBase": "#44475a" } }, "Viewport": { @@ -840,16 +927,22 @@ "foreground": "#F8F8F2" }, "WelcomeScreen": { + "AssociatedComponent.background": "#282A36", "background": "#282A36", "borderColor": "#282A36", "captionBackground": "#191A21", "captionForeground": "#F8F8F2", + "Details.background": "#282A36", "footerBackground": "#191A21", "footerForeground": "#F8F8F2", "headerBackground": "#282A36", "headerForeground": "#F8F8F2", + "List.background": "#191A21", "separatorColor": "#21222C", + "SidePanel.background": "#282A36", "Projects": { + "actions.background": "#191A21", + "actions.selectionBackground": "#44475a", "background": "#282A36", "selectionBackground": "#44475A", "selectionInactiveBackground": "#282A36" @@ -865,46 +958,46 @@ "#43494A": "#191A21", "#6B6B6B": "#6272A4", "#A7A7A7": "#282A36", - "#3D6185": "#FF79C5", - "#466D94": "#FF79C5", + "#3D6185": "#9580ff", + "#466D94": "#9580ff", "#3C3F41": "#282A36", "#545556": "#6272A4", "#606060": "#6272A4", "#9AA7B0": "#F8F8F2", - "#675133": "#FF79C5", + "#675133": "#9580ff", "Actions.Blue": "#50FA78", "Actions.Green": "#F1FA8C", "Actions.Grey": "#6272A4", "Actions.GreyInline": "#6272A4", "Actions.GreyInline.Dark": "#F8F8F2", - "Actions.Red": "#FF79C6", + "Actions.Red": "#8BE9FD", "Actions.Yellow": "#50FA7B", "Checkbox.Background.Default": "#191A21", "Checkbox.Background.Default.Dark": "#191A21", - "Checkbox.Background.Disabled": "#313341", - "Checkbox.Background.Disabled.Dark": "#313341", + "Checkbox.Background.Disabled": "#34353D", + "Checkbox.Background.Disabled.Dark": "#34353D", "Checkbox.Border.Default": "#21222C", "Checkbox.Border.Default.Dark": "#21222C", "Checkbox.Border.Disabled": "#6272A4", "Checkbox.Border.Disabled.Dark": "#6272A4", - "Checkbox.Focus.Thin.Default": "#FF79C5", - "Checkbox.Focus.Thin.Default.Dark": "#FF79C5", - "Checkbox.Focus.Wide": "#FF79C5", - "Checkbox.Focus.Wide.Dark": "#FF79C5", + "Checkbox.Focus.Thin.Default": "#9580ff", + "Checkbox.Focus.Thin.Default.Dark": "#9580ff", + "Checkbox.Focus.Wide": "#9580ff", + "Checkbox.Focus.Wide.Dark": "#9580ff", "Checkbox.Foreground.Disabled": "#6272A4", "Checkbox.Foreground.Disabled.Dark": "#6272A4", - "Checkbox.Background.Selected": "#FF79C5", + "Checkbox.Background.Selected": "#9580ff", "Checkbox.Background.Selected.Dark": "#282A36", - "Checkbox.Border.Selected": "#FF79C5", - "Checkbox.Border.Selected.Dark": "#FF79C5", - "Checkbox.Foreground.Selected": "#FF79C5", - "Checkbox.Foreground.Selected.Dark": "#FF79C5", + "Checkbox.Border.Selected": "#9580ff", + "Checkbox.Border.Selected.Dark": "#9580ff", + "Checkbox.Foreground.Selected": "#9580ff", + "Checkbox.Foreground.Selected.Dark": "#9580ff", "Checkbox.Focus.Thin.Selected": "#F8F8F2", "Checkbox.Focus.Thin.Selected.Dark": "#F8F8F2", "Objects.Grey": "#6272A4", "Objects.Blue": "#50FA78", - "Objects.RedStatus": "#FF79C6", - "Objects.Red": "#FF79C6", + "Objects.RedStatus": "#8BE9FD", + "Objects.Red": "#8BE9FD", "Objects.Pink": "#FF79C6", "Objects.Yellow": "#50FA7B", "Objects.Green": "#F1FA8C", 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 f98bc16b..ad3cca1e 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 @@ -3,34 +3,40 @@ "dark": true, "author": "Mallowigi", "editorScheme": "/colors/Dracula.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/dracula.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { "acceleratorSelectionForeground": "#6272A4", "background": "#282A36", "borderColor": "#21222C", - "disabledBackground": "#313341", + "disabledBackground": "#34353D", "disabledForeground": "#6272A4", "disabledText": "#6272A4", - "focusColor": "#6272A4", - "focusedBorderColor": "#FF79C5", + "focusColor": "#44475a", + "focusedBorderColor": "#9580ff", "foreground": "#F8F8F2", - "inactiveBackground": "#313341", + "inactiveBackground": "#34353D", "inactiveForeground": "#6272A4", "infoForeground": "#6272A4", "selectionBackground": "#44475A", "selectionBackgroundInactive": "#282A36", - "selectionForeground": "#8BE9FD", + "selectionForeground": "#FFFFFF", "selectionInactiveBackground": "#282A36", "separatorColor": "#21222C" }, "activeCaption": "#282A36", "ActionButton": { - "hoverBackground": "#FF79C550", - "hoverBorderColor": "#FF79C550", + "hoverBackground": "#9580ff50", + "hoverBorderColor": "#9580ff50", "hoverSeparatorColor": "#393C4B", - "focusedBorderColor": "#FF79C550", - "pressedBackground": "#FF79C550", - "pressedBorderColor": "#FF79C550" + "focusedBorderColor": "#9580ff50", + "pressedBackground": "#9580ff50", + "pressedBorderColor": "#9580ff50" }, "Autocomplete": { "selectionBackground": "#44475A" @@ -44,8 +50,8 @@ "endBackground": "#44475A", "endBorderColor": "#44475A", "foreground": "#8BE9FD", - "focusColor": "#FF79C5", - "focusedBorderColor": "#FF79C5", + "focusColor": "#9580ff", + "focusedBorderColor": "#9580ff", "shadowColor": "#44475A", "startBackground": "#44475A", "startBorderColor": "#44475A" @@ -54,13 +60,13 @@ "disabledText": "#6272A4", "endBackground": "#393C4B", "endBorderColor": "#393C4B", - "focus": "#6272A4", - "focusedBorderColor": "#FF79C5", + "focus": "#44475a", + "focusedBorderColor": "#9580ff", "foreground": "#6272A4", - "highlight": "#8BE9FD", + "highlight": "#FFFFFF", "mt.background": "#393C4B", "mt.foreground": "#6272A4", - "mt.selectedForeground": "#8BE9FD", + "mt.selectedForeground": "#FFFFFF", "mt.selection.color1": "#44475A", "mt.selection.color2": "#44475A", "startBackground": "#393C4B", @@ -72,12 +78,15 @@ "Tooltip.borderColor": "#21222C", "Tooltip.background": "#1D2228" }, - "Content.background": "#191A21", + "Content": { + "background": "#191A21", + "selectionBackground": "#44475A" + }, "CheckBox": { "background": "#282A36", "disabledText": "#6272A4", "foreground": "#F8F8F2", - "select": "#FF79C5" + "select": "#9580ff" }, "CheckBoxMenuItem": { "acceleratorForeground": "#6272A4", @@ -89,6 +98,14 @@ "selectionBackground": "#44475A", "selectionForeground": "#8BE9FD" }, + "CodeWithMe": { + "Avatar.foreground": "#F8F8F2", + "AccessEnabled": { + "accessDot": "#9580ff", + "dropdownBorder": "#282A36", + "pillBackground": "$second" + } + }, "ColorChooser": { "background": "#282A36", "foreground": "#F8F8F2", @@ -104,9 +121,10 @@ }, "background": "#282A36", "buttonBackground": "#393C4B", + "darcula.hoveredArrowButtonForeground": "#9580ff", "disabledForeground": "#6272A4", "foreground": "#F8F8F2", - "modifiedItemForeground": "#FF79C5", + "modifiedItemForeground": "#9580ff", "nonEditableBackground": "#282A36", "padding": "5,5,5,5", "selectionBackground": "#44475A", @@ -117,62 +135,64 @@ "background": "#282A36", "foreground": "#F8F8F2", "infoForeground": "#6272A4", - "matchForeground": "#FF79C5", - "matchSelectionForeground": "#FF79C5", + "matchForeground": "#9580ff", + "matchSelectionForeground": "#9580ff", "nonFocusedState": "false", - "selectedGrayedForeground": "#8BE9FD", - "selectionGrayForeground": "#8BE9FD", + "selectedGrayedForeground": "#FFFFFF", + "selectionGrayForeground": "#FFFFFF", "selectionInactiveInfoForeground": "#6272A4", "selectionInactiveBackground": "#44475A50", "selectionBackground": "#44475A80", - "selectionForeground": "#8BE9FD", - "selectionInfoForeground": "#8BE9FD" + "selectionForeground": "#FFFFFF", + "selectionInfoForeground": "#FFFFFF" }, "Component": { "arc": 4, - "borderColor": "#6272A4", + "borderColor": "#44475a", "disabledBorderColor": "#393C4B", - "focusColor": "#FF79C5", - "focusedBorderColor": "#FF79C5", - "hoverIconColor": "#FF79C5", + "focusColor": "#9580ff", + "focusedBorderColor": "#9580ff", + "hoverIconColor": "#9580ff", "infoForeground": "#6272A4", "iconColor": "#F8F8F2" }, "control": "#282A36", "controlText": "#6272A4", "Counter": { - "background": "#FF79C5", - "foreground": "#8BE9FD" + "background": "#9580ff", + "foreground": "#FFFFFF" }, "Debugger": { "Variables": { "collectingDataForeground": "#6272A4", - "changedValueForeground": "#FF79C5", - "errorMessageForeground": "#FF79C6", + "changedValueForeground": "#9580ff", + "errorMessageForeground": "#8BE9FD", "evaluatingExpressionForeground": "#6272A4", "exceptionForeground": "#50FA7B", - "modifyingValueForeground": "#FF79C5", - "valueForeground": "#FF79C5" + "modifyingValueForeground": "#9580ff", + "valueForeground": "#9580ff" } }, "DebuggerTabs": { - "selectedBackground": "#6272A4", - "underlinedTabBackground": "#6272A4" + "selectedBackground": "#44475a", + "underlinedTabBackground": "#44475a" }, "DebuggerPopup": { - "borderColor": "#6272A4" + "borderColor": "#44475a" }, "DefaultTabs": { "background": "#282A36", "borderColor": "#282A36", "hoverBackground": "#44475A", "hoverColor": "#282A36", - "hoverMaskColor": "#6272A4", + "hoverMaskColor": "#44475a", + "inactiveColoredTabBackground": "#282A36", "inactiveColoredFileBackground": "#393C4B", - "inactiveUnderlineColor": "#6272A4", + "inactiveUnderlineColor": "#9580ff", "inactiveMaskColor": "#282A36", - "underlineColor": "#FF79C5", - "underlinedTabBackground": "#44475A" + "underlineColor": "#9580ff", + "underlinedTabBackground": "#44475A", + "underlinedTabForeground": "#FFFFFF" }, "Desktop.background": "#282A36", "DialogWrapper.southPanelBackground": "#282A36", @@ -189,7 +209,7 @@ }, "EditorPane": { "background": "#282A36", - "caretForeground": "#FF79C5", + "caretForeground": "#9580ff", "foreground": "#F8F8F2", "inactiveBackground": "#282A36", "inactiveForeground": "#6272A4", @@ -198,30 +218,32 @@ }, "EditorTabs": { "borderColor": "#282A36", - "hoverColor": "#6272A4", - "hoverMaskColor": "#6272A4", + "hoverBackground": "#44475a", + "hoverColor": "#44475a", + "hoverMaskColor": "#44475a", "inactiveMaskColor": "#282A36", - "inactiveColoredFileBackground": "#282A362", + "inactiveColoredFileBackground": "#282A36", "inactiveUnderlineColor": "#6272A4", "selectedForeground": "#F8F8F2", "selectedBackground": "#44475A", - "underlineColor": "#FF79C5", - "underlinedTabBackground": "#44475A" + "underlineColor": "#9580ff", + "underlinedTabBackground": "#44475A", + "underlinedTabForeground": "#FFFFFF" }, "EditorGroupsTabs": { "background": "#282A36", "borderColor": "#282A36", - "hoverBackground": "#6272A4", - "hoverColor": "#6272A4", - "inactiveUnderlineColor": "#FF79C5", - "underlineColor": "#FF79C5", + "hoverBackground": "#44475a", + "hoverColor": "#44475a", + "inactiveUnderlineColor": "#9580ff", + "underlineColor": "#9580ff", "underlinedTabBackground": "#44475A", "underlinedTabForeground": "#F8F8F2" }, "FileColor": { "Green": "#387002", "Blue": "#004BA0", - "Yellow": "#313341", + "Yellow": "#34353D", "Orange": "#B53D00", "Violet": "#4D2C91", "Rose": "#A00037" @@ -239,19 +261,20 @@ "Focus.color": "#21222C", "FormattedTextField": { "background": "#282A36", - "caretForeground": "#FF79C5", + "caretForeground": "#9580ff", "foreground": "#F8F8F2", "inactiveBackground": "#393C4B", "inactiveForeground": "#6272A4", "selectionForeground": "#8BE9FD", "selectionBackground": "#44475A" }, + "GotItTooltip.borderColor": "#1D2228", "Group": { "disabledSeparatorColor": "#21222C", "separatorColor": "#21222C" }, "GutterTooltip": { - "infoForeground": "#F8F8F2", + "infoForeground": "#6272A4", "lineSeparatorColor": "#282A36" }, "HeaderColor": { @@ -265,7 +288,7 @@ "infoForeground": "#6272A4", "shortcutForeground": "#6272A4" }, - "Hyperlink.linkColor": "#FF79C5", + "Hyperlink.linkColor": "#9580ff", "inactiveCaption": "#282A36", "inactiveCaptionBorder": "#282A36", "inactiveCaptionText": "#6272A4", @@ -288,23 +311,26 @@ "disabledText": "#6272A4", "foreground": "#F8F8F2", "infoForeground": "#6272A4", - "selectedForeground": "#8BE9FD" + "selectedForeground": "#8BE9FD", + "selectedDisabledForeground": "#F8F8F2" }, "Link": { - "activeForeground": "#FF79C5", - "hoverForeground": "#FF79C5", - "pressedForeground": "#FF79C5", + "activeForeground": "#9580ff", + "hoverForeground": "#9580ff", + "pressedForeground": "#9580ff", "secondaryForeground": "#6272A4", - "visitedForeground": "#FF79C5" + "visitedForeground": "#9580ff" }, - "link.foreground": "#FF79C5", + "link.foreground": "#9580ff", "List": { "background": "#282A36", "foreground": "#F8F8F2", + "hoverBackground": "#44475A70", + "hoverInactiveBackground": "#44475A", "selectionBackground": "#44475A50", - "selectionForeground": "#8BE9FD", + "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#8BE9FD", - "selectionInactiveBackground": "#44475A50" + "selectionInactiveBackground": "#44475A70" }, "material": { "background": "#282A36", @@ -313,19 +339,19 @@ "foreground": "#F8F8F2", "mergeCommits": "#393C4B", "primaryColor": "#6272A4", - "selectionForeground": "#8BE9FD", + "selectionForeground": "#FFFFFF", "tab.backgroundColor": "#282A36", - "tab.borderColor": "#FF79C5", + "tab.borderColor": "#9580ff", "tagColor": "#6272A4" }, "MemoryIndicator": { "allocatedBackground": "#282A36", - "usedColor": "#6272A4", - "usedBackground": "#6272A4" + "usedColor": "#44475a", + "usedBackground": "#44475a" }, "Menu": { "acceleratorForeground": "#6272A4", - "acceleratorSelectionForeground": "#8BE9FD", + "acceleratorSelectionForeground": "#FFFFFF", "background": "#282A36", "border": "4,2,4,2", "borderColor": "#282A36", @@ -333,7 +359,7 @@ "disabledForeground": "#6272A4", "foreground": "#F8F8F2", "selectionBackground": "#44475A", - "selectionForeground": "#8BE9FD", + "selectionForeground": "#FFFFFF", "separatorColor": "#21222C" }, "MenuBar": { @@ -344,19 +370,19 @@ "foreground": "#F8F8F2", "highlight": "#282A36", "selectionBackground": "#44475A", - "selectionForeground": "#8BE9FD", + "selectionForeground": "#FFFFFF", "shadow": "#282A36" }, "MenuItem": { "acceleratorForeground": "#6272A4", - "acceleratorSelectionForeground": "#8BE9FD", + "acceleratorSelectionForeground": "#FFFFFF", "border": "4,2,4,2", "background": "#282A36", "disabledBackground": "#282A36", "disabledForeground": "#6272A4", "foreground": "#F8F8F2", "selectionBackground": "#44475A", - "selectionForeground": "#8BE9FD" + "selectionForeground": "#FFFFFF" }, "NavBar": { "arrowColor": "#F8F8F2", @@ -370,7 +396,7 @@ "background": "#282A36" } }, - "NewPSD.warning": "#FF79C5", + "NewPSD.warning": "#9580ff", "Notification": { "background": "#1D2228", "borderColor": "#1D2228", @@ -399,7 +425,7 @@ }, "Outline": { "color": "#393C4B", - "focusedColor": "#FF79C5", + "focusedColor": "#9580ff", "disabledColor": "#6272A4" }, "Panel": { @@ -409,8 +435,8 @@ "ParameterInfo": { "background": "#282A36", "borderColor": "#44475A", - "currentOverloadBackground": "#44475A", - "currentParameterForeground": "#FF79C5", + "currentOverloadBackground": "#44475a", + "currentParameterForeground": "#9580ff", "disabledForeground": "#6272A4", "foreground": "#F8F8F2", "infoForeground": "#6272A4", @@ -418,8 +444,8 @@ }, "PasswordField": { "background": "#282A36", - "capsLockIconColor": "#FF79C5", - "caretForeground": "#FF79C5", + "capsLockIconColor": "#9580ff", + "caretForeground": "#9580ff", "foreground": "#F8F8F2", "inactiveForeground": "#6272A4", "selectionBackground": "#44475A", @@ -428,21 +454,22 @@ "Plugins": { "background": "#282A36", "disabledForeground": "#6272A4", - "eapTagBackground": "#6272A4", + "eapTagBackground": "#44475a", + "hoverBackground": "#44475A70", "lightSelectionBackground": "#44475A", - "paidTagBackground": "#6272A4", + "paidTagBackground": "#44475a", "selectionBackground": "#44475A", - "tagForeground": "#FF79C5", - "tagBackground": "#6272A4", - "trialTagBackground": "#6272A4", + "tagForeground": "#9580ff", + "tagBackground": "#44475a", + "trialTagBackground": "#44475a", "Button": { "installBackground": "#393C4B", "installBorderColor": "#393C4B", "installForeground": "#F8F8F2", - "installFocusedBackground": "#6272A4", + "installFocusedBackground": "#44475a", "installFillForeground": "#6272A4", "installFillBackground": "#393C4B", - "updateBackground": "#393C4B", + "updateBackground": "#9580ff", "updateBorderColor": "#393C4B", "updateForeground": "#F8F8F2" }, @@ -456,7 +483,7 @@ }, "Tab": { "hoverBackground": "#44475A", - "selectedForeground": "#8BE9FD", + "selectedForeground": "#FFFFFF", "selectedBackground": "#44475A" } }, @@ -464,7 +491,7 @@ "Advertiser": { "background": "#282A36", "borderColor": "#282A36", - "foreground": "#FF79C5" + "foreground": "#9580ff" }, "borderColor": "#191A21", "inactiveBorderColor": "#282A36", @@ -492,15 +519,15 @@ "PopupMenuSeparator.stripeIndent": 5, "ProgressBar": { "background": "#282A36", - "foreground": "#FF79C5", - "indeterminateEndColor": "#FF79C5", - "indeterminateStartColor": "#FF79C5", - "progressColor": "#FF79C5", - "selectionBackground": "#6272A4", - "trackColor": "#6272A4" + "foreground": "#9580ff", + "indeterminateEndColor": "#9580ff", + "indeterminateStartColor": "#9580ff", + "progressColor": "#9580ff", + "selectionBackground": "#44475a", + "trackColor": "#44475a" }, "PsiViewer": { - "referenceHighlightColor": "#FF79C5" + "referenceHighlightColor": "#9580ff" }, "RadioButton": { "background": "#282A36", @@ -515,39 +542,40 @@ "disabledForeground": "#6272A4", "foreground": "#F8F8F2", "selectionBackground": "#44475A", - "selectionForeground": "#8BE9FD" + "selectionForeground": "#FFFFFF" }, + "ScreenView.borderColor": "#21222C", "ScrollBar": { "background": "#282A36", - "hoverThumbBorderColor": "#FF79C5", - "hoverThumbColor": "#FF79C5", + "hoverThumbBorderColor": "#9580ff", + "hoverThumbColor": "#9580ff", "hoverTrackColor": "#282A3630", "Mac": { - "hoverThumbBorderColor": "#FF79C5", - "hoverThumbColor": "#FF79C5", + "hoverThumbBorderColor": "#9580ff", + "hoverThumbColor": "#9580ff", "hoverTrackColor": "#282A3630", - "thumbBorderColor": "#FF79C570", - "thumbColor": "#FF79C570", + "thumbBorderColor": "#9580ff70", + "thumbColor": "#9580ff70", "trackColor": "#282A3630", "Transparent": { - "hoverThumbBorderColor": "#FF79C5", - "hoverThumbColor": "#FF79C5", + "hoverThumbBorderColor": "#9580ff", + "hoverThumbColor": "#9580ff", "hoverTrackColor": "#282A3630", - "thumbBorderColor": "#FF79C570", - "thumbColor": "#FF79C570", + "thumbBorderColor": "#9580ff70", + "thumbColor": "#9580ff70", "trackColor": "#282A3630" } }, - "thumb": "#6272A4", - "thumbBorderColor": "#FF79C570", - "thumbColor": "#FF79C570", + "thumb": "#44475a", + "thumbBorderColor": "#9580ff70", + "thumbColor": "#9580ff70", "trackColor": "#282A3630", "Transparent": { - "hoverThumbBorderColor": "#FF79C5", - "hoverThumbColor": "#FF79C5", + "hoverThumbBorderColor": "#9580ff", + "hoverThumbColor": "#9580ff", "hoverTrackColor": "#282A3630", - "thumbBorderColor": "#FF79C570", - "thumbColor": "#FF79C570", + "thumbBorderColor": "#9580ff70", + "thumbColor": "#9580ff70", "trackColor": "#282A3630" } }, @@ -571,14 +599,23 @@ "Tab": { "active.foreground": "#8BE9FD", "selectedForeground": "#8BE9FD", - "selectedBackground": "#6272A4" + "selectedBackground": "#44475a" } }, "SearchMatch": { - "endBackground": "#FF79C5", - "startBackground": "#FF79C5" + "endBackground": "#9580ff", + "startBackground": "#9580ff", + "endColor": "#9580ff", + "startColor": "#9580ff" }, "SearchField.errorBackground": "#1D2228", + "SearchOption": { + "selectedBackground": "#44475A" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#6272A4", + "Repeated.File.Foreground": "#F8F8F2" + }, "Separator": { "background": "#282A36", "foreground": "#282A36", @@ -589,17 +626,17 @@ }, "Slider": { "background": "#282A36", - "buttonBorderColor": "#FF79C5", - "buttonColor": "#FF79C5", + "buttonBorderColor": "#9580ff", + "buttonColor": "#9580ff", "foreground": "#F8F8F2", "majorTickLength": 6, "tickColor": "#282A36", "trackColor": "#44475A", "trackWidth": 7, - "thumb": "#FF79C5" + "thumb": "#9580ff" }, "SpeedSearch": { - "background": "#6272A4", + "background": "#44475a", "borderColor": "#21222C", "foreground": "#F8F8F2", "errorForeground": "#F8F8F2" @@ -616,11 +653,13 @@ }, "SplitPaneDivider.draggingColor": "#282A36", "StatusBar": { - "borderColor": "#282A36" + "borderColor": "#282A36", + "hoverBackground": "#44475a", + "LightEditBackground": "#44475A" }, "TabbedPane": { "background": "#282A36", - "contentAreaColor": "#6272A4", + "contentAreaColor": "#44475a", "contentBorderInsets": "3,1,1,1", "darkShadow": "#21222C", "disabledForeground": "#6272A4", @@ -630,7 +669,7 @@ "fontSizeOffset": 0, "foreground": "#F8F8F2", "highlight": "#21222C", - "hoverColor": "#6272A4", + "hoverColor": "#44475a", "labelShift": 0, "selectedForeground": "#8BE9FD", "selectedLabelShift": 0, @@ -639,27 +678,31 @@ "tabHeight": 32, "tabInsets": "5,10,5,10", "tabSelectionHeight": 2, - "underlineColor": "#FF79C5" + "underlineColor": "#9580ff" }, "TabbedPane.mt.tab.background": "#282A36", "Table": { + "alternativeRowBackground": "#191A21", "background": "#282A36", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", - "dropLineColor": "#FF79C5", - "dropLineShortColor": "#FF79C5", + "disabledForeground": "#6272A4", + "dropLineColor": "#9580ff", + "dropLineShortColor": "#9580ff", "focusCellBackground": "#44475A", "focusCellForeground": "#8BE9FD", "foreground": "#F8F8F2", "gridColor": "#282A36", "highlightOuter": "#44475A", + "hoverBackground": "#44475A70", + "hoverInactiveBackground": "#44475A", "lightSelectionForeground": "#8BE9FD", "lightSelectionInactiveForeground": "#6272A4", "lightSelectionInactiveBackground": "#282A36", "selectionBackground": "#44475A", "selectionForeground": "#8BE9FD", "selectionInactiveBackground": "#44475A", - "selectionInactiveForeground": "#8BE9FD", + "selectionInactiveForeground": "#FFFFFF", "sortIconColor": "#F8F8F2", "stripeColor": "#191A21" }, @@ -680,7 +723,7 @@ "textText": "#6272A4", "TextArea": { "background": "#282A36", - "caretForeground": "#FF79C5", + "caretForeground": "#9580ff", "foreground": "#F8F8F2", "inactiveForeground": "#6272A4", "selectionBackground": "#44475A", @@ -688,7 +731,7 @@ }, "TextField": { "background": "#282A36", - "caretForeground": "#FF79C5", + "caretForeground": "#9580ff", "foreground": "#F8F8F2", "inactiveForeground": "#6272A4", "selectionBackground": "#44475A", @@ -696,7 +739,7 @@ }, "TextPane": { "background": "#282A36", - "caretForeground": "#FF79C5", + "caretForeground": "#9580ff", "foreground": "#F8F8F2", "inactiveForeground": "#6272A4", "selectionBackground": "#44475A", @@ -704,7 +747,7 @@ }, "TitlePane": { "background": "#191A21", - "Button.hoverBackground": "#6272A4", + "Button.hoverBackground": "#44475a", "inactiveBackground": "#282A36", "infoForeground": "#6272A4", "inactiveInfoForeground": "#6272A4" @@ -717,8 +760,8 @@ "foreground": "#F8F8F2", "offForeground": "#282A36", "offBackground": "#282A36", - "onBackground": "#FF79C5", - "onForeground": "#FF79C5" + "onBackground": "#9580ff", + "onForeground": "#9580ff" }, "ToolBar": { "background": "#282A36", @@ -729,8 +772,8 @@ "ToolTip": { "Actions.background": "#282A36", "Actions.infoForeground": "#6272A4", - "background": "#282A36", - "borderColor": "#6272A4", + "background": "#1D2228", + "borderColor": "#21222C", "foreground": "#F8F8F2", "infoForeground": "#6272A4", "separatorColor": "#21222C", @@ -751,50 +794,93 @@ "background": "#282A36" }, "HeaderTab": { - "hoverBackground": "#6272A4", - "hoverInactiveBackground": "#282A36", - "inactiveUnderlineColor": "#FF79C5", + "borderColor": "#44475a", + "hoverBackground": "#44475a", + "hoverInactiveBackground": "#44475a", + "inactiveUnderlineColor": "#9580ff", "selectedBackground": "#191A21", "selectedInactiveBackground": "#191A21", - "underlineColor": "#FF79C5", - "underlinedTabBackground": "#6272A4", - "underlinedTabInactiveBackground": "#282A36" + "underlineColor": "#9580ff", + "underlinedTabBackground": "#44475A", + "underlinedTabInactiveBackground": "#282A36", + "underlinedTabForeground": "#FFFFFF", + "underlinedTabInactiveForeground": "#F8F8F2" } }, "Tree": { "background": "#282A36", "foreground": "#6272A4", "hash": "#21222C", - "modifiedItemForeground": "#FF79C5", + "hoverBackground": "#44475A70", + "hoverInactiveBackground": "#44475A", + "modifiedItemForeground": "#9580ff", "rowHeight": 28, - "selectionBackground": "#44475A50", - "selectionForeground": "#8BE9FD", - "selectionInactiveForeground": "#8BE9FD", - "selectionInactiveBackground": "#44475A50", + "selectionBackground": "#44475A70", + "selectionForeground": "#FFFFFF", + "selectionInactiveForeground": "#FFFFFF", + "selectionInactiveBackground": "#44475A70", "textBackground": "#282A36" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { + "UIDesigner": { "Activity.borderColor": "#21222C", - "ColorPicker.background": "#282A36", - "ColorPicker.foreground": "#F8F8F2", - "Component.borderColor": "#21222C", - "Component.background": "#282A36", - "Component.foreground": "#F8F8F2", - "Connector.borderColor": "#21222C", - "Connector.hoverBorderColor": "#6272A4", + "Canvas.background": "#191A21", + "ColorPicker": { + "background": "#282A36", + "foreground": "#F8F8F2" + }, + "Component": { + "borderColor": "#21222C", + "background": "#282A36", + "foreground": "#F8F8F2", + "hoverBorderColor": "#44475a" + }, + "Connector": { + "borderColor": "#21222C", + "hoverBorderColor": "#44475a" + }, "Canvas.background": "#191A21", "highStroke.foreground": "#F8F8F2", "Label.foreground": "#6272A4", - "List.selectionBackground": "#44475A50", - "Panel.borderColor": "#21222C", - "Panel.background": "#282A36", + "List.selectionBackground": "#44475A70", + "motion": { + "borderColor": "#21222C", + "Component.foreground": "#F8F8F2", + "ConstraintSetText.foreground": "#6272A4", + "ConstraintSet.background": "#282A36", + "CSPanel.SelectedFocusBackground": "#44475A", + "CSPanel.SelectedBackground": "#44475A70", + "cs_FocusText.infoForeground": "#6272A4", + "CursorTextColor.foreground": "#F8F8F2", + "HoverColor.disabledBackground": "#6272A4", + "motionGraph.background": "#282A36", + "Notification.background": "#1D2228", + "ourAvg.background": "#282A36", + "ourCS.background": "#282A36", + "ourCS_Border.borderColor": "#21222C", + "ourCS_TextColor.foreground": "#6272A4", + "ourCS_SelectedFocusBackground.selectionForeground": "#FFFFFF", + "ourCS_SelectedBackground.selectionInactiveBackground": "#44475A", + "ourCS_SelectedBorder.pressedBorderColor": "#44475a", + "ourML_BarColor.separatorColor": "#21222C", + "PrimaryPanel.background": "#191A21", + "SecondaryPanel.background": "#282A36", + "SecondaryPanel.header.foreground": "#6272A4", + "SecondaryPanel.header.background": "#191A21", + "timeLine.disabledBorderColor": "#21222C" + }, + "Panel": { + "borderColor": "#21222C", + "background": "#282A36" + }, "percent.foreground": "#F8F8F2", - "Placeholder.background": "#282A36", - "Placeholder.borderColor": "#21222C", - "Placeholder.foreground": "#F8F8F2", - "Placeholder.selectedForeground": "#8BE9FD", + "Placeholder": { + "background": "#282A36", + "borderColor": "#21222C", + "foreground": "#F8F8F2", + "selectedForeground": "#FFFFFF" + }, "Preview.background": "#282A36", "stroke.acceleratorForeground": "#6272A4" }, @@ -809,16 +895,16 @@ "selectedBranchBackground": "#282A36" }, "GitCommits": { - "graphColor": "#6272A4" + "graphColor": "#44475a" }, "GitLog": { - "localBranchIconColor": "#FF79C5", + "localBranchIconColor": "#9580ff", "otherIconColor": "#6272A4", "remoteBranchIconColor": "#F8F8F2", "tagIconColor": "#6272A4" }, "HgLog": { - "branchIconColor": "#FF79C5", + "branchIconColor": "#9580ff", "bookmarkIconColor": "#8BE9FD", "closedBranchIconColor": "#6272A4", "localTagIconColor": "#6272A4", @@ -828,11 +914,12 @@ }, "Log": { "Commit.unmatchedForeground": "#6272A4", - "Commit.currentBranchBackground": "#282A36" + "Commit.currentBranchBackground": "#282A36", + "Commit.hoveredBackground": "#44475A70" }, "RefLabel": { "foreground": "#8BE9FD", - "backgroundBase": "#6272A4" + "backgroundBase": "#44475a" } }, "Viewport": { @@ -840,16 +927,22 @@ "foreground": "#F8F8F2" }, "WelcomeScreen": { + "AssociatedComponent.background": "#282A36", "background": "#282A36", "borderColor": "#282A36", "captionBackground": "#191A21", "captionForeground": "#F8F8F2", + "Details.background": "#282A36", "footerBackground": "#191A21", "footerForeground": "#F8F8F2", "headerBackground": "#282A36", "headerForeground": "#F8F8F2", + "List.background": "#191A21", "separatorColor": "#21222C", + "SidePanel.background": "#282A36", "Projects": { + "actions.background": "#191A21", + "actions.selectionBackground": "#44475a", "background": "#282A36", "selectionBackground": "#44475A", "selectionInactiveBackground": "#282A36" @@ -865,46 +958,46 @@ "#43494A": "#191A21", "#6B6B6B": "#6272A4", "#A7A7A7": "#282A36", - "#3D6185": "#FF79C5", - "#466D94": "#FF79C5", + "#3D6185": "#9580ff", + "#466D94": "#9580ff", "#3C3F41": "#282A36", "#545556": "#6272A4", "#606060": "#6272A4", "#9AA7B0": "#F8F8F2", - "#675133": "#FF79C5", + "#675133": "#9580ff", "Actions.Blue": "#50FA78", "Actions.Green": "#F1FA8C", "Actions.Grey": "#6272A4", "Actions.GreyInline": "#6272A4", "Actions.GreyInline.Dark": "#F8F8F2", - "Actions.Red": "#FF79C6", + "Actions.Red": "#8BE9FD", "Actions.Yellow": "#50FA7B", "Checkbox.Background.Default": "#191A21", "Checkbox.Background.Default.Dark": "#191A21", - "Checkbox.Background.Disabled": "#313341", - "Checkbox.Background.Disabled.Dark": "#313341", + "Checkbox.Background.Disabled": "#34353D", + "Checkbox.Background.Disabled.Dark": "#34353D", "Checkbox.Border.Default": "#21222C", "Checkbox.Border.Default.Dark": "#21222C", "Checkbox.Border.Disabled": "#6272A4", "Checkbox.Border.Disabled.Dark": "#6272A4", - "Checkbox.Focus.Thin.Default": "#FF79C5", - "Checkbox.Focus.Thin.Default.Dark": "#FF79C5", - "Checkbox.Focus.Wide": "#FF79C5", - "Checkbox.Focus.Wide.Dark": "#FF79C5", + "Checkbox.Focus.Thin.Default": "#9580ff", + "Checkbox.Focus.Thin.Default.Dark": "#9580ff", + "Checkbox.Focus.Wide": "#9580ff", + "Checkbox.Focus.Wide.Dark": "#9580ff", "Checkbox.Foreground.Disabled": "#6272A4", "Checkbox.Foreground.Disabled.Dark": "#6272A4", - "Checkbox.Background.Selected": "#FF79C5", + "Checkbox.Background.Selected": "#9580ff", "Checkbox.Background.Selected.Dark": "#282A36", - "Checkbox.Border.Selected": "#FF79C5", - "Checkbox.Border.Selected.Dark": "#FF79C5", - "Checkbox.Foreground.Selected": "#FF79C5", - "Checkbox.Foreground.Selected.Dark": "#FF79C5", + "Checkbox.Border.Selected": "#9580ff", + "Checkbox.Border.Selected.Dark": "#9580ff", + "Checkbox.Foreground.Selected": "#9580ff", + "Checkbox.Foreground.Selected.Dark": "#9580ff", "Checkbox.Focus.Thin.Selected": "#F8F8F2", "Checkbox.Focus.Thin.Selected.Dark": "#F8F8F2", "Objects.Grey": "#6272A4", "Objects.Blue": "#50FA78", - "Objects.RedStatus": "#FF79C6", - "Objects.Red": "#FF79C6", + "Objects.RedStatus": "#8BE9FD", + "Objects.Red": "#8BE9FD", "Objects.Pink": "#FF79C6", "Objects.Yellow": "#50FA7B", "Objects.Green": "#F1FA8C", diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/GitHub Contrast.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/GitHub Contrast.theme.json index 8cba9e36..53d3bddc 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/GitHub Contrast.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/GitHub Contrast.theme.json @@ -2,32 +2,38 @@ "name": "GitHub Contrast", "dark": false, "author": "Mallowigi", - "editorScheme": "/colors/Github.xml", + "editorScheme": "/colors/GitHub (Material).xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/github.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { "acceleratorSelectionForeground": "#292D31", "background": "#F7F8FA", "borderColor": "#DFE1E4", - "disabledBackground": "#dcdcdc", - "disabledForeground": "#9ba0a3", - "disabledText": "#9ba0a3", + "disabledBackground": "#FDFDFD", + "disabledForeground": "#6C737C", + "disabledText": "#6C737C", "focusColor": "#CCE5FF", "focusedBorderColor": "#79CB60", "foreground": "#5B6168", - "inactiveBackground": "#dcdcdc", + "inactiveBackground": "#FDFDFD", "inactiveForeground": "#292D31", "infoForeground": "#292D31", "selectionBackground": "#3A66D1", - "selectionBackgroundInactive": "#f3f3f3", - "selectionForeground": "#FFFFFF", - "selectionInactiveBackground": "#f3f3f3", + "selectionBackgroundInactive": "#F7F8FA", + "selectionForeground": "#111111", + "selectionInactiveBackground": "#F7F8FA", "separatorColor": "#DFE1E4" }, "activeCaption": "#F7F8FA", "ActionButton": { "hoverBackground": "#79CB6050", "hoverBorderColor": "#79CB6050", - "hoverSeparatorColor": "#edf1f5", + "hoverSeparatorColor": "#F1F3F6", "focusedBorderColor": "#79CB6050", "pressedBackground": "#79CB6050", "pressedBorderColor": "#79CB6050" @@ -50,32 +56,35 @@ "startBackground": "#cce5ff", "startBorderColor": "#cce5ff" }, - "disabledBorderColor": "#edf1f5", - "disabledText": "#9ba0a3", - "endBackground": "#edf1f5", - "endBorderColor": "#edf1f5", + "disabledBorderColor": "#F1F3F6", + "disabledText": "#6C737C", + "endBackground": "#F1F3F6", + "endBorderColor": "#F1F3F6", "focus": "#CCE5FF", "focusedBorderColor": "#79CB60", "foreground": "#292D31", - "highlight": "#FFFFFF", - "mt.background": "#edf1f5", + "highlight": "#111111", + "mt.background": "#F1F3F6", "mt.foreground": "#292D31", - "mt.selectedForeground": "#FFFFFF", + "mt.selectedForeground": "#111111", "mt.selection.color1": "#cce5ff", "mt.selection.color2": "#cce5ff", - "startBackground": "#edf1f5", - "startBorderColor": "#edf1f5", - "shadowColor": "#edf1f5", + "startBackground": "#F1F3F6", + "startBorderColor": "#F1F3F6", + "shadowColor": "#F1F3F6", "shadowWidth": 0 }, "Canvas": { "Tooltip.borderColor": "#DFE1E4", "Tooltip.background": "#DFECFE" }, - "Content.background": "#fafbfc", + "Content": { + "background": "#FFFFFF", + "selectionBackground": "#3A66D1" + }, "CheckBox": { "background": "#F7F8FA", - "disabledText": "#9ba0a3", + "disabledText": "#6C737C", "foreground": "#5B6168", "select": "#79CB60" }, @@ -84,54 +93,63 @@ "acceleratorSelectionForeground": "#292D31", "background": "#F7F8FA", "disabledBackground": "#F7F8FA", - "disabledForeground": "#9ba0a3", + "disabledForeground": "#6C737C", "foreground": "#5B6168", "selectionBackground": "#3A66D1", "selectionForeground": "#111111" }, + "CodeWithMe": { + "Avatar.foreground": "#5B6168", + "AccessEnabled": { + "accessDot": "#79CB60", + "dropdownBorder": "#F7F8FA", + "pillBackground": "$second" + } + }, "ColorChooser": { "background": "#F7F8FA", "foreground": "#5B6168", "swatchesDefaultRecentColor": "#5B6168" }, - "ComboBoxButton.background": "#edf1f5", + "ComboBoxButton.background": "#F1F3F6", "ComboBox": { "ArrowButton": { - "background": "#edf1f5", - "disabledIconColor": "#9ba0a3", + "background": "#F1F3F6", + "disabledIconColor": "#6C737C", "iconColor": "#5B6168", "nonEditableBackground": "#F7F8FA" }, - "background": "#fafbfc", - "buttonBackground": "#edf1f5", - "disabledForeground": "#9ba0a3", + "background": "#FFFFFF", + "buttonBackground": "#F1F3F6", + "darcula.hoveredArrowButtonForeground": "#79CB60", + "disabledForeground": "#6C737C", "foreground": "#5B6168", "modifiedItemForeground": "#79CB60", - "nonEditableBackground": "#f3f3f3", + "nonEditableBackground": "#F7F8FA", "padding": "5,5,5,5", "selectionBackground": "#cce5ff", "selectionForeground": "#111111" }, "ComboPopup.border": "#DFE1E4", "CompletionPopup": { - "background": "#f3f3f3", + "background": "#F7F8FA", "foreground": "#5B6168", "infoForeground": "#292D31", "matchForeground": "#79CB60", "matchSelectionForeground": "#79CB60", "nonFocusedState": "false", - "selectedGrayedForeground": "#FFFFFF", - "selectionGrayForeground": "#FFFFFF", + "selectedGrayedForeground": "#111111", + "selectionGrayForeground": "#111111", "selectionInactiveInfoForeground": "#292D31", "selectionInactiveBackground": "#3A66D150", "selectionBackground": "#3A66D180", - "selectionForeground": "#FFFFFF", - "selectionInfoForeground": "#FFFFFF" + "selectionForeground": "#111111", + "selectionInfoForeground": "#111111" }, "Component": { "arc": 4, "borderColor": "#CCE5FF", - "disabledBorderColor": "#edf1f5", + "disabledBorderColor": "#F1F3F6", "focusColor": "#79CB60", "focusedBorderColor": "#79CB60", "hoverIconColor": "#79CB60", @@ -142,7 +160,7 @@ "controlText": "#292D31", "Counter": { "background": "#79CB60", - "foreground": "#FFFFFF" + "foreground": "#111111" }, "Debugger": { "Variables": { @@ -166,13 +184,15 @@ "background": "#F7F8FA", "borderColor": "#F7F8FA", "hoverBackground": "#cce5ff", - "hoverColor": "#fafbfc", + "hoverColor": "#FFFFFF", "hoverMaskColor": "#CCE5FF", - "inactiveColoredFileBackground": "#edf1f5", - "inactiveUnderlineColor": "#9ba0a3", - "inactiveMaskColor": "#fafbfc", + "inactiveColoredTabBackground": "#F7F8FA", + "inactiveColoredFileBackground": "#F1F3F6", + "inactiveUnderlineColor": "#79CB60", + "inactiveMaskColor": "#FFFFFF", "underlineColor": "#79CB60", - "underlinedTabBackground": "#cce5ff" + "underlinedTabBackground": "#cce5ff", + "underlinedTabForeground": "#111111" }, "Desktop.background": "#F7F8FA", "DialogWrapper.southPanelBackground": "#F7F8FA", @@ -183,34 +203,36 @@ "areaForeground": "#5B6168" }, "Editor": { - "background": "#fafbfc", + "background": "#FFFFFF", "foreground": "#5B6168", "shortcutForeground": "#292D31" }, "EditorPane": { - "background": "#fafbfc", + "background": "#FFFFFF", "caretForeground": "#79CB60", "foreground": "#5B6168", "inactiveBackground": "#F7F8FA", - "inactiveForeground": "#9ba0a3", + "inactiveForeground": "#6C737C", "selectionBackground": "#3A66D1", "selectionForeground": "#111111" }, "EditorTabs": { - "borderColor": "#f3f3f3", + "borderColor": "#F7F8FA", + "hoverBackground": "#CCE5FF", "hoverColor": "#CCE5FF", "hoverMaskColor": "#CCE5FF", "inactiveMaskColor": "#F7F8FA", - "inactiveColoredFileBackground": "#F7F8FA2", - "inactiveUnderlineColor": "#9ba0a3", + "inactiveColoredFileBackground": "#F7F8FA", + "inactiveUnderlineColor": "#6C737C", "selectedForeground": "#5B6168", "selectedBackground": "#cce5ff", "underlineColor": "#79CB60", - "underlinedTabBackground": "#cce5ff" + "underlinedTabBackground": "#cce5ff", + "underlinedTabForeground": "#111111" }, "EditorGroupsTabs": { "background": "#F7F8FA", - "borderColor": "#f3f3f3", + "borderColor": "#F7F8FA", "hoverBackground": "#CCE5FF", "hoverColor": "#CCE5FF", "inactiveUnderlineColor": "#79CB60", @@ -221,7 +243,7 @@ "FileColor": { "Green": "#387002", "Blue": "#004BA0", - "Yellow": "#dcdcdc", + "Yellow": "#FDFDFD", "Orange": "#B53D00", "Violet": "#4D2C91", "Rose": "#A00037" @@ -238,25 +260,26 @@ }, "Focus.color": "#DFE1E4", "FormattedTextField": { - "background": "#fafbfc", + "background": "#FFFFFF", "caretForeground": "#79CB60", "foreground": "#5B6168", - "inactiveBackground": "#edf1f5", - "inactiveForeground": "#9ba0a3", + "inactiveBackground": "#F1F3F6", + "inactiveForeground": "#6C737C", "selectionForeground": "#111111", "selectionBackground": "#cce5ff" }, + "GotItTooltip.borderColor": "#DFECFE", "Group": { "disabledSeparatorColor": "#DFE1E4", "separatorColor": "#DFE1E4" }, "GutterTooltip": { - "infoForeground": "#5B6168", + "infoForeground": "#292D31", "lineSeparatorColor": "#F7F8FA" }, "HeaderColor": { "active": "#F7F8FA", - "inactive": "#fafbfc" + "inactive": "#FFFFFF" }, "HelpTooltip": { "background": "#F7F8FA", @@ -266,7 +289,7 @@ "shortcutForeground": "#292D31" }, "Hyperlink.linkColor": "#79CB60", - "inactiveCaption": "#f3f3f3", + "inactiveCaption": "#F7F8FA", "inactiveCaptionBorder": "#F7F8FA", "inactiveCaptionText": "#292D31", "info": "#292D31", @@ -283,12 +306,13 @@ }, "Label": { "background": "#F7F8FA", - "disabledForeground": "#9ba0a3", + "disabledForeground": "#6C737C", "disabledShadow": "#F7F8FA", - "disabledText": "#9ba0a3", + "disabledText": "#6C737C", "foreground": "#5B6168", "infoForeground": "#292D31", - "selectedForeground": "#111111" + "selectedForeground": "#111111", + "selectedDisabledForeground": "#5B6168" }, "Link": { "activeForeground": "#79CB60", @@ -299,64 +323,66 @@ }, "link.foreground": "#79CB60", "List": { - "background": "#f3f3f3", + "background": "#F7F8FA", "foreground": "#5B6168", + "hoverBackground": "#3A66D170", + "hoverInactiveBackground": "#cce5ff", "selectionBackground": "#3A66D150", - "selectionForeground": "#FFFFFF", + "selectionForeground": "#111111", "selectionInactiveForeground": "#111111", - "selectionInactiveBackground": "#3A66D1" + "selectionInactiveBackground": "#3A66D170" }, "material": { "background": "#F7F8FA", "branchColor": "#5B6168", - "contrast": "#fafbfc", + "contrast": "#FFFFFF", "foreground": "#5B6168", - "mergeCommits": "#edf1f5", + "mergeCommits": "#F1F3F6", "primaryColor": "#292D31", - "selectionForeground": "#FFFFFF", + "selectionForeground": "#111111", "tab.backgroundColor": "#F7F8FA", "tab.borderColor": "#79CB60", "tagColor": "#292D31" }, "MemoryIndicator": { - "allocatedBackground": "#f3f3f3", + "allocatedBackground": "#F7F8FA", "usedColor": "#CCE5FF", "usedBackground": "#CCE5FF" }, "Menu": { "acceleratorForeground": "#292D31", - "acceleratorSelectionForeground": "#FFFFFF", + "acceleratorSelectionForeground": "#111111", "background": "#F7F8FA", "border": "4,2,4,2", - "borderColor": "#f3f3f3", - "disabledBackground": "#f3f3f3", - "disabledForeground": "#9ba0a3", + "borderColor": "#F7F8FA", + "disabledBackground": "#F7F8FA", + "disabledForeground": "#6C737C", "foreground": "#5B6168", "selectionBackground": "#3A66D1", - "selectionForeground": "#FFFFFF", + "selectionForeground": "#111111", "separatorColor": "#DFE1E4" }, "MenuBar": { - "background": "#fafbfc", + "background": "#FFFFFF", "borderColor": "#F7F8FA", "disabledBackground": "#F7F8FA", - "disabledForeground": "#9ba0a3", + "disabledForeground": "#6C737C", "foreground": "#5B6168", "highlight": "#F7F8FA", "selectionBackground": "#3A66D1", - "selectionForeground": "#FFFFFF", - "shadow": "#fafbfc" + "selectionForeground": "#111111", + "shadow": "#FFFFFF" }, "MenuItem": { "acceleratorForeground": "#292D31", - "acceleratorSelectionForeground": "#FFFFFF", + "acceleratorSelectionForeground": "#111111", "border": "4,2,4,2", "background": "#F7F8FA", "disabledBackground": "#F7F8FA", - "disabledForeground": "#9ba0a3", + "disabledForeground": "#6C737C", "foreground": "#5B6168", "selectionBackground": "#3A66D1", - "selectionForeground": "#FFFFFF" + "selectionForeground": "#111111" }, "NavBar": { "arrowColor": "#5B6168", @@ -367,7 +393,7 @@ "background": "#F7F8FA" }, "SearchField": { - "background": "#fafbfc" + "background": "#FFFFFF" } }, "NewPSD.warning": "#79CB60", @@ -378,9 +404,9 @@ "errorBorderColor": "#DFECFE", "foreground": "#5B6168", "MoreButton": { - "background": "#edf1f5", + "background": "#F1F3F6", "foreground": "#5B6168", - "innerBorderColor": "#edf1f5" + "innerBorderColor": "#F1F3F6" }, "ToolWindow": { "errorBackground": "#DFECFE", @@ -398,65 +424,66 @@ "messageForeground": "#5B6168" }, "Outline": { - "color": "#edf1f5", + "color": "#F1F3F6", "focusedColor": "#79CB60", - "disabledColor": "#9ba0a3" + "disabledColor": "#6C737C" }, "Panel": { "background": "#F7F8FA", "foreground": "#5B6168" }, "ParameterInfo": { - "background": "#f3f3f3", + "background": "#F7F8FA", "borderColor": "#cce5ff", - "currentOverloadBackground": "#cce5ff", + "currentOverloadBackground": "#CCE5FF", "currentParameterForeground": "#79CB60", - "disabledForeground": "#9ba0a3", + "disabledForeground": "#6C737C", "foreground": "#5B6168", "infoForeground": "#292D31", "lineSeparatorColor": "#cce5ff" }, "PasswordField": { - "background": "#fafbfc", + "background": "#FFFFFF", "capsLockIconColor": "#79CB60", "caretForeground": "#79CB60", "foreground": "#5B6168", - "inactiveForeground": "#9ba0a3", + "inactiveForeground": "#6C737C", "selectionBackground": "#cce5ff", "selectionForeground": "#111111" }, "Plugins": { "background": "#F7F8FA", - "disabledForeground": "#9ba0a3", + "disabledForeground": "#6C737C", "eapTagBackground": "#CCE5FF", - "lightSelectionBackground": "#3A66D1", + "hoverBackground": "#3A66D170", + "lightSelectionBackground": "#cce5ff", "paidTagBackground": "#CCE5FF", "selectionBackground": "#3A66D1", "tagForeground": "#79CB60", "tagBackground": "#CCE5FF", "trialTagBackground": "#CCE5FF", "Button": { - "installBackground": "#edf1f5", - "installBorderColor": "#edf1f5", + "installBackground": "#F1F3F6", + "installBorderColor": "#F1F3F6", "installForeground": "#5B6168", "installFocusedBackground": "#CCE5FF", - "installFillForeground": "#9ba0a3", - "installFillBackground": "#edf1f5", - "updateBackground": "#edf1f5", - "updateBorderColor": "#edf1f5", + "installFillForeground": "#6C737C", + "installFillBackground": "#F1F3F6", + "updateBackground": "#79CB60", + "updateBorderColor": "#F1F3F6", "updateForeground": "#5B6168" }, "SearchField": { - "background": "#fafbfc", + "background": "#FFFFFF", "borderColor": "#DFE1E4" }, "SectionHeader": { - "background": "#f3f3f3", + "background": "#F7F8FA", "foreground": "#5B6168" }, "Tab": { "hoverBackground": "#cce5ff", - "selectedForeground": "#FFFFFF", + "selectedForeground": "#111111", "selectedBackground": "#cce5ff" } }, @@ -466,20 +493,20 @@ "borderColor": "#F7F8FA", "foreground": "#79CB60" }, - "borderColor": "#fafbfc", + "borderColor": "#FFFFFF", "inactiveBorderColor": "#F7F8FA", - "innerBorderColor": "#f3f3f3", + "innerBorderColor": "#F7F8FA", "Header": { "activeBackground": "#F7F8FA", - "inactiveBackground": "#fafbfc" + "inactiveBackground": "#FFFFFF" }, "paintBorder": true, "separatorForeground": "#5B6168", - "separatorColor": "#f3f3f3", + "separatorColor": "#F7F8FA", "Toolbar": { - "Floating.background": "#fafbfc", - "background": "#fafbfc", - "borderColor": "#fafbfc" + "Floating.background": "#FFFFFF", + "background": "#FFFFFF", + "borderColor": "#FFFFFF" } }, "PopupMenu": { @@ -504,7 +531,7 @@ }, "RadioButton": { "background": "#F7F8FA", - "disabledText": "#9ba0a3", + "disabledText": "#6C737C", "foreground": "#5B6168" }, "RadioButtonMenuItem": { @@ -512,11 +539,12 @@ "acceleratorSelectionForeground": "#292D31", "background": "#F7F8FA", "disabledBackground": "#F7F8FA", - "disabledForeground": "#9ba0a3", + "disabledForeground": "#6C737C", "foreground": "#5B6168", "selectionBackground": "#3A66D1", - "selectionForeground": "#FFFFFF" + "selectionForeground": "#111111" }, + "ScreenView.borderColor": "#DFE1E4", "ScrollBar": { "background": "#F7F8FA", "hoverThumbBorderColor": "#79CB60", @@ -553,7 +581,7 @@ }, "SearchEverywhere": { "Advertiser": { - "background": "#fafbfc", + "background": "#FFFFFF", "foreground": "#292D31" }, "Header": { @@ -565,7 +593,7 @@ }, "SearchField": { "background": "#F7F8FA", - "borderColor": "#fafbfc", + "borderColor": "#FFFFFF", "infoForeground": "#292D31" }, "Tab": { @@ -576,16 +604,25 @@ }, "SearchMatch": { "endBackground": "#79CB60", - "startBackground": "#79CB60" + "startBackground": "#79CB60", + "endColor": "#79CB60", + "startColor": "#79CB60" }, "SearchField.errorBackground": "#DFECFE", + "SearchOption": { + "selectedBackground": "#cce5ff" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#292D31", + "Repeated.File.Foreground": "#5B6168" + }, "Separator": { - "background": "#f3f3f3", - "foreground": "#f3f3f3", - "separatorColor": "#f3f3f3" + "background": "#F7F8FA", + "foreground": "#F7F8FA", + "separatorColor": "#F7F8FA" }, "SidePanel": { - "background": "#fafbfc" + "background": "#FFFFFF" }, "Slider": { "background": "#F7F8FA", @@ -593,7 +630,7 @@ "buttonColor": "#79CB60", "foreground": "#5B6168", "majorTickLength": 6, - "tickColor": "#f3f3f3", + "tickColor": "#F7F8FA", "trackColor": "#cce5ff", "trackWidth": 7, "thumb": "#79CB60" @@ -612,19 +649,21 @@ }, "SplitPane": { "background": "#F7F8FA", - "highlight": "#fafbfc" + "highlight": "#FFFFFF" }, - "SplitPaneDivider.draggingColor": "#f3f3f3", + "SplitPaneDivider.draggingColor": "#F7F8FA", "StatusBar": { - "borderColor": "#F7F8FA" + "borderColor": "#F7F8FA", + "hoverBackground": "#CCE5FF", + "LightEditBackground": "#cce5ff" }, "TabbedPane": { "background": "#F7F8FA", "contentAreaColor": "#CCE5FF", "contentBorderInsets": "3,1,1,1", "darkShadow": "#DFE1E4", - "disabledForeground": "#9ba0a3", - "disabledUnderlineColor": "#9ba0a3", + "disabledForeground": "#6C737C", + "disabledUnderlineColor": "#6C737C", "focus": "#cce5ff", "focusColor": "#cce5ff", "fontSizeOffset": 0, @@ -641,11 +680,13 @@ "tabSelectionHeight": 2, "underlineColor": "#79CB60" }, - "TabbedPane.mt.tab.background": "#fafbfc", + "TabbedPane.mt.tab.background": "#FFFFFF", "Table": { + "alternativeRowBackground": "#FFFFFF", "background": "#F7F8FA", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#6C737C", "dropLineColor": "#79CB60", "dropLineShortColor": "#79CB60", "focusCellBackground": "#cce5ff", @@ -653,57 +694,59 @@ "foreground": "#5B6168", "gridColor": "#F7F8FA", "highlightOuter": "#cce5ff", + "hoverBackground": "#3A66D170", + "hoverInactiveBackground": "#cce5ff", "lightSelectionForeground": "#111111", "lightSelectionInactiveForeground": "#292D31", - "lightSelectionInactiveBackground": "#f3f3f3", + "lightSelectionInactiveBackground": "#F7F8FA", "selectionBackground": "#cce5ff", "selectionForeground": "#111111", "selectionInactiveBackground": "#cce5ff", - "selectionInactiveForeground": "#FFFFFF", + "selectionInactiveForeground": "#111111", "sortIconColor": "#5B6168", - "stripeColor": "#fafbfc" + "stripeColor": "#FFFFFF" }, "TableHeader": { "background": "#F7F8FA", "borderColor": "#F7F8FA", - "bottomSeparatorColor": "#f3f3f3", + "bottomSeparatorColor": "#F7F8FA", "cellBorder": "4,0,4,0", - "disabledForeground": "#9ba0a3", + "disabledForeground": "#6C737C", "foreground": "#5B6168", "focusCellBackground": "#cce5ff", "focusCellForeground": "#111111", "height": 25, - "separatorColor": "#f3f3f3" + "separatorColor": "#F7F8FA" }, "text": "#292D31", "textInactiveText": "#292D31", "textText": "#292D31", "TextArea": { - "background": "#fafbfc", + "background": "#FFFFFF", "caretForeground": "#79CB60", "foreground": "#5B6168", - "inactiveForeground": "#9ba0a3", + "inactiveForeground": "#6C737C", "selectionBackground": "#cce5ff", "selectionForeground": "#111111" }, "TextField": { - "background": "#fafbfc", + "background": "#FFFFFF", "caretForeground": "#79CB60", "foreground": "#5B6168", - "inactiveForeground": "#9ba0a3", + "inactiveForeground": "#6C737C", "selectionBackground": "#cce5ff", "selectionForeground": "#111111" }, "TextPane": { - "background": "#fafbfc", + "background": "#FFFFFF", "caretForeground": "#79CB60", "foreground": "#5B6168", - "inactiveForeground": "#9ba0a3", + "inactiveForeground": "#6C737C", "selectionBackground": "#cce5ff", "selectionForeground": "#111111" }, "TitlePane": { - "background": "#fafbfc", + "background": "#FFFFFF", "Button.hoverBackground": "#CCE5FF", "inactiveBackground": "#F7F8FA", "infoForeground": "#292D31", @@ -711,9 +754,9 @@ }, "TitledBorder.titleColor": "#5B6168", "ToggleButton": { - "borderColor": "#edf1f5", + "borderColor": "#F1F3F6", "buttonColor": "#5B6168", - "disabledText": "#9ba0a3", + "disabledText": "#6C737C", "foreground": "#5B6168", "offForeground": "#F7F8FA", "offBackground": "#F7F8FA", @@ -721,7 +764,7 @@ "onForeground": "#79CB60" }, "ToolBar": { - "background": "#fafbfc", + "background": "#FFFFFF", "borderHandleColor": "#292D31", "floatingForeground": "#292D31", "foreground": "#5B6168" @@ -729,8 +772,8 @@ "ToolTip": { "Actions.background": "#F7F8FA", "Actions.infoForeground": "#292D31", - "background": "#F7F8FA", - "borderColor": "#CCE5FF", + "background": "#DFECFE", + "borderColor": "#DFE1E4", "foreground": "#5B6168", "infoForeground": "#292D31", "separatorColor": "#DFE1E4", @@ -740,61 +783,104 @@ "Button": { "hoverBackground": "#cce5ff", "selectedForeground": "#111111", - "selectedBackground": "#fafbfc" + "selectedBackground": "#FFFFFF" }, "Header": { "background": "#F7F8FA", - "borderColor": "#f3f3f3", + "borderColor": "#F7F8FA", "inactiveBackground": "#F7F8FA" }, "HeaderCloseButton": { "background": "#F7F8FA" }, "HeaderTab": { + "borderColor": "#CCE5FF", "hoverBackground": "#CCE5FF", - "hoverInactiveBackground": "#f3f3f3", + "hoverInactiveBackground": "#CCE5FF", "inactiveUnderlineColor": "#79CB60", - "selectedBackground": "#fafbfc", - "selectedInactiveBackground": "#fafbfc", + "selectedBackground": "#FFFFFF", + "selectedInactiveBackground": "#FFFFFF", "underlineColor": "#79CB60", - "underlinedTabBackground": "#CCE5FF", - "underlinedTabInactiveBackground": "#f3f3f3" + "underlinedTabBackground": "#cce5ff", + "underlinedTabInactiveBackground": "#F7F8FA", + "underlinedTabForeground": "#111111", + "underlinedTabInactiveForeground": "#5B6168" } }, "Tree": { - "background": "#fafbfc", + "background": "#FFFFFF", "foreground": "#292D31", "hash": "#DFE1E4", + "hoverBackground": "#3A66D170", + "hoverInactiveBackground": "#cce5ff", "modifiedItemForeground": "#79CB60", "rowHeight": 28, - "selectionBackground": "#3A66D1", - "selectionForeground": "#FFFFFF", - "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#3A66D1", - "textBackground": "#fafbfc" + "selectionBackground": "#3A66D170", + "selectionForeground": "#111111", + "selectionInactiveForeground": "#111111", + "selectionInactiveBackground": "#3A66D170", + "textBackground": "#FFFFFF" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { + "UIDesigner": { "Activity.borderColor": "#DFE1E4", - "ColorPicker.background": "#F7F8FA", - "ColorPicker.foreground": "#5B6168", - "Component.borderColor": "#DFE1E4", - "Component.background": "#F7F8FA", - "Component.foreground": "#5B6168", - "Connector.borderColor": "#DFE1E4", - "Connector.hoverBorderColor": "#CCE5FF", - "Canvas.background": "#fafbfc", + "Canvas.background": "#FFFFFF", + "ColorPicker": { + "background": "#F7F8FA", + "foreground": "#5B6168" + }, + "Component": { + "borderColor": "#DFE1E4", + "background": "#F7F8FA", + "foreground": "#5B6168", + "hoverBorderColor": "#CCE5FF" + }, + "Connector": { + "borderColor": "#DFE1E4", + "hoverBorderColor": "#CCE5FF" + }, + "Canvas.background": "#FFFFFF", "highStroke.foreground": "#5B6168", "Label.foreground": "#292D31", - "List.selectionBackground": "#3A66D1", - "Panel.borderColor": "#DFE1E4", - "Panel.background": "#F7F8FA", + "List.selectionBackground": "#3A66D170", + "motion": { + "borderColor": "#DFE1E4", + "Component.foreground": "#5B6168", + "ConstraintSetText.foreground": "#292D31", + "ConstraintSet.background": "#F7F8FA", + "CSPanel.SelectedFocusBackground": "#3A66D1", + "CSPanel.SelectedBackground": "#3A66D170", + "cs_FocusText.infoForeground": "#292D31", + "CursorTextColor.foreground": "#5B6168", + "HoverColor.disabledBackground": "#6C737C", + "motionGraph.background": "#F7F8FA", + "Notification.background": "#DFECFE", + "ourAvg.background": "#F7F8FA", + "ourCS.background": "#F7F8FA", + "ourCS_Border.borderColor": "#DFE1E4", + "ourCS_TextColor.foreground": "#292D31", + "ourCS_SelectedFocusBackground.selectionForeground": "#111111", + "ourCS_SelectedBackground.selectionInactiveBackground": "#cce5ff", + "ourCS_SelectedBorder.pressedBorderColor": "#CCE5FF", + "ourML_BarColor.separatorColor": "#DFE1E4", + "PrimaryPanel.background": "#FFFFFF", + "SecondaryPanel.background": "#F7F8FA", + "SecondaryPanel.header.foreground": "#292D31", + "SecondaryPanel.header.background": "#FFFFFF", + "timeLine.disabledBorderColor": "#DFE1E4" + }, + "Panel": { + "borderColor": "#DFE1E4", + "background": "#F7F8FA" + }, "percent.foreground": "#5B6168", - "Placeholder.background": "#F7F8FA", - "Placeholder.borderColor": "#DFE1E4", - "Placeholder.foreground": "#5B6168", - "Placeholder.selectedForeground": "#FFFFFF", + "Placeholder": { + "background": "#F7F8FA", + "borderColor": "#DFE1E4", + "foreground": "#5B6168", + "selectedForeground": "#111111" + }, "Preview.background": "#F7F8FA", "stroke.acceleratorForeground": "#292D31" }, @@ -820,7 +906,7 @@ "HgLog": { "branchIconColor": "#79CB60", "bookmarkIconColor": "#111111", - "closedBranchIconColor": "#9ba0a3", + "closedBranchIconColor": "#6C737C", "localTagIconColor": "#292D31", "mqTagIconColor": "#292D31", "tagIconColor": "#292D31", @@ -828,7 +914,8 @@ }, "Log": { "Commit.unmatchedForeground": "#292D31", - "Commit.currentBranchBackground": "#f3f3f3" + "Commit.currentBranchBackground": "#F7F8FA", + "Commit.hoveredBackground": "#3A66D170" }, "RefLabel": { "foreground": "#111111", @@ -836,40 +923,46 @@ } }, "Viewport": { - "background": "#fafbfc", + "background": "#FFFFFF", "foreground": "#5B6168" }, "WelcomeScreen": { + "AssociatedComponent.background": "#F7F8FA", "background": "#F7F8FA", "borderColor": "#F7F8FA", - "captionBackground": "#fafbfc", + "captionBackground": "#FFFFFF", "captionForeground": "#5B6168", - "footerBackground": "#fafbfc", + "Details.background": "#F7F8FA", + "footerBackground": "#FFFFFF", "footerForeground": "#5B6168", "headerBackground": "#F7F8FA", "headerForeground": "#5B6168", + "List.background": "#FFFFFF", "separatorColor": "#DFE1E4", + "SidePanel.background": "#F7F8FA", "Projects": { - "background": "#f3f3f3", + "actions.background": "#FFFFFF", + "actions.selectionBackground": "#CCE5FF", + "background": "#F7F8FA", "selectionBackground": "#3A66D1", - "selectionInactiveBackground": "#f3f3f3" + "selectionInactiveBackground": "#F7F8FA" } }, - "window": "#fafbfc", + "window": "#FFFFFF", "windowBorder": "#DFE1E4", "windowText": "#292D31", "Window.border": "#DFE1E4" }, "icons": { "ColorPalette": { - "#43494A": "#fafbfc", + "#43494A": "#FFFFFF", "#6B6B6B": "#292D31", "#A7A7A7": "#F7F8FA", "#3D6185": "#79CB60", "#466D94": "#79CB60", "#3C3F41": "#F7F8FA", - "#545556": "#9ba0a3", - "#606060": "#9ba0a3", + "#545556": "#6C737C", + "#606060": "#6C737C", "#9AA7B0": "#5B6168", "#675133": "#79CB60", "Actions.Blue": "#6F42C1", @@ -879,20 +972,20 @@ "Actions.GreyInline.Dark": "#5B6168", "Actions.Red": "#22863A", "Actions.Yellow": "#6F42C1", - "Checkbox.Background.Default": "#fafbfc", - "Checkbox.Background.Default.Dark": "#fafbfc", - "Checkbox.Background.Disabled": "#dcdcdc", - "Checkbox.Background.Disabled.Dark": "#dcdcdc", + "Checkbox.Background.Default": "#FFFFFF", + "Checkbox.Background.Default.Dark": "#FFFFFF", + "Checkbox.Background.Disabled": "#FDFDFD", + "Checkbox.Background.Disabled.Dark": "#FDFDFD", "Checkbox.Border.Default": "#DFE1E4", "Checkbox.Border.Default.Dark": "#DFE1E4", - "Checkbox.Border.Disabled": "#9ba0a3", - "Checkbox.Border.Disabled.Dark": "#9ba0a3", + "Checkbox.Border.Disabled": "#6C737C", + "Checkbox.Border.Disabled.Dark": "#6C737C", "Checkbox.Focus.Thin.Default": "#79CB60", "Checkbox.Focus.Thin.Default.Dark": "#79CB60", "Checkbox.Focus.Wide": "#79CB60", "Checkbox.Focus.Wide.Dark": "#79CB60", - "Checkbox.Foreground.Disabled": "#9ba0a3", - "Checkbox.Foreground.Disabled.Dark": "#9ba0a3", + "Checkbox.Foreground.Disabled": "#6C737C", + "Checkbox.Foreground.Disabled.Dark": "#6C737C", "Checkbox.Background.Selected": "#79CB60", "Checkbox.Background.Selected.Dark": "#F7F8FA", "Checkbox.Border.Selected": "#79CB60", 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 6002f77d..f2a07ab2 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 @@ -2,32 +2,38 @@ "name": "GitHub", "dark": false, "author": "Mallowigi", - "editorScheme": "/colors/Github.xml", + "editorScheme": "/colors/GitHub (Material).xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/github.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { "acceleratorSelectionForeground": "#292D31", "background": "#F7F8FA", "borderColor": "#DFE1E4", - "disabledBackground": "#dcdcdc", - "disabledForeground": "#9ba0a3", - "disabledText": "#9ba0a3", + "disabledBackground": "#FDFDFD", + "disabledForeground": "#6C737C", + "disabledText": "#6C737C", "focusColor": "#CCE5FF", "focusedBorderColor": "#79CB60", "foreground": "#5B6168", - "inactiveBackground": "#dcdcdc", + "inactiveBackground": "#FDFDFD", "inactiveForeground": "#292D31", "infoForeground": "#292D31", "selectionBackground": "#3A66D1", - "selectionBackgroundInactive": "#f3f3f3", - "selectionForeground": "#FFFFFF", - "selectionInactiveBackground": "#f3f3f3", + "selectionBackgroundInactive": "#F7F8FA", + "selectionForeground": "#111111", + "selectionInactiveBackground": "#F7F8FA", "separatorColor": "#DFE1E4" }, "activeCaption": "#F7F8FA", "ActionButton": { "hoverBackground": "#79CB6050", "hoverBorderColor": "#79CB6050", - "hoverSeparatorColor": "#edf1f5", + "hoverSeparatorColor": "#F1F3F6", "focusedBorderColor": "#79CB6050", "pressedBackground": "#79CB6050", "pressedBorderColor": "#79CB6050" @@ -50,32 +56,35 @@ "startBackground": "#cce5ff", "startBorderColor": "#cce5ff" }, - "disabledBorderColor": "#edf1f5", - "disabledText": "#9ba0a3", - "endBackground": "#edf1f5", - "endBorderColor": "#edf1f5", + "disabledBorderColor": "#F1F3F6", + "disabledText": "#6C737C", + "endBackground": "#F1F3F6", + "endBorderColor": "#F1F3F6", "focus": "#CCE5FF", "focusedBorderColor": "#79CB60", "foreground": "#292D31", - "highlight": "#FFFFFF", - "mt.background": "#edf1f5", + "highlight": "#111111", + "mt.background": "#F1F3F6", "mt.foreground": "#292D31", - "mt.selectedForeground": "#FFFFFF", + "mt.selectedForeground": "#111111", "mt.selection.color1": "#cce5ff", "mt.selection.color2": "#cce5ff", - "startBackground": "#edf1f5", - "startBorderColor": "#edf1f5", - "shadowColor": "#edf1f5", + "startBackground": "#F1F3F6", + "startBorderColor": "#F1F3F6", + "shadowColor": "#F1F3F6", "shadowWidth": 0 }, "Canvas": { "Tooltip.borderColor": "#DFE1E4", "Tooltip.background": "#DFECFE" }, - "Content.background": "#fafbfc", + "Content": { + "background": "#FFFFFF", + "selectionBackground": "#3A66D1" + }, "CheckBox": { "background": "#F7F8FA", - "disabledText": "#9ba0a3", + "disabledText": "#6C737C", "foreground": "#5B6168", "select": "#79CB60" }, @@ -84,54 +93,63 @@ "acceleratorSelectionForeground": "#292D31", "background": "#F7F8FA", "disabledBackground": "#F7F8FA", - "disabledForeground": "#9ba0a3", + "disabledForeground": "#6C737C", "foreground": "#5B6168", "selectionBackground": "#3A66D1", "selectionForeground": "#111111" }, + "CodeWithMe": { + "Avatar.foreground": "#5B6168", + "AccessEnabled": { + "accessDot": "#79CB60", + "dropdownBorder": "#F7F8FA", + "pillBackground": "$second" + } + }, "ColorChooser": { "background": "#F7F8FA", "foreground": "#5B6168", "swatchesDefaultRecentColor": "#5B6168" }, - "ComboBoxButton.background": "#edf1f5", + "ComboBoxButton.background": "#F1F3F6", "ComboBox": { "ArrowButton": { - "background": "#edf1f5", - "disabledIconColor": "#9ba0a3", + "background": "#F1F3F6", + "disabledIconColor": "#6C737C", "iconColor": "#5B6168", "nonEditableBackground": "#F7F8FA" }, "background": "#F7F8FA", - "buttonBackground": "#edf1f5", - "disabledForeground": "#9ba0a3", + "buttonBackground": "#F1F3F6", + "darcula.hoveredArrowButtonForeground": "#79CB60", + "disabledForeground": "#6C737C", "foreground": "#5B6168", "modifiedItemForeground": "#79CB60", - "nonEditableBackground": "#f3f3f3", + "nonEditableBackground": "#F7F8FA", "padding": "5,5,5,5", "selectionBackground": "#cce5ff", "selectionForeground": "#111111" }, "ComboPopup.border": "#DFE1E4", "CompletionPopup": { - "background": "#f3f3f3", + "background": "#F7F8FA", "foreground": "#5B6168", "infoForeground": "#292D31", "matchForeground": "#79CB60", "matchSelectionForeground": "#79CB60", "nonFocusedState": "false", - "selectedGrayedForeground": "#FFFFFF", - "selectionGrayForeground": "#FFFFFF", + "selectedGrayedForeground": "#111111", + "selectionGrayForeground": "#111111", "selectionInactiveInfoForeground": "#292D31", "selectionInactiveBackground": "#3A66D150", "selectionBackground": "#3A66D180", - "selectionForeground": "#FFFFFF", - "selectionInfoForeground": "#FFFFFF" + "selectionForeground": "#111111", + "selectionInfoForeground": "#111111" }, "Component": { "arc": 4, "borderColor": "#CCE5FF", - "disabledBorderColor": "#edf1f5", + "disabledBorderColor": "#F1F3F6", "focusColor": "#79CB60", "focusedBorderColor": "#79CB60", "hoverIconColor": "#79CB60", @@ -142,7 +160,7 @@ "controlText": "#292D31", "Counter": { "background": "#79CB60", - "foreground": "#FFFFFF" + "foreground": "#111111" }, "Debugger": { "Variables": { @@ -168,11 +186,13 @@ "hoverBackground": "#cce5ff", "hoverColor": "#F7F8FA", "hoverMaskColor": "#CCE5FF", - "inactiveColoredFileBackground": "#edf1f5", - "inactiveUnderlineColor": "#9ba0a3", + "inactiveColoredTabBackground": "#F7F8FA", + "inactiveColoredFileBackground": "#F1F3F6", + "inactiveUnderlineColor": "#79CB60", "inactiveMaskColor": "#F7F8FA", "underlineColor": "#79CB60", - "underlinedTabBackground": "#cce5ff" + "underlinedTabBackground": "#cce5ff", + "underlinedTabForeground": "#111111" }, "Desktop.background": "#F7F8FA", "DialogWrapper.southPanelBackground": "#F7F8FA", @@ -192,25 +212,27 @@ "caretForeground": "#79CB60", "foreground": "#5B6168", "inactiveBackground": "#F7F8FA", - "inactiveForeground": "#9ba0a3", + "inactiveForeground": "#6C737C", "selectionBackground": "#3A66D1", "selectionForeground": "#111111" }, "EditorTabs": { - "borderColor": "#f3f3f3", + "borderColor": "#F7F8FA", + "hoverBackground": "#CCE5FF", "hoverColor": "#CCE5FF", "hoverMaskColor": "#CCE5FF", "inactiveMaskColor": "#F7F8FA", - "inactiveColoredFileBackground": "#F7F8FA2", - "inactiveUnderlineColor": "#9ba0a3", + "inactiveColoredFileBackground": "#F7F8FA", + "inactiveUnderlineColor": "#6C737C", "selectedForeground": "#5B6168", "selectedBackground": "#cce5ff", "underlineColor": "#79CB60", - "underlinedTabBackground": "#cce5ff" + "underlinedTabBackground": "#cce5ff", + "underlinedTabForeground": "#111111" }, "EditorGroupsTabs": { "background": "#F7F8FA", - "borderColor": "#f3f3f3", + "borderColor": "#F7F8FA", "hoverBackground": "#CCE5FF", "hoverColor": "#CCE5FF", "inactiveUnderlineColor": "#79CB60", @@ -221,7 +243,7 @@ "FileColor": { "Green": "#387002", "Blue": "#004BA0", - "Yellow": "#dcdcdc", + "Yellow": "#FDFDFD", "Orange": "#B53D00", "Violet": "#4D2C91", "Rose": "#A00037" @@ -241,22 +263,23 @@ "background": "#F7F8FA", "caretForeground": "#79CB60", "foreground": "#5B6168", - "inactiveBackground": "#edf1f5", - "inactiveForeground": "#9ba0a3", + "inactiveBackground": "#F1F3F6", + "inactiveForeground": "#6C737C", "selectionForeground": "#111111", "selectionBackground": "#cce5ff" }, + "GotItTooltip.borderColor": "#DFECFE", "Group": { "disabledSeparatorColor": "#DFE1E4", "separatorColor": "#DFE1E4" }, "GutterTooltip": { - "infoForeground": "#5B6168", + "infoForeground": "#292D31", "lineSeparatorColor": "#F7F8FA" }, "HeaderColor": { "active": "#F7F8FA", - "inactive": "#fafbfc" + "inactive": "#FFFFFF" }, "HelpTooltip": { "background": "#F7F8FA", @@ -266,7 +289,7 @@ "shortcutForeground": "#292D31" }, "Hyperlink.linkColor": "#79CB60", - "inactiveCaption": "#f3f3f3", + "inactiveCaption": "#F7F8FA", "inactiveCaptionBorder": "#F7F8FA", "inactiveCaptionText": "#292D31", "info": "#292D31", @@ -283,12 +306,13 @@ }, "Label": { "background": "#F7F8FA", - "disabledForeground": "#9ba0a3", + "disabledForeground": "#6C737C", "disabledShadow": "#F7F8FA", - "disabledText": "#9ba0a3", + "disabledText": "#6C737C", "foreground": "#5B6168", "infoForeground": "#292D31", - "selectedForeground": "#111111" + "selectedForeground": "#111111", + "selectedDisabledForeground": "#5B6168" }, "Link": { "activeForeground": "#79CB60", @@ -299,64 +323,66 @@ }, "link.foreground": "#79CB60", "List": { - "background": "#f3f3f3", + "background": "#F7F8FA", "foreground": "#5B6168", + "hoverBackground": "#3A66D170", + "hoverInactiveBackground": "#cce5ff", "selectionBackground": "#3A66D150", - "selectionForeground": "#FFFFFF", + "selectionForeground": "#111111", "selectionInactiveForeground": "#111111", - "selectionInactiveBackground": "#3A66D1" + "selectionInactiveBackground": "#3A66D170" }, "material": { "background": "#F7F8FA", "branchColor": "#5B6168", - "contrast": "#fafbfc", + "contrast": "#FFFFFF", "foreground": "#5B6168", - "mergeCommits": "#edf1f5", + "mergeCommits": "#F1F3F6", "primaryColor": "#292D31", - "selectionForeground": "#FFFFFF", + "selectionForeground": "#111111", "tab.backgroundColor": "#F7F8FA", "tab.borderColor": "#79CB60", "tagColor": "#292D31" }, "MemoryIndicator": { - "allocatedBackground": "#f3f3f3", + "allocatedBackground": "#F7F8FA", "usedColor": "#CCE5FF", "usedBackground": "#CCE5FF" }, "Menu": { "acceleratorForeground": "#292D31", - "acceleratorSelectionForeground": "#FFFFFF", + "acceleratorSelectionForeground": "#111111", "background": "#F7F8FA", "border": "4,2,4,2", - "borderColor": "#f3f3f3", - "disabledBackground": "#f3f3f3", - "disabledForeground": "#9ba0a3", + "borderColor": "#F7F8FA", + "disabledBackground": "#F7F8FA", + "disabledForeground": "#6C737C", "foreground": "#5B6168", "selectionBackground": "#3A66D1", - "selectionForeground": "#FFFFFF", + "selectionForeground": "#111111", "separatorColor": "#DFE1E4" }, "MenuBar": { "background": "#F7F8FA", "borderColor": "#F7F8FA", "disabledBackground": "#F7F8FA", - "disabledForeground": "#9ba0a3", + "disabledForeground": "#6C737C", "foreground": "#5B6168", "highlight": "#F7F8FA", "selectionBackground": "#3A66D1", - "selectionForeground": "#FFFFFF", + "selectionForeground": "#111111", "shadow": "#F7F8FA" }, "MenuItem": { "acceleratorForeground": "#292D31", - "acceleratorSelectionForeground": "#FFFFFF", + "acceleratorSelectionForeground": "#111111", "border": "4,2,4,2", "background": "#F7F8FA", "disabledBackground": "#F7F8FA", - "disabledForeground": "#9ba0a3", + "disabledForeground": "#6C737C", "foreground": "#5B6168", "selectionBackground": "#3A66D1", - "selectionForeground": "#FFFFFF" + "selectionForeground": "#111111" }, "NavBar": { "arrowColor": "#5B6168", @@ -378,9 +404,9 @@ "errorBorderColor": "#DFECFE", "foreground": "#5B6168", "MoreButton": { - "background": "#edf1f5", + "background": "#F1F3F6", "foreground": "#5B6168", - "innerBorderColor": "#edf1f5" + "innerBorderColor": "#F1F3F6" }, "ToolWindow": { "errorBackground": "#DFECFE", @@ -398,20 +424,20 @@ "messageForeground": "#5B6168" }, "Outline": { - "color": "#edf1f5", + "color": "#F1F3F6", "focusedColor": "#79CB60", - "disabledColor": "#9ba0a3" + "disabledColor": "#6C737C" }, "Panel": { "background": "#F7F8FA", "foreground": "#5B6168" }, "ParameterInfo": { - "background": "#f3f3f3", + "background": "#F7F8FA", "borderColor": "#cce5ff", - "currentOverloadBackground": "#cce5ff", + "currentOverloadBackground": "#CCE5FF", "currentParameterForeground": "#79CB60", - "disabledForeground": "#9ba0a3", + "disabledForeground": "#6C737C", "foreground": "#5B6168", "infoForeground": "#292D31", "lineSeparatorColor": "#cce5ff" @@ -421,29 +447,30 @@ "capsLockIconColor": "#79CB60", "caretForeground": "#79CB60", "foreground": "#5B6168", - "inactiveForeground": "#9ba0a3", + "inactiveForeground": "#6C737C", "selectionBackground": "#cce5ff", "selectionForeground": "#111111" }, "Plugins": { "background": "#F7F8FA", - "disabledForeground": "#9ba0a3", + "disabledForeground": "#6C737C", "eapTagBackground": "#CCE5FF", - "lightSelectionBackground": "#3A66D1", + "hoverBackground": "#3A66D170", + "lightSelectionBackground": "#cce5ff", "paidTagBackground": "#CCE5FF", "selectionBackground": "#3A66D1", "tagForeground": "#79CB60", "tagBackground": "#CCE5FF", "trialTagBackground": "#CCE5FF", "Button": { - "installBackground": "#edf1f5", - "installBorderColor": "#edf1f5", + "installBackground": "#F1F3F6", + "installBorderColor": "#F1F3F6", "installForeground": "#5B6168", "installFocusedBackground": "#CCE5FF", - "installFillForeground": "#9ba0a3", - "installFillBackground": "#edf1f5", - "updateBackground": "#edf1f5", - "updateBorderColor": "#edf1f5", + "installFillForeground": "#6C737C", + "installFillBackground": "#F1F3F6", + "updateBackground": "#79CB60", + "updateBorderColor": "#F1F3F6", "updateForeground": "#5B6168" }, "SearchField": { @@ -451,12 +478,12 @@ "borderColor": "#DFE1E4" }, "SectionHeader": { - "background": "#f3f3f3", + "background": "#F7F8FA", "foreground": "#5B6168" }, "Tab": { "hoverBackground": "#cce5ff", - "selectedForeground": "#FFFFFF", + "selectedForeground": "#111111", "selectedBackground": "#cce5ff" } }, @@ -466,20 +493,20 @@ "borderColor": "#F7F8FA", "foreground": "#79CB60" }, - "borderColor": "#fafbfc", + "borderColor": "#FFFFFF", "inactiveBorderColor": "#F7F8FA", - "innerBorderColor": "#f3f3f3", + "innerBorderColor": "#F7F8FA", "Header": { "activeBackground": "#F7F8FA", - "inactiveBackground": "#fafbfc" + "inactiveBackground": "#FFFFFF" }, "paintBorder": true, "separatorForeground": "#5B6168", - "separatorColor": "#f3f3f3", + "separatorColor": "#F7F8FA", "Toolbar": { - "Floating.background": "#fafbfc", - "background": "#fafbfc", - "borderColor": "#fafbfc" + "Floating.background": "#FFFFFF", + "background": "#FFFFFF", + "borderColor": "#FFFFFF" } }, "PopupMenu": { @@ -504,7 +531,7 @@ }, "RadioButton": { "background": "#F7F8FA", - "disabledText": "#9ba0a3", + "disabledText": "#6C737C", "foreground": "#5B6168" }, "RadioButtonMenuItem": { @@ -512,11 +539,12 @@ "acceleratorSelectionForeground": "#292D31", "background": "#F7F8FA", "disabledBackground": "#F7F8FA", - "disabledForeground": "#9ba0a3", + "disabledForeground": "#6C737C", "foreground": "#5B6168", "selectionBackground": "#3A66D1", - "selectionForeground": "#FFFFFF" + "selectionForeground": "#111111" }, + "ScreenView.borderColor": "#DFE1E4", "ScrollBar": { "background": "#F7F8FA", "hoverThumbBorderColor": "#79CB60", @@ -553,7 +581,7 @@ }, "SearchEverywhere": { "Advertiser": { - "background": "#fafbfc", + "background": "#FFFFFF", "foreground": "#292D31" }, "Header": { @@ -565,7 +593,7 @@ }, "SearchField": { "background": "#F7F8FA", - "borderColor": "#fafbfc", + "borderColor": "#FFFFFF", "infoForeground": "#292D31" }, "Tab": { @@ -576,13 +604,22 @@ }, "SearchMatch": { "endBackground": "#79CB60", - "startBackground": "#79CB60" + "startBackground": "#79CB60", + "endColor": "#79CB60", + "startColor": "#79CB60" }, "SearchField.errorBackground": "#DFECFE", + "SearchOption": { + "selectedBackground": "#cce5ff" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#292D31", + "Repeated.File.Foreground": "#5B6168" + }, "Separator": { - "background": "#f3f3f3", - "foreground": "#f3f3f3", - "separatorColor": "#f3f3f3" + "background": "#F7F8FA", + "foreground": "#F7F8FA", + "separatorColor": "#F7F8FA" }, "SidePanel": { "background": "#F7F8FA" @@ -593,7 +630,7 @@ "buttonColor": "#79CB60", "foreground": "#5B6168", "majorTickLength": 6, - "tickColor": "#f3f3f3", + "tickColor": "#F7F8FA", "trackColor": "#cce5ff", "trackWidth": 7, "thumb": "#79CB60" @@ -614,17 +651,19 @@ "background": "#F7F8FA", "highlight": "#F7F8FA" }, - "SplitPaneDivider.draggingColor": "#f3f3f3", + "SplitPaneDivider.draggingColor": "#F7F8FA", "StatusBar": { - "borderColor": "#F7F8FA" + "borderColor": "#F7F8FA", + "hoverBackground": "#CCE5FF", + "LightEditBackground": "#cce5ff" }, "TabbedPane": { "background": "#F7F8FA", "contentAreaColor": "#CCE5FF", "contentBorderInsets": "3,1,1,1", "darkShadow": "#DFE1E4", - "disabledForeground": "#9ba0a3", - "disabledUnderlineColor": "#9ba0a3", + "disabledForeground": "#6C737C", + "disabledUnderlineColor": "#6C737C", "focus": "#cce5ff", "focusColor": "#cce5ff", "fontSizeOffset": 0, @@ -643,9 +682,11 @@ }, "TabbedPane.mt.tab.background": "#F7F8FA", "Table": { + "alternativeRowBackground": "#FFFFFF", "background": "#F7F8FA", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#6C737C", "dropLineColor": "#79CB60", "dropLineShortColor": "#79CB60", "focusCellBackground": "#cce5ff", @@ -653,27 +694,29 @@ "foreground": "#5B6168", "gridColor": "#F7F8FA", "highlightOuter": "#cce5ff", + "hoverBackground": "#3A66D170", + "hoverInactiveBackground": "#cce5ff", "lightSelectionForeground": "#111111", "lightSelectionInactiveForeground": "#292D31", - "lightSelectionInactiveBackground": "#f3f3f3", + "lightSelectionInactiveBackground": "#F7F8FA", "selectionBackground": "#cce5ff", "selectionForeground": "#111111", "selectionInactiveBackground": "#cce5ff", - "selectionInactiveForeground": "#FFFFFF", + "selectionInactiveForeground": "#111111", "sortIconColor": "#5B6168", - "stripeColor": "#fafbfc" + "stripeColor": "#FFFFFF" }, "TableHeader": { "background": "#F7F8FA", "borderColor": "#F7F8FA", - "bottomSeparatorColor": "#f3f3f3", + "bottomSeparatorColor": "#F7F8FA", "cellBorder": "4,0,4,0", - "disabledForeground": "#9ba0a3", + "disabledForeground": "#6C737C", "foreground": "#5B6168", "focusCellBackground": "#cce5ff", "focusCellForeground": "#111111", "height": 25, - "separatorColor": "#f3f3f3" + "separatorColor": "#F7F8FA" }, "text": "#292D31", "textInactiveText": "#292D31", @@ -682,7 +725,7 @@ "background": "#F7F8FA", "caretForeground": "#79CB60", "foreground": "#5B6168", - "inactiveForeground": "#9ba0a3", + "inactiveForeground": "#6C737C", "selectionBackground": "#cce5ff", "selectionForeground": "#111111" }, @@ -690,7 +733,7 @@ "background": "#F7F8FA", "caretForeground": "#79CB60", "foreground": "#5B6168", - "inactiveForeground": "#9ba0a3", + "inactiveForeground": "#6C737C", "selectionBackground": "#cce5ff", "selectionForeground": "#111111" }, @@ -698,12 +741,12 @@ "background": "#F7F8FA", "caretForeground": "#79CB60", "foreground": "#5B6168", - "inactiveForeground": "#9ba0a3", + "inactiveForeground": "#6C737C", "selectionBackground": "#cce5ff", "selectionForeground": "#111111" }, "TitlePane": { - "background": "#fafbfc", + "background": "#FFFFFF", "Button.hoverBackground": "#CCE5FF", "inactiveBackground": "#F7F8FA", "infoForeground": "#292D31", @@ -711,9 +754,9 @@ }, "TitledBorder.titleColor": "#5B6168", "ToggleButton": { - "borderColor": "#edf1f5", + "borderColor": "#F1F3F6", "buttonColor": "#5B6168", - "disabledText": "#9ba0a3", + "disabledText": "#6C737C", "foreground": "#5B6168", "offForeground": "#F7F8FA", "offBackground": "#F7F8FA", @@ -729,8 +772,8 @@ "ToolTip": { "Actions.background": "#F7F8FA", "Actions.infoForeground": "#292D31", - "background": "#F7F8FA", - "borderColor": "#CCE5FF", + "background": "#DFECFE", + "borderColor": "#DFE1E4", "foreground": "#5B6168", "infoForeground": "#292D31", "separatorColor": "#DFE1E4", @@ -740,61 +783,104 @@ "Button": { "hoverBackground": "#cce5ff", "selectedForeground": "#111111", - "selectedBackground": "#fafbfc" + "selectedBackground": "#FFFFFF" }, "Header": { "background": "#F7F8FA", - "borderColor": "#f3f3f3", + "borderColor": "#F7F8FA", "inactiveBackground": "#F7F8FA" }, "HeaderCloseButton": { "background": "#F7F8FA" }, "HeaderTab": { + "borderColor": "#CCE5FF", "hoverBackground": "#CCE5FF", - "hoverInactiveBackground": "#f3f3f3", + "hoverInactiveBackground": "#CCE5FF", "inactiveUnderlineColor": "#79CB60", - "selectedBackground": "#fafbfc", - "selectedInactiveBackground": "#fafbfc", + "selectedBackground": "#FFFFFF", + "selectedInactiveBackground": "#FFFFFF", "underlineColor": "#79CB60", - "underlinedTabBackground": "#CCE5FF", - "underlinedTabInactiveBackground": "#f3f3f3" + "underlinedTabBackground": "#cce5ff", + "underlinedTabInactiveBackground": "#F7F8FA", + "underlinedTabForeground": "#111111", + "underlinedTabInactiveForeground": "#5B6168" } }, "Tree": { "background": "#F7F8FA", "foreground": "#292D31", "hash": "#DFE1E4", + "hoverBackground": "#3A66D170", + "hoverInactiveBackground": "#cce5ff", "modifiedItemForeground": "#79CB60", "rowHeight": 28, - "selectionBackground": "#3A66D1", - "selectionForeground": "#FFFFFF", - "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#3A66D1", + "selectionBackground": "#3A66D170", + "selectionForeground": "#111111", + "selectionInactiveForeground": "#111111", + "selectionInactiveBackground": "#3A66D170", "textBackground": "#F7F8FA" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { + "UIDesigner": { "Activity.borderColor": "#DFE1E4", - "ColorPicker.background": "#F7F8FA", - "ColorPicker.foreground": "#5B6168", - "Component.borderColor": "#DFE1E4", - "Component.background": "#F7F8FA", - "Component.foreground": "#5B6168", - "Connector.borderColor": "#DFE1E4", - "Connector.hoverBorderColor": "#CCE5FF", - "Canvas.background": "#fafbfc", + "Canvas.background": "#FFFFFF", + "ColorPicker": { + "background": "#F7F8FA", + "foreground": "#5B6168" + }, + "Component": { + "borderColor": "#DFE1E4", + "background": "#F7F8FA", + "foreground": "#5B6168", + "hoverBorderColor": "#CCE5FF" + }, + "Connector": { + "borderColor": "#DFE1E4", + "hoverBorderColor": "#CCE5FF" + }, + "Canvas.background": "#FFFFFF", "highStroke.foreground": "#5B6168", "Label.foreground": "#292D31", - "List.selectionBackground": "#3A66D1", - "Panel.borderColor": "#DFE1E4", - "Panel.background": "#F7F8FA", + "List.selectionBackground": "#3A66D170", + "motion": { + "borderColor": "#DFE1E4", + "Component.foreground": "#5B6168", + "ConstraintSetText.foreground": "#292D31", + "ConstraintSet.background": "#F7F8FA", + "CSPanel.SelectedFocusBackground": "#3A66D1", + "CSPanel.SelectedBackground": "#3A66D170", + "cs_FocusText.infoForeground": "#292D31", + "CursorTextColor.foreground": "#5B6168", + "HoverColor.disabledBackground": "#6C737C", + "motionGraph.background": "#F7F8FA", + "Notification.background": "#DFECFE", + "ourAvg.background": "#F7F8FA", + "ourCS.background": "#F7F8FA", + "ourCS_Border.borderColor": "#DFE1E4", + "ourCS_TextColor.foreground": "#292D31", + "ourCS_SelectedFocusBackground.selectionForeground": "#111111", + "ourCS_SelectedBackground.selectionInactiveBackground": "#cce5ff", + "ourCS_SelectedBorder.pressedBorderColor": "#CCE5FF", + "ourML_BarColor.separatorColor": "#DFE1E4", + "PrimaryPanel.background": "#FFFFFF", + "SecondaryPanel.background": "#F7F8FA", + "SecondaryPanel.header.foreground": "#292D31", + "SecondaryPanel.header.background": "#FFFFFF", + "timeLine.disabledBorderColor": "#DFE1E4" + }, + "Panel": { + "borderColor": "#DFE1E4", + "background": "#F7F8FA" + }, "percent.foreground": "#5B6168", - "Placeholder.background": "#F7F8FA", - "Placeholder.borderColor": "#DFE1E4", - "Placeholder.foreground": "#5B6168", - "Placeholder.selectedForeground": "#FFFFFF", + "Placeholder": { + "background": "#F7F8FA", + "borderColor": "#DFE1E4", + "foreground": "#5B6168", + "selectedForeground": "#111111" + }, "Preview.background": "#F7F8FA", "stroke.acceleratorForeground": "#292D31" }, @@ -820,7 +906,7 @@ "HgLog": { "branchIconColor": "#79CB60", "bookmarkIconColor": "#111111", - "closedBranchIconColor": "#9ba0a3", + "closedBranchIconColor": "#6C737C", "localTagIconColor": "#292D31", "mqTagIconColor": "#292D31", "tagIconColor": "#292D31", @@ -828,7 +914,8 @@ }, "Log": { "Commit.unmatchedForeground": "#292D31", - "Commit.currentBranchBackground": "#f3f3f3" + "Commit.currentBranchBackground": "#F7F8FA", + "Commit.hoveredBackground": "#3A66D170" }, "RefLabel": { "foreground": "#111111", @@ -840,19 +927,25 @@ "foreground": "#5B6168" }, "WelcomeScreen": { + "AssociatedComponent.background": "#F7F8FA", "background": "#F7F8FA", "borderColor": "#F7F8FA", - "captionBackground": "#fafbfc", + "captionBackground": "#FFFFFF", "captionForeground": "#5B6168", - "footerBackground": "#fafbfc", + "Details.background": "#F7F8FA", + "footerBackground": "#FFFFFF", "footerForeground": "#5B6168", "headerBackground": "#F7F8FA", "headerForeground": "#5B6168", + "List.background": "#FFFFFF", "separatorColor": "#DFE1E4", + "SidePanel.background": "#F7F8FA", "Projects": { - "background": "#f3f3f3", + "actions.background": "#FFFFFF", + "actions.selectionBackground": "#CCE5FF", + "background": "#F7F8FA", "selectionBackground": "#3A66D1", - "selectionInactiveBackground": "#f3f3f3" + "selectionInactiveBackground": "#F7F8FA" } }, "window": "#F7F8FA", @@ -862,14 +955,14 @@ }, "icons": { "ColorPalette": { - "#43494A": "#fafbfc", + "#43494A": "#FFFFFF", "#6B6B6B": "#292D31", "#A7A7A7": "#F7F8FA", "#3D6185": "#79CB60", "#466D94": "#79CB60", "#3C3F41": "#F7F8FA", - "#545556": "#9ba0a3", - "#606060": "#9ba0a3", + "#545556": "#6C737C", + "#606060": "#6C737C", "#9AA7B0": "#5B6168", "#675133": "#79CB60", "Actions.Blue": "#6F42C1", @@ -879,20 +972,20 @@ "Actions.GreyInline.Dark": "#5B6168", "Actions.Red": "#22863A", "Actions.Yellow": "#6F42C1", - "Checkbox.Background.Default": "#fafbfc", - "Checkbox.Background.Default.Dark": "#fafbfc", - "Checkbox.Background.Disabled": "#dcdcdc", - "Checkbox.Background.Disabled.Dark": "#dcdcdc", + "Checkbox.Background.Default": "#FFFFFF", + "Checkbox.Background.Default.Dark": "#FFFFFF", + "Checkbox.Background.Disabled": "#FDFDFD", + "Checkbox.Background.Disabled.Dark": "#FDFDFD", "Checkbox.Border.Default": "#DFE1E4", "Checkbox.Border.Default.Dark": "#DFE1E4", - "Checkbox.Border.Disabled": "#9ba0a3", - "Checkbox.Border.Disabled.Dark": "#9ba0a3", + "Checkbox.Border.Disabled": "#6C737C", + "Checkbox.Border.Disabled.Dark": "#6C737C", "Checkbox.Focus.Thin.Default": "#79CB60", "Checkbox.Focus.Thin.Default.Dark": "#79CB60", "Checkbox.Focus.Wide": "#79CB60", "Checkbox.Focus.Wide.Dark": "#79CB60", - "Checkbox.Foreground.Disabled": "#9ba0a3", - "Checkbox.Foreground.Disabled.Dark": "#9ba0a3", + "Checkbox.Foreground.Disabled": "#6C737C", + "Checkbox.Foreground.Disabled.Dark": "#6C737C", "Checkbox.Background.Selected": "#79CB60", "Checkbox.Background.Selected.Dark": "#F7F8FA", "Checkbox.Border.Selected": "#79CB60", diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Light Owl Contrast.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Light Owl Contrast.theme.json index ef88efdd..259186d4 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Light Owl Contrast.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Light Owl Contrast.theme.json @@ -3,225 +3,247 @@ "dark": false, "author": "Mallowigi", "editorScheme": "/colors/Light Owl.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/lightowl.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { - "acceleratorSelectionForeground": "#90A7B2", - "background": "#F0F0F0", - "borderColor": "#d9d9d9", - "disabledBackground": "#E0E7EA", - "disabledForeground": "#93A1A1", - "disabledText": "#93A1A1", - "focusColor": "#CCCCCC", - "focusedBorderColor": "#2AA298", - "foreground": "#403f53", - "inactiveBackground": "#E0E7EA", - "inactiveForeground": "#90A7B2", - "infoForeground": "#90A7B2", - "selectionBackground": "#d3e8f8", - "selectionBackgroundInactive": "#FBFBFB", + "acceleratorSelectionForeground": "#403F53", + "background": "#FAFAFA", + "borderColor": "#efefef", + "disabledBackground": "#82AAFF", + "disabledForeground": "#dddddd", + "disabledText": "#dddddd", + "focusColor": "#E0E7EA", + "focusedBorderColor": "#269386", + "foreground": "#546e7a", + "inactiveBackground": "#82AAFF", + "inactiveForeground": "#403F53", + "infoForeground": "#403F53", + "selectionBackground": "#999e9e", + "selectionBackgroundInactive": "#f2f5f7", "selectionForeground": "#403f53", - "selectionInactiveBackground": "#FBFBFB", - "separatorColor": "#d9d9d9" + "selectionInactiveBackground": "#f2f5f7", + "separatorColor": "#efefef" }, - "activeCaption": "#F0F0F0", + "activeCaption": "#FAFAFA", "ActionButton": { - "hoverBackground": "#2AA29850", - "hoverBorderColor": "#2AA29850", - "hoverSeparatorColor": "#d9d9d9", - "focusedBorderColor": "#2AA29850", - "pressedBackground": "#2AA29850", - "pressedBorderColor": "#2AA29850" + "hoverBackground": "#26938650", + "hoverBorderColor": "#26938650", + "hoverSeparatorColor": "#FAFAFA", + "focusedBorderColor": "#26938650", + "pressedBackground": "#26938650", + "pressedBorderColor": "#26938650" }, "Autocomplete": { - "selectionBackground": "#d3e8f8" + "selectionBackground": "#999e9e" }, - "Borders.ContrastBorderColor": "#F0F0F0", - "Borders.color": "#d9d9d9", + "Borders.ContrastBorderColor": "#FAFAFA", + "Borders.color": "#efefef", "Button": { "arc": 0, - "background": "#F0F0F0", + "background": "#FAFAFA", "default": { - "endBackground": "#d3e8f8", - "endBorderColor": "#d3e8f8", + "endBackground": "#FAFAFA", + "endBorderColor": "#FAFAFA", "foreground": "#333333", - "focusColor": "#2AA298", - "focusedBorderColor": "#2AA298", - "shadowColor": "#d3e8f8", - "startBackground": "#d3e8f8", - "startBorderColor": "#d3e8f8" + "focusColor": "#269386", + "focusedBorderColor": "#269386", + "shadowColor": "#FAFAFA", + "startBackground": "#FAFAFA", + "startBorderColor": "#FAFAFA" }, - "disabledBorderColor": "#d9d9d9", - "disabledText": "#93A1A1", - "endBackground": "#d9d9d9", - "endBorderColor": "#d9d9d9", - "focus": "#CCCCCC", - "focusedBorderColor": "#2AA298", - "foreground": "#90A7B2", + "disabledBorderColor": "#FAFAFA", + "disabledText": "#dddddd", + "endBackground": "#FAFAFA", + "endBorderColor": "#FAFAFA", + "focus": "#E0E7EA", + "focusedBorderColor": "#269386", + "foreground": "#403F53", "highlight": "#403f53", - "mt.background": "#d9d9d9", - "mt.foreground": "#90A7B2", + "mt.background": "#FAFAFA", + "mt.foreground": "#403F53", "mt.selectedForeground": "#403f53", - "mt.selection.color1": "#d3e8f8", - "mt.selection.color2": "#d3e8f8", - "startBackground": "#d9d9d9", - "startBorderColor": "#d9d9d9", - "shadowColor": "#d9d9d9", + "mt.selection.color1": "#FAFAFA", + "mt.selection.color2": "#FAFAFA", + "startBackground": "#FAFAFA", + "startBorderColor": "#FAFAFA", + "shadowColor": "#FAFAFA", "shadowWidth": 0 }, "Canvas": { - "Tooltip.borderColor": "#d9d9d9", + "Tooltip.borderColor": "#efefef", "Tooltip.background": "#F0F0F0" }, - "Content.background": "#f0f0f0", + "Content": { + "background": "#FAFAFA", + "selectionBackground": "#999e9e" + }, "CheckBox": { - "background": "#F0F0F0", - "disabledText": "#93A1A1", - "foreground": "#403f53", - "select": "#2AA298" + "background": "#FAFAFA", + "disabledText": "#dddddd", + "foreground": "#546e7a", + "select": "#269386" }, "CheckBoxMenuItem": { - "acceleratorForeground": "#90A7B2", - "acceleratorSelectionForeground": "#90A7B2", - "background": "#F0F0F0", - "disabledBackground": "#F0F0F0", - "disabledForeground": "#93A1A1", - "foreground": "#403f53", - "selectionBackground": "#d3e8f8", + "acceleratorForeground": "#403F53", + "acceleratorSelectionForeground": "#403F53", + "background": "#FAFAFA", + "disabledBackground": "#FAFAFA", + "disabledForeground": "#dddddd", + "foreground": "#546e7a", + "selectionBackground": "#999e9e", "selectionForeground": "#333333" }, + "CodeWithMe": { + "Avatar.foreground": "#546e7a", + "AccessEnabled": { + "accessDot": "#269386", + "dropdownBorder": "#f2f5f7", + "pillBackground": "$second" + } + }, "ColorChooser": { - "background": "#F0F0F0", - "foreground": "#403f53", - "swatchesDefaultRecentColor": "#403f53" + "background": "#FAFAFA", + "foreground": "#546e7a", + "swatchesDefaultRecentColor": "#546e7a" }, - "ComboBoxButton.background": "#d9d9d9", + "ComboBoxButton.background": "#FAFAFA", "ComboBox": { "ArrowButton": { - "background": "#d9d9d9", - "disabledIconColor": "#93A1A1", - "iconColor": "#403f53", - "nonEditableBackground": "#F0F0F0" + "background": "#FAFAFA", + "disabledIconColor": "#dddddd", + "iconColor": "#546e7a", + "nonEditableBackground": "#FAFAFA" }, - "background": "#f0f0f0", - "buttonBackground": "#d9d9d9", - "disabledForeground": "#93A1A1", - "foreground": "#403f53", - "modifiedItemForeground": "#2AA298", - "nonEditableBackground": "#FBFBFB", + "background": "#FAFAFA", + "buttonBackground": "#FAFAFA", + "darcula.hoveredArrowButtonForeground": "#269386", + "disabledForeground": "#dddddd", + "foreground": "#546e7a", + "modifiedItemForeground": "#269386", + "nonEditableBackground": "#f2f5f7", "padding": "5,5,5,5", - "selectionBackground": "#d3e8f8", + "selectionBackground": "#FAFAFA", "selectionForeground": "#333333" }, - "ComboPopup.border": "#d9d9d9", + "ComboPopup.border": "#efefef", "CompletionPopup": { - "background": "#FBFBFB", - "foreground": "#403f53", - "infoForeground": "#90A7B2", - "matchForeground": "#2AA298", - "matchSelectionForeground": "#2AA298", + "background": "#f2f5f7", + "foreground": "#546e7a", + "infoForeground": "#403F53", + "matchForeground": "#269386", + "matchSelectionForeground": "#269386", "nonFocusedState": "false", "selectedGrayedForeground": "#403f53", "selectionGrayForeground": "#403f53", - "selectionInactiveInfoForeground": "#90A7B2", - "selectionInactiveBackground": "#d3e8f850", - "selectionBackground": "#d3e8f880", + "selectionInactiveInfoForeground": "#403F53", + "selectionInactiveBackground": "#999e9e50", + "selectionBackground": "#999e9e80", "selectionForeground": "#403f53", "selectionInfoForeground": "#403f53" }, "Component": { "arc": 4, - "borderColor": "#CCCCCC", - "disabledBorderColor": "#d9d9d9", - "focusColor": "#2AA298", - "focusedBorderColor": "#2AA298", - "hoverIconColor": "#2AA298", - "infoForeground": "#90A7B2", - "iconColor": "#403f53" + "borderColor": "#E0E7EA", + "disabledBorderColor": "#FAFAFA", + "focusColor": "#269386", + "focusedBorderColor": "#269386", + "hoverIconColor": "#269386", + "infoForeground": "#403F53", + "iconColor": "#546e7a" }, - "control": "#F0F0F0", - "controlText": "#90A7B2", + "control": "#FAFAFA", + "controlText": "#403F53", "Counter": { - "background": "#2AA298", + "background": "#269386", "foreground": "#403f53" }, "Debugger": { "Variables": { - "collectingDataForeground": "#90A7B2", - "changedValueForeground": "#2AA298", + "collectingDataForeground": "#403F53", + "changedValueForeground": "#269386", "errorMessageForeground": "#994cc3", - "evaluatingExpressionForeground": "#90A7B2", + "evaluatingExpressionForeground": "#403F53", "exceptionForeground": "#4876d6", - "modifyingValueForeground": "#2AA298", - "valueForeground": "#2AA298" + "modifyingValueForeground": "#269386", + "valueForeground": "#269386" } }, "DebuggerTabs": { - "selectedBackground": "#CCCCCC", - "underlinedTabBackground": "#CCCCCC" + "selectedBackground": "#E0E7EA", + "underlinedTabBackground": "#E0E7EA" }, "DebuggerPopup": { - "borderColor": "#CCCCCC" + "borderColor": "#E0E7EA" }, "DefaultTabs": { - "background": "#F0F0F0", - "borderColor": "#F0F0F0", - "hoverBackground": "#d3e8f8", - "hoverColor": "#f0f0f0", - "hoverMaskColor": "#CCCCCC", - "inactiveColoredFileBackground": "#d9d9d9", - "inactiveUnderlineColor": "#93A1A1", - "inactiveMaskColor": "#f0f0f0", - "underlineColor": "#2AA298", - "underlinedTabBackground": "#d3e8f8" + "background": "#FAFAFA", + "borderColor": "#FAFAFA", + "hoverBackground": "#FAFAFA", + "hoverColor": "#FAFAFA", + "hoverMaskColor": "#E0E7EA", + "inactiveColoredTabBackground": "#FAFAFA", + "inactiveColoredFileBackground": "#FAFAFA", + "inactiveUnderlineColor": "#269386", + "inactiveMaskColor": "#FAFAFA", + "underlineColor": "#269386", + "underlinedTabBackground": "#FAFAFA", + "underlinedTabForeground": "#403f53" }, - "Desktop.background": "#F0F0F0", - "DialogWrapper.southPanelBackground": "#F0F0F0", - "DialogWrapper.southPanelDivider": "#F0F0F0", + "Desktop.background": "#FAFAFA", + "DialogWrapper.southPanelBackground": "#FAFAFA", + "DialogWrapper.southPanelDivider": "#FAFAFA", "DragAndDrop": { - "areaBackground": "#F0F0F0", - "areaBorderColor": "#F0F0F0", - "areaForeground": "#403f53" + "areaBackground": "#FAFAFA", + "areaBorderColor": "#FAFAFA", + "areaForeground": "#546e7a" }, "Editor": { - "background": "#f0f0f0", - "foreground": "#403f53", - "shortcutForeground": "#90A7B2" + "background": "#FAFAFA", + "foreground": "#546e7a", + "shortcutForeground": "#403F53" }, "EditorPane": { - "background": "#f0f0f0", - "caretForeground": "#2AA298", - "foreground": "#403f53", - "inactiveBackground": "#F0F0F0", - "inactiveForeground": "#93A1A1", - "selectionBackground": "#d3e8f8", + "background": "#FAFAFA", + "caretForeground": "#269386", + "foreground": "#546e7a", + "inactiveBackground": "#FAFAFA", + "inactiveForeground": "#dddddd", + "selectionBackground": "#999e9e", "selectionForeground": "#333333" }, "EditorTabs": { - "borderColor": "#FBFBFB", - "hoverColor": "#CCCCCC", - "hoverMaskColor": "#CCCCCC", - "inactiveMaskColor": "#F0F0F0", - "inactiveColoredFileBackground": "#F0F0F02", - "inactiveUnderlineColor": "#93A1A1", - "selectedForeground": "#403f53", - "selectedBackground": "#d3e8f8", - "underlineColor": "#2AA298", - "underlinedTabBackground": "#d3e8f8" + "borderColor": "#f2f5f7", + "hoverBackground": "#E0E7EA", + "hoverColor": "#E0E7EA", + "hoverMaskColor": "#E0E7EA", + "inactiveMaskColor": "#FAFAFA", + "inactiveColoredFileBackground": "#FAFAFA", + "inactiveUnderlineColor": "#dddddd", + "selectedForeground": "#546e7a", + "selectedBackground": "#FAFAFA", + "underlineColor": "#269386", + "underlinedTabBackground": "#FAFAFA", + "underlinedTabForeground": "#403f53" }, "EditorGroupsTabs": { - "background": "#F0F0F0", - "borderColor": "#FBFBFB", - "hoverBackground": "#CCCCCC", - "hoverColor": "#CCCCCC", - "inactiveUnderlineColor": "#2AA298", - "underlineColor": "#2AA298", - "underlinedTabBackground": "#d3e8f8", - "underlinedTabForeground": "#403f53" + "background": "#FAFAFA", + "borderColor": "#f2f5f7", + "hoverBackground": "#E0E7EA", + "hoverColor": "#E0E7EA", + "inactiveUnderlineColor": "#269386", + "underlineColor": "#269386", + "underlinedTabBackground": "#FAFAFA", + "underlinedTabForeground": "#546e7a" }, "FileColor": { "Green": "#387002", "Blue": "#004BA0", - "Yellow": "#E0E7EA", + "Yellow": "#82AAFF", "Orange": "#B53D00", "Violet": "#4D2C91", "Rose": "#A00037" @@ -236,151 +258,155 @@ "nativeSearchNotMatchedBackground": "#C792EA", "nativeFocusSearchNotMatchedBackground": "#BB80B3" }, - "Focus.color": "#d9d9d9", + "Focus.color": "#efefef", "FormattedTextField": { - "background": "#f0f0f0", - "caretForeground": "#2AA298", - "foreground": "#403f53", - "inactiveBackground": "#d9d9d9", - "inactiveForeground": "#93A1A1", + "background": "#FAFAFA", + "caretForeground": "#269386", + "foreground": "#546e7a", + "inactiveBackground": "#FAFAFA", + "inactiveForeground": "#dddddd", "selectionForeground": "#333333", - "selectionBackground": "#d3e8f8" + "selectionBackground": "#FAFAFA" }, + "GotItTooltip.borderColor": "#F0F0F0", "Group": { - "disabledSeparatorColor": "#d9d9d9", - "separatorColor": "#d9d9d9" + "disabledSeparatorColor": "#efefef", + "separatorColor": "#efefef" }, "GutterTooltip": { - "infoForeground": "#403f53", - "lineSeparatorColor": "#F0F0F0" + "infoForeground": "#403F53", + "lineSeparatorColor": "#FAFAFA" }, "HeaderColor": { - "active": "#F0F0F0", - "inactive": "#f0f0f0" + "active": "#FAFAFA", + "inactive": "#FAFAFA" }, "HelpTooltip": { - "background": "#F0F0F0", - "borderColor": "#d9d9d9", - "foreground": "#403f53", - "infoForeground": "#90A7B2", - "shortcutForeground": "#90A7B2" + "background": "#FAFAFA", + "borderColor": "#efefef", + "foreground": "#546e7a", + "infoForeground": "#403F53", + "shortcutForeground": "#403F53" }, - "Hyperlink.linkColor": "#2AA298", - "inactiveCaption": "#FBFBFB", - "inactiveCaptionBorder": "#F0F0F0", - "inactiveCaptionText": "#90A7B2", - "info": "#90A7B2", - "infoText": "#90A7B2", + "Hyperlink.linkColor": "#269386", + "inactiveCaption": "#f2f5f7", + "inactiveCaptionBorder": "#FAFAFA", + "inactiveCaptionText": "#403F53", + "info": "#403F53", + "infoText": "#403F53", "IdeStatusBar.border": "4,4,4,4", - "InformationHint.borderColor": "#d9d9d9", + "InformationHint.borderColor": "#efefef", "InplaceRefactoringPopup": { - "borderColor": "#F0F0F0" + "borderColor": "#FAFAFA" }, "InternalFrame": { - "activeTitleForeground": "#403f53", - "background": "#F0F0F0", - "inactiveTitleForeground": "#90A7B2" + "activeTitleForeground": "#546e7a", + "background": "#FAFAFA", + "inactiveTitleForeground": "#403F53" }, "Label": { - "background": "#F0F0F0", - "disabledForeground": "#93A1A1", - "disabledShadow": "#F0F0F0", - "disabledText": "#93A1A1", - "foreground": "#403f53", - "infoForeground": "#90A7B2", - "selectedForeground": "#333333" + "background": "#FAFAFA", + "disabledForeground": "#dddddd", + "disabledShadow": "#FAFAFA", + "disabledText": "#dddddd", + "foreground": "#546e7a", + "infoForeground": "#403F53", + "selectedForeground": "#333333", + "selectedDisabledForeground": "#546e7a" }, "Link": { - "activeForeground": "#2AA298", - "hoverForeground": "#2AA298", - "pressedForeground": "#2AA298", - "secondaryForeground": "#90A7B2", - "visitedForeground": "#2AA298" + "activeForeground": "#269386", + "hoverForeground": "#269386", + "pressedForeground": "#269386", + "secondaryForeground": "#403F53", + "visitedForeground": "#269386" }, - "link.foreground": "#2AA298", + "link.foreground": "#269386", "List": { - "background": "#FBFBFB", - "foreground": "#403f53", - "selectionBackground": "#d3e8f850", + "background": "#f2f5f7", + "foreground": "#546e7a", + "hoverBackground": "#E0E7EA70", + "hoverInactiveBackground": "#FAFAFA", + "selectionBackground": "#999e9e50", "selectionForeground": "#403f53", "selectionInactiveForeground": "#333333", - "selectionInactiveBackground": "#d3e8f87c" + "selectionInactiveBackground": "#E0E7EA70" }, "material": { - "background": "#F0F0F0", - "branchColor": "#403f53", - "contrast": "#f0f0f0", - "foreground": "#403f53", - "mergeCommits": "#d9d9d9", - "primaryColor": "#90A7B2", + "background": "#FAFAFA", + "branchColor": "#546e7a", + "contrast": "#FAFAFA", + "foreground": "#546e7a", + "mergeCommits": "#FAFAFA", + "primaryColor": "#403F53", "selectionForeground": "#403f53", - "tab.backgroundColor": "#F0F0F0", - "tab.borderColor": "#2AA298", - "tagColor": "#90A7B2" + "tab.backgroundColor": "#FAFAFA", + "tab.borderColor": "#269386", + "tagColor": "#403F53" }, "MemoryIndicator": { - "allocatedBackground": "#FBFBFB", - "usedColor": "#CCCCCC", - "usedBackground": "#CCCCCC" + "allocatedBackground": "#f2f5f7", + "usedColor": "#E0E7EA", + "usedBackground": "#E0E7EA" }, "Menu": { - "acceleratorForeground": "#90A7B2", + "acceleratorForeground": "#403F53", "acceleratorSelectionForeground": "#403f53", - "background": "#F0F0F0", + "background": "#FAFAFA", "border": "4,2,4,2", - "borderColor": "#FBFBFB", - "disabledBackground": "#FBFBFB", - "disabledForeground": "#93A1A1", - "foreground": "#403f53", - "selectionBackground": "#d3e8f8", + "borderColor": "#f2f5f7", + "disabledBackground": "#f2f5f7", + "disabledForeground": "#dddddd", + "foreground": "#546e7a", + "selectionBackground": "#999e9e", "selectionForeground": "#403f53", - "separatorColor": "#d9d9d9" + "separatorColor": "#efefef" }, "MenuBar": { - "background": "#f0f0f0", - "borderColor": "#F0F0F0", - "disabledBackground": "#F0F0F0", - "disabledForeground": "#93A1A1", - "foreground": "#403f53", - "highlight": "#F0F0F0", - "selectionBackground": "#d3e8f8", + "background": "#FAFAFA", + "borderColor": "#FAFAFA", + "disabledBackground": "#FAFAFA", + "disabledForeground": "#dddddd", + "foreground": "#546e7a", + "highlight": "#FAFAFA", + "selectionBackground": "#999e9e", "selectionForeground": "#403f53", - "shadow": "#f0f0f0" + "shadow": "#FAFAFA" }, "MenuItem": { - "acceleratorForeground": "#90A7B2", + "acceleratorForeground": "#403F53", "acceleratorSelectionForeground": "#403f53", "border": "4,2,4,2", - "background": "#F0F0F0", - "disabledBackground": "#F0F0F0", - "disabledForeground": "#93A1A1", - "foreground": "#403f53", - "selectionBackground": "#d3e8f8", + "background": "#FAFAFA", + "disabledBackground": "#FAFAFA", + "disabledForeground": "#dddddd", + "foreground": "#546e7a", + "selectionBackground": "#999e9e", "selectionForeground": "#403f53" }, "NavBar": { - "arrowColor": "#403f53", - "borderColor": "#F0F0F0" + "arrowColor": "#546e7a", + "borderColor": "#FAFAFA" }, "NewClass": { "Panel": { - "background": "#F0F0F0" + "background": "#FAFAFA" }, "SearchField": { - "background": "#f0f0f0" + "background": "#FAFAFA" } }, - "NewPSD.warning": "#2AA298", + "NewPSD.warning": "#269386", "Notification": { "background": "#F0F0F0", "borderColor": "#F0F0F0", "errorBackground": "#F0F0F0", "errorBorderColor": "#F0F0F0", - "foreground": "#403f53", + "foreground": "#546e7a", "MoreButton": { - "background": "#d9d9d9", - "foreground": "#403f53", - "innerBorderColor": "#d9d9d9" + "background": "#FAFAFA", + "foreground": "#546e7a", + "innerBorderColor": "#FAFAFA" }, "ToolWindow": { "errorBackground": "#F0F0F0", @@ -391,246 +417,259 @@ "warningBorderColor": "#F0F0F0" } }, - "OnePixelDivider.background": "#d9d9d9", + "OnePixelDivider.background": "#efefef", "OptionPane": { - "background": "#F0F0F0", - "foreground": "#403f53", - "messageForeground": "#403f53" + "background": "#FAFAFA", + "foreground": "#546e7a", + "messageForeground": "#546e7a" }, "Outline": { - "color": "#d9d9d9", - "focusedColor": "#2AA298", - "disabledColor": "#93A1A1" + "color": "#FAFAFA", + "focusedColor": "#269386", + "disabledColor": "#dddddd" }, "Panel": { - "background": "#F0F0F0", - "foreground": "#403f53" + "background": "#FAFAFA", + "foreground": "#546e7a" }, "ParameterInfo": { - "background": "#FBFBFB", - "borderColor": "#d3e8f8", - "currentOverloadBackground": "#d3e8f8", - "currentParameterForeground": "#2AA298", - "disabledForeground": "#93A1A1", - "foreground": "#403f53", - "infoForeground": "#90A7B2", - "lineSeparatorColor": "#d3e8f8" + "background": "#f2f5f7", + "borderColor": "#FAFAFA", + "currentOverloadBackground": "#E0E7EA", + "currentParameterForeground": "#269386", + "disabledForeground": "#dddddd", + "foreground": "#546e7a", + "infoForeground": "#403F53", + "lineSeparatorColor": "#FAFAFA" }, "PasswordField": { - "background": "#f0f0f0", - "capsLockIconColor": "#2AA298", - "caretForeground": "#2AA298", - "foreground": "#403f53", - "inactiveForeground": "#93A1A1", - "selectionBackground": "#d3e8f8", + "background": "#FAFAFA", + "capsLockIconColor": "#269386", + "caretForeground": "#269386", + "foreground": "#546e7a", + "inactiveForeground": "#dddddd", + "selectionBackground": "#FAFAFA", "selectionForeground": "#333333" }, "Plugins": { - "background": "#F0F0F0", - "disabledForeground": "#93A1A1", - "eapTagBackground": "#CCCCCC", - "lightSelectionBackground": "#d3e8f8", - "paidTagBackground": "#CCCCCC", - "selectionBackground": "#d3e8f8", - "tagForeground": "#2AA298", - "tagBackground": "#CCCCCC", - "trialTagBackground": "#CCCCCC", + "background": "#FAFAFA", + "disabledForeground": "#dddddd", + "eapTagBackground": "#E0E7EA", + "hoverBackground": "#E0E7EA70", + "lightSelectionBackground": "#FAFAFA", + "paidTagBackground": "#E0E7EA", + "selectionBackground": "#999e9e", + "tagForeground": "#269386", + "tagBackground": "#E0E7EA", + "trialTagBackground": "#E0E7EA", "Button": { - "installBackground": "#d9d9d9", - "installBorderColor": "#d9d9d9", - "installForeground": "#403f53", - "installFocusedBackground": "#CCCCCC", - "installFillForeground": "#93A1A1", - "installFillBackground": "#d9d9d9", - "updateBackground": "#d9d9d9", - "updateBorderColor": "#d9d9d9", - "updateForeground": "#403f53" + "installBackground": "#FAFAFA", + "installBorderColor": "#FAFAFA", + "installForeground": "#546e7a", + "installFocusedBackground": "#E0E7EA", + "installFillForeground": "#dddddd", + "installFillBackground": "#FAFAFA", + "updateBackground": "#269386", + "updateBorderColor": "#FAFAFA", + "updateForeground": "#546e7a" }, "SearchField": { - "background": "#f0f0f0", - "borderColor": "#d9d9d9" + "background": "#FAFAFA", + "borderColor": "#efefef" }, "SectionHeader": { - "background": "#FBFBFB", - "foreground": "#403f53" + "background": "#f2f5f7", + "foreground": "#546e7a" }, "Tab": { - "hoverBackground": "#d3e8f8", + "hoverBackground": "#FAFAFA", "selectedForeground": "#403f53", - "selectedBackground": "#d3e8f8" + "selectedBackground": "#FAFAFA" } }, "Popup": { "Advertiser": { - "background": "#F0F0F0", - "borderColor": "#F0F0F0", - "foreground": "#2AA298" + "background": "#FAFAFA", + "borderColor": "#FAFAFA", + "foreground": "#269386" }, - "borderColor": "#f0f0f0", - "inactiveBorderColor": "#F0F0F0", - "innerBorderColor": "#FBFBFB", + "borderColor": "#FAFAFA", + "inactiveBorderColor": "#FAFAFA", + "innerBorderColor": "#f2f5f7", "Header": { - "activeBackground": "#F0F0F0", - "inactiveBackground": "#f0f0f0" + "activeBackground": "#FAFAFA", + "inactiveBackground": "#FAFAFA" }, "paintBorder": true, - "separatorForeground": "#403f53", - "separatorColor": "#FBFBFB", + "separatorForeground": "#546e7a", + "separatorColor": "#f2f5f7", "Toolbar": { - "Floating.background": "#f0f0f0", - "background": "#f0f0f0", - "borderColor": "#f0f0f0" + "Floating.background": "#FAFAFA", + "background": "#FAFAFA", + "borderColor": "#FAFAFA" } }, "PopupMenu": { - "background": "#F0F0F0", + "background": "#FAFAFA", "border": "2,0,2,0", - "foreground": "#403f53", - "translucentBackground": "#F0F0F0" + "foreground": "#546e7a", + "translucentBackground": "#FAFAFA" }, "PopupMenuSeparator.height": 10, "PopupMenuSeparator.stripeIndent": 5, "ProgressBar": { - "background": "#F0F0F0", - "foreground": "#2AA298", - "indeterminateEndColor": "#2AA298", - "indeterminateStartColor": "#2AA298", - "progressColor": "#2AA298", - "selectionBackground": "#CCCCCC", - "trackColor": "#CCCCCC" + "background": "#FAFAFA", + "foreground": "#269386", + "indeterminateEndColor": "#269386", + "indeterminateStartColor": "#269386", + "progressColor": "#269386", + "selectionBackground": "#E0E7EA", + "trackColor": "#E0E7EA" }, "PsiViewer": { - "referenceHighlightColor": "#2AA298" + "referenceHighlightColor": "#269386" }, "RadioButton": { - "background": "#F0F0F0", - "disabledText": "#93A1A1", - "foreground": "#403f53" + "background": "#FAFAFA", + "disabledText": "#dddddd", + "foreground": "#546e7a" }, "RadioButtonMenuItem": { - "acceleratorForeground": "#90A7B2", - "acceleratorSelectionForeground": "#90A7B2", - "background": "#F0F0F0", - "disabledBackground": "#F0F0F0", - "disabledForeground": "#93A1A1", - "foreground": "#403f53", - "selectionBackground": "#d3e8f8", + "acceleratorForeground": "#403F53", + "acceleratorSelectionForeground": "#403F53", + "background": "#FAFAFA", + "disabledBackground": "#FAFAFA", + "disabledForeground": "#dddddd", + "foreground": "#546e7a", + "selectionBackground": "#999e9e", "selectionForeground": "#403f53" }, + "ScreenView.borderColor": "#efefef", "ScrollBar": { - "background": "#F0F0F0", - "hoverThumbBorderColor": "#2AA298", - "hoverThumbColor": "#2AA298", - "hoverTrackColor": "#F0F0F030", + "background": "#FAFAFA", + "hoverThumbBorderColor": "#269386", + "hoverThumbColor": "#269386", + "hoverTrackColor": "#FAFAFA30", "Mac": { - "hoverThumbBorderColor": "#2AA298", - "hoverThumbColor": "#2AA298", - "hoverTrackColor": "#F0F0F030", - "thumbBorderColor": "#2AA29870", - "thumbColor": "#2AA29870", - "trackColor": "#F0F0F030", + "hoverThumbBorderColor": "#269386", + "hoverThumbColor": "#269386", + "hoverTrackColor": "#FAFAFA30", + "thumbBorderColor": "#26938670", + "thumbColor": "#26938670", + "trackColor": "#FAFAFA30", "Transparent": { - "hoverThumbBorderColor": "#2AA298", - "hoverThumbColor": "#2AA298", - "hoverTrackColor": "#F0F0F030", - "thumbBorderColor": "#2AA29870", - "thumbColor": "#2AA29870", - "trackColor": "#F0F0F030" + "hoverThumbBorderColor": "#269386", + "hoverThumbColor": "#269386", + "hoverTrackColor": "#FAFAFA30", + "thumbBorderColor": "#26938670", + "thumbColor": "#26938670", + "trackColor": "#FAFAFA30" } }, - "thumb": "#CCCCCC", - "thumbBorderColor": "#2AA29870", - "thumbColor": "#2AA29870", - "trackColor": "#F0F0F030", + "thumb": "#E0E7EA", + "thumbBorderColor": "#26938670", + "thumbColor": "#26938670", + "trackColor": "#FAFAFA30", "Transparent": { - "hoverThumbBorderColor": "#2AA298", - "hoverThumbColor": "#2AA298", - "hoverTrackColor": "#F0F0F030", - "thumbBorderColor": "#2AA29870", - "thumbColor": "#2AA29870", - "trackColor": "#F0F0F030" + "hoverThumbBorderColor": "#269386", + "hoverThumbColor": "#269386", + "hoverTrackColor": "#FAFAFA30", + "thumbBorderColor": "#26938670", + "thumbColor": "#26938670", + "trackColor": "#FAFAFA30" } }, "SearchEverywhere": { "Advertiser": { - "background": "#f0f0f0", - "foreground": "#90A7B2" + "background": "#FAFAFA", + "foreground": "#403F53" }, "Header": { - "background": "#F0F0F0" + "background": "#FAFAFA" }, "List": { - "separatorForeground": "#90A7B2", - "separatorColor": "#d9d9d9" + "separatorForeground": "#403F53", + "separatorColor": "#efefef" }, "SearchField": { - "background": "#F0F0F0", - "borderColor": "#f0f0f0", - "infoForeground": "#90A7B2" + "background": "#FAFAFA", + "borderColor": "#FAFAFA", + "infoForeground": "#403F53" }, "Tab": { "active.foreground": "#333333", "selectedForeground": "#333333", - "selectedBackground": "#CCCCCC" + "selectedBackground": "#E0E7EA" } }, "SearchMatch": { - "endBackground": "#2AA298", - "startBackground": "#2AA298" + "endBackground": "#269386", + "startBackground": "#269386", + "endColor": "#269386", + "startColor": "#269386" }, "SearchField.errorBackground": "#F0F0F0", + "SearchOption": { + "selectedBackground": "#FAFAFA" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#403F53", + "Repeated.File.Foreground": "#546e7a" + }, "Separator": { - "background": "#FBFBFB", - "foreground": "#FBFBFB", - "separatorColor": "#FBFBFB" + "background": "#f2f5f7", + "foreground": "#f2f5f7", + "separatorColor": "#f2f5f7" }, "SidePanel": { - "background": "#f0f0f0" + "background": "#FAFAFA" }, "Slider": { - "background": "#F0F0F0", - "buttonBorderColor": "#2AA298", - "buttonColor": "#2AA298", - "foreground": "#403f53", + "background": "#FAFAFA", + "buttonBorderColor": "#269386", + "buttonColor": "#269386", + "foreground": "#546e7a", "majorTickLength": 6, - "tickColor": "#FBFBFB", - "trackColor": "#d3e8f8", + "tickColor": "#f2f5f7", + "trackColor": "#FAFAFA", "trackWidth": 7, - "thumb": "#2AA298" + "thumb": "#269386" }, "SpeedSearch": { - "background": "#CCCCCC", - "borderColor": "#d9d9d9", - "foreground": "#403f53", - "errorForeground": "#403f53" + "background": "#E0E7EA", + "borderColor": "#efefef", + "foreground": "#546e7a", + "errorForeground": "#546e7a" }, "Spinner": { - "background": "#F0F0F0", + "background": "#FAFAFA", "border": "3,3,3,3", - "foreground": "#403f53", + "foreground": "#546e7a", "selectionForeground": "#333333" }, "SplitPane": { - "background": "#F0F0F0", - "highlight": "#f0f0f0" + "background": "#FAFAFA", + "highlight": "#FAFAFA" }, - "SplitPaneDivider.draggingColor": "#FBFBFB", + "SplitPaneDivider.draggingColor": "#f2f5f7", "StatusBar": { - "borderColor": "#F0F0F0" + "borderColor": "#FAFAFA", + "hoverBackground": "#E0E7EA", + "LightEditBackground": "#FAFAFA" }, "TabbedPane": { - "background": "#F0F0F0", - "contentAreaColor": "#CCCCCC", + "background": "#FAFAFA", + "contentAreaColor": "#E0E7EA", "contentBorderInsets": "3,1,1,1", - "darkShadow": "#d9d9d9", - "disabledForeground": "#93A1A1", - "disabledUnderlineColor": "#93A1A1", - "focus": "#d3e8f8", - "focusColor": "#d3e8f8", + "darkShadow": "#efefef", + "disabledForeground": "#dddddd", + "disabledUnderlineColor": "#dddddd", + "focus": "#FAFAFA", + "focusColor": "#FAFAFA", "fontSizeOffset": 0, - "foreground": "#403f53", - "highlight": "#d9d9d9", - "hoverColor": "#CCCCCC", + "foreground": "#546e7a", + "highlight": "#efefef", + "hoverColor": "#E0E7EA", "labelShift": 0, "selectedForeground": "#333333", "selectedLabelShift": 0, @@ -639,164 +678,211 @@ "tabHeight": 32, "tabInsets": "5,10,5,10", "tabSelectionHeight": 2, - "underlineColor": "#2AA298" + "underlineColor": "#269386" }, - "TabbedPane.mt.tab.background": "#f0f0f0", + "TabbedPane.mt.tab.background": "#FAFAFA", "Table": { - "background": "#F0F0F0", + "alternativeRowBackground": "#FAFAFA", + "background": "#FAFAFA", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", - "dropLineColor": "#2AA298", - "dropLineShortColor": "#2AA298", - "focusCellBackground": "#d3e8f8", + "disabledForeground": "#dddddd", + "dropLineColor": "#269386", + "dropLineShortColor": "#269386", + "focusCellBackground": "#FAFAFA", "focusCellForeground": "#333333", - "foreground": "#403f53", - "gridColor": "#F0F0F0", - "highlightOuter": "#d3e8f8", + "foreground": "#546e7a", + "gridColor": "#FAFAFA", + "highlightOuter": "#FAFAFA", + "hoverBackground": "#E0E7EA70", + "hoverInactiveBackground": "#FAFAFA", "lightSelectionForeground": "#333333", - "lightSelectionInactiveForeground": "#90A7B2", - "lightSelectionInactiveBackground": "#FBFBFB", - "selectionBackground": "#d3e8f8", + "lightSelectionInactiveForeground": "#403F53", + "lightSelectionInactiveBackground": "#f2f5f7", + "selectionBackground": "#FAFAFA", "selectionForeground": "#333333", - "selectionInactiveBackground": "#d3e8f8", + "selectionInactiveBackground": "#FAFAFA", "selectionInactiveForeground": "#403f53", - "sortIconColor": "#403f53", - "stripeColor": "#f0f0f0" + "sortIconColor": "#546e7a", + "stripeColor": "#FAFAFA" }, "TableHeader": { - "background": "#F0F0F0", - "borderColor": "#F0F0F0", - "bottomSeparatorColor": "#FBFBFB", + "background": "#FAFAFA", + "borderColor": "#FAFAFA", + "bottomSeparatorColor": "#f2f5f7", "cellBorder": "4,0,4,0", - "disabledForeground": "#93A1A1", - "foreground": "#403f53", - "focusCellBackground": "#d3e8f8", + "disabledForeground": "#dddddd", + "foreground": "#546e7a", + "focusCellBackground": "#FAFAFA", "focusCellForeground": "#333333", "height": 25, - "separatorColor": "#FBFBFB" + "separatorColor": "#f2f5f7" }, - "text": "#90A7B2", - "textInactiveText": "#90A7B2", - "textText": "#90A7B2", + "text": "#403F53", + "textInactiveText": "#403F53", + "textText": "#403F53", "TextArea": { - "background": "#f0f0f0", - "caretForeground": "#2AA298", - "foreground": "#403f53", - "inactiveForeground": "#93A1A1", - "selectionBackground": "#d3e8f8", + "background": "#FAFAFA", + "caretForeground": "#269386", + "foreground": "#546e7a", + "inactiveForeground": "#dddddd", + "selectionBackground": "#FAFAFA", "selectionForeground": "#333333" }, "TextField": { - "background": "#f0f0f0", - "caretForeground": "#2AA298", - "foreground": "#403f53", - "inactiveForeground": "#93A1A1", - "selectionBackground": "#d3e8f8", + "background": "#FAFAFA", + "caretForeground": "#269386", + "foreground": "#546e7a", + "inactiveForeground": "#dddddd", + "selectionBackground": "#FAFAFA", "selectionForeground": "#333333" }, "TextPane": { - "background": "#f0f0f0", - "caretForeground": "#2AA298", - "foreground": "#403f53", - "inactiveForeground": "#93A1A1", - "selectionBackground": "#d3e8f8", + "background": "#FAFAFA", + "caretForeground": "#269386", + "foreground": "#546e7a", + "inactiveForeground": "#dddddd", + "selectionBackground": "#FAFAFA", "selectionForeground": "#333333" }, "TitlePane": { - "background": "#f0f0f0", - "Button.hoverBackground": "#CCCCCC", - "inactiveBackground": "#F0F0F0", - "infoForeground": "#90A7B2", - "inactiveInfoForeground": "#90A7B2" + "background": "#FAFAFA", + "Button.hoverBackground": "#E0E7EA", + "inactiveBackground": "#FAFAFA", + "infoForeground": "#403F53", + "inactiveInfoForeground": "#403F53" }, - "TitledBorder.titleColor": "#403f53", + "TitledBorder.titleColor": "#546e7a", "ToggleButton": { - "borderColor": "#d9d9d9", - "buttonColor": "#403f53", - "disabledText": "#93A1A1", - "foreground": "#403f53", - "offForeground": "#F0F0F0", - "offBackground": "#F0F0F0", - "onBackground": "#2AA298", - "onForeground": "#2AA298" + "borderColor": "#FAFAFA", + "buttonColor": "#546e7a", + "disabledText": "#dddddd", + "foreground": "#546e7a", + "offForeground": "#FAFAFA", + "offBackground": "#FAFAFA", + "onBackground": "#269386", + "onForeground": "#269386" }, "ToolBar": { - "background": "#f0f0f0", - "borderHandleColor": "#90A7B2", - "floatingForeground": "#90A7B2", - "foreground": "#403f53" + "background": "#FAFAFA", + "borderHandleColor": "#403F53", + "floatingForeground": "#403F53", + "foreground": "#546e7a" }, "ToolTip": { - "Actions.background": "#F0F0F0", - "Actions.infoForeground": "#90A7B2", + "Actions.background": "#FAFAFA", + "Actions.infoForeground": "#403F53", "background": "#F0F0F0", - "borderColor": "#CCCCCC", - "foreground": "#403f53", - "infoForeground": "#90A7B2", - "separatorColor": "#d9d9d9", - "shortcutForeground": "#90A7B2" + "borderColor": "#efefef", + "foreground": "#546e7a", + "infoForeground": "#403F53", + "separatorColor": "#efefef", + "shortcutForeground": "#403F53" }, "ToolWindow": { "Button": { - "hoverBackground": "#d3e8f8", + "hoverBackground": "#FAFAFA", "selectedForeground": "#333333", - "selectedBackground": "#f0f0f0" + "selectedBackground": "#FAFAFA" }, "Header": { - "background": "#F0F0F0", - "borderColor": "#FBFBFB", - "inactiveBackground": "#F0F0F0" + "background": "#FAFAFA", + "borderColor": "#f2f5f7", + "inactiveBackground": "#FAFAFA" }, "HeaderCloseButton": { - "background": "#F0F0F0" + "background": "#FAFAFA" }, "HeaderTab": { - "hoverBackground": "#CCCCCC", - "hoverInactiveBackground": "#FBFBFB", - "inactiveUnderlineColor": "#2AA298", - "selectedBackground": "#f0f0f0", - "selectedInactiveBackground": "#f0f0f0", - "underlineColor": "#2AA298", - "underlinedTabBackground": "#CCCCCC", - "underlinedTabInactiveBackground": "#FBFBFB" + "borderColor": "#E0E7EA", + "hoverBackground": "#E0E7EA", + "hoverInactiveBackground": "#E0E7EA", + "inactiveUnderlineColor": "#269386", + "selectedBackground": "#FAFAFA", + "selectedInactiveBackground": "#FAFAFA", + "underlineColor": "#269386", + "underlinedTabBackground": "#FAFAFA", + "underlinedTabInactiveBackground": "#f2f5f7", + "underlinedTabForeground": "#403f53", + "underlinedTabInactiveForeground": "#546e7a" } }, "Tree": { - "background": "#f0f0f0", - "foreground": "#90A7B2", - "hash": "#d9d9d9", - "modifiedItemForeground": "#2AA298", + "background": "#FAFAFA", + "foreground": "#403F53", + "hash": "#efefef", + "hoverBackground": "#E0E7EA70", + "hoverInactiveBackground": "#FAFAFA", + "modifiedItemForeground": "#269386", "rowHeight": 28, - "selectionBackground": "#d3e8f87c", + "selectionBackground": "#E0E7EA70", "selectionForeground": "#403f53", "selectionInactiveForeground": "#403f53", - "selectionInactiveBackground": "#d3e8f87c", - "textBackground": "#f0f0f0" + "selectionInactiveBackground": "#E0E7EA70", + "textBackground": "#FAFAFA" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { - "Activity.borderColor": "#d9d9d9", - "ColorPicker.background": "#F0F0F0", - "ColorPicker.foreground": "#403f53", - "Component.borderColor": "#d9d9d9", - "Component.background": "#F0F0F0", - "Component.foreground": "#403f53", - "Connector.borderColor": "#d9d9d9", - "Connector.hoverBorderColor": "#CCCCCC", - "Canvas.background": "#f0f0f0", - "highStroke.foreground": "#403f53", - "Label.foreground": "#90A7B2", - "List.selectionBackground": "#d3e8f87c", - "Panel.borderColor": "#d9d9d9", - "Panel.background": "#F0F0F0", - "percent.foreground": "#403f53", - "Placeholder.background": "#F0F0F0", - "Placeholder.borderColor": "#d9d9d9", - "Placeholder.foreground": "#403f53", - "Placeholder.selectedForeground": "#403f53", - "Preview.background": "#F0F0F0", - "stroke.acceleratorForeground": "#90A7B2" + "UIDesigner": { + "Activity.borderColor": "#efefef", + "Canvas.background": "#FAFAFA", + "ColorPicker": { + "background": "#FAFAFA", + "foreground": "#546e7a" + }, + "Component": { + "borderColor": "#efefef", + "background": "#FAFAFA", + "foreground": "#546e7a", + "hoverBorderColor": "#E0E7EA" + }, + "Connector": { + "borderColor": "#efefef", + "hoverBorderColor": "#E0E7EA" + }, + "Canvas.background": "#FAFAFA", + "highStroke.foreground": "#546e7a", + "Label.foreground": "#403F53", + "List.selectionBackground": "#E0E7EA70", + "motion": { + "borderColor": "#efefef", + "Component.foreground": "#546e7a", + "ConstraintSetText.foreground": "#403F53", + "ConstraintSet.background": "#f2f5f7", + "CSPanel.SelectedFocusBackground": "#999e9e", + "CSPanel.SelectedBackground": "#E0E7EA70", + "cs_FocusText.infoForeground": "#403F53", + "CursorTextColor.foreground": "#546e7a", + "HoverColor.disabledBackground": "#dddddd", + "motionGraph.background": "#FAFAFA", + "Notification.background": "#F0F0F0", + "ourAvg.background": "#f2f5f7", + "ourCS.background": "#f2f5f7", + "ourCS_Border.borderColor": "#efefef", + "ourCS_TextColor.foreground": "#403F53", + "ourCS_SelectedFocusBackground.selectionForeground": "#403f53", + "ourCS_SelectedBackground.selectionInactiveBackground": "#FAFAFA", + "ourCS_SelectedBorder.pressedBorderColor": "#E0E7EA", + "ourML_BarColor.separatorColor": "#efefef", + "PrimaryPanel.background": "#FAFAFA", + "SecondaryPanel.background": "#FAFAFA", + "SecondaryPanel.header.foreground": "#403F53", + "SecondaryPanel.header.background": "#FAFAFA", + "timeLine.disabledBorderColor": "#efefef" + }, + "Panel": { + "borderColor": "#efefef", + "background": "#FAFAFA" + }, + "percent.foreground": "#546e7a", + "Placeholder": { + "background": "#FAFAFA", + "borderColor": "#efefef", + "foreground": "#546e7a", + "selectedForeground": "#403f53" + }, + "Preview.background": "#FAFAFA", + "stroke.acceleratorForeground": "#403F53" }, "ValidationTooltip": { "errorBackground": "#F0F0F0", @@ -806,101 +892,108 @@ }, "VersionControl": { "FileHistory.Commit": { - "selectedBranchBackground": "#F0F0F0" + "selectedBranchBackground": "#FAFAFA" }, "GitCommits": { - "graphColor": "#CCCCCC" + "graphColor": "#E0E7EA" }, "GitLog": { - "localBranchIconColor": "#2AA298", - "otherIconColor": "#90A7B2", - "remoteBranchIconColor": "#403f53", - "tagIconColor": "#90A7B2" + "localBranchIconColor": "#269386", + "otherIconColor": "#403F53", + "remoteBranchIconColor": "#546e7a", + "tagIconColor": "#403F53" }, "HgLog": { - "branchIconColor": "#2AA298", + "branchIconColor": "#269386", "bookmarkIconColor": "#333333", - "closedBranchIconColor": "#93A1A1", - "localTagIconColor": "#90A7B2", - "mqTagIconColor": "#90A7B2", - "tagIconColor": "#90A7B2", - "tipIconColor": "#90A7B2" + "closedBranchIconColor": "#dddddd", + "localTagIconColor": "#403F53", + "mqTagIconColor": "#403F53", + "tagIconColor": "#403F53", + "tipIconColor": "#403F53" }, "Log": { - "Commit.unmatchedForeground": "#90A7B2", - "Commit.currentBranchBackground": "#FBFBFB" + "Commit.unmatchedForeground": "#403F53", + "Commit.currentBranchBackground": "#f2f5f7", + "Commit.hoveredBackground": "#E0E7EA70" }, "RefLabel": { "foreground": "#333333", - "backgroundBase": "#CCCCCC" + "backgroundBase": "#E0E7EA" } }, "Viewport": { - "background": "#f0f0f0", - "foreground": "#403f53" + "background": "#FAFAFA", + "foreground": "#546e7a" }, "WelcomeScreen": { - "background": "#F0F0F0", - "borderColor": "#F0F0F0", - "captionBackground": "#f0f0f0", - "captionForeground": "#403f53", - "footerBackground": "#f0f0f0", - "footerForeground": "#403f53", - "headerBackground": "#F0F0F0", - "headerForeground": "#403f53", - "separatorColor": "#d9d9d9", + "AssociatedComponent.background": "#FAFAFA", + "background": "#FAFAFA", + "borderColor": "#FAFAFA", + "captionBackground": "#FAFAFA", + "captionForeground": "#546e7a", + "Details.background": "#FAFAFA", + "footerBackground": "#FAFAFA", + "footerForeground": "#546e7a", + "headerBackground": "#FAFAFA", + "headerForeground": "#546e7a", + "List.background": "#FAFAFA", + "separatorColor": "#efefef", + "SidePanel.background": "#f2f5f7", "Projects": { - "background": "#FBFBFB", - "selectionBackground": "#d3e8f8", - "selectionInactiveBackground": "#FBFBFB" + "actions.background": "#FAFAFA", + "actions.selectionBackground": "#E0E7EA", + "background": "#f2f5f7", + "selectionBackground": "#999e9e", + "selectionInactiveBackground": "#f2f5f7" } }, - "window": "#f0f0f0", - "windowBorder": "#d9d9d9", - "windowText": "#90A7B2", - "Window.border": "#d9d9d9" + "window": "#FAFAFA", + "windowBorder": "#efefef", + "windowText": "#403F53", + "Window.border": "#efefef" }, "icons": { "ColorPalette": { - "#43494A": "#f0f0f0", - "#6B6B6B": "#90A7B2", - "#A7A7A7": "#F0F0F0", - "#3D6185": "#2AA298", - "#466D94": "#2AA298", - "#3C3F41": "#F0F0F0", - "#545556": "#93A1A1", - "#606060": "#93A1A1", - "#9AA7B0": "#403f53", - "#675133": "#2AA298", + "#43494A": "#FAFAFA", + "#6B6B6B": "#403F53", + "#A7A7A7": "#FAFAFA", + "#3D6185": "#269386", + "#466D94": "#269386", + "#3C3F41": "#FAFAFA", + "#545556": "#dddddd", + "#606060": "#dddddd", + "#9AA7B0": "#546e7a", + "#675133": "#269386", "Actions.Blue": "#4876d6", "Actions.Green": "#c96765", - "Actions.Grey": "#90A7B2", + "Actions.Grey": "#403F53", "Actions.GreyInline": "#637777", - "Actions.GreyInline.Dark": "#403f53", + "Actions.GreyInline.Dark": "#546e7a", "Actions.Red": "#994cc3", "Actions.Yellow": "#4876d6", - "Checkbox.Background.Default": "#f0f0f0", - "Checkbox.Background.Default.Dark": "#f0f0f0", - "Checkbox.Background.Disabled": "#E0E7EA", - "Checkbox.Background.Disabled.Dark": "#E0E7EA", - "Checkbox.Border.Default": "#d9d9d9", - "Checkbox.Border.Default.Dark": "#d9d9d9", - "Checkbox.Border.Disabled": "#93A1A1", - "Checkbox.Border.Disabled.Dark": "#93A1A1", - "Checkbox.Focus.Thin.Default": "#2AA298", - "Checkbox.Focus.Thin.Default.Dark": "#2AA298", - "Checkbox.Focus.Wide": "#2AA298", - "Checkbox.Focus.Wide.Dark": "#2AA298", - "Checkbox.Foreground.Disabled": "#93A1A1", - "Checkbox.Foreground.Disabled.Dark": "#93A1A1", - "Checkbox.Background.Selected": "#2AA298", - "Checkbox.Background.Selected.Dark": "#F0F0F0", - "Checkbox.Border.Selected": "#2AA298", - "Checkbox.Border.Selected.Dark": "#2AA298", - "Checkbox.Foreground.Selected": "#2AA298", - "Checkbox.Foreground.Selected.Dark": "#2AA298", - "Checkbox.Focus.Thin.Selected": "#403f53", - "Checkbox.Focus.Thin.Selected.Dark": "#403f53", + "Checkbox.Background.Default": "#FAFAFA", + "Checkbox.Background.Default.Dark": "#FAFAFA", + "Checkbox.Background.Disabled": "#82AAFF", + "Checkbox.Background.Disabled.Dark": "#82AAFF", + "Checkbox.Border.Default": "#efefef", + "Checkbox.Border.Default.Dark": "#efefef", + "Checkbox.Border.Disabled": "#dddddd", + "Checkbox.Border.Disabled.Dark": "#dddddd", + "Checkbox.Focus.Thin.Default": "#269386", + "Checkbox.Focus.Thin.Default.Dark": "#269386", + "Checkbox.Focus.Wide": "#269386", + "Checkbox.Focus.Wide.Dark": "#269386", + "Checkbox.Foreground.Disabled": "#dddddd", + "Checkbox.Foreground.Disabled.Dark": "#dddddd", + "Checkbox.Background.Selected": "#269386", + "Checkbox.Background.Selected.Dark": "#FAFAFA", + "Checkbox.Border.Selected": "#269386", + "Checkbox.Border.Selected.Dark": "#269386", + "Checkbox.Foreground.Selected": "#269386", + "Checkbox.Foreground.Selected.Dark": "#269386", + "Checkbox.Focus.Thin.Selected": "#546e7a", + "Checkbox.Focus.Thin.Selected.Dark": "#546e7a", "Objects.Grey": "#637777", "Objects.Blue": "#4876d6", "Objects.RedStatus": "#994cc3", @@ -909,7 +1002,7 @@ "Objects.Yellow": "#4876d6", "Objects.Green": "#c96765", "Objects.Purple": "#994cc3", - "Objects.BlackText": "#403f53", + "Objects.BlackText": "#546e7a", "Objects.YellowDark": "#aa0982", "Objects.GreenAndroid": "#c96765" } 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 bfa197d2..bc5564d3 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 @@ -3,225 +3,247 @@ "dark": false, "author": "Mallowigi", "editorScheme": "/colors/Light Owl.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/lightowl.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { - "acceleratorSelectionForeground": "#90A7B2", - "background": "#F0F0F0", - "borderColor": "#d9d9d9", - "disabledBackground": "#E0E7EA", - "disabledForeground": "#93A1A1", - "disabledText": "#93A1A1", - "focusColor": "#CCCCCC", - "focusedBorderColor": "#2AA298", - "foreground": "#403f53", - "inactiveBackground": "#E0E7EA", - "inactiveForeground": "#90A7B2", - "infoForeground": "#90A7B2", - "selectionBackground": "#d3e8f8", - "selectionBackgroundInactive": "#FBFBFB", + "acceleratorSelectionForeground": "#403F53", + "background": "#FAFAFA", + "borderColor": "#efefef", + "disabledBackground": "#82AAFF", + "disabledForeground": "#dddddd", + "disabledText": "#dddddd", + "focusColor": "#E0E7EA", + "focusedBorderColor": "#269386", + "foreground": "#546e7a", + "inactiveBackground": "#82AAFF", + "inactiveForeground": "#403F53", + "infoForeground": "#403F53", + "selectionBackground": "#999e9e", + "selectionBackgroundInactive": "#f2f5f7", "selectionForeground": "#403f53", - "selectionInactiveBackground": "#FBFBFB", - "separatorColor": "#d9d9d9" + "selectionInactiveBackground": "#f2f5f7", + "separatorColor": "#efefef" }, - "activeCaption": "#F0F0F0", + "activeCaption": "#FAFAFA", "ActionButton": { - "hoverBackground": "#2AA29850", - "hoverBorderColor": "#2AA29850", - "hoverSeparatorColor": "#d9d9d9", - "focusedBorderColor": "#2AA29850", - "pressedBackground": "#2AA29850", - "pressedBorderColor": "#2AA29850" + "hoverBackground": "#26938650", + "hoverBorderColor": "#26938650", + "hoverSeparatorColor": "#FAFAFA", + "focusedBorderColor": "#26938650", + "pressedBackground": "#26938650", + "pressedBorderColor": "#26938650" }, "Autocomplete": { - "selectionBackground": "#d3e8f8" + "selectionBackground": "#999e9e" }, - "Borders.ContrastBorderColor": "#F0F0F0", - "Borders.color": "#d9d9d9", + "Borders.ContrastBorderColor": "#FAFAFA", + "Borders.color": "#efefef", "Button": { "arc": 0, - "background": "#F0F0F0", + "background": "#FAFAFA", "default": { - "endBackground": "#d3e8f8", - "endBorderColor": "#d3e8f8", + "endBackground": "#FAFAFA", + "endBorderColor": "#FAFAFA", "foreground": "#333333", - "focusColor": "#2AA298", - "focusedBorderColor": "#2AA298", - "shadowColor": "#d3e8f8", - "startBackground": "#d3e8f8", - "startBorderColor": "#d3e8f8" + "focusColor": "#269386", + "focusedBorderColor": "#269386", + "shadowColor": "#FAFAFA", + "startBackground": "#FAFAFA", + "startBorderColor": "#FAFAFA" }, - "disabledBorderColor": "#d9d9d9", - "disabledText": "#93A1A1", - "endBackground": "#d9d9d9", - "endBorderColor": "#d9d9d9", - "focus": "#CCCCCC", - "focusedBorderColor": "#2AA298", - "foreground": "#90A7B2", + "disabledBorderColor": "#FAFAFA", + "disabledText": "#dddddd", + "endBackground": "#FAFAFA", + "endBorderColor": "#FAFAFA", + "focus": "#E0E7EA", + "focusedBorderColor": "#269386", + "foreground": "#403F53", "highlight": "#403f53", - "mt.background": "#d9d9d9", - "mt.foreground": "#90A7B2", + "mt.background": "#FAFAFA", + "mt.foreground": "#403F53", "mt.selectedForeground": "#403f53", - "mt.selection.color1": "#d3e8f8", - "mt.selection.color2": "#d3e8f8", - "startBackground": "#d9d9d9", - "startBorderColor": "#d9d9d9", - "shadowColor": "#d9d9d9", + "mt.selection.color1": "#FAFAFA", + "mt.selection.color2": "#FAFAFA", + "startBackground": "#FAFAFA", + "startBorderColor": "#FAFAFA", + "shadowColor": "#FAFAFA", "shadowWidth": 0 }, "Canvas": { - "Tooltip.borderColor": "#d9d9d9", + "Tooltip.borderColor": "#efefef", "Tooltip.background": "#F0F0F0" }, - "Content.background": "#f0f0f0", + "Content": { + "background": "#FAFAFA", + "selectionBackground": "#999e9e" + }, "CheckBox": { - "background": "#F0F0F0", - "disabledText": "#93A1A1", - "foreground": "#403f53", - "select": "#2AA298" + "background": "#FAFAFA", + "disabledText": "#dddddd", + "foreground": "#546e7a", + "select": "#269386" }, "CheckBoxMenuItem": { - "acceleratorForeground": "#90A7B2", - "acceleratorSelectionForeground": "#90A7B2", - "background": "#F0F0F0", - "disabledBackground": "#F0F0F0", - "disabledForeground": "#93A1A1", - "foreground": "#403f53", - "selectionBackground": "#d3e8f8", + "acceleratorForeground": "#403F53", + "acceleratorSelectionForeground": "#403F53", + "background": "#FAFAFA", + "disabledBackground": "#FAFAFA", + "disabledForeground": "#dddddd", + "foreground": "#546e7a", + "selectionBackground": "#999e9e", "selectionForeground": "#333333" }, + "CodeWithMe": { + "Avatar.foreground": "#546e7a", + "AccessEnabled": { + "accessDot": "#269386", + "dropdownBorder": "#f2f5f7", + "pillBackground": "$second" + } + }, "ColorChooser": { - "background": "#F0F0F0", - "foreground": "#403f53", - "swatchesDefaultRecentColor": "#403f53" + "background": "#FAFAFA", + "foreground": "#546e7a", + "swatchesDefaultRecentColor": "#546e7a" }, - "ComboBoxButton.background": "#d9d9d9", + "ComboBoxButton.background": "#FAFAFA", "ComboBox": { "ArrowButton": { - "background": "#d9d9d9", - "disabledIconColor": "#93A1A1", - "iconColor": "#403f53", - "nonEditableBackground": "#F0F0F0" + "background": "#FAFAFA", + "disabledIconColor": "#dddddd", + "iconColor": "#546e7a", + "nonEditableBackground": "#FAFAFA" }, - "background": "#F0F0F0", - "buttonBackground": "#d9d9d9", - "disabledForeground": "#93A1A1", - "foreground": "#403f53", - "modifiedItemForeground": "#2AA298", - "nonEditableBackground": "#FBFBFB", + "background": "#FAFAFA", + "buttonBackground": "#FAFAFA", + "darcula.hoveredArrowButtonForeground": "#269386", + "disabledForeground": "#dddddd", + "foreground": "#546e7a", + "modifiedItemForeground": "#269386", + "nonEditableBackground": "#f2f5f7", "padding": "5,5,5,5", - "selectionBackground": "#d3e8f8", + "selectionBackground": "#FAFAFA", "selectionForeground": "#333333" }, - "ComboPopup.border": "#d9d9d9", + "ComboPopup.border": "#efefef", "CompletionPopup": { - "background": "#FBFBFB", - "foreground": "#403f53", - "infoForeground": "#90A7B2", - "matchForeground": "#2AA298", - "matchSelectionForeground": "#2AA298", + "background": "#f2f5f7", + "foreground": "#546e7a", + "infoForeground": "#403F53", + "matchForeground": "#269386", + "matchSelectionForeground": "#269386", "nonFocusedState": "false", "selectedGrayedForeground": "#403f53", "selectionGrayForeground": "#403f53", - "selectionInactiveInfoForeground": "#90A7B2", - "selectionInactiveBackground": "#d3e8f850", - "selectionBackground": "#d3e8f880", + "selectionInactiveInfoForeground": "#403F53", + "selectionInactiveBackground": "#999e9e50", + "selectionBackground": "#999e9e80", "selectionForeground": "#403f53", "selectionInfoForeground": "#403f53" }, "Component": { "arc": 4, - "borderColor": "#CCCCCC", - "disabledBorderColor": "#d9d9d9", - "focusColor": "#2AA298", - "focusedBorderColor": "#2AA298", - "hoverIconColor": "#2AA298", - "infoForeground": "#90A7B2", - "iconColor": "#403f53" + "borderColor": "#E0E7EA", + "disabledBorderColor": "#FAFAFA", + "focusColor": "#269386", + "focusedBorderColor": "#269386", + "hoverIconColor": "#269386", + "infoForeground": "#403F53", + "iconColor": "#546e7a" }, - "control": "#F0F0F0", - "controlText": "#90A7B2", + "control": "#FAFAFA", + "controlText": "#403F53", "Counter": { - "background": "#2AA298", + "background": "#269386", "foreground": "#403f53" }, "Debugger": { "Variables": { - "collectingDataForeground": "#90A7B2", - "changedValueForeground": "#2AA298", + "collectingDataForeground": "#403F53", + "changedValueForeground": "#269386", "errorMessageForeground": "#994cc3", - "evaluatingExpressionForeground": "#90A7B2", + "evaluatingExpressionForeground": "#403F53", "exceptionForeground": "#4876d6", - "modifyingValueForeground": "#2AA298", - "valueForeground": "#2AA298" + "modifyingValueForeground": "#269386", + "valueForeground": "#269386" } }, "DebuggerTabs": { - "selectedBackground": "#CCCCCC", - "underlinedTabBackground": "#CCCCCC" + "selectedBackground": "#E0E7EA", + "underlinedTabBackground": "#E0E7EA" }, "DebuggerPopup": { - "borderColor": "#CCCCCC" + "borderColor": "#E0E7EA" }, "DefaultTabs": { - "background": "#F0F0F0", - "borderColor": "#F0F0F0", - "hoverBackground": "#d3e8f8", - "hoverColor": "#F0F0F0", - "hoverMaskColor": "#CCCCCC", - "inactiveColoredFileBackground": "#d9d9d9", - "inactiveUnderlineColor": "#93A1A1", - "inactiveMaskColor": "#F0F0F0", - "underlineColor": "#2AA298", - "underlinedTabBackground": "#d3e8f8" + "background": "#FAFAFA", + "borderColor": "#FAFAFA", + "hoverBackground": "#FAFAFA", + "hoverColor": "#FAFAFA", + "hoverMaskColor": "#E0E7EA", + "inactiveColoredTabBackground": "#FAFAFA", + "inactiveColoredFileBackground": "#FAFAFA", + "inactiveUnderlineColor": "#269386", + "inactiveMaskColor": "#FAFAFA", + "underlineColor": "#269386", + "underlinedTabBackground": "#FAFAFA", + "underlinedTabForeground": "#403f53" }, - "Desktop.background": "#F0F0F0", - "DialogWrapper.southPanelBackground": "#F0F0F0", - "DialogWrapper.southPanelDivider": "#F0F0F0", + "Desktop.background": "#FAFAFA", + "DialogWrapper.southPanelBackground": "#FAFAFA", + "DialogWrapper.southPanelDivider": "#FAFAFA", "DragAndDrop": { - "areaBackground": "#F0F0F0", - "areaBorderColor": "#F0F0F0", - "areaForeground": "#403f53" + "areaBackground": "#FAFAFA", + "areaBorderColor": "#FAFAFA", + "areaForeground": "#546e7a" }, "Editor": { - "background": "#F0F0F0", - "foreground": "#403f53", - "shortcutForeground": "#90A7B2" + "background": "#FAFAFA", + "foreground": "#546e7a", + "shortcutForeground": "#403F53" }, "EditorPane": { - "background": "#F0F0F0", - "caretForeground": "#2AA298", - "foreground": "#403f53", - "inactiveBackground": "#F0F0F0", - "inactiveForeground": "#93A1A1", - "selectionBackground": "#d3e8f8", + "background": "#FAFAFA", + "caretForeground": "#269386", + "foreground": "#546e7a", + "inactiveBackground": "#FAFAFA", + "inactiveForeground": "#dddddd", + "selectionBackground": "#999e9e", "selectionForeground": "#333333" }, "EditorTabs": { - "borderColor": "#FBFBFB", - "hoverColor": "#CCCCCC", - "hoverMaskColor": "#CCCCCC", - "inactiveMaskColor": "#F0F0F0", - "inactiveColoredFileBackground": "#F0F0F02", - "inactiveUnderlineColor": "#93A1A1", - "selectedForeground": "#403f53", - "selectedBackground": "#d3e8f8", - "underlineColor": "#2AA298", - "underlinedTabBackground": "#d3e8f8" + "borderColor": "#f2f5f7", + "hoverBackground": "#E0E7EA", + "hoverColor": "#E0E7EA", + "hoverMaskColor": "#E0E7EA", + "inactiveMaskColor": "#FAFAFA", + "inactiveColoredFileBackground": "#FAFAFA", + "inactiveUnderlineColor": "#dddddd", + "selectedForeground": "#546e7a", + "selectedBackground": "#FAFAFA", + "underlineColor": "#269386", + "underlinedTabBackground": "#FAFAFA", + "underlinedTabForeground": "#403f53" }, "EditorGroupsTabs": { - "background": "#F0F0F0", - "borderColor": "#FBFBFB", - "hoverBackground": "#CCCCCC", - "hoverColor": "#CCCCCC", - "inactiveUnderlineColor": "#2AA298", - "underlineColor": "#2AA298", - "underlinedTabBackground": "#d3e8f8", - "underlinedTabForeground": "#403f53" + "background": "#FAFAFA", + "borderColor": "#f2f5f7", + "hoverBackground": "#E0E7EA", + "hoverColor": "#E0E7EA", + "inactiveUnderlineColor": "#269386", + "underlineColor": "#269386", + "underlinedTabBackground": "#FAFAFA", + "underlinedTabForeground": "#546e7a" }, "FileColor": { "Green": "#387002", "Blue": "#004BA0", - "Yellow": "#E0E7EA", + "Yellow": "#82AAFF", "Orange": "#B53D00", "Violet": "#4D2C91", "Rose": "#A00037" @@ -236,151 +258,155 @@ "nativeSearchNotMatchedBackground": "#C792EA", "nativeFocusSearchNotMatchedBackground": "#BB80B3" }, - "Focus.color": "#d9d9d9", + "Focus.color": "#efefef", "FormattedTextField": { - "background": "#F0F0F0", - "caretForeground": "#2AA298", - "foreground": "#403f53", - "inactiveBackground": "#d9d9d9", - "inactiveForeground": "#93A1A1", + "background": "#FAFAFA", + "caretForeground": "#269386", + "foreground": "#546e7a", + "inactiveBackground": "#FAFAFA", + "inactiveForeground": "#dddddd", "selectionForeground": "#333333", - "selectionBackground": "#d3e8f8" + "selectionBackground": "#FAFAFA" }, + "GotItTooltip.borderColor": "#F0F0F0", "Group": { - "disabledSeparatorColor": "#d9d9d9", - "separatorColor": "#d9d9d9" + "disabledSeparatorColor": "#efefef", + "separatorColor": "#efefef" }, "GutterTooltip": { - "infoForeground": "#403f53", - "lineSeparatorColor": "#F0F0F0" + "infoForeground": "#403F53", + "lineSeparatorColor": "#FAFAFA" }, "HeaderColor": { - "active": "#F0F0F0", - "inactive": "#f0f0f0" + "active": "#FAFAFA", + "inactive": "#FAFAFA" }, "HelpTooltip": { - "background": "#F0F0F0", - "borderColor": "#d9d9d9", - "foreground": "#403f53", - "infoForeground": "#90A7B2", - "shortcutForeground": "#90A7B2" + "background": "#FAFAFA", + "borderColor": "#efefef", + "foreground": "#546e7a", + "infoForeground": "#403F53", + "shortcutForeground": "#403F53" }, - "Hyperlink.linkColor": "#2AA298", - "inactiveCaption": "#FBFBFB", - "inactiveCaptionBorder": "#F0F0F0", - "inactiveCaptionText": "#90A7B2", - "info": "#90A7B2", - "infoText": "#90A7B2", + "Hyperlink.linkColor": "#269386", + "inactiveCaption": "#f2f5f7", + "inactiveCaptionBorder": "#FAFAFA", + "inactiveCaptionText": "#403F53", + "info": "#403F53", + "infoText": "#403F53", "IdeStatusBar.border": "4,4,4,4", - "InformationHint.borderColor": "#d9d9d9", + "InformationHint.borderColor": "#efefef", "InplaceRefactoringPopup": { - "borderColor": "#F0F0F0" + "borderColor": "#FAFAFA" }, "InternalFrame": { - "activeTitleForeground": "#403f53", - "background": "#F0F0F0", - "inactiveTitleForeground": "#90A7B2" + "activeTitleForeground": "#546e7a", + "background": "#FAFAFA", + "inactiveTitleForeground": "#403F53" }, "Label": { - "background": "#F0F0F0", - "disabledForeground": "#93A1A1", - "disabledShadow": "#F0F0F0", - "disabledText": "#93A1A1", - "foreground": "#403f53", - "infoForeground": "#90A7B2", - "selectedForeground": "#333333" + "background": "#FAFAFA", + "disabledForeground": "#dddddd", + "disabledShadow": "#FAFAFA", + "disabledText": "#dddddd", + "foreground": "#546e7a", + "infoForeground": "#403F53", + "selectedForeground": "#333333", + "selectedDisabledForeground": "#546e7a" }, "Link": { - "activeForeground": "#2AA298", - "hoverForeground": "#2AA298", - "pressedForeground": "#2AA298", - "secondaryForeground": "#90A7B2", - "visitedForeground": "#2AA298" + "activeForeground": "#269386", + "hoverForeground": "#269386", + "pressedForeground": "#269386", + "secondaryForeground": "#403F53", + "visitedForeground": "#269386" }, - "link.foreground": "#2AA298", + "link.foreground": "#269386", "List": { - "background": "#FBFBFB", - "foreground": "#403f53", - "selectionBackground": "#d3e8f850", + "background": "#f2f5f7", + "foreground": "#546e7a", + "hoverBackground": "#E0E7EA70", + "hoverInactiveBackground": "#FAFAFA", + "selectionBackground": "#999e9e50", "selectionForeground": "#403f53", "selectionInactiveForeground": "#333333", - "selectionInactiveBackground": "#d3e8f87c" + "selectionInactiveBackground": "#E0E7EA70" }, "material": { - "background": "#F0F0F0", - "branchColor": "#403f53", - "contrast": "#f0f0f0", - "foreground": "#403f53", - "mergeCommits": "#d9d9d9", - "primaryColor": "#90A7B2", + "background": "#FAFAFA", + "branchColor": "#546e7a", + "contrast": "#FAFAFA", + "foreground": "#546e7a", + "mergeCommits": "#FAFAFA", + "primaryColor": "#403F53", "selectionForeground": "#403f53", - "tab.backgroundColor": "#F0F0F0", - "tab.borderColor": "#2AA298", - "tagColor": "#90A7B2" + "tab.backgroundColor": "#FAFAFA", + "tab.borderColor": "#269386", + "tagColor": "#403F53" }, "MemoryIndicator": { - "allocatedBackground": "#FBFBFB", - "usedColor": "#CCCCCC", - "usedBackground": "#CCCCCC" + "allocatedBackground": "#f2f5f7", + "usedColor": "#E0E7EA", + "usedBackground": "#E0E7EA" }, "Menu": { - "acceleratorForeground": "#90A7B2", + "acceleratorForeground": "#403F53", "acceleratorSelectionForeground": "#403f53", - "background": "#F0F0F0", + "background": "#FAFAFA", "border": "4,2,4,2", - "borderColor": "#FBFBFB", - "disabledBackground": "#FBFBFB", - "disabledForeground": "#93A1A1", - "foreground": "#403f53", - "selectionBackground": "#d3e8f8", + "borderColor": "#f2f5f7", + "disabledBackground": "#f2f5f7", + "disabledForeground": "#dddddd", + "foreground": "#546e7a", + "selectionBackground": "#999e9e", "selectionForeground": "#403f53", - "separatorColor": "#d9d9d9" + "separatorColor": "#efefef" }, "MenuBar": { - "background": "#F0F0F0", - "borderColor": "#F0F0F0", - "disabledBackground": "#F0F0F0", - "disabledForeground": "#93A1A1", - "foreground": "#403f53", - "highlight": "#F0F0F0", - "selectionBackground": "#d3e8f8", + "background": "#FAFAFA", + "borderColor": "#FAFAFA", + "disabledBackground": "#FAFAFA", + "disabledForeground": "#dddddd", + "foreground": "#546e7a", + "highlight": "#FAFAFA", + "selectionBackground": "#999e9e", "selectionForeground": "#403f53", - "shadow": "#F0F0F0" + "shadow": "#FAFAFA" }, "MenuItem": { - "acceleratorForeground": "#90A7B2", + "acceleratorForeground": "#403F53", "acceleratorSelectionForeground": "#403f53", "border": "4,2,4,2", - "background": "#F0F0F0", - "disabledBackground": "#F0F0F0", - "disabledForeground": "#93A1A1", - "foreground": "#403f53", - "selectionBackground": "#d3e8f8", + "background": "#FAFAFA", + "disabledBackground": "#FAFAFA", + "disabledForeground": "#dddddd", + "foreground": "#546e7a", + "selectionBackground": "#999e9e", "selectionForeground": "#403f53" }, "NavBar": { - "arrowColor": "#403f53", - "borderColor": "#F0F0F0" + "arrowColor": "#546e7a", + "borderColor": "#FAFAFA" }, "NewClass": { "Panel": { - "background": "#F0F0F0" + "background": "#FAFAFA" }, "SearchField": { - "background": "#F0F0F0" + "background": "#FAFAFA" } }, - "NewPSD.warning": "#2AA298", + "NewPSD.warning": "#269386", "Notification": { "background": "#F0F0F0", "borderColor": "#F0F0F0", "errorBackground": "#F0F0F0", "errorBorderColor": "#F0F0F0", - "foreground": "#403f53", + "foreground": "#546e7a", "MoreButton": { - "background": "#d9d9d9", - "foreground": "#403f53", - "innerBorderColor": "#d9d9d9" + "background": "#FAFAFA", + "foreground": "#546e7a", + "innerBorderColor": "#FAFAFA" }, "ToolWindow": { "errorBackground": "#F0F0F0", @@ -391,246 +417,259 @@ "warningBorderColor": "#F0F0F0" } }, - "OnePixelDivider.background": "#d9d9d9", + "OnePixelDivider.background": "#efefef", "OptionPane": { - "background": "#F0F0F0", - "foreground": "#403f53", - "messageForeground": "#403f53" + "background": "#FAFAFA", + "foreground": "#546e7a", + "messageForeground": "#546e7a" }, "Outline": { - "color": "#d9d9d9", - "focusedColor": "#2AA298", - "disabledColor": "#93A1A1" + "color": "#FAFAFA", + "focusedColor": "#269386", + "disabledColor": "#dddddd" }, "Panel": { - "background": "#F0F0F0", - "foreground": "#403f53" + "background": "#FAFAFA", + "foreground": "#546e7a" }, "ParameterInfo": { - "background": "#FBFBFB", - "borderColor": "#d3e8f8", - "currentOverloadBackground": "#d3e8f8", - "currentParameterForeground": "#2AA298", - "disabledForeground": "#93A1A1", - "foreground": "#403f53", - "infoForeground": "#90A7B2", - "lineSeparatorColor": "#d3e8f8" + "background": "#f2f5f7", + "borderColor": "#FAFAFA", + "currentOverloadBackground": "#E0E7EA", + "currentParameterForeground": "#269386", + "disabledForeground": "#dddddd", + "foreground": "#546e7a", + "infoForeground": "#403F53", + "lineSeparatorColor": "#FAFAFA" }, "PasswordField": { - "background": "#F0F0F0", - "capsLockIconColor": "#2AA298", - "caretForeground": "#2AA298", - "foreground": "#403f53", - "inactiveForeground": "#93A1A1", - "selectionBackground": "#d3e8f8", + "background": "#FAFAFA", + "capsLockIconColor": "#269386", + "caretForeground": "#269386", + "foreground": "#546e7a", + "inactiveForeground": "#dddddd", + "selectionBackground": "#FAFAFA", "selectionForeground": "#333333" }, "Plugins": { - "background": "#F0F0F0", - "disabledForeground": "#93A1A1", - "eapTagBackground": "#CCCCCC", - "lightSelectionBackground": "#d3e8f8", - "paidTagBackground": "#CCCCCC", - "selectionBackground": "#d3e8f8", - "tagForeground": "#2AA298", - "tagBackground": "#CCCCCC", - "trialTagBackground": "#CCCCCC", + "background": "#FAFAFA", + "disabledForeground": "#dddddd", + "eapTagBackground": "#E0E7EA", + "hoverBackground": "#E0E7EA70", + "lightSelectionBackground": "#FAFAFA", + "paidTagBackground": "#E0E7EA", + "selectionBackground": "#999e9e", + "tagForeground": "#269386", + "tagBackground": "#E0E7EA", + "trialTagBackground": "#E0E7EA", "Button": { - "installBackground": "#d9d9d9", - "installBorderColor": "#d9d9d9", - "installForeground": "#403f53", - "installFocusedBackground": "#CCCCCC", - "installFillForeground": "#93A1A1", - "installFillBackground": "#d9d9d9", - "updateBackground": "#d9d9d9", - "updateBorderColor": "#d9d9d9", - "updateForeground": "#403f53" + "installBackground": "#FAFAFA", + "installBorderColor": "#FAFAFA", + "installForeground": "#546e7a", + "installFocusedBackground": "#E0E7EA", + "installFillForeground": "#dddddd", + "installFillBackground": "#FAFAFA", + "updateBackground": "#269386", + "updateBorderColor": "#FAFAFA", + "updateForeground": "#546e7a" }, "SearchField": { - "background": "#F0F0F0", - "borderColor": "#d9d9d9" + "background": "#FAFAFA", + "borderColor": "#efefef" }, "SectionHeader": { - "background": "#FBFBFB", - "foreground": "#403f53" + "background": "#f2f5f7", + "foreground": "#546e7a" }, "Tab": { - "hoverBackground": "#d3e8f8", + "hoverBackground": "#FAFAFA", "selectedForeground": "#403f53", - "selectedBackground": "#d3e8f8" + "selectedBackground": "#FAFAFA" } }, "Popup": { "Advertiser": { - "background": "#F0F0F0", - "borderColor": "#F0F0F0", - "foreground": "#2AA298" + "background": "#FAFAFA", + "borderColor": "#FAFAFA", + "foreground": "#269386" }, - "borderColor": "#f0f0f0", - "inactiveBorderColor": "#F0F0F0", - "innerBorderColor": "#FBFBFB", + "borderColor": "#FAFAFA", + "inactiveBorderColor": "#FAFAFA", + "innerBorderColor": "#f2f5f7", "Header": { - "activeBackground": "#F0F0F0", - "inactiveBackground": "#f0f0f0" + "activeBackground": "#FAFAFA", + "inactiveBackground": "#FAFAFA" }, "paintBorder": true, - "separatorForeground": "#403f53", - "separatorColor": "#FBFBFB", + "separatorForeground": "#546e7a", + "separatorColor": "#f2f5f7", "Toolbar": { - "Floating.background": "#f0f0f0", - "background": "#f0f0f0", - "borderColor": "#f0f0f0" + "Floating.background": "#FAFAFA", + "background": "#FAFAFA", + "borderColor": "#FAFAFA" } }, "PopupMenu": { - "background": "#F0F0F0", + "background": "#FAFAFA", "border": "2,0,2,0", - "foreground": "#403f53", - "translucentBackground": "#F0F0F0" + "foreground": "#546e7a", + "translucentBackground": "#FAFAFA" }, "PopupMenuSeparator.height": 10, "PopupMenuSeparator.stripeIndent": 5, "ProgressBar": { - "background": "#F0F0F0", - "foreground": "#2AA298", - "indeterminateEndColor": "#2AA298", - "indeterminateStartColor": "#2AA298", - "progressColor": "#2AA298", - "selectionBackground": "#CCCCCC", - "trackColor": "#CCCCCC" + "background": "#FAFAFA", + "foreground": "#269386", + "indeterminateEndColor": "#269386", + "indeterminateStartColor": "#269386", + "progressColor": "#269386", + "selectionBackground": "#E0E7EA", + "trackColor": "#E0E7EA" }, "PsiViewer": { - "referenceHighlightColor": "#2AA298" + "referenceHighlightColor": "#269386" }, "RadioButton": { - "background": "#F0F0F0", - "disabledText": "#93A1A1", - "foreground": "#403f53" + "background": "#FAFAFA", + "disabledText": "#dddddd", + "foreground": "#546e7a" }, "RadioButtonMenuItem": { - "acceleratorForeground": "#90A7B2", - "acceleratorSelectionForeground": "#90A7B2", - "background": "#F0F0F0", - "disabledBackground": "#F0F0F0", - "disabledForeground": "#93A1A1", - "foreground": "#403f53", - "selectionBackground": "#d3e8f8", + "acceleratorForeground": "#403F53", + "acceleratorSelectionForeground": "#403F53", + "background": "#FAFAFA", + "disabledBackground": "#FAFAFA", + "disabledForeground": "#dddddd", + "foreground": "#546e7a", + "selectionBackground": "#999e9e", "selectionForeground": "#403f53" }, + "ScreenView.borderColor": "#efefef", "ScrollBar": { - "background": "#F0F0F0", - "hoverThumbBorderColor": "#2AA298", - "hoverThumbColor": "#2AA298", - "hoverTrackColor": "#F0F0F030", + "background": "#FAFAFA", + "hoverThumbBorderColor": "#269386", + "hoverThumbColor": "#269386", + "hoverTrackColor": "#FAFAFA30", "Mac": { - "hoverThumbBorderColor": "#2AA298", - "hoverThumbColor": "#2AA298", - "hoverTrackColor": "#F0F0F030", - "thumbBorderColor": "#2AA29870", - "thumbColor": "#2AA29870", - "trackColor": "#F0F0F030", + "hoverThumbBorderColor": "#269386", + "hoverThumbColor": "#269386", + "hoverTrackColor": "#FAFAFA30", + "thumbBorderColor": "#26938670", + "thumbColor": "#26938670", + "trackColor": "#FAFAFA30", "Transparent": { - "hoverThumbBorderColor": "#2AA298", - "hoverThumbColor": "#2AA298", - "hoverTrackColor": "#F0F0F030", - "thumbBorderColor": "#2AA29870", - "thumbColor": "#2AA29870", - "trackColor": "#F0F0F030" + "hoverThumbBorderColor": "#269386", + "hoverThumbColor": "#269386", + "hoverTrackColor": "#FAFAFA30", + "thumbBorderColor": "#26938670", + "thumbColor": "#26938670", + "trackColor": "#FAFAFA30" } }, - "thumb": "#CCCCCC", - "thumbBorderColor": "#2AA29870", - "thumbColor": "#2AA29870", - "trackColor": "#F0F0F030", + "thumb": "#E0E7EA", + "thumbBorderColor": "#26938670", + "thumbColor": "#26938670", + "trackColor": "#FAFAFA30", "Transparent": { - "hoverThumbBorderColor": "#2AA298", - "hoverThumbColor": "#2AA298", - "hoverTrackColor": "#F0F0F030", - "thumbBorderColor": "#2AA29870", - "thumbColor": "#2AA29870", - "trackColor": "#F0F0F030" + "hoverThumbBorderColor": "#269386", + "hoverThumbColor": "#269386", + "hoverTrackColor": "#FAFAFA30", + "thumbBorderColor": "#26938670", + "thumbColor": "#26938670", + "trackColor": "#FAFAFA30" } }, "SearchEverywhere": { "Advertiser": { - "background": "#f0f0f0", - "foreground": "#90A7B2" + "background": "#FAFAFA", + "foreground": "#403F53" }, "Header": { - "background": "#F0F0F0" + "background": "#FAFAFA" }, "List": { - "separatorForeground": "#90A7B2", - "separatorColor": "#d9d9d9" + "separatorForeground": "#403F53", + "separatorColor": "#efefef" }, "SearchField": { - "background": "#F0F0F0", - "borderColor": "#f0f0f0", - "infoForeground": "#90A7B2" + "background": "#FAFAFA", + "borderColor": "#FAFAFA", + "infoForeground": "#403F53" }, "Tab": { "active.foreground": "#333333", "selectedForeground": "#333333", - "selectedBackground": "#CCCCCC" + "selectedBackground": "#E0E7EA" } }, "SearchMatch": { - "endBackground": "#2AA298", - "startBackground": "#2AA298" + "endBackground": "#269386", + "startBackground": "#269386", + "endColor": "#269386", + "startColor": "#269386" }, "SearchField.errorBackground": "#F0F0F0", + "SearchOption": { + "selectedBackground": "#FAFAFA" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#403F53", + "Repeated.File.Foreground": "#546e7a" + }, "Separator": { - "background": "#FBFBFB", - "foreground": "#FBFBFB", - "separatorColor": "#FBFBFB" + "background": "#f2f5f7", + "foreground": "#f2f5f7", + "separatorColor": "#f2f5f7" }, "SidePanel": { - "background": "#F0F0F0" + "background": "#FAFAFA" }, "Slider": { - "background": "#F0F0F0", - "buttonBorderColor": "#2AA298", - "buttonColor": "#2AA298", - "foreground": "#403f53", + "background": "#FAFAFA", + "buttonBorderColor": "#269386", + "buttonColor": "#269386", + "foreground": "#546e7a", "majorTickLength": 6, - "tickColor": "#FBFBFB", - "trackColor": "#d3e8f8", + "tickColor": "#f2f5f7", + "trackColor": "#FAFAFA", "trackWidth": 7, - "thumb": "#2AA298" + "thumb": "#269386" }, "SpeedSearch": { - "background": "#CCCCCC", - "borderColor": "#d9d9d9", - "foreground": "#403f53", - "errorForeground": "#403f53" + "background": "#E0E7EA", + "borderColor": "#efefef", + "foreground": "#546e7a", + "errorForeground": "#546e7a" }, "Spinner": { - "background": "#F0F0F0", + "background": "#FAFAFA", "border": "3,3,3,3", - "foreground": "#403f53", + "foreground": "#546e7a", "selectionForeground": "#333333" }, "SplitPane": { - "background": "#F0F0F0", - "highlight": "#F0F0F0" + "background": "#FAFAFA", + "highlight": "#FAFAFA" }, - "SplitPaneDivider.draggingColor": "#FBFBFB", + "SplitPaneDivider.draggingColor": "#f2f5f7", "StatusBar": { - "borderColor": "#F0F0F0" + "borderColor": "#FAFAFA", + "hoverBackground": "#E0E7EA", + "LightEditBackground": "#FAFAFA" }, "TabbedPane": { - "background": "#F0F0F0", - "contentAreaColor": "#CCCCCC", + "background": "#FAFAFA", + "contentAreaColor": "#E0E7EA", "contentBorderInsets": "3,1,1,1", - "darkShadow": "#d9d9d9", - "disabledForeground": "#93A1A1", - "disabledUnderlineColor": "#93A1A1", - "focus": "#d3e8f8", - "focusColor": "#d3e8f8", + "darkShadow": "#efefef", + "disabledForeground": "#dddddd", + "disabledUnderlineColor": "#dddddd", + "focus": "#FAFAFA", + "focusColor": "#FAFAFA", "fontSizeOffset": 0, - "foreground": "#403f53", - "highlight": "#d9d9d9", - "hoverColor": "#CCCCCC", + "foreground": "#546e7a", + "highlight": "#efefef", + "hoverColor": "#E0E7EA", "labelShift": 0, "selectedForeground": "#333333", "selectedLabelShift": 0, @@ -639,164 +678,211 @@ "tabHeight": 32, "tabInsets": "5,10,5,10", "tabSelectionHeight": 2, - "underlineColor": "#2AA298" + "underlineColor": "#269386" }, - "TabbedPane.mt.tab.background": "#F0F0F0", + "TabbedPane.mt.tab.background": "#FAFAFA", "Table": { - "background": "#F0F0F0", + "alternativeRowBackground": "#FAFAFA", + "background": "#FAFAFA", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", - "dropLineColor": "#2AA298", - "dropLineShortColor": "#2AA298", - "focusCellBackground": "#d3e8f8", + "disabledForeground": "#dddddd", + "dropLineColor": "#269386", + "dropLineShortColor": "#269386", + "focusCellBackground": "#FAFAFA", "focusCellForeground": "#333333", - "foreground": "#403f53", - "gridColor": "#F0F0F0", - "highlightOuter": "#d3e8f8", + "foreground": "#546e7a", + "gridColor": "#FAFAFA", + "highlightOuter": "#FAFAFA", + "hoverBackground": "#E0E7EA70", + "hoverInactiveBackground": "#FAFAFA", "lightSelectionForeground": "#333333", - "lightSelectionInactiveForeground": "#90A7B2", - "lightSelectionInactiveBackground": "#FBFBFB", - "selectionBackground": "#d3e8f8", + "lightSelectionInactiveForeground": "#403F53", + "lightSelectionInactiveBackground": "#f2f5f7", + "selectionBackground": "#FAFAFA", "selectionForeground": "#333333", - "selectionInactiveBackground": "#d3e8f8", + "selectionInactiveBackground": "#FAFAFA", "selectionInactiveForeground": "#403f53", - "sortIconColor": "#403f53", - "stripeColor": "#f0f0f0" + "sortIconColor": "#546e7a", + "stripeColor": "#FAFAFA" }, "TableHeader": { - "background": "#F0F0F0", - "borderColor": "#F0F0F0", - "bottomSeparatorColor": "#FBFBFB", + "background": "#FAFAFA", + "borderColor": "#FAFAFA", + "bottomSeparatorColor": "#f2f5f7", "cellBorder": "4,0,4,0", - "disabledForeground": "#93A1A1", - "foreground": "#403f53", - "focusCellBackground": "#d3e8f8", + "disabledForeground": "#dddddd", + "foreground": "#546e7a", + "focusCellBackground": "#FAFAFA", "focusCellForeground": "#333333", "height": 25, - "separatorColor": "#FBFBFB" + "separatorColor": "#f2f5f7" }, - "text": "#90A7B2", - "textInactiveText": "#90A7B2", - "textText": "#90A7B2", + "text": "#403F53", + "textInactiveText": "#403F53", + "textText": "#403F53", "TextArea": { - "background": "#F0F0F0", - "caretForeground": "#2AA298", - "foreground": "#403f53", - "inactiveForeground": "#93A1A1", - "selectionBackground": "#d3e8f8", + "background": "#FAFAFA", + "caretForeground": "#269386", + "foreground": "#546e7a", + "inactiveForeground": "#dddddd", + "selectionBackground": "#FAFAFA", "selectionForeground": "#333333" }, "TextField": { - "background": "#F0F0F0", - "caretForeground": "#2AA298", - "foreground": "#403f53", - "inactiveForeground": "#93A1A1", - "selectionBackground": "#d3e8f8", + "background": "#FAFAFA", + "caretForeground": "#269386", + "foreground": "#546e7a", + "inactiveForeground": "#dddddd", + "selectionBackground": "#FAFAFA", "selectionForeground": "#333333" }, "TextPane": { - "background": "#F0F0F0", - "caretForeground": "#2AA298", - "foreground": "#403f53", - "inactiveForeground": "#93A1A1", - "selectionBackground": "#d3e8f8", + "background": "#FAFAFA", + "caretForeground": "#269386", + "foreground": "#546e7a", + "inactiveForeground": "#dddddd", + "selectionBackground": "#FAFAFA", "selectionForeground": "#333333" }, "TitlePane": { - "background": "#f0f0f0", - "Button.hoverBackground": "#CCCCCC", - "inactiveBackground": "#F0F0F0", - "infoForeground": "#90A7B2", - "inactiveInfoForeground": "#90A7B2" + "background": "#FAFAFA", + "Button.hoverBackground": "#E0E7EA", + "inactiveBackground": "#FAFAFA", + "infoForeground": "#403F53", + "inactiveInfoForeground": "#403F53" }, - "TitledBorder.titleColor": "#403f53", + "TitledBorder.titleColor": "#546e7a", "ToggleButton": { - "borderColor": "#d9d9d9", - "buttonColor": "#403f53", - "disabledText": "#93A1A1", - "foreground": "#403f53", - "offForeground": "#F0F0F0", - "offBackground": "#F0F0F0", - "onBackground": "#2AA298", - "onForeground": "#2AA298" + "borderColor": "#FAFAFA", + "buttonColor": "#546e7a", + "disabledText": "#dddddd", + "foreground": "#546e7a", + "offForeground": "#FAFAFA", + "offBackground": "#FAFAFA", + "onBackground": "#269386", + "onForeground": "#269386" }, "ToolBar": { - "background": "#F0F0F0", - "borderHandleColor": "#90A7B2", - "floatingForeground": "#90A7B2", - "foreground": "#403f53" + "background": "#FAFAFA", + "borderHandleColor": "#403F53", + "floatingForeground": "#403F53", + "foreground": "#546e7a" }, "ToolTip": { - "Actions.background": "#F0F0F0", - "Actions.infoForeground": "#90A7B2", + "Actions.background": "#FAFAFA", + "Actions.infoForeground": "#403F53", "background": "#F0F0F0", - "borderColor": "#CCCCCC", - "foreground": "#403f53", - "infoForeground": "#90A7B2", - "separatorColor": "#d9d9d9", - "shortcutForeground": "#90A7B2" + "borderColor": "#efefef", + "foreground": "#546e7a", + "infoForeground": "#403F53", + "separatorColor": "#efefef", + "shortcutForeground": "#403F53" }, "ToolWindow": { "Button": { - "hoverBackground": "#d3e8f8", + "hoverBackground": "#FAFAFA", "selectedForeground": "#333333", - "selectedBackground": "#f0f0f0" + "selectedBackground": "#FAFAFA" }, "Header": { - "background": "#F0F0F0", - "borderColor": "#FBFBFB", - "inactiveBackground": "#F0F0F0" + "background": "#FAFAFA", + "borderColor": "#f2f5f7", + "inactiveBackground": "#FAFAFA" }, "HeaderCloseButton": { - "background": "#F0F0F0" + "background": "#FAFAFA" }, "HeaderTab": { - "hoverBackground": "#CCCCCC", - "hoverInactiveBackground": "#FBFBFB", - "inactiveUnderlineColor": "#2AA298", - "selectedBackground": "#f0f0f0", - "selectedInactiveBackground": "#f0f0f0", - "underlineColor": "#2AA298", - "underlinedTabBackground": "#CCCCCC", - "underlinedTabInactiveBackground": "#FBFBFB" + "borderColor": "#E0E7EA", + "hoverBackground": "#E0E7EA", + "hoverInactiveBackground": "#E0E7EA", + "inactiveUnderlineColor": "#269386", + "selectedBackground": "#FAFAFA", + "selectedInactiveBackground": "#FAFAFA", + "underlineColor": "#269386", + "underlinedTabBackground": "#FAFAFA", + "underlinedTabInactiveBackground": "#f2f5f7", + "underlinedTabForeground": "#403f53", + "underlinedTabInactiveForeground": "#546e7a" } }, "Tree": { - "background": "#F0F0F0", - "foreground": "#90A7B2", - "hash": "#d9d9d9", - "modifiedItemForeground": "#2AA298", + "background": "#FAFAFA", + "foreground": "#403F53", + "hash": "#efefef", + "hoverBackground": "#E0E7EA70", + "hoverInactiveBackground": "#FAFAFA", + "modifiedItemForeground": "#269386", "rowHeight": 28, - "selectionBackground": "#d3e8f87c", + "selectionBackground": "#E0E7EA70", "selectionForeground": "#403f53", "selectionInactiveForeground": "#403f53", - "selectionInactiveBackground": "#d3e8f87c", - "textBackground": "#F0F0F0" + "selectionInactiveBackground": "#E0E7EA70", + "textBackground": "#FAFAFA" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { - "Activity.borderColor": "#d9d9d9", - "ColorPicker.background": "#F0F0F0", - "ColorPicker.foreground": "#403f53", - "Component.borderColor": "#d9d9d9", - "Component.background": "#F0F0F0", - "Component.foreground": "#403f53", - "Connector.borderColor": "#d9d9d9", - "Connector.hoverBorderColor": "#CCCCCC", - "Canvas.background": "#f0f0f0", - "highStroke.foreground": "#403f53", - "Label.foreground": "#90A7B2", - "List.selectionBackground": "#d3e8f87c", - "Panel.borderColor": "#d9d9d9", - "Panel.background": "#F0F0F0", - "percent.foreground": "#403f53", - "Placeholder.background": "#F0F0F0", - "Placeholder.borderColor": "#d9d9d9", - "Placeholder.foreground": "#403f53", - "Placeholder.selectedForeground": "#403f53", - "Preview.background": "#F0F0F0", - "stroke.acceleratorForeground": "#90A7B2" + "UIDesigner": { + "Activity.borderColor": "#efefef", + "Canvas.background": "#FAFAFA", + "ColorPicker": { + "background": "#FAFAFA", + "foreground": "#546e7a" + }, + "Component": { + "borderColor": "#efefef", + "background": "#FAFAFA", + "foreground": "#546e7a", + "hoverBorderColor": "#E0E7EA" + }, + "Connector": { + "borderColor": "#efefef", + "hoverBorderColor": "#E0E7EA" + }, + "Canvas.background": "#FAFAFA", + "highStroke.foreground": "#546e7a", + "Label.foreground": "#403F53", + "List.selectionBackground": "#E0E7EA70", + "motion": { + "borderColor": "#efefef", + "Component.foreground": "#546e7a", + "ConstraintSetText.foreground": "#403F53", + "ConstraintSet.background": "#f2f5f7", + "CSPanel.SelectedFocusBackground": "#999e9e", + "CSPanel.SelectedBackground": "#E0E7EA70", + "cs_FocusText.infoForeground": "#403F53", + "CursorTextColor.foreground": "#546e7a", + "HoverColor.disabledBackground": "#dddddd", + "motionGraph.background": "#FAFAFA", + "Notification.background": "#F0F0F0", + "ourAvg.background": "#f2f5f7", + "ourCS.background": "#f2f5f7", + "ourCS_Border.borderColor": "#efefef", + "ourCS_TextColor.foreground": "#403F53", + "ourCS_SelectedFocusBackground.selectionForeground": "#403f53", + "ourCS_SelectedBackground.selectionInactiveBackground": "#FAFAFA", + "ourCS_SelectedBorder.pressedBorderColor": "#E0E7EA", + "ourML_BarColor.separatorColor": "#efefef", + "PrimaryPanel.background": "#FAFAFA", + "SecondaryPanel.background": "#FAFAFA", + "SecondaryPanel.header.foreground": "#403F53", + "SecondaryPanel.header.background": "#FAFAFA", + "timeLine.disabledBorderColor": "#efefef" + }, + "Panel": { + "borderColor": "#efefef", + "background": "#FAFAFA" + }, + "percent.foreground": "#546e7a", + "Placeholder": { + "background": "#FAFAFA", + "borderColor": "#efefef", + "foreground": "#546e7a", + "selectedForeground": "#403f53" + }, + "Preview.background": "#FAFAFA", + "stroke.acceleratorForeground": "#403F53" }, "ValidationTooltip": { "errorBackground": "#F0F0F0", @@ -806,101 +892,108 @@ }, "VersionControl": { "FileHistory.Commit": { - "selectedBranchBackground": "#F0F0F0" + "selectedBranchBackground": "#FAFAFA" }, "GitCommits": { - "graphColor": "#CCCCCC" + "graphColor": "#E0E7EA" }, "GitLog": { - "localBranchIconColor": "#2AA298", - "otherIconColor": "#90A7B2", - "remoteBranchIconColor": "#403f53", - "tagIconColor": "#90A7B2" + "localBranchIconColor": "#269386", + "otherIconColor": "#403F53", + "remoteBranchIconColor": "#546e7a", + "tagIconColor": "#403F53" }, "HgLog": { - "branchIconColor": "#2AA298", + "branchIconColor": "#269386", "bookmarkIconColor": "#333333", - "closedBranchIconColor": "#93A1A1", - "localTagIconColor": "#90A7B2", - "mqTagIconColor": "#90A7B2", - "tagIconColor": "#90A7B2", - "tipIconColor": "#90A7B2" + "closedBranchIconColor": "#dddddd", + "localTagIconColor": "#403F53", + "mqTagIconColor": "#403F53", + "tagIconColor": "#403F53", + "tipIconColor": "#403F53" }, "Log": { - "Commit.unmatchedForeground": "#90A7B2", - "Commit.currentBranchBackground": "#FBFBFB" + "Commit.unmatchedForeground": "#403F53", + "Commit.currentBranchBackground": "#f2f5f7", + "Commit.hoveredBackground": "#E0E7EA70" }, "RefLabel": { "foreground": "#333333", - "backgroundBase": "#CCCCCC" + "backgroundBase": "#E0E7EA" } }, "Viewport": { - "background": "#F0F0F0", - "foreground": "#403f53" + "background": "#FAFAFA", + "foreground": "#546e7a" }, "WelcomeScreen": { - "background": "#F0F0F0", - "borderColor": "#F0F0F0", - "captionBackground": "#f0f0f0", - "captionForeground": "#403f53", - "footerBackground": "#f0f0f0", - "footerForeground": "#403f53", - "headerBackground": "#F0F0F0", - "headerForeground": "#403f53", - "separatorColor": "#d9d9d9", + "AssociatedComponent.background": "#FAFAFA", + "background": "#FAFAFA", + "borderColor": "#FAFAFA", + "captionBackground": "#FAFAFA", + "captionForeground": "#546e7a", + "Details.background": "#FAFAFA", + "footerBackground": "#FAFAFA", + "footerForeground": "#546e7a", + "headerBackground": "#FAFAFA", + "headerForeground": "#546e7a", + "List.background": "#FAFAFA", + "separatorColor": "#efefef", + "SidePanel.background": "#f2f5f7", "Projects": { - "background": "#FBFBFB", - "selectionBackground": "#d3e8f8", - "selectionInactiveBackground": "#FBFBFB" + "actions.background": "#FAFAFA", + "actions.selectionBackground": "#E0E7EA", + "background": "#f2f5f7", + "selectionBackground": "#999e9e", + "selectionInactiveBackground": "#f2f5f7" } }, - "window": "#F0F0F0", - "windowBorder": "#d9d9d9", - "windowText": "#90A7B2", - "Window.border": "#d9d9d9" + "window": "#FAFAFA", + "windowBorder": "#efefef", + "windowText": "#403F53", + "Window.border": "#efefef" }, "icons": { "ColorPalette": { - "#43494A": "#f0f0f0", - "#6B6B6B": "#90A7B2", - "#A7A7A7": "#F0F0F0", - "#3D6185": "#2AA298", - "#466D94": "#2AA298", - "#3C3F41": "#F0F0F0", - "#545556": "#93A1A1", - "#606060": "#93A1A1", - "#9AA7B0": "#403f53", - "#675133": "#2AA298", + "#43494A": "#FAFAFA", + "#6B6B6B": "#403F53", + "#A7A7A7": "#FAFAFA", + "#3D6185": "#269386", + "#466D94": "#269386", + "#3C3F41": "#FAFAFA", + "#545556": "#dddddd", + "#606060": "#dddddd", + "#9AA7B0": "#546e7a", + "#675133": "#269386", "Actions.Blue": "#4876d6", "Actions.Green": "#c96765", - "Actions.Grey": "#90A7B2", + "Actions.Grey": "#403F53", "Actions.GreyInline": "#637777", - "Actions.GreyInline.Dark": "#403f53", + "Actions.GreyInline.Dark": "#546e7a", "Actions.Red": "#994cc3", "Actions.Yellow": "#4876d6", - "Checkbox.Background.Default": "#f0f0f0", - "Checkbox.Background.Default.Dark": "#f0f0f0", - "Checkbox.Background.Disabled": "#E0E7EA", - "Checkbox.Background.Disabled.Dark": "#E0E7EA", - "Checkbox.Border.Default": "#d9d9d9", - "Checkbox.Border.Default.Dark": "#d9d9d9", - "Checkbox.Border.Disabled": "#93A1A1", - "Checkbox.Border.Disabled.Dark": "#93A1A1", - "Checkbox.Focus.Thin.Default": "#2AA298", - "Checkbox.Focus.Thin.Default.Dark": "#2AA298", - "Checkbox.Focus.Wide": "#2AA298", - "Checkbox.Focus.Wide.Dark": "#2AA298", - "Checkbox.Foreground.Disabled": "#93A1A1", - "Checkbox.Foreground.Disabled.Dark": "#93A1A1", - "Checkbox.Background.Selected": "#2AA298", - "Checkbox.Background.Selected.Dark": "#F0F0F0", - "Checkbox.Border.Selected": "#2AA298", - "Checkbox.Border.Selected.Dark": "#2AA298", - "Checkbox.Foreground.Selected": "#2AA298", - "Checkbox.Foreground.Selected.Dark": "#2AA298", - "Checkbox.Focus.Thin.Selected": "#403f53", - "Checkbox.Focus.Thin.Selected.Dark": "#403f53", + "Checkbox.Background.Default": "#FAFAFA", + "Checkbox.Background.Default.Dark": "#FAFAFA", + "Checkbox.Background.Disabled": "#82AAFF", + "Checkbox.Background.Disabled.Dark": "#82AAFF", + "Checkbox.Border.Default": "#efefef", + "Checkbox.Border.Default.Dark": "#efefef", + "Checkbox.Border.Disabled": "#dddddd", + "Checkbox.Border.Disabled.Dark": "#dddddd", + "Checkbox.Focus.Thin.Default": "#269386", + "Checkbox.Focus.Thin.Default.Dark": "#269386", + "Checkbox.Focus.Wide": "#269386", + "Checkbox.Focus.Wide.Dark": "#269386", + "Checkbox.Foreground.Disabled": "#dddddd", + "Checkbox.Foreground.Disabled.Dark": "#dddddd", + "Checkbox.Background.Selected": "#269386", + "Checkbox.Background.Selected.Dark": "#FAFAFA", + "Checkbox.Border.Selected": "#269386", + "Checkbox.Border.Selected.Dark": "#269386", + "Checkbox.Foreground.Selected": "#269386", + "Checkbox.Foreground.Selected.Dark": "#269386", + "Checkbox.Focus.Thin.Selected": "#546e7a", + "Checkbox.Focus.Thin.Selected.Dark": "#546e7a", "Objects.Grey": "#637777", "Objects.Blue": "#4876d6", "Objects.RedStatus": "#994cc3", @@ -909,7 +1002,7 @@ "Objects.Yellow": "#4876d6", "Objects.Green": "#c96765", "Objects.Purple": "#994cc3", - "Objects.BlackText": "#403f53", + "Objects.BlackText": "#546e7a", "Objects.YellowDark": "#aa0982", "Objects.GreenAndroid": "#c96765" } diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Darker Contrast.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Darker Contrast.theme.json index adbb78e5..435c41e3 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Darker Contrast.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Darker Contrast.theme.json @@ -3,6 +3,12 @@ "dark": true, "author": "Mallowigi", "editorScheme": "/colors/Material Darker.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/darker.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { "acceleratorSelectionForeground": "#727272", @@ -17,7 +23,7 @@ "inactiveBackground": "#323232", "inactiveForeground": "#727272", "infoForeground": "#727272", - "selectionBackground": "#404040", + "selectionBackground": "#353535", "selectionBackgroundInactive": "#292929", "selectionForeground": "#FFFFFF", "selectionInactiveBackground": "#292929", @@ -33,7 +39,7 @@ "pressedBorderColor": "#FF980050" }, "Autocomplete": { - "selectionBackground": "#404040" + "selectionBackground": "#353535" }, "Borders.ContrastBorderColor": "#212121", "Borders.color": "#292929", @@ -72,7 +78,10 @@ "Tooltip.borderColor": "#292929", "Tooltip.background": "#1A1A1A" }, - "Content.background": "#1A1A1A", + "Content": { + "background": "#1A1A1A", + "selectionBackground": "#353535" + }, "CheckBox": { "background": "#212121", "disabledText": "#474747", @@ -86,9 +95,17 @@ "disabledBackground": "#212121", "disabledForeground": "#474747", "foreground": "#B0BEC5", - "selectionBackground": "#404040", + "selectionBackground": "#353535", "selectionForeground": "#FFFFFF" }, + "CodeWithMe": { + "Avatar.foreground": "#B0BEC5", + "AccessEnabled": { + "accessDot": "#FF9800", + "dropdownBorder": "#292929", + "pillBackground": "$second" + } + }, "ColorChooser": { "background": "#212121", "foreground": "#B0BEC5", @@ -104,6 +121,7 @@ }, "background": "#1A1A1A", "buttonBackground": "#2A2A2A", + "darcula.hoveredArrowButtonForeground": "#FF9800", "disabledForeground": "#474747", "foreground": "#B0BEC5", "modifiedItemForeground": "#FF9800", @@ -123,8 +141,8 @@ "selectedGrayedForeground": "#FFFFFF", "selectionGrayForeground": "#FFFFFF", "selectionInactiveInfoForeground": "#727272", - "selectionInactiveBackground": "#40404050", - "selectionBackground": "#40404080", + "selectionInactiveBackground": "#35353550", + "selectionBackground": "#35353580", "selectionForeground": "#FFFFFF", "selectionInfoForeground": "#FFFFFF" }, @@ -168,11 +186,13 @@ "hoverBackground": "#323232", "hoverColor": "#1A1A1A", "hoverMaskColor": "#3F3F3F", + "inactiveColoredTabBackground": "#212121", "inactiveColoredFileBackground": "#2A2A2A", - "inactiveUnderlineColor": "#474747", + "inactiveUnderlineColor": "#FF9800", "inactiveMaskColor": "#1A1A1A", "underlineColor": "#FF9800", - "underlinedTabBackground": "#323232" + "underlinedTabBackground": "#323232", + "underlinedTabForeground": "#FFFFFF" }, "Desktop.background": "#212121", "DialogWrapper.southPanelBackground": "#212121", @@ -193,20 +213,22 @@ "foreground": "#B0BEC5", "inactiveBackground": "#212121", "inactiveForeground": "#474747", - "selectionBackground": "#404040", + "selectionBackground": "#353535", "selectionForeground": "#FFFFFF" }, "EditorTabs": { "borderColor": "#292929", + "hoverBackground": "#3F3F3F", "hoverColor": "#3F3F3F", "hoverMaskColor": "#3F3F3F", "inactiveMaskColor": "#212121", - "inactiveColoredFileBackground": "#2121212", + "inactiveColoredFileBackground": "#212121", "inactiveUnderlineColor": "#474747", "selectedForeground": "#B0BEC5", "selectedBackground": "#323232", "underlineColor": "#FF9800", - "underlinedTabBackground": "#323232" + "underlinedTabBackground": "#323232", + "underlinedTabForeground": "#FFFFFF" }, "EditorGroupsTabs": { "background": "#212121", @@ -246,12 +268,13 @@ "selectionForeground": "#FFFFFF", "selectionBackground": "#323232" }, + "GotItTooltip.borderColor": "#1A1A1A", "Group": { "disabledSeparatorColor": "#292929", "separatorColor": "#292929" }, "GutterTooltip": { - "infoForeground": "#B0BEC5", + "infoForeground": "#727272", "lineSeparatorColor": "#212121" }, "HeaderColor": { @@ -288,7 +311,8 @@ "disabledText": "#474747", "foreground": "#B0BEC5", "infoForeground": "#727272", - "selectedForeground": "#FFFFFF" + "selectedForeground": "#FFFFFF", + "selectedDisabledForeground": "#B0BEC5" }, "Link": { "activeForeground": "#FF9800", @@ -301,10 +325,12 @@ "List": { "background": "#292929", "foreground": "#B0BEC5", - "selectionBackground": "#40404050", + "hoverBackground": "#32323270", + "hoverInactiveBackground": "#323232", + "selectionBackground": "#35353550", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#323232c0" + "selectionInactiveBackground": "#32323270" }, "material": { "background": "#212121", @@ -332,7 +358,7 @@ "disabledBackground": "#292929", "disabledForeground": "#474747", "foreground": "#B0BEC5", - "selectionBackground": "#404040", + "selectionBackground": "#353535", "selectionForeground": "#FFFFFF", "separatorColor": "#292929" }, @@ -343,7 +369,7 @@ "disabledForeground": "#474747", "foreground": "#B0BEC5", "highlight": "#212121", - "selectionBackground": "#404040", + "selectionBackground": "#353535", "selectionForeground": "#FFFFFF", "shadow": "#1A1A1A" }, @@ -355,7 +381,7 @@ "disabledBackground": "#212121", "disabledForeground": "#474747", "foreground": "#B0BEC5", - "selectionBackground": "#404040", + "selectionBackground": "#353535", "selectionForeground": "#FFFFFF" }, "NavBar": { @@ -409,7 +435,7 @@ "ParameterInfo": { "background": "#292929", "borderColor": "#323232", - "currentOverloadBackground": "#323232", + "currentOverloadBackground": "#3F3F3F", "currentParameterForeground": "#FF9800", "disabledForeground": "#474747", "foreground": "#B0BEC5", @@ -429,9 +455,10 @@ "background": "#212121", "disabledForeground": "#474747", "eapTagBackground": "#3F3F3F", - "lightSelectionBackground": "#404040", + "hoverBackground": "#32323270", + "lightSelectionBackground": "#323232", "paidTagBackground": "#3F3F3F", - "selectionBackground": "#404040", + "selectionBackground": "#353535", "tagForeground": "#FF9800", "tagBackground": "#3F3F3F", "trialTagBackground": "#3F3F3F", @@ -442,7 +469,7 @@ "installFocusedBackground": "#3F3F3F", "installFillForeground": "#474747", "installFillBackground": "#2A2A2A", - "updateBackground": "#2A2A2A", + "updateBackground": "#FF9800", "updateBorderColor": "#2A2A2A", "updateForeground": "#B0BEC5" }, @@ -514,9 +541,10 @@ "disabledBackground": "#212121", "disabledForeground": "#474747", "foreground": "#B0BEC5", - "selectionBackground": "#404040", + "selectionBackground": "#353535", "selectionForeground": "#FFFFFF" }, + "ScreenView.borderColor": "#292929", "ScrollBar": { "background": "#212121", "hoverThumbBorderColor": "#FF9800", @@ -576,9 +604,18 @@ }, "SearchMatch": { "endBackground": "#FF9800", - "startBackground": "#FF9800" + "startBackground": "#FF9800", + "endColor": "#FF9800", + "startColor": "#FF9800" }, "SearchField.errorBackground": "#1A1A1A", + "SearchOption": { + "selectedBackground": "#323232" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#727272", + "Repeated.File.Foreground": "#B0BEC5" + }, "Separator": { "background": "#292929", "foreground": "#292929", @@ -616,7 +653,9 @@ }, "SplitPaneDivider.draggingColor": "#292929", "StatusBar": { - "borderColor": "#212121" + "borderColor": "#212121", + "hoverBackground": "#3F3F3F", + "LightEditBackground": "#323232" }, "TabbedPane": { "background": "#212121", @@ -643,9 +682,11 @@ }, "TabbedPane.mt.tab.background": "#1A1A1A", "Table": { + "alternativeRowBackground": "#1A1A1A", "background": "#212121", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#474747", "dropLineColor": "#FF9800", "dropLineShortColor": "#FF9800", "focusCellBackground": "#323232", @@ -653,6 +694,8 @@ "foreground": "#B0BEC5", "gridColor": "#212121", "highlightOuter": "#323232", + "hoverBackground": "#32323270", + "hoverInactiveBackground": "#323232", "lightSelectionForeground": "#FFFFFF", "lightSelectionInactiveForeground": "#727272", "lightSelectionInactiveBackground": "#292929", @@ -729,8 +772,8 @@ "ToolTip": { "Actions.background": "#212121", "Actions.infoForeground": "#727272", - "background": "#212121", - "borderColor": "#3F3F3F", + "background": "#1A1A1A", + "borderColor": "#292929", "foreground": "#B0BEC5", "infoForeground": "#727272", "separatorColor": "#292929", @@ -751,50 +794,93 @@ "background": "#212121" }, "HeaderTab": { + "borderColor": "#3F3F3F", "hoverBackground": "#3F3F3F", - "hoverInactiveBackground": "#292929", + "hoverInactiveBackground": "#3F3F3F", "inactiveUnderlineColor": "#FF9800", "selectedBackground": "#1A1A1A", "selectedInactiveBackground": "#1A1A1A", "underlineColor": "#FF9800", - "underlinedTabBackground": "#3F3F3F", - "underlinedTabInactiveBackground": "#292929" + "underlinedTabBackground": "#323232", + "underlinedTabInactiveBackground": "#292929", + "underlinedTabForeground": "#FFFFFF", + "underlinedTabInactiveForeground": "#B0BEC5" } }, "Tree": { "background": "#1A1A1A", "foreground": "#727272", "hash": "#292929", + "hoverBackground": "#32323270", + "hoverInactiveBackground": "#323232", "modifiedItemForeground": "#FF9800", "rowHeight": 28, - "selectionBackground": "#323232c0", + "selectionBackground": "#32323270", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#323232c0", + "selectionInactiveBackground": "#32323270", "textBackground": "#1A1A1A" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { + "UIDesigner": { "Activity.borderColor": "#292929", - "ColorPicker.background": "#212121", - "ColorPicker.foreground": "#B0BEC5", - "Component.borderColor": "#292929", - "Component.background": "#212121", - "Component.foreground": "#B0BEC5", - "Connector.borderColor": "#292929", - "Connector.hoverBorderColor": "#3F3F3F", + "Canvas.background": "#1A1A1A", + "ColorPicker": { + "background": "#212121", + "foreground": "#B0BEC5" + }, + "Component": { + "borderColor": "#292929", + "background": "#212121", + "foreground": "#B0BEC5", + "hoverBorderColor": "#3F3F3F" + }, + "Connector": { + "borderColor": "#292929", + "hoverBorderColor": "#3F3F3F" + }, "Canvas.background": "#1A1A1A", "highStroke.foreground": "#B0BEC5", "Label.foreground": "#727272", - "List.selectionBackground": "#323232c0", - "Panel.borderColor": "#292929", - "Panel.background": "#212121", + "List.selectionBackground": "#32323270", + "motion": { + "borderColor": "#292929", + "Component.foreground": "#B0BEC5", + "ConstraintSetText.foreground": "#727272", + "ConstraintSet.background": "#292929", + "CSPanel.SelectedFocusBackground": "#353535", + "CSPanel.SelectedBackground": "#32323270", + "cs_FocusText.infoForeground": "#727272", + "CursorTextColor.foreground": "#B0BEC5", + "HoverColor.disabledBackground": "#474747", + "motionGraph.background": "#212121", + "Notification.background": "#1A1A1A", + "ourAvg.background": "#292929", + "ourCS.background": "#292929", + "ourCS_Border.borderColor": "#292929", + "ourCS_TextColor.foreground": "#727272", + "ourCS_SelectedFocusBackground.selectionForeground": "#FFFFFF", + "ourCS_SelectedBackground.selectionInactiveBackground": "#323232", + "ourCS_SelectedBorder.pressedBorderColor": "#3F3F3F", + "ourML_BarColor.separatorColor": "#292929", + "PrimaryPanel.background": "#1A1A1A", + "SecondaryPanel.background": "#212121", + "SecondaryPanel.header.foreground": "#727272", + "SecondaryPanel.header.background": "#1A1A1A", + "timeLine.disabledBorderColor": "#292929" + }, + "Panel": { + "borderColor": "#292929", + "background": "#212121" + }, "percent.foreground": "#B0BEC5", - "Placeholder.background": "#212121", - "Placeholder.borderColor": "#292929", - "Placeholder.foreground": "#B0BEC5", - "Placeholder.selectedForeground": "#FFFFFF", + "Placeholder": { + "background": "#212121", + "borderColor": "#292929", + "foreground": "#B0BEC5", + "selectedForeground": "#FFFFFF" + }, "Preview.background": "#212121", "stroke.acceleratorForeground": "#727272" }, @@ -828,7 +914,8 @@ }, "Log": { "Commit.unmatchedForeground": "#727272", - "Commit.currentBranchBackground": "#292929" + "Commit.currentBranchBackground": "#292929", + "Commit.hoveredBackground": "#32323270" }, "RefLabel": { "foreground": "#FFFFFF", @@ -840,18 +927,24 @@ "foreground": "#B0BEC5" }, "WelcomeScreen": { + "AssociatedComponent.background": "#212121", "background": "#212121", "borderColor": "#212121", "captionBackground": "#1A1A1A", "captionForeground": "#B0BEC5", + "Details.background": "#212121", "footerBackground": "#1A1A1A", "footerForeground": "#B0BEC5", "headerBackground": "#212121", "headerForeground": "#B0BEC5", + "List.background": "#1A1A1A", "separatorColor": "#292929", + "SidePanel.background": "#292929", "Projects": { + "actions.background": "#1A1A1A", + "actions.selectionBackground": "#3F3F3F", "background": "#292929", - "selectionBackground": "#404040", + "selectionBackground": "#353535", "selectionInactiveBackground": "#292929" } }, 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 4cb6f3a1..ee3950e2 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 @@ -3,6 +3,12 @@ "dark": true, "author": "Mallowigi", "editorScheme": "/colors/Material Darker.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/darker.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { "acceleratorSelectionForeground": "#727272", @@ -17,7 +23,7 @@ "inactiveBackground": "#323232", "inactiveForeground": "#727272", "infoForeground": "#727272", - "selectionBackground": "#404040", + "selectionBackground": "#353535", "selectionBackgroundInactive": "#292929", "selectionForeground": "#FFFFFF", "selectionInactiveBackground": "#292929", @@ -33,7 +39,7 @@ "pressedBorderColor": "#FF980050" }, "Autocomplete": { - "selectionBackground": "#404040" + "selectionBackground": "#353535" }, "Borders.ContrastBorderColor": "#212121", "Borders.color": "#292929", @@ -72,7 +78,10 @@ "Tooltip.borderColor": "#292929", "Tooltip.background": "#1A1A1A" }, - "Content.background": "#1A1A1A", + "Content": { + "background": "#1A1A1A", + "selectionBackground": "#353535" + }, "CheckBox": { "background": "#212121", "disabledText": "#474747", @@ -86,9 +95,17 @@ "disabledBackground": "#212121", "disabledForeground": "#474747", "foreground": "#B0BEC5", - "selectionBackground": "#404040", + "selectionBackground": "#353535", "selectionForeground": "#FFFFFF" }, + "CodeWithMe": { + "Avatar.foreground": "#B0BEC5", + "AccessEnabled": { + "accessDot": "#FF9800", + "dropdownBorder": "#292929", + "pillBackground": "$second" + } + }, "ColorChooser": { "background": "#212121", "foreground": "#B0BEC5", @@ -104,6 +121,7 @@ }, "background": "#212121", "buttonBackground": "#2A2A2A", + "darcula.hoveredArrowButtonForeground": "#FF9800", "disabledForeground": "#474747", "foreground": "#B0BEC5", "modifiedItemForeground": "#FF9800", @@ -123,8 +141,8 @@ "selectedGrayedForeground": "#FFFFFF", "selectionGrayForeground": "#FFFFFF", "selectionInactiveInfoForeground": "#727272", - "selectionInactiveBackground": "#40404050", - "selectionBackground": "#40404080", + "selectionInactiveBackground": "#35353550", + "selectionBackground": "#35353580", "selectionForeground": "#FFFFFF", "selectionInfoForeground": "#FFFFFF" }, @@ -168,11 +186,13 @@ "hoverBackground": "#323232", "hoverColor": "#212121", "hoverMaskColor": "#3F3F3F", + "inactiveColoredTabBackground": "#212121", "inactiveColoredFileBackground": "#2A2A2A", - "inactiveUnderlineColor": "#474747", + "inactiveUnderlineColor": "#FF9800", "inactiveMaskColor": "#212121", "underlineColor": "#FF9800", - "underlinedTabBackground": "#323232" + "underlinedTabBackground": "#323232", + "underlinedTabForeground": "#FFFFFF" }, "Desktop.background": "#212121", "DialogWrapper.southPanelBackground": "#212121", @@ -193,20 +213,22 @@ "foreground": "#B0BEC5", "inactiveBackground": "#212121", "inactiveForeground": "#474747", - "selectionBackground": "#404040", + "selectionBackground": "#353535", "selectionForeground": "#FFFFFF" }, "EditorTabs": { "borderColor": "#292929", + "hoverBackground": "#3F3F3F", "hoverColor": "#3F3F3F", "hoverMaskColor": "#3F3F3F", "inactiveMaskColor": "#212121", - "inactiveColoredFileBackground": "#2121212", + "inactiveColoredFileBackground": "#212121", "inactiveUnderlineColor": "#474747", "selectedForeground": "#B0BEC5", "selectedBackground": "#323232", "underlineColor": "#FF9800", - "underlinedTabBackground": "#323232" + "underlinedTabBackground": "#323232", + "underlinedTabForeground": "#FFFFFF" }, "EditorGroupsTabs": { "background": "#212121", @@ -246,12 +268,13 @@ "selectionForeground": "#FFFFFF", "selectionBackground": "#323232" }, + "GotItTooltip.borderColor": "#1A1A1A", "Group": { "disabledSeparatorColor": "#292929", "separatorColor": "#292929" }, "GutterTooltip": { - "infoForeground": "#B0BEC5", + "infoForeground": "#727272", "lineSeparatorColor": "#212121" }, "HeaderColor": { @@ -288,7 +311,8 @@ "disabledText": "#474747", "foreground": "#B0BEC5", "infoForeground": "#727272", - "selectedForeground": "#FFFFFF" + "selectedForeground": "#FFFFFF", + "selectedDisabledForeground": "#B0BEC5" }, "Link": { "activeForeground": "#FF9800", @@ -301,10 +325,12 @@ "List": { "background": "#292929", "foreground": "#B0BEC5", - "selectionBackground": "#40404050", + "hoverBackground": "#32323270", + "hoverInactiveBackground": "#323232", + "selectionBackground": "#35353550", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#323232c0" + "selectionInactiveBackground": "#32323270" }, "material": { "background": "#212121", @@ -332,7 +358,7 @@ "disabledBackground": "#292929", "disabledForeground": "#474747", "foreground": "#B0BEC5", - "selectionBackground": "#404040", + "selectionBackground": "#353535", "selectionForeground": "#FFFFFF", "separatorColor": "#292929" }, @@ -343,7 +369,7 @@ "disabledForeground": "#474747", "foreground": "#B0BEC5", "highlight": "#212121", - "selectionBackground": "#404040", + "selectionBackground": "#353535", "selectionForeground": "#FFFFFF", "shadow": "#212121" }, @@ -355,7 +381,7 @@ "disabledBackground": "#212121", "disabledForeground": "#474747", "foreground": "#B0BEC5", - "selectionBackground": "#404040", + "selectionBackground": "#353535", "selectionForeground": "#FFFFFF" }, "NavBar": { @@ -409,7 +435,7 @@ "ParameterInfo": { "background": "#292929", "borderColor": "#323232", - "currentOverloadBackground": "#323232", + "currentOverloadBackground": "#3F3F3F", "currentParameterForeground": "#FF9800", "disabledForeground": "#474747", "foreground": "#B0BEC5", @@ -429,9 +455,10 @@ "background": "#212121", "disabledForeground": "#474747", "eapTagBackground": "#3F3F3F", - "lightSelectionBackground": "#404040", + "hoverBackground": "#32323270", + "lightSelectionBackground": "#323232", "paidTagBackground": "#3F3F3F", - "selectionBackground": "#404040", + "selectionBackground": "#353535", "tagForeground": "#FF9800", "tagBackground": "#3F3F3F", "trialTagBackground": "#3F3F3F", @@ -442,7 +469,7 @@ "installFocusedBackground": "#3F3F3F", "installFillForeground": "#474747", "installFillBackground": "#2A2A2A", - "updateBackground": "#2A2A2A", + "updateBackground": "#FF9800", "updateBorderColor": "#2A2A2A", "updateForeground": "#B0BEC5" }, @@ -514,9 +541,10 @@ "disabledBackground": "#212121", "disabledForeground": "#474747", "foreground": "#B0BEC5", - "selectionBackground": "#404040", + "selectionBackground": "#353535", "selectionForeground": "#FFFFFF" }, + "ScreenView.borderColor": "#292929", "ScrollBar": { "background": "#212121", "hoverThumbBorderColor": "#FF9800", @@ -576,9 +604,18 @@ }, "SearchMatch": { "endBackground": "#FF9800", - "startBackground": "#FF9800" + "startBackground": "#FF9800", + "endColor": "#FF9800", + "startColor": "#FF9800" }, "SearchField.errorBackground": "#1A1A1A", + "SearchOption": { + "selectedBackground": "#323232" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#727272", + "Repeated.File.Foreground": "#B0BEC5" + }, "Separator": { "background": "#292929", "foreground": "#292929", @@ -616,7 +653,9 @@ }, "SplitPaneDivider.draggingColor": "#292929", "StatusBar": { - "borderColor": "#212121" + "borderColor": "#212121", + "hoverBackground": "#3F3F3F", + "LightEditBackground": "#323232" }, "TabbedPane": { "background": "#212121", @@ -643,9 +682,11 @@ }, "TabbedPane.mt.tab.background": "#212121", "Table": { + "alternativeRowBackground": "#1A1A1A", "background": "#212121", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#474747", "dropLineColor": "#FF9800", "dropLineShortColor": "#FF9800", "focusCellBackground": "#323232", @@ -653,6 +694,8 @@ "foreground": "#B0BEC5", "gridColor": "#212121", "highlightOuter": "#323232", + "hoverBackground": "#32323270", + "hoverInactiveBackground": "#323232", "lightSelectionForeground": "#FFFFFF", "lightSelectionInactiveForeground": "#727272", "lightSelectionInactiveBackground": "#292929", @@ -729,8 +772,8 @@ "ToolTip": { "Actions.background": "#212121", "Actions.infoForeground": "#727272", - "background": "#212121", - "borderColor": "#3F3F3F", + "background": "#1A1A1A", + "borderColor": "#292929", "foreground": "#B0BEC5", "infoForeground": "#727272", "separatorColor": "#292929", @@ -751,50 +794,93 @@ "background": "#212121" }, "HeaderTab": { + "borderColor": "#3F3F3F", "hoverBackground": "#3F3F3F", - "hoverInactiveBackground": "#292929", + "hoverInactiveBackground": "#3F3F3F", "inactiveUnderlineColor": "#FF9800", "selectedBackground": "#1A1A1A", "selectedInactiveBackground": "#1A1A1A", "underlineColor": "#FF9800", - "underlinedTabBackground": "#3F3F3F", - "underlinedTabInactiveBackground": "#292929" + "underlinedTabBackground": "#323232", + "underlinedTabInactiveBackground": "#292929", + "underlinedTabForeground": "#FFFFFF", + "underlinedTabInactiveForeground": "#B0BEC5" } }, "Tree": { "background": "#212121", "foreground": "#727272", "hash": "#292929", + "hoverBackground": "#32323270", + "hoverInactiveBackground": "#323232", "modifiedItemForeground": "#FF9800", "rowHeight": 28, - "selectionBackground": "#323232c0", + "selectionBackground": "#32323270", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#323232c0", + "selectionInactiveBackground": "#32323270", "textBackground": "#212121" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { + "UIDesigner": { "Activity.borderColor": "#292929", - "ColorPicker.background": "#212121", - "ColorPicker.foreground": "#B0BEC5", - "Component.borderColor": "#292929", - "Component.background": "#212121", - "Component.foreground": "#B0BEC5", - "Connector.borderColor": "#292929", - "Connector.hoverBorderColor": "#3F3F3F", + "Canvas.background": "#1A1A1A", + "ColorPicker": { + "background": "#212121", + "foreground": "#B0BEC5" + }, + "Component": { + "borderColor": "#292929", + "background": "#212121", + "foreground": "#B0BEC5", + "hoverBorderColor": "#3F3F3F" + }, + "Connector": { + "borderColor": "#292929", + "hoverBorderColor": "#3F3F3F" + }, "Canvas.background": "#1A1A1A", "highStroke.foreground": "#B0BEC5", "Label.foreground": "#727272", - "List.selectionBackground": "#323232c0", - "Panel.borderColor": "#292929", - "Panel.background": "#212121", + "List.selectionBackground": "#32323270", + "motion": { + "borderColor": "#292929", + "Component.foreground": "#B0BEC5", + "ConstraintSetText.foreground": "#727272", + "ConstraintSet.background": "#292929", + "CSPanel.SelectedFocusBackground": "#353535", + "CSPanel.SelectedBackground": "#32323270", + "cs_FocusText.infoForeground": "#727272", + "CursorTextColor.foreground": "#B0BEC5", + "HoverColor.disabledBackground": "#474747", + "motionGraph.background": "#212121", + "Notification.background": "#1A1A1A", + "ourAvg.background": "#292929", + "ourCS.background": "#292929", + "ourCS_Border.borderColor": "#292929", + "ourCS_TextColor.foreground": "#727272", + "ourCS_SelectedFocusBackground.selectionForeground": "#FFFFFF", + "ourCS_SelectedBackground.selectionInactiveBackground": "#323232", + "ourCS_SelectedBorder.pressedBorderColor": "#3F3F3F", + "ourML_BarColor.separatorColor": "#292929", + "PrimaryPanel.background": "#1A1A1A", + "SecondaryPanel.background": "#212121", + "SecondaryPanel.header.foreground": "#727272", + "SecondaryPanel.header.background": "#1A1A1A", + "timeLine.disabledBorderColor": "#292929" + }, + "Panel": { + "borderColor": "#292929", + "background": "#212121" + }, "percent.foreground": "#B0BEC5", - "Placeholder.background": "#212121", - "Placeholder.borderColor": "#292929", - "Placeholder.foreground": "#B0BEC5", - "Placeholder.selectedForeground": "#FFFFFF", + "Placeholder": { + "background": "#212121", + "borderColor": "#292929", + "foreground": "#B0BEC5", + "selectedForeground": "#FFFFFF" + }, "Preview.background": "#212121", "stroke.acceleratorForeground": "#727272" }, @@ -828,7 +914,8 @@ }, "Log": { "Commit.unmatchedForeground": "#727272", - "Commit.currentBranchBackground": "#292929" + "Commit.currentBranchBackground": "#292929", + "Commit.hoveredBackground": "#32323270" }, "RefLabel": { "foreground": "#FFFFFF", @@ -840,18 +927,24 @@ "foreground": "#B0BEC5" }, "WelcomeScreen": { + "AssociatedComponent.background": "#212121", "background": "#212121", "borderColor": "#212121", "captionBackground": "#1A1A1A", "captionForeground": "#B0BEC5", + "Details.background": "#212121", "footerBackground": "#1A1A1A", "footerForeground": "#B0BEC5", "headerBackground": "#212121", "headerForeground": "#B0BEC5", + "List.background": "#1A1A1A", "separatorColor": "#292929", + "SidePanel.background": "#292929", "Projects": { + "actions.background": "#1A1A1A", + "actions.selectionBackground": "#3F3F3F", "background": "#292929", - "selectionBackground": "#404040", + "selectionBackground": "#353535", "selectionInactiveBackground": "#292929" } }, diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Deep Ocean Contrast.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Deep Ocean Contrast.theme.json index c4df47a4..54aa149f 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Deep Ocean Contrast.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Deep Ocean Contrast.theme.json @@ -3,6 +3,12 @@ "dark": true, "author": "Mallowigi", "editorScheme": "/colors/Material Deep Ocean.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/deepocean.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { "acceleratorSelectionForeground": "#4B526D", @@ -72,7 +78,10 @@ "Tooltip.borderColor": "#0F111A", "Tooltip.background": "#090B10" }, - "Content.background": "#090B10", + "Content": { + "background": "#090B10", + "selectionBackground": "#232632" + }, "CheckBox": { "background": "#0F111A", "disabledText": "#464B5D", @@ -89,6 +98,14 @@ "selectionBackground": "#232632", "selectionForeground": "#FFFFFF" }, + "CodeWithMe": { + "Avatar.foreground": "#8F93A2", + "AccessEnabled": { + "accessDot": "#84ffff", + "dropdownBorder": "#181A1F", + "pillBackground": "$second" + } + }, "ColorChooser": { "background": "#0F111A", "foreground": "#8F93A2", @@ -104,6 +121,7 @@ }, "background": "#090B10", "buttonBackground": "#191A21", + "darcula.hoveredArrowButtonForeground": "#84ffff", "disabledForeground": "#464B5D", "foreground": "#8F93A2", "modifiedItemForeground": "#84ffff", @@ -168,11 +186,13 @@ "hoverBackground": "#1A1C25", "hoverColor": "#090B10", "hoverMaskColor": "#1F2233", + "inactiveColoredTabBackground": "#0F111A", "inactiveColoredFileBackground": "#191A21", - "inactiveUnderlineColor": "#464B5D", + "inactiveUnderlineColor": "#84ffff", "inactiveMaskColor": "#090B10", "underlineColor": "#84ffff", - "underlinedTabBackground": "#1A1C25" + "underlinedTabBackground": "#1A1C25", + "underlinedTabForeground": "#FFFFFF" }, "Desktop.background": "#0F111A", "DialogWrapper.southPanelBackground": "#0F111A", @@ -198,15 +218,17 @@ }, "EditorTabs": { "borderColor": "#181A1F", + "hoverBackground": "#1F2233", "hoverColor": "#1F2233", "hoverMaskColor": "#1F2233", "inactiveMaskColor": "#0F111A", - "inactiveColoredFileBackground": "#0F111A2", + "inactiveColoredFileBackground": "#0F111A", "inactiveUnderlineColor": "#464B5D", "selectedForeground": "#8F93A2", "selectedBackground": "#1A1C25", "underlineColor": "#84ffff", - "underlinedTabBackground": "#1A1C25" + "underlinedTabBackground": "#1A1C25", + "underlinedTabForeground": "#FFFFFF" }, "EditorGroupsTabs": { "background": "#0F111A", @@ -246,12 +268,13 @@ "selectionForeground": "#FFFFFF", "selectionBackground": "#1A1C25" }, + "GotItTooltip.borderColor": "#090B10", "Group": { "disabledSeparatorColor": "#0F111A", "separatorColor": "#0F111A" }, "GutterTooltip": { - "infoForeground": "#8F93A2", + "infoForeground": "#4B526D", "lineSeparatorColor": "#0F111A" }, "HeaderColor": { @@ -288,7 +311,8 @@ "disabledText": "#464B5D", "foreground": "#8F93A2", "infoForeground": "#4B526D", - "selectedForeground": "#FFFFFF" + "selectedForeground": "#FFFFFF", + "selectedDisabledForeground": "#8F93A2" }, "Link": { "activeForeground": "#84ffff", @@ -301,10 +325,12 @@ "List": { "background": "#181A1F", "foreground": "#8F93A2", + "hoverBackground": "#717CB416", + "hoverInactiveBackground": "#1A1C25", "selectionBackground": "#23263250", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#717CB430" + "selectionInactiveBackground": "#717CB416" }, "material": { "background": "#0F111A", @@ -409,7 +435,7 @@ "ParameterInfo": { "background": "#181A1F", "borderColor": "#1A1C25", - "currentOverloadBackground": "#1A1C25", + "currentOverloadBackground": "#1F2233", "currentParameterForeground": "#84ffff", "disabledForeground": "#464B5D", "foreground": "#8F93A2", @@ -429,7 +455,8 @@ "background": "#0F111A", "disabledForeground": "#464B5D", "eapTagBackground": "#1F2233", - "lightSelectionBackground": "#232632", + "hoverBackground": "#717CB416", + "lightSelectionBackground": "#1A1C25", "paidTagBackground": "#1F2233", "selectionBackground": "#232632", "tagForeground": "#84ffff", @@ -442,7 +469,7 @@ "installFocusedBackground": "#1F2233", "installFillForeground": "#464B5D", "installFillBackground": "#191A21", - "updateBackground": "#191A21", + "updateBackground": "#84ffff", "updateBorderColor": "#191A21", "updateForeground": "#8F93A2" }, @@ -517,6 +544,7 @@ "selectionBackground": "#232632", "selectionForeground": "#FFFFFF" }, + "ScreenView.borderColor": "#0F111A", "ScrollBar": { "background": "#0F111A", "hoverThumbBorderColor": "#84ffff", @@ -576,9 +604,18 @@ }, "SearchMatch": { "endBackground": "#84ffff", - "startBackground": "#84ffff" + "startBackground": "#84ffff", + "endColor": "#84ffff", + "startColor": "#84ffff" }, "SearchField.errorBackground": "#090B10", + "SearchOption": { + "selectedBackground": "#1A1C25" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#4B526D", + "Repeated.File.Foreground": "#8F93A2" + }, "Separator": { "background": "#181A1F", "foreground": "#181A1F", @@ -616,7 +653,9 @@ }, "SplitPaneDivider.draggingColor": "#181A1F", "StatusBar": { - "borderColor": "#0F111A" + "borderColor": "#0F111A", + "hoverBackground": "#1F2233", + "LightEditBackground": "#1A1C25" }, "TabbedPane": { "background": "#0F111A", @@ -643,9 +682,11 @@ }, "TabbedPane.mt.tab.background": "#090B10", "Table": { + "alternativeRowBackground": "#090B10", "background": "#0F111A", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#464B5D", "dropLineColor": "#84ffff", "dropLineShortColor": "#84ffff", "focusCellBackground": "#1A1C25", @@ -653,6 +694,8 @@ "foreground": "#8F93A2", "gridColor": "#0F111A", "highlightOuter": "#1A1C25", + "hoverBackground": "#717CB416", + "hoverInactiveBackground": "#1A1C25", "lightSelectionForeground": "#FFFFFF", "lightSelectionInactiveForeground": "#4B526D", "lightSelectionInactiveBackground": "#181A1F", @@ -729,8 +772,8 @@ "ToolTip": { "Actions.background": "#0F111A", "Actions.infoForeground": "#4B526D", - "background": "#0F111A", - "borderColor": "#1F2233", + "background": "#090B10", + "borderColor": "#0F111A", "foreground": "#8F93A2", "infoForeground": "#4B526D", "separatorColor": "#0F111A", @@ -751,50 +794,93 @@ "background": "#0F111A" }, "HeaderTab": { + "borderColor": "#1F2233", "hoverBackground": "#1F2233", - "hoverInactiveBackground": "#181A1F", + "hoverInactiveBackground": "#1F2233", "inactiveUnderlineColor": "#84ffff", "selectedBackground": "#090B10", "selectedInactiveBackground": "#090B10", "underlineColor": "#84ffff", - "underlinedTabBackground": "#1F2233", - "underlinedTabInactiveBackground": "#181A1F" + "underlinedTabBackground": "#1A1C25", + "underlinedTabInactiveBackground": "#181A1F", + "underlinedTabForeground": "#FFFFFF", + "underlinedTabInactiveForeground": "#8F93A2" } }, "Tree": { "background": "#090B10", "foreground": "#4B526D", "hash": "#0F111A", + "hoverBackground": "#717CB416", + "hoverInactiveBackground": "#1A1C25", "modifiedItemForeground": "#84ffff", "rowHeight": 28, - "selectionBackground": "#717CB430", + "selectionBackground": "#717CB416", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#717CB430", + "selectionInactiveBackground": "#717CB416", "textBackground": "#090B10" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { + "UIDesigner": { "Activity.borderColor": "#0F111A", - "ColorPicker.background": "#0F111A", - "ColorPicker.foreground": "#8F93A2", - "Component.borderColor": "#0F111A", - "Component.background": "#0F111A", - "Component.foreground": "#8F93A2", - "Connector.borderColor": "#0F111A", - "Connector.hoverBorderColor": "#1F2233", + "Canvas.background": "#090B10", + "ColorPicker": { + "background": "#0F111A", + "foreground": "#8F93A2" + }, + "Component": { + "borderColor": "#0F111A", + "background": "#0F111A", + "foreground": "#8F93A2", + "hoverBorderColor": "#1F2233" + }, + "Connector": { + "borderColor": "#0F111A", + "hoverBorderColor": "#1F2233" + }, "Canvas.background": "#090B10", "highStroke.foreground": "#8F93A2", "Label.foreground": "#4B526D", - "List.selectionBackground": "#717CB430", - "Panel.borderColor": "#0F111A", - "Panel.background": "#0F111A", + "List.selectionBackground": "#717CB416", + "motion": { + "borderColor": "#0F111A", + "Component.foreground": "#8F93A2", + "ConstraintSetText.foreground": "#4B526D", + "ConstraintSet.background": "#181A1F", + "CSPanel.SelectedFocusBackground": "#232632", + "CSPanel.SelectedBackground": "#717CB416", + "cs_FocusText.infoForeground": "#4B526D", + "CursorTextColor.foreground": "#8F93A2", + "HoverColor.disabledBackground": "#464B5D", + "motionGraph.background": "#0F111A", + "Notification.background": "#090B10", + "ourAvg.background": "#181A1F", + "ourCS.background": "#181A1F", + "ourCS_Border.borderColor": "#0F111A", + "ourCS_TextColor.foreground": "#4B526D", + "ourCS_SelectedFocusBackground.selectionForeground": "#FFFFFF", + "ourCS_SelectedBackground.selectionInactiveBackground": "#1A1C25", + "ourCS_SelectedBorder.pressedBorderColor": "#1F2233", + "ourML_BarColor.separatorColor": "#0F111A", + "PrimaryPanel.background": "#090B10", + "SecondaryPanel.background": "#0F111A", + "SecondaryPanel.header.foreground": "#4B526D", + "SecondaryPanel.header.background": "#090B10", + "timeLine.disabledBorderColor": "#0F111A" + }, + "Panel": { + "borderColor": "#0F111A", + "background": "#0F111A" + }, "percent.foreground": "#8F93A2", - "Placeholder.background": "#0F111A", - "Placeholder.borderColor": "#0F111A", - "Placeholder.foreground": "#8F93A2", - "Placeholder.selectedForeground": "#FFFFFF", + "Placeholder": { + "background": "#0F111A", + "borderColor": "#0F111A", + "foreground": "#8F93A2", + "selectedForeground": "#FFFFFF" + }, "Preview.background": "#0F111A", "stroke.acceleratorForeground": "#4B526D" }, @@ -828,7 +914,8 @@ }, "Log": { "Commit.unmatchedForeground": "#4B526D", - "Commit.currentBranchBackground": "#181A1F" + "Commit.currentBranchBackground": "#181A1F", + "Commit.hoveredBackground": "#717CB416" }, "RefLabel": { "foreground": "#FFFFFF", @@ -840,16 +927,22 @@ "foreground": "#8F93A2" }, "WelcomeScreen": { + "AssociatedComponent.background": "#0F111A", "background": "#0F111A", "borderColor": "#0F111A", "captionBackground": "#090B10", "captionForeground": "#8F93A2", + "Details.background": "#0F111A", "footerBackground": "#090B10", "footerForeground": "#8F93A2", "headerBackground": "#0F111A", "headerForeground": "#8F93A2", + "List.background": "#090B10", "separatorColor": "#0F111A", + "SidePanel.background": "#181A1F", "Projects": { + "actions.background": "#090B10", + "actions.selectionBackground": "#1F2233", "background": "#181A1F", "selectionBackground": "#232632", "selectionInactiveBackground": "#181A1F" 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 4d5b6173..83103f96 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 @@ -3,6 +3,12 @@ "dark": true, "author": "Mallowigi", "editorScheme": "/colors/Material Deep Ocean.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/deepocean.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { "acceleratorSelectionForeground": "#4B526D", @@ -72,7 +78,10 @@ "Tooltip.borderColor": "#0F111A", "Tooltip.background": "#090B10" }, - "Content.background": "#090B10", + "Content": { + "background": "#090B10", + "selectionBackground": "#232632" + }, "CheckBox": { "background": "#0F111A", "disabledText": "#464B5D", @@ -89,6 +98,14 @@ "selectionBackground": "#232632", "selectionForeground": "#FFFFFF" }, + "CodeWithMe": { + "Avatar.foreground": "#8F93A2", + "AccessEnabled": { + "accessDot": "#84ffff", + "dropdownBorder": "#181A1F", + "pillBackground": "$second" + } + }, "ColorChooser": { "background": "#0F111A", "foreground": "#8F93A2", @@ -104,6 +121,7 @@ }, "background": "#0F111A", "buttonBackground": "#191A21", + "darcula.hoveredArrowButtonForeground": "#84ffff", "disabledForeground": "#464B5D", "foreground": "#8F93A2", "modifiedItemForeground": "#84ffff", @@ -168,11 +186,13 @@ "hoverBackground": "#1A1C25", "hoverColor": "#0F111A", "hoverMaskColor": "#1F2233", + "inactiveColoredTabBackground": "#0F111A", "inactiveColoredFileBackground": "#191A21", - "inactiveUnderlineColor": "#464B5D", + "inactiveUnderlineColor": "#84ffff", "inactiveMaskColor": "#0F111A", "underlineColor": "#84ffff", - "underlinedTabBackground": "#1A1C25" + "underlinedTabBackground": "#1A1C25", + "underlinedTabForeground": "#FFFFFF" }, "Desktop.background": "#0F111A", "DialogWrapper.southPanelBackground": "#0F111A", @@ -198,15 +218,17 @@ }, "EditorTabs": { "borderColor": "#181A1F", + "hoverBackground": "#1F2233", "hoverColor": "#1F2233", "hoverMaskColor": "#1F2233", "inactiveMaskColor": "#0F111A", - "inactiveColoredFileBackground": "#0F111A2", + "inactiveColoredFileBackground": "#0F111A", "inactiveUnderlineColor": "#464B5D", "selectedForeground": "#8F93A2", "selectedBackground": "#1A1C25", "underlineColor": "#84ffff", - "underlinedTabBackground": "#1A1C25" + "underlinedTabBackground": "#1A1C25", + "underlinedTabForeground": "#FFFFFF" }, "EditorGroupsTabs": { "background": "#0F111A", @@ -246,12 +268,13 @@ "selectionForeground": "#FFFFFF", "selectionBackground": "#1A1C25" }, + "GotItTooltip.borderColor": "#090B10", "Group": { "disabledSeparatorColor": "#0F111A", "separatorColor": "#0F111A" }, "GutterTooltip": { - "infoForeground": "#8F93A2", + "infoForeground": "#4B526D", "lineSeparatorColor": "#0F111A" }, "HeaderColor": { @@ -288,7 +311,8 @@ "disabledText": "#464B5D", "foreground": "#8F93A2", "infoForeground": "#4B526D", - "selectedForeground": "#FFFFFF" + "selectedForeground": "#FFFFFF", + "selectedDisabledForeground": "#8F93A2" }, "Link": { "activeForeground": "#84ffff", @@ -301,10 +325,12 @@ "List": { "background": "#181A1F", "foreground": "#8F93A2", + "hoverBackground": "#717CB416", + "hoverInactiveBackground": "#1A1C25", "selectionBackground": "#23263250", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#717CB430" + "selectionInactiveBackground": "#717CB416" }, "material": { "background": "#0F111A", @@ -409,7 +435,7 @@ "ParameterInfo": { "background": "#181A1F", "borderColor": "#1A1C25", - "currentOverloadBackground": "#1A1C25", + "currentOverloadBackground": "#1F2233", "currentParameterForeground": "#84ffff", "disabledForeground": "#464B5D", "foreground": "#8F93A2", @@ -429,7 +455,8 @@ "background": "#0F111A", "disabledForeground": "#464B5D", "eapTagBackground": "#1F2233", - "lightSelectionBackground": "#232632", + "hoverBackground": "#717CB416", + "lightSelectionBackground": "#1A1C25", "paidTagBackground": "#1F2233", "selectionBackground": "#232632", "tagForeground": "#84ffff", @@ -442,7 +469,7 @@ "installFocusedBackground": "#1F2233", "installFillForeground": "#464B5D", "installFillBackground": "#191A21", - "updateBackground": "#191A21", + "updateBackground": "#84ffff", "updateBorderColor": "#191A21", "updateForeground": "#8F93A2" }, @@ -517,6 +544,7 @@ "selectionBackground": "#232632", "selectionForeground": "#FFFFFF" }, + "ScreenView.borderColor": "#0F111A", "ScrollBar": { "background": "#0F111A", "hoverThumbBorderColor": "#84ffff", @@ -576,9 +604,18 @@ }, "SearchMatch": { "endBackground": "#84ffff", - "startBackground": "#84ffff" + "startBackground": "#84ffff", + "endColor": "#84ffff", + "startColor": "#84ffff" }, "SearchField.errorBackground": "#090B10", + "SearchOption": { + "selectedBackground": "#1A1C25" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#4B526D", + "Repeated.File.Foreground": "#8F93A2" + }, "Separator": { "background": "#181A1F", "foreground": "#181A1F", @@ -616,7 +653,9 @@ }, "SplitPaneDivider.draggingColor": "#181A1F", "StatusBar": { - "borderColor": "#0F111A" + "borderColor": "#0F111A", + "hoverBackground": "#1F2233", + "LightEditBackground": "#1A1C25" }, "TabbedPane": { "background": "#0F111A", @@ -643,9 +682,11 @@ }, "TabbedPane.mt.tab.background": "#0F111A", "Table": { + "alternativeRowBackground": "#090B10", "background": "#0F111A", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#464B5D", "dropLineColor": "#84ffff", "dropLineShortColor": "#84ffff", "focusCellBackground": "#1A1C25", @@ -653,6 +694,8 @@ "foreground": "#8F93A2", "gridColor": "#0F111A", "highlightOuter": "#1A1C25", + "hoverBackground": "#717CB416", + "hoverInactiveBackground": "#1A1C25", "lightSelectionForeground": "#FFFFFF", "lightSelectionInactiveForeground": "#4B526D", "lightSelectionInactiveBackground": "#181A1F", @@ -729,8 +772,8 @@ "ToolTip": { "Actions.background": "#0F111A", "Actions.infoForeground": "#4B526D", - "background": "#0F111A", - "borderColor": "#1F2233", + "background": "#090B10", + "borderColor": "#0F111A", "foreground": "#8F93A2", "infoForeground": "#4B526D", "separatorColor": "#0F111A", @@ -751,50 +794,93 @@ "background": "#0F111A" }, "HeaderTab": { + "borderColor": "#1F2233", "hoverBackground": "#1F2233", - "hoverInactiveBackground": "#181A1F", + "hoverInactiveBackground": "#1F2233", "inactiveUnderlineColor": "#84ffff", "selectedBackground": "#090B10", "selectedInactiveBackground": "#090B10", "underlineColor": "#84ffff", - "underlinedTabBackground": "#1F2233", - "underlinedTabInactiveBackground": "#181A1F" + "underlinedTabBackground": "#1A1C25", + "underlinedTabInactiveBackground": "#181A1F", + "underlinedTabForeground": "#FFFFFF", + "underlinedTabInactiveForeground": "#8F93A2" } }, "Tree": { "background": "#0F111A", "foreground": "#4B526D", "hash": "#0F111A", + "hoverBackground": "#717CB416", + "hoverInactiveBackground": "#1A1C25", "modifiedItemForeground": "#84ffff", "rowHeight": 28, - "selectionBackground": "#717CB430", + "selectionBackground": "#717CB416", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#717CB430", + "selectionInactiveBackground": "#717CB416", "textBackground": "#0F111A" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { + "UIDesigner": { "Activity.borderColor": "#0F111A", - "ColorPicker.background": "#0F111A", - "ColorPicker.foreground": "#8F93A2", - "Component.borderColor": "#0F111A", - "Component.background": "#0F111A", - "Component.foreground": "#8F93A2", - "Connector.borderColor": "#0F111A", - "Connector.hoverBorderColor": "#1F2233", + "Canvas.background": "#090B10", + "ColorPicker": { + "background": "#0F111A", + "foreground": "#8F93A2" + }, + "Component": { + "borderColor": "#0F111A", + "background": "#0F111A", + "foreground": "#8F93A2", + "hoverBorderColor": "#1F2233" + }, + "Connector": { + "borderColor": "#0F111A", + "hoverBorderColor": "#1F2233" + }, "Canvas.background": "#090B10", "highStroke.foreground": "#8F93A2", "Label.foreground": "#4B526D", - "List.selectionBackground": "#717CB430", - "Panel.borderColor": "#0F111A", - "Panel.background": "#0F111A", + "List.selectionBackground": "#717CB416", + "motion": { + "borderColor": "#0F111A", + "Component.foreground": "#8F93A2", + "ConstraintSetText.foreground": "#4B526D", + "ConstraintSet.background": "#181A1F", + "CSPanel.SelectedFocusBackground": "#232632", + "CSPanel.SelectedBackground": "#717CB416", + "cs_FocusText.infoForeground": "#4B526D", + "CursorTextColor.foreground": "#8F93A2", + "HoverColor.disabledBackground": "#464B5D", + "motionGraph.background": "#0F111A", + "Notification.background": "#090B10", + "ourAvg.background": "#181A1F", + "ourCS.background": "#181A1F", + "ourCS_Border.borderColor": "#0F111A", + "ourCS_TextColor.foreground": "#4B526D", + "ourCS_SelectedFocusBackground.selectionForeground": "#FFFFFF", + "ourCS_SelectedBackground.selectionInactiveBackground": "#1A1C25", + "ourCS_SelectedBorder.pressedBorderColor": "#1F2233", + "ourML_BarColor.separatorColor": "#0F111A", + "PrimaryPanel.background": "#090B10", + "SecondaryPanel.background": "#0F111A", + "SecondaryPanel.header.foreground": "#4B526D", + "SecondaryPanel.header.background": "#090B10", + "timeLine.disabledBorderColor": "#0F111A" + }, + "Panel": { + "borderColor": "#0F111A", + "background": "#0F111A" + }, "percent.foreground": "#8F93A2", - "Placeholder.background": "#0F111A", - "Placeholder.borderColor": "#0F111A", - "Placeholder.foreground": "#8F93A2", - "Placeholder.selectedForeground": "#FFFFFF", + "Placeholder": { + "background": "#0F111A", + "borderColor": "#0F111A", + "foreground": "#8F93A2", + "selectedForeground": "#FFFFFF" + }, "Preview.background": "#0F111A", "stroke.acceleratorForeground": "#4B526D" }, @@ -828,7 +914,8 @@ }, "Log": { "Commit.unmatchedForeground": "#4B526D", - "Commit.currentBranchBackground": "#181A1F" + "Commit.currentBranchBackground": "#181A1F", + "Commit.hoveredBackground": "#717CB416" }, "RefLabel": { "foreground": "#FFFFFF", @@ -840,16 +927,22 @@ "foreground": "#8F93A2" }, "WelcomeScreen": { + "AssociatedComponent.background": "#0F111A", "background": "#0F111A", "borderColor": "#0F111A", "captionBackground": "#090B10", "captionForeground": "#8F93A2", + "Details.background": "#0F111A", "footerBackground": "#090B10", "footerForeground": "#8F93A2", "headerBackground": "#0F111A", "headerForeground": "#8F93A2", + "List.background": "#090B10", "separatorColor": "#0F111A", + "SidePanel.background": "#181A1F", "Projects": { + "actions.background": "#090B10", + "actions.selectionBackground": "#1F2233", "background": "#181A1F", "selectionBackground": "#232632", "selectionInactiveBackground": "#181A1F" diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Lighter Contrast.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Lighter Contrast.theme.json index edde7257..0b0f96fe 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Lighter Contrast.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Lighter Contrast.theme.json @@ -3,24 +3,30 @@ "dark": false, "author": "Mallowigi", "editorScheme": "/colors/Material Lighter.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/lighter.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { "acceleratorSelectionForeground": "#94A7B0", "background": "#FAFAFA", "borderColor": "#d3e1e8", - "disabledBackground": "#CCD7DA", + "disabledBackground": "#eae8e8", "disabledForeground": "#D2D4D5", "disabledText": "#D2D4D5", "focusColor": "#E7E7E8", "focusedBorderColor": "#00BCD4", "foreground": "#546E7A", - "inactiveBackground": "#CCD7DA", + "inactiveBackground": "#eae8e8", "inactiveForeground": "#94A7B0", "infoForeground": "#94A7B0", "selectionBackground": "#80CBC4", - "selectionBackgroundInactive": "#FFFFFF", + "selectionBackgroundInactive": "#eae8e8", "selectionForeground": "#546e7a", - "selectionInactiveBackground": "#FFFFFF", + "selectionInactiveBackground": "#eae8e8", "separatorColor": "#d3e1e8" }, "activeCaption": "#FAFAFA", @@ -72,7 +78,10 @@ "Tooltip.borderColor": "#d3e1e8", "Tooltip.background": "#eae8e8" }, - "Content.background": "#EEEEEE", + "Content": { + "background": "#F4F4F4", + "selectionBackground": "#80CBC4" + }, "CheckBox": { "background": "#FAFAFA", "disabledText": "#D2D4D5", @@ -89,6 +98,14 @@ "selectionBackground": "#80CBC4", "selectionForeground": "#546e7a" }, + "CodeWithMe": { + "Avatar.foreground": "#546E7A", + "AccessEnabled": { + "accessDot": "#00BCD4", + "dropdownBorder": "#eae8e8", + "pillBackground": "$second" + } + }, "ColorChooser": { "background": "#FAFAFA", "foreground": "#546E7A", @@ -102,19 +119,20 @@ "iconColor": "#546E7A", "nonEditableBackground": "#FAFAFA" }, - "background": "#EEEEEE", + "background": "#F4F4F4", "buttonBackground": "#F3F4F5", + "darcula.hoveredArrowButtonForeground": "#00BCD4", "disabledForeground": "#D2D4D5", "foreground": "#546E7A", "modifiedItemForeground": "#00BCD4", - "nonEditableBackground": "#FFFFFF", + "nonEditableBackground": "#eae8e8", "padding": "5,5,5,5", "selectionBackground": "#E7E7E8", "selectionForeground": "#546e7a" }, "ComboPopup.border": "#d3e1e8", "CompletionPopup": { - "background": "#FFFFFF", + "background": "#eae8e8", "foreground": "#546E7A", "infoForeground": "#94A7B0", "matchForeground": "#00BCD4", @@ -166,13 +184,15 @@ "background": "#FAFAFA", "borderColor": "#FAFAFA", "hoverBackground": "#E7E7E8", - "hoverColor": "#EEEEEE", + "hoverColor": "#F4F4F4", "hoverMaskColor": "#E7E7E8", + "inactiveColoredTabBackground": "#FAFAFA", "inactiveColoredFileBackground": "#F3F4F5", - "inactiveUnderlineColor": "#D2D4D5", - "inactiveMaskColor": "#EEEEEE", + "inactiveUnderlineColor": "#00BCD4", + "inactiveMaskColor": "#F4F4F4", "underlineColor": "#00BCD4", - "underlinedTabBackground": "#E7E7E8" + "underlinedTabBackground": "#E7E7E8", + "underlinedTabForeground": "#546e7a" }, "Desktop.background": "#FAFAFA", "DialogWrapper.southPanelBackground": "#FAFAFA", @@ -183,12 +203,12 @@ "areaForeground": "#546E7A" }, "Editor": { - "background": "#EEEEEE", + "background": "#F4F4F4", "foreground": "#546E7A", "shortcutForeground": "#94A7B0" }, "EditorPane": { - "background": "#EEEEEE", + "background": "#F4F4F4", "caretForeground": "#00BCD4", "foreground": "#546E7A", "inactiveBackground": "#FAFAFA", @@ -197,20 +217,22 @@ "selectionForeground": "#546e7a" }, "EditorTabs": { - "borderColor": "#FFFFFF", + "borderColor": "#eae8e8", + "hoverBackground": "#E7E7E8", "hoverColor": "#E7E7E8", "hoverMaskColor": "#E7E7E8", "inactiveMaskColor": "#FAFAFA", - "inactiveColoredFileBackground": "#FAFAFA2", + "inactiveColoredFileBackground": "#FAFAFA", "inactiveUnderlineColor": "#D2D4D5", "selectedForeground": "#546E7A", "selectedBackground": "#E7E7E8", "underlineColor": "#00BCD4", - "underlinedTabBackground": "#E7E7E8" + "underlinedTabBackground": "#E7E7E8", + "underlinedTabForeground": "#546e7a" }, "EditorGroupsTabs": { "background": "#FAFAFA", - "borderColor": "#FFFFFF", + "borderColor": "#eae8e8", "hoverBackground": "#E7E7E8", "hoverColor": "#E7E7E8", "inactiveUnderlineColor": "#00BCD4", @@ -221,7 +243,7 @@ "FileColor": { "Green": "#387002", "Blue": "#004BA0", - "Yellow": "#CCD7DA", + "Yellow": "#eae8e8", "Orange": "#B53D00", "Violet": "#4D2C91", "Rose": "#A00037" @@ -238,7 +260,7 @@ }, "Focus.color": "#d3e1e8", "FormattedTextField": { - "background": "#EEEEEE", + "background": "#F4F4F4", "caretForeground": "#00BCD4", "foreground": "#546E7A", "inactiveBackground": "#F3F4F5", @@ -246,17 +268,18 @@ "selectionForeground": "#546e7a", "selectionBackground": "#E7E7E8" }, + "GotItTooltip.borderColor": "#eae8e8", "Group": { "disabledSeparatorColor": "#d3e1e8", "separatorColor": "#d3e1e8" }, "GutterTooltip": { - "infoForeground": "#546E7A", + "infoForeground": "#94A7B0", "lineSeparatorColor": "#FAFAFA" }, "HeaderColor": { "active": "#FAFAFA", - "inactive": "#EEEEEE" + "inactive": "#F4F4F4" }, "HelpTooltip": { "background": "#FAFAFA", @@ -266,7 +289,7 @@ "shortcutForeground": "#94A7B0" }, "Hyperlink.linkColor": "#00BCD4", - "inactiveCaption": "#FFFFFF", + "inactiveCaption": "#eae8e8", "inactiveCaptionBorder": "#FAFAFA", "inactiveCaptionText": "#94A7B0", "info": "#94A7B0", @@ -288,7 +311,8 @@ "disabledText": "#D2D4D5", "foreground": "#546E7A", "infoForeground": "#94A7B0", - "selectedForeground": "#546e7a" + "selectedForeground": "#546e7a", + "selectedDisabledForeground": "#546E7A" }, "Link": { "activeForeground": "#00BCD4", @@ -299,17 +323,19 @@ }, "link.foreground": "#00BCD4", "List": { - "background": "#FFFFFF", + "background": "#eae8e8", "foreground": "#546E7A", + "hoverBackground": "#80CBC480", + "hoverInactiveBackground": "#E7E7E8", "selectionBackground": "#80CBC450", "selectionForeground": "#546e7a", "selectionInactiveForeground": "#546e7a", - "selectionInactiveBackground": "#80CBC440" + "selectionInactiveBackground": "#80CBC480" }, "material": { "background": "#FAFAFA", "branchColor": "#546E7A", - "contrast": "#EEEEEE", + "contrast": "#F4F4F4", "foreground": "#546E7A", "mergeCommits": "#F3F4F5", "primaryColor": "#94A7B0", @@ -319,7 +345,7 @@ "tagColor": "#94A7B0" }, "MemoryIndicator": { - "allocatedBackground": "#FFFFFF", + "allocatedBackground": "#eae8e8", "usedColor": "#E7E7E8", "usedBackground": "#E7E7E8" }, @@ -328,8 +354,8 @@ "acceleratorSelectionForeground": "#546e7a", "background": "#FAFAFA", "border": "4,2,4,2", - "borderColor": "#FFFFFF", - "disabledBackground": "#FFFFFF", + "borderColor": "#eae8e8", + "disabledBackground": "#eae8e8", "disabledForeground": "#D2D4D5", "foreground": "#546E7A", "selectionBackground": "#80CBC4", @@ -337,7 +363,7 @@ "separatorColor": "#d3e1e8" }, "MenuBar": { - "background": "#EEEEEE", + "background": "#F4F4F4", "borderColor": "#FAFAFA", "disabledBackground": "#FAFAFA", "disabledForeground": "#D2D4D5", @@ -345,7 +371,7 @@ "highlight": "#FAFAFA", "selectionBackground": "#80CBC4", "selectionForeground": "#546e7a", - "shadow": "#EEEEEE" + "shadow": "#F4F4F4" }, "MenuItem": { "acceleratorForeground": "#94A7B0", @@ -367,7 +393,7 @@ "background": "#FAFAFA" }, "SearchField": { - "background": "#EEEEEE" + "background": "#F4F4F4" } }, "NewPSD.warning": "#00BCD4", @@ -407,7 +433,7 @@ "foreground": "#546E7A" }, "ParameterInfo": { - "background": "#FFFFFF", + "background": "#eae8e8", "borderColor": "#E7E7E8", "currentOverloadBackground": "#E7E7E8", "currentParameterForeground": "#00BCD4", @@ -417,7 +443,7 @@ "lineSeparatorColor": "#E7E7E8" }, "PasswordField": { - "background": "#EEEEEE", + "background": "#F4F4F4", "capsLockIconColor": "#00BCD4", "caretForeground": "#00BCD4", "foreground": "#546E7A", @@ -429,7 +455,8 @@ "background": "#FAFAFA", "disabledForeground": "#D2D4D5", "eapTagBackground": "#E7E7E8", - "lightSelectionBackground": "#80CBC4", + "hoverBackground": "#80CBC480", + "lightSelectionBackground": "#E7E7E8", "paidTagBackground": "#E7E7E8", "selectionBackground": "#80CBC4", "tagForeground": "#00BCD4", @@ -442,16 +469,16 @@ "installFocusedBackground": "#E7E7E8", "installFillForeground": "#D2D4D5", "installFillBackground": "#F3F4F5", - "updateBackground": "#F3F4F5", + "updateBackground": "#00BCD4", "updateBorderColor": "#F3F4F5", "updateForeground": "#546E7A" }, "SearchField": { - "background": "#EEEEEE", + "background": "#F4F4F4", "borderColor": "#d3e1e8" }, "SectionHeader": { - "background": "#FFFFFF", + "background": "#eae8e8", "foreground": "#546E7A" }, "Tab": { @@ -466,20 +493,20 @@ "borderColor": "#FAFAFA", "foreground": "#00BCD4" }, - "borderColor": "#EEEEEE", + "borderColor": "#F4F4F4", "inactiveBorderColor": "#FAFAFA", - "innerBorderColor": "#FFFFFF", + "innerBorderColor": "#eae8e8", "Header": { "activeBackground": "#FAFAFA", - "inactiveBackground": "#EEEEEE" + "inactiveBackground": "#F4F4F4" }, "paintBorder": true, "separatorForeground": "#546E7A", - "separatorColor": "#FFFFFF", + "separatorColor": "#eae8e8", "Toolbar": { - "Floating.background": "#EEEEEE", - "background": "#EEEEEE", - "borderColor": "#EEEEEE" + "Floating.background": "#F4F4F4", + "background": "#F4F4F4", + "borderColor": "#F4F4F4" } }, "PopupMenu": { @@ -517,6 +544,7 @@ "selectionBackground": "#80CBC4", "selectionForeground": "#546e7a" }, + "ScreenView.borderColor": "#d3e1e8", "ScrollBar": { "background": "#FAFAFA", "hoverThumbBorderColor": "#00BCD4", @@ -553,7 +581,7 @@ }, "SearchEverywhere": { "Advertiser": { - "background": "#EEEEEE", + "background": "#F4F4F4", "foreground": "#94A7B0" }, "Header": { @@ -565,7 +593,7 @@ }, "SearchField": { "background": "#FAFAFA", - "borderColor": "#EEEEEE", + "borderColor": "#F4F4F4", "infoForeground": "#94A7B0" }, "Tab": { @@ -576,16 +604,25 @@ }, "SearchMatch": { "endBackground": "#00BCD4", - "startBackground": "#00BCD4" + "startBackground": "#00BCD4", + "endColor": "#00BCD4", + "startColor": "#00BCD4" }, "SearchField.errorBackground": "#eae8e8", + "SearchOption": { + "selectedBackground": "#E7E7E8" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#94A7B0", + "Repeated.File.Foreground": "#546E7A" + }, "Separator": { - "background": "#FFFFFF", - "foreground": "#FFFFFF", - "separatorColor": "#FFFFFF" + "background": "#eae8e8", + "foreground": "#eae8e8", + "separatorColor": "#eae8e8" }, "SidePanel": { - "background": "#EEEEEE" + "background": "#F4F4F4" }, "Slider": { "background": "#FAFAFA", @@ -593,7 +630,7 @@ "buttonColor": "#00BCD4", "foreground": "#546E7A", "majorTickLength": 6, - "tickColor": "#FFFFFF", + "tickColor": "#eae8e8", "trackColor": "#E7E7E8", "trackWidth": 7, "thumb": "#00BCD4" @@ -612,11 +649,13 @@ }, "SplitPane": { "background": "#FAFAFA", - "highlight": "#EEEEEE" + "highlight": "#F4F4F4" }, - "SplitPaneDivider.draggingColor": "#FFFFFF", + "SplitPaneDivider.draggingColor": "#eae8e8", "StatusBar": { - "borderColor": "#FAFAFA" + "borderColor": "#FAFAFA", + "hoverBackground": "#E7E7E8", + "LightEditBackground": "#E7E7E8" }, "TabbedPane": { "background": "#FAFAFA", @@ -641,11 +680,13 @@ "tabSelectionHeight": 2, "underlineColor": "#00BCD4" }, - "TabbedPane.mt.tab.background": "#EEEEEE", + "TabbedPane.mt.tab.background": "#F4F4F4", "Table": { + "alternativeRowBackground": "#F4F4F4", "background": "#FAFAFA", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#D2D4D5", "dropLineColor": "#00BCD4", "dropLineShortColor": "#00BCD4", "focusCellBackground": "#E7E7E8", @@ -653,33 +694,35 @@ "foreground": "#546E7A", "gridColor": "#FAFAFA", "highlightOuter": "#E7E7E8", + "hoverBackground": "#80CBC480", + "hoverInactiveBackground": "#E7E7E8", "lightSelectionForeground": "#546e7a", "lightSelectionInactiveForeground": "#94A7B0", - "lightSelectionInactiveBackground": "#FFFFFF", + "lightSelectionInactiveBackground": "#eae8e8", "selectionBackground": "#E7E7E8", "selectionForeground": "#546e7a", "selectionInactiveBackground": "#E7E7E8", "selectionInactiveForeground": "#546e7a", "sortIconColor": "#546E7A", - "stripeColor": "#EEEEEE" + "stripeColor": "#F4F4F4" }, "TableHeader": { "background": "#FAFAFA", "borderColor": "#FAFAFA", - "bottomSeparatorColor": "#FFFFFF", + "bottomSeparatorColor": "#eae8e8", "cellBorder": "4,0,4,0", "disabledForeground": "#D2D4D5", "foreground": "#546E7A", "focusCellBackground": "#E7E7E8", "focusCellForeground": "#546e7a", "height": 25, - "separatorColor": "#FFFFFF" + "separatorColor": "#eae8e8" }, "text": "#94A7B0", "textInactiveText": "#94A7B0", "textText": "#94A7B0", "TextArea": { - "background": "#EEEEEE", + "background": "#F4F4F4", "caretForeground": "#00BCD4", "foreground": "#546E7A", "inactiveForeground": "#D2D4D5", @@ -687,7 +730,7 @@ "selectionForeground": "#546e7a" }, "TextField": { - "background": "#EEEEEE", + "background": "#F4F4F4", "caretForeground": "#00BCD4", "foreground": "#546E7A", "inactiveForeground": "#D2D4D5", @@ -695,7 +738,7 @@ "selectionForeground": "#546e7a" }, "TextPane": { - "background": "#EEEEEE", + "background": "#F4F4F4", "caretForeground": "#00BCD4", "foreground": "#546E7A", "inactiveForeground": "#D2D4D5", @@ -703,7 +746,7 @@ "selectionForeground": "#546e7a" }, "TitlePane": { - "background": "#EEEEEE", + "background": "#F4F4F4", "Button.hoverBackground": "#E7E7E8", "inactiveBackground": "#FAFAFA", "infoForeground": "#94A7B0", @@ -721,7 +764,7 @@ "onForeground": "#00BCD4" }, "ToolBar": { - "background": "#EEEEEE", + "background": "#F4F4F4", "borderHandleColor": "#94A7B0", "floatingForeground": "#94A7B0", "foreground": "#546E7A" @@ -729,8 +772,8 @@ "ToolTip": { "Actions.background": "#FAFAFA", "Actions.infoForeground": "#94A7B0", - "background": "#FAFAFA", - "borderColor": "#E7E7E8", + "background": "#eae8e8", + "borderColor": "#d3e1e8", "foreground": "#546E7A", "infoForeground": "#94A7B0", "separatorColor": "#d3e1e8", @@ -740,61 +783,104 @@ "Button": { "hoverBackground": "#E7E7E8", "selectedForeground": "#546e7a", - "selectedBackground": "#EEEEEE" + "selectedBackground": "#F4F4F4" }, "Header": { "background": "#FAFAFA", - "borderColor": "#FFFFFF", + "borderColor": "#eae8e8", "inactiveBackground": "#FAFAFA" }, "HeaderCloseButton": { "background": "#FAFAFA" }, "HeaderTab": { + "borderColor": "#E7E7E8", "hoverBackground": "#E7E7E8", - "hoverInactiveBackground": "#FFFFFF", + "hoverInactiveBackground": "#E7E7E8", "inactiveUnderlineColor": "#00BCD4", - "selectedBackground": "#EEEEEE", - "selectedInactiveBackground": "#EEEEEE", + "selectedBackground": "#F4F4F4", + "selectedInactiveBackground": "#F4F4F4", "underlineColor": "#00BCD4", "underlinedTabBackground": "#E7E7E8", - "underlinedTabInactiveBackground": "#FFFFFF" + "underlinedTabInactiveBackground": "#eae8e8", + "underlinedTabForeground": "#546e7a", + "underlinedTabInactiveForeground": "#546E7A" } }, "Tree": { - "background": "#EEEEEE", + "background": "#F4F4F4", "foreground": "#94A7B0", "hash": "#d3e1e8", + "hoverBackground": "#80CBC480", + "hoverInactiveBackground": "#E7E7E8", "modifiedItemForeground": "#00BCD4", "rowHeight": 28, - "selectionBackground": "#80CBC440", + "selectionBackground": "#80CBC480", "selectionForeground": "#546e7a", "selectionInactiveForeground": "#546e7a", - "selectionInactiveBackground": "#80CBC440", - "textBackground": "#EEEEEE" + "selectionInactiveBackground": "#80CBC480", + "textBackground": "#F4F4F4" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { + "UIDesigner": { "Activity.borderColor": "#d3e1e8", - "ColorPicker.background": "#FAFAFA", - "ColorPicker.foreground": "#546E7A", - "Component.borderColor": "#d3e1e8", - "Component.background": "#FAFAFA", - "Component.foreground": "#546E7A", - "Connector.borderColor": "#d3e1e8", - "Connector.hoverBorderColor": "#E7E7E8", - "Canvas.background": "#EEEEEE", + "Canvas.background": "#F4F4F4", + "ColorPicker": { + "background": "#FAFAFA", + "foreground": "#546E7A" + }, + "Component": { + "borderColor": "#d3e1e8", + "background": "#FAFAFA", + "foreground": "#546E7A", + "hoverBorderColor": "#E7E7E8" + }, + "Connector": { + "borderColor": "#d3e1e8", + "hoverBorderColor": "#E7E7E8" + }, + "Canvas.background": "#F4F4F4", "highStroke.foreground": "#546E7A", "Label.foreground": "#94A7B0", - "List.selectionBackground": "#80CBC440", - "Panel.borderColor": "#d3e1e8", - "Panel.background": "#FAFAFA", + "List.selectionBackground": "#80CBC480", + "motion": { + "borderColor": "#d3e1e8", + "Component.foreground": "#546E7A", + "ConstraintSetText.foreground": "#94A7B0", + "ConstraintSet.background": "#eae8e8", + "CSPanel.SelectedFocusBackground": "#80CBC4", + "CSPanel.SelectedBackground": "#80CBC480", + "cs_FocusText.infoForeground": "#94A7B0", + "CursorTextColor.foreground": "#546E7A", + "HoverColor.disabledBackground": "#D2D4D5", + "motionGraph.background": "#FAFAFA", + "Notification.background": "#eae8e8", + "ourAvg.background": "#eae8e8", + "ourCS.background": "#eae8e8", + "ourCS_Border.borderColor": "#d3e1e8", + "ourCS_TextColor.foreground": "#94A7B0", + "ourCS_SelectedFocusBackground.selectionForeground": "#546e7a", + "ourCS_SelectedBackground.selectionInactiveBackground": "#E7E7E8", + "ourCS_SelectedBorder.pressedBorderColor": "#E7E7E8", + "ourML_BarColor.separatorColor": "#d3e1e8", + "PrimaryPanel.background": "#F4F4F4", + "SecondaryPanel.background": "#FAFAFA", + "SecondaryPanel.header.foreground": "#94A7B0", + "SecondaryPanel.header.background": "#F4F4F4", + "timeLine.disabledBorderColor": "#d3e1e8" + }, + "Panel": { + "borderColor": "#d3e1e8", + "background": "#FAFAFA" + }, "percent.foreground": "#546E7A", - "Placeholder.background": "#FAFAFA", - "Placeholder.borderColor": "#d3e1e8", - "Placeholder.foreground": "#546E7A", - "Placeholder.selectedForeground": "#546e7a", + "Placeholder": { + "background": "#FAFAFA", + "borderColor": "#d3e1e8", + "foreground": "#546E7A", + "selectedForeground": "#546e7a" + }, "Preview.background": "#FAFAFA", "stroke.acceleratorForeground": "#94A7B0" }, @@ -828,7 +914,8 @@ }, "Log": { "Commit.unmatchedForeground": "#94A7B0", - "Commit.currentBranchBackground": "#FFFFFF" + "Commit.currentBranchBackground": "#eae8e8", + "Commit.hoveredBackground": "#80CBC480" }, "RefLabel": { "foreground": "#546e7a", @@ -836,33 +923,39 @@ } }, "Viewport": { - "background": "#EEEEEE", + "background": "#F4F4F4", "foreground": "#546E7A" }, "WelcomeScreen": { + "AssociatedComponent.background": "#FAFAFA", "background": "#FAFAFA", "borderColor": "#FAFAFA", - "captionBackground": "#EEEEEE", + "captionBackground": "#F4F4F4", "captionForeground": "#546E7A", - "footerBackground": "#EEEEEE", + "Details.background": "#FAFAFA", + "footerBackground": "#F4F4F4", "footerForeground": "#546E7A", "headerBackground": "#FAFAFA", "headerForeground": "#546E7A", + "List.background": "#F4F4F4", "separatorColor": "#d3e1e8", + "SidePanel.background": "#eae8e8", "Projects": { - "background": "#FFFFFF", + "actions.background": "#F4F4F4", + "actions.selectionBackground": "#E7E7E8", + "background": "#eae8e8", "selectionBackground": "#80CBC4", - "selectionInactiveBackground": "#FFFFFF" + "selectionInactiveBackground": "#eae8e8" } }, - "window": "#EEEEEE", + "window": "#F4F4F4", "windowBorder": "#d3e1e8", "windowText": "#94A7B0", "Window.border": "#d3e1e8" }, "icons": { "ColorPalette": { - "#43494A": "#EEEEEE", + "#43494A": "#F4F4F4", "#6B6B6B": "#94A7B0", "#A7A7A7": "#FAFAFA", "#3D6185": "#00BCD4", @@ -879,10 +972,10 @@ "Actions.GreyInline.Dark": "#546E7A", "Actions.Red": "#E53935", "Actions.Yellow": "#F6A434", - "Checkbox.Background.Default": "#EEEEEE", - "Checkbox.Background.Default.Dark": "#EEEEEE", - "Checkbox.Background.Disabled": "#CCD7DA", - "Checkbox.Background.Disabled.Dark": "#CCD7DA", + "Checkbox.Background.Default": "#F4F4F4", + "Checkbox.Background.Default.Dark": "#F4F4F4", + "Checkbox.Background.Disabled": "#eae8e8", + "Checkbox.Background.Disabled.Dark": "#eae8e8", "Checkbox.Border.Default": "#d3e1e8", "Checkbox.Border.Default.Dark": "#d3e1e8", "Checkbox.Border.Disabled": "#D2D4D5", 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 26ce91a8..f26db84f 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 @@ -3,24 +3,30 @@ "dark": false, "author": "Mallowigi", "editorScheme": "/colors/Material Lighter.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/lighter.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { "acceleratorSelectionForeground": "#94A7B0", "background": "#FAFAFA", "borderColor": "#d3e1e8", - "disabledBackground": "#CCD7DA", + "disabledBackground": "#eae8e8", "disabledForeground": "#D2D4D5", "disabledText": "#D2D4D5", "focusColor": "#E7E7E8", "focusedBorderColor": "#00BCD4", "foreground": "#546E7A", - "inactiveBackground": "#CCD7DA", + "inactiveBackground": "#eae8e8", "inactiveForeground": "#94A7B0", "infoForeground": "#94A7B0", "selectionBackground": "#80CBC4", - "selectionBackgroundInactive": "#FFFFFF", + "selectionBackgroundInactive": "#eae8e8", "selectionForeground": "#546e7a", - "selectionInactiveBackground": "#FFFFFF", + "selectionInactiveBackground": "#eae8e8", "separatorColor": "#d3e1e8" }, "activeCaption": "#FAFAFA", @@ -72,7 +78,10 @@ "Tooltip.borderColor": "#d3e1e8", "Tooltip.background": "#eae8e8" }, - "Content.background": "#EEEEEE", + "Content": { + "background": "#F4F4F4", + "selectionBackground": "#80CBC4" + }, "CheckBox": { "background": "#FAFAFA", "disabledText": "#D2D4D5", @@ -89,6 +98,14 @@ "selectionBackground": "#80CBC4", "selectionForeground": "#546e7a" }, + "CodeWithMe": { + "Avatar.foreground": "#546E7A", + "AccessEnabled": { + "accessDot": "#00BCD4", + "dropdownBorder": "#eae8e8", + "pillBackground": "$second" + } + }, "ColorChooser": { "background": "#FAFAFA", "foreground": "#546E7A", @@ -104,17 +121,18 @@ }, "background": "#FAFAFA", "buttonBackground": "#F3F4F5", + "darcula.hoveredArrowButtonForeground": "#00BCD4", "disabledForeground": "#D2D4D5", "foreground": "#546E7A", "modifiedItemForeground": "#00BCD4", - "nonEditableBackground": "#FFFFFF", + "nonEditableBackground": "#eae8e8", "padding": "5,5,5,5", "selectionBackground": "#E7E7E8", "selectionForeground": "#546e7a" }, "ComboPopup.border": "#d3e1e8", "CompletionPopup": { - "background": "#FFFFFF", + "background": "#eae8e8", "foreground": "#546E7A", "infoForeground": "#94A7B0", "matchForeground": "#00BCD4", @@ -168,11 +186,13 @@ "hoverBackground": "#E7E7E8", "hoverColor": "#FAFAFA", "hoverMaskColor": "#E7E7E8", + "inactiveColoredTabBackground": "#FAFAFA", "inactiveColoredFileBackground": "#F3F4F5", - "inactiveUnderlineColor": "#D2D4D5", + "inactiveUnderlineColor": "#00BCD4", "inactiveMaskColor": "#FAFAFA", "underlineColor": "#00BCD4", - "underlinedTabBackground": "#E7E7E8" + "underlinedTabBackground": "#E7E7E8", + "underlinedTabForeground": "#546e7a" }, "Desktop.background": "#FAFAFA", "DialogWrapper.southPanelBackground": "#FAFAFA", @@ -197,20 +217,22 @@ "selectionForeground": "#546e7a" }, "EditorTabs": { - "borderColor": "#FFFFFF", + "borderColor": "#eae8e8", + "hoverBackground": "#E7E7E8", "hoverColor": "#E7E7E8", "hoverMaskColor": "#E7E7E8", "inactiveMaskColor": "#FAFAFA", - "inactiveColoredFileBackground": "#FAFAFA2", + "inactiveColoredFileBackground": "#FAFAFA", "inactiveUnderlineColor": "#D2D4D5", "selectedForeground": "#546E7A", "selectedBackground": "#E7E7E8", "underlineColor": "#00BCD4", - "underlinedTabBackground": "#E7E7E8" + "underlinedTabBackground": "#E7E7E8", + "underlinedTabForeground": "#546e7a" }, "EditorGroupsTabs": { "background": "#FAFAFA", - "borderColor": "#FFFFFF", + "borderColor": "#eae8e8", "hoverBackground": "#E7E7E8", "hoverColor": "#E7E7E8", "inactiveUnderlineColor": "#00BCD4", @@ -221,7 +243,7 @@ "FileColor": { "Green": "#387002", "Blue": "#004BA0", - "Yellow": "#CCD7DA", + "Yellow": "#eae8e8", "Orange": "#B53D00", "Violet": "#4D2C91", "Rose": "#A00037" @@ -246,17 +268,18 @@ "selectionForeground": "#546e7a", "selectionBackground": "#E7E7E8" }, + "GotItTooltip.borderColor": "#eae8e8", "Group": { "disabledSeparatorColor": "#d3e1e8", "separatorColor": "#d3e1e8" }, "GutterTooltip": { - "infoForeground": "#546E7A", + "infoForeground": "#94A7B0", "lineSeparatorColor": "#FAFAFA" }, "HeaderColor": { "active": "#FAFAFA", - "inactive": "#EEEEEE" + "inactive": "#F4F4F4" }, "HelpTooltip": { "background": "#FAFAFA", @@ -266,7 +289,7 @@ "shortcutForeground": "#94A7B0" }, "Hyperlink.linkColor": "#00BCD4", - "inactiveCaption": "#FFFFFF", + "inactiveCaption": "#eae8e8", "inactiveCaptionBorder": "#FAFAFA", "inactiveCaptionText": "#94A7B0", "info": "#94A7B0", @@ -288,7 +311,8 @@ "disabledText": "#D2D4D5", "foreground": "#546E7A", "infoForeground": "#94A7B0", - "selectedForeground": "#546e7a" + "selectedForeground": "#546e7a", + "selectedDisabledForeground": "#546E7A" }, "Link": { "activeForeground": "#00BCD4", @@ -299,17 +323,19 @@ }, "link.foreground": "#00BCD4", "List": { - "background": "#FFFFFF", + "background": "#eae8e8", "foreground": "#546E7A", + "hoverBackground": "#80CBC480", + "hoverInactiveBackground": "#E7E7E8", "selectionBackground": "#80CBC450", "selectionForeground": "#546e7a", "selectionInactiveForeground": "#546e7a", - "selectionInactiveBackground": "#80CBC440" + "selectionInactiveBackground": "#80CBC480" }, "material": { "background": "#FAFAFA", "branchColor": "#546E7A", - "contrast": "#EEEEEE", + "contrast": "#F4F4F4", "foreground": "#546E7A", "mergeCommits": "#F3F4F5", "primaryColor": "#94A7B0", @@ -319,7 +345,7 @@ "tagColor": "#94A7B0" }, "MemoryIndicator": { - "allocatedBackground": "#FFFFFF", + "allocatedBackground": "#eae8e8", "usedColor": "#E7E7E8", "usedBackground": "#E7E7E8" }, @@ -328,8 +354,8 @@ "acceleratorSelectionForeground": "#546e7a", "background": "#FAFAFA", "border": "4,2,4,2", - "borderColor": "#FFFFFF", - "disabledBackground": "#FFFFFF", + "borderColor": "#eae8e8", + "disabledBackground": "#eae8e8", "disabledForeground": "#D2D4D5", "foreground": "#546E7A", "selectionBackground": "#80CBC4", @@ -407,7 +433,7 @@ "foreground": "#546E7A" }, "ParameterInfo": { - "background": "#FFFFFF", + "background": "#eae8e8", "borderColor": "#E7E7E8", "currentOverloadBackground": "#E7E7E8", "currentParameterForeground": "#00BCD4", @@ -429,7 +455,8 @@ "background": "#FAFAFA", "disabledForeground": "#D2D4D5", "eapTagBackground": "#E7E7E8", - "lightSelectionBackground": "#80CBC4", + "hoverBackground": "#80CBC480", + "lightSelectionBackground": "#E7E7E8", "paidTagBackground": "#E7E7E8", "selectionBackground": "#80CBC4", "tagForeground": "#00BCD4", @@ -442,7 +469,7 @@ "installFocusedBackground": "#E7E7E8", "installFillForeground": "#D2D4D5", "installFillBackground": "#F3F4F5", - "updateBackground": "#F3F4F5", + "updateBackground": "#00BCD4", "updateBorderColor": "#F3F4F5", "updateForeground": "#546E7A" }, @@ -451,7 +478,7 @@ "borderColor": "#d3e1e8" }, "SectionHeader": { - "background": "#FFFFFF", + "background": "#eae8e8", "foreground": "#546E7A" }, "Tab": { @@ -466,20 +493,20 @@ "borderColor": "#FAFAFA", "foreground": "#00BCD4" }, - "borderColor": "#EEEEEE", + "borderColor": "#F4F4F4", "inactiveBorderColor": "#FAFAFA", - "innerBorderColor": "#FFFFFF", + "innerBorderColor": "#eae8e8", "Header": { "activeBackground": "#FAFAFA", - "inactiveBackground": "#EEEEEE" + "inactiveBackground": "#F4F4F4" }, "paintBorder": true, "separatorForeground": "#546E7A", - "separatorColor": "#FFFFFF", + "separatorColor": "#eae8e8", "Toolbar": { - "Floating.background": "#EEEEEE", - "background": "#EEEEEE", - "borderColor": "#EEEEEE" + "Floating.background": "#F4F4F4", + "background": "#F4F4F4", + "borderColor": "#F4F4F4" } }, "PopupMenu": { @@ -517,6 +544,7 @@ "selectionBackground": "#80CBC4", "selectionForeground": "#546e7a" }, + "ScreenView.borderColor": "#d3e1e8", "ScrollBar": { "background": "#FAFAFA", "hoverThumbBorderColor": "#00BCD4", @@ -553,7 +581,7 @@ }, "SearchEverywhere": { "Advertiser": { - "background": "#EEEEEE", + "background": "#F4F4F4", "foreground": "#94A7B0" }, "Header": { @@ -565,7 +593,7 @@ }, "SearchField": { "background": "#FAFAFA", - "borderColor": "#EEEEEE", + "borderColor": "#F4F4F4", "infoForeground": "#94A7B0" }, "Tab": { @@ -576,13 +604,22 @@ }, "SearchMatch": { "endBackground": "#00BCD4", - "startBackground": "#00BCD4" + "startBackground": "#00BCD4", + "endColor": "#00BCD4", + "startColor": "#00BCD4" }, "SearchField.errorBackground": "#eae8e8", + "SearchOption": { + "selectedBackground": "#E7E7E8" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#94A7B0", + "Repeated.File.Foreground": "#546E7A" + }, "Separator": { - "background": "#FFFFFF", - "foreground": "#FFFFFF", - "separatorColor": "#FFFFFF" + "background": "#eae8e8", + "foreground": "#eae8e8", + "separatorColor": "#eae8e8" }, "SidePanel": { "background": "#FAFAFA" @@ -593,7 +630,7 @@ "buttonColor": "#00BCD4", "foreground": "#546E7A", "majorTickLength": 6, - "tickColor": "#FFFFFF", + "tickColor": "#eae8e8", "trackColor": "#E7E7E8", "trackWidth": 7, "thumb": "#00BCD4" @@ -614,9 +651,11 @@ "background": "#FAFAFA", "highlight": "#FAFAFA" }, - "SplitPaneDivider.draggingColor": "#FFFFFF", + "SplitPaneDivider.draggingColor": "#eae8e8", "StatusBar": { - "borderColor": "#FAFAFA" + "borderColor": "#FAFAFA", + "hoverBackground": "#E7E7E8", + "LightEditBackground": "#E7E7E8" }, "TabbedPane": { "background": "#FAFAFA", @@ -643,9 +682,11 @@ }, "TabbedPane.mt.tab.background": "#FAFAFA", "Table": { + "alternativeRowBackground": "#F4F4F4", "background": "#FAFAFA", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#D2D4D5", "dropLineColor": "#00BCD4", "dropLineShortColor": "#00BCD4", "focusCellBackground": "#E7E7E8", @@ -653,27 +694,29 @@ "foreground": "#546E7A", "gridColor": "#FAFAFA", "highlightOuter": "#E7E7E8", + "hoverBackground": "#80CBC480", + "hoverInactiveBackground": "#E7E7E8", "lightSelectionForeground": "#546e7a", "lightSelectionInactiveForeground": "#94A7B0", - "lightSelectionInactiveBackground": "#FFFFFF", + "lightSelectionInactiveBackground": "#eae8e8", "selectionBackground": "#E7E7E8", "selectionForeground": "#546e7a", "selectionInactiveBackground": "#E7E7E8", "selectionInactiveForeground": "#546e7a", "sortIconColor": "#546E7A", - "stripeColor": "#EEEEEE" + "stripeColor": "#F4F4F4" }, "TableHeader": { "background": "#FAFAFA", "borderColor": "#FAFAFA", - "bottomSeparatorColor": "#FFFFFF", + "bottomSeparatorColor": "#eae8e8", "cellBorder": "4,0,4,0", "disabledForeground": "#D2D4D5", "foreground": "#546E7A", "focusCellBackground": "#E7E7E8", "focusCellForeground": "#546e7a", "height": 25, - "separatorColor": "#FFFFFF" + "separatorColor": "#eae8e8" }, "text": "#94A7B0", "textInactiveText": "#94A7B0", @@ -703,7 +746,7 @@ "selectionForeground": "#546e7a" }, "TitlePane": { - "background": "#EEEEEE", + "background": "#F4F4F4", "Button.hoverBackground": "#E7E7E8", "inactiveBackground": "#FAFAFA", "infoForeground": "#94A7B0", @@ -729,8 +772,8 @@ "ToolTip": { "Actions.background": "#FAFAFA", "Actions.infoForeground": "#94A7B0", - "background": "#FAFAFA", - "borderColor": "#E7E7E8", + "background": "#eae8e8", + "borderColor": "#d3e1e8", "foreground": "#546E7A", "infoForeground": "#94A7B0", "separatorColor": "#d3e1e8", @@ -740,61 +783,104 @@ "Button": { "hoverBackground": "#E7E7E8", "selectedForeground": "#546e7a", - "selectedBackground": "#EEEEEE" + "selectedBackground": "#F4F4F4" }, "Header": { "background": "#FAFAFA", - "borderColor": "#FFFFFF", + "borderColor": "#eae8e8", "inactiveBackground": "#FAFAFA" }, "HeaderCloseButton": { "background": "#FAFAFA" }, "HeaderTab": { + "borderColor": "#E7E7E8", "hoverBackground": "#E7E7E8", - "hoverInactiveBackground": "#FFFFFF", + "hoverInactiveBackground": "#E7E7E8", "inactiveUnderlineColor": "#00BCD4", - "selectedBackground": "#EEEEEE", - "selectedInactiveBackground": "#EEEEEE", + "selectedBackground": "#F4F4F4", + "selectedInactiveBackground": "#F4F4F4", "underlineColor": "#00BCD4", "underlinedTabBackground": "#E7E7E8", - "underlinedTabInactiveBackground": "#FFFFFF" + "underlinedTabInactiveBackground": "#eae8e8", + "underlinedTabForeground": "#546e7a", + "underlinedTabInactiveForeground": "#546E7A" } }, "Tree": { "background": "#FAFAFA", "foreground": "#94A7B0", "hash": "#d3e1e8", + "hoverBackground": "#80CBC480", + "hoverInactiveBackground": "#E7E7E8", "modifiedItemForeground": "#00BCD4", "rowHeight": 28, - "selectionBackground": "#80CBC440", + "selectionBackground": "#80CBC480", "selectionForeground": "#546e7a", "selectionInactiveForeground": "#546e7a", - "selectionInactiveBackground": "#80CBC440", + "selectionInactiveBackground": "#80CBC480", "textBackground": "#FAFAFA" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { + "UIDesigner": { "Activity.borderColor": "#d3e1e8", - "ColorPicker.background": "#FAFAFA", - "ColorPicker.foreground": "#546E7A", - "Component.borderColor": "#d3e1e8", - "Component.background": "#FAFAFA", - "Component.foreground": "#546E7A", - "Connector.borderColor": "#d3e1e8", - "Connector.hoverBorderColor": "#E7E7E8", - "Canvas.background": "#EEEEEE", + "Canvas.background": "#F4F4F4", + "ColorPicker": { + "background": "#FAFAFA", + "foreground": "#546E7A" + }, + "Component": { + "borderColor": "#d3e1e8", + "background": "#FAFAFA", + "foreground": "#546E7A", + "hoverBorderColor": "#E7E7E8" + }, + "Connector": { + "borderColor": "#d3e1e8", + "hoverBorderColor": "#E7E7E8" + }, + "Canvas.background": "#F4F4F4", "highStroke.foreground": "#546E7A", "Label.foreground": "#94A7B0", - "List.selectionBackground": "#80CBC440", - "Panel.borderColor": "#d3e1e8", - "Panel.background": "#FAFAFA", + "List.selectionBackground": "#80CBC480", + "motion": { + "borderColor": "#d3e1e8", + "Component.foreground": "#546E7A", + "ConstraintSetText.foreground": "#94A7B0", + "ConstraintSet.background": "#eae8e8", + "CSPanel.SelectedFocusBackground": "#80CBC4", + "CSPanel.SelectedBackground": "#80CBC480", + "cs_FocusText.infoForeground": "#94A7B0", + "CursorTextColor.foreground": "#546E7A", + "HoverColor.disabledBackground": "#D2D4D5", + "motionGraph.background": "#FAFAFA", + "Notification.background": "#eae8e8", + "ourAvg.background": "#eae8e8", + "ourCS.background": "#eae8e8", + "ourCS_Border.borderColor": "#d3e1e8", + "ourCS_TextColor.foreground": "#94A7B0", + "ourCS_SelectedFocusBackground.selectionForeground": "#546e7a", + "ourCS_SelectedBackground.selectionInactiveBackground": "#E7E7E8", + "ourCS_SelectedBorder.pressedBorderColor": "#E7E7E8", + "ourML_BarColor.separatorColor": "#d3e1e8", + "PrimaryPanel.background": "#F4F4F4", + "SecondaryPanel.background": "#FAFAFA", + "SecondaryPanel.header.foreground": "#94A7B0", + "SecondaryPanel.header.background": "#F4F4F4", + "timeLine.disabledBorderColor": "#d3e1e8" + }, + "Panel": { + "borderColor": "#d3e1e8", + "background": "#FAFAFA" + }, "percent.foreground": "#546E7A", - "Placeholder.background": "#FAFAFA", - "Placeholder.borderColor": "#d3e1e8", - "Placeholder.foreground": "#546E7A", - "Placeholder.selectedForeground": "#546e7a", + "Placeholder": { + "background": "#FAFAFA", + "borderColor": "#d3e1e8", + "foreground": "#546E7A", + "selectedForeground": "#546e7a" + }, "Preview.background": "#FAFAFA", "stroke.acceleratorForeground": "#94A7B0" }, @@ -828,7 +914,8 @@ }, "Log": { "Commit.unmatchedForeground": "#94A7B0", - "Commit.currentBranchBackground": "#FFFFFF" + "Commit.currentBranchBackground": "#eae8e8", + "Commit.hoveredBackground": "#80CBC480" }, "RefLabel": { "foreground": "#546e7a", @@ -840,19 +927,25 @@ "foreground": "#546E7A" }, "WelcomeScreen": { + "AssociatedComponent.background": "#FAFAFA", "background": "#FAFAFA", "borderColor": "#FAFAFA", - "captionBackground": "#EEEEEE", + "captionBackground": "#F4F4F4", "captionForeground": "#546E7A", - "footerBackground": "#EEEEEE", + "Details.background": "#FAFAFA", + "footerBackground": "#F4F4F4", "footerForeground": "#546E7A", "headerBackground": "#FAFAFA", "headerForeground": "#546E7A", + "List.background": "#F4F4F4", "separatorColor": "#d3e1e8", + "SidePanel.background": "#eae8e8", "Projects": { - "background": "#FFFFFF", + "actions.background": "#F4F4F4", + "actions.selectionBackground": "#E7E7E8", + "background": "#eae8e8", "selectionBackground": "#80CBC4", - "selectionInactiveBackground": "#FFFFFF" + "selectionInactiveBackground": "#eae8e8" } }, "window": "#FAFAFA", @@ -862,7 +955,7 @@ }, "icons": { "ColorPalette": { - "#43494A": "#EEEEEE", + "#43494A": "#F4F4F4", "#6B6B6B": "#94A7B0", "#A7A7A7": "#FAFAFA", "#3D6185": "#00BCD4", @@ -879,10 +972,10 @@ "Actions.GreyInline.Dark": "#546E7A", "Actions.Red": "#E53935", "Actions.Yellow": "#F6A434", - "Checkbox.Background.Default": "#EEEEEE", - "Checkbox.Background.Default.Dark": "#EEEEEE", - "Checkbox.Background.Disabled": "#CCD7DA", - "Checkbox.Background.Disabled.Dark": "#CCD7DA", + "Checkbox.Background.Default": "#F4F4F4", + "Checkbox.Background.Default.Dark": "#F4F4F4", + "Checkbox.Background.Disabled": "#eae8e8", + "Checkbox.Background.Disabled.Dark": "#eae8e8", "Checkbox.Border.Default": "#d3e1e8", "Checkbox.Border.Default.Dark": "#d3e1e8", "Checkbox.Border.Disabled": "#D2D4D5", diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Oceanic Contrast.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Oceanic Contrast.theme.json index 9e8d0483..18d32596 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Oceanic Contrast.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Oceanic Contrast.theme.json @@ -3,6 +3,12 @@ "dark": true, "author": "Mallowigi", "editorScheme": "/colors/Material Oceanic.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/oceanic.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { "acceleratorSelectionForeground": "#607D8B", @@ -72,7 +78,10 @@ "Tooltip.borderColor": "#2A373E", "Tooltip.background": "#1E272C" }, - "Content.background": "#1E272C", + "Content": { + "background": "#1E272C", + "selectionBackground": "#546E7A" + }, "CheckBox": { "background": "#263238", "disabledText": "#415967", @@ -89,6 +98,14 @@ "selectionBackground": "#546E7A", "selectionForeground": "#FFFFFF" }, + "CodeWithMe": { + "Avatar.foreground": "#B0BEC5", + "AccessEnabled": { + "accessDot": "#009688", + "dropdownBorder": "#32424A", + "pillBackground": "$second" + } + }, "ColorChooser": { "background": "#263238", "foreground": "#B0BEC5", @@ -104,6 +121,7 @@ }, "background": "#1E272C", "buttonBackground": "#2E3C43", + "darcula.hoveredArrowButtonForeground": "#009688", "disabledForeground": "#415967", "foreground": "#B0BEC5", "modifiedItemForeground": "#009688", @@ -168,11 +186,13 @@ "hoverBackground": "#314549", "hoverColor": "#1E272C", "hoverMaskColor": "#425B67", + "inactiveColoredTabBackground": "#263238", "inactiveColoredFileBackground": "#2E3C43", - "inactiveUnderlineColor": "#415967", + "inactiveUnderlineColor": "#009688", "inactiveMaskColor": "#1E272C", "underlineColor": "#009688", - "underlinedTabBackground": "#314549" + "underlinedTabBackground": "#314549", + "underlinedTabForeground": "#FFFFFF" }, "Desktop.background": "#263238", "DialogWrapper.southPanelBackground": "#263238", @@ -198,15 +218,17 @@ }, "EditorTabs": { "borderColor": "#32424A", + "hoverBackground": "#425B67", "hoverColor": "#425B67", "hoverMaskColor": "#425B67", "inactiveMaskColor": "#263238", - "inactiveColoredFileBackground": "#2632382", + "inactiveColoredFileBackground": "#263238", "inactiveUnderlineColor": "#415967", "selectedForeground": "#B0BEC5", "selectedBackground": "#314549", "underlineColor": "#009688", - "underlinedTabBackground": "#314549" + "underlinedTabBackground": "#314549", + "underlinedTabForeground": "#FFFFFF" }, "EditorGroupsTabs": { "background": "#263238", @@ -246,12 +268,13 @@ "selectionForeground": "#FFFFFF", "selectionBackground": "#314549" }, + "GotItTooltip.borderColor": "#1E272C", "Group": { "disabledSeparatorColor": "#2A373E", "separatorColor": "#2A373E" }, "GutterTooltip": { - "infoForeground": "#B0BEC5", + "infoForeground": "#607D8B", "lineSeparatorColor": "#263238" }, "HeaderColor": { @@ -288,7 +311,8 @@ "disabledText": "#415967", "foreground": "#B0BEC5", "infoForeground": "#607D8B", - "selectedForeground": "#FFFFFF" + "selectedForeground": "#FFFFFF", + "selectedDisabledForeground": "#B0BEC5" }, "Link": { "activeForeground": "#009688", @@ -301,10 +325,12 @@ "List": { "background": "#32424A", "foreground": "#B0BEC5", + "hoverBackground": "#546E7A70", + "hoverInactiveBackground": "#314549", "selectionBackground": "#546E7A50", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#546E7A50" + "selectionInactiveBackground": "#546E7A70" }, "material": { "background": "#263238", @@ -409,7 +435,7 @@ "ParameterInfo": { "background": "#32424A", "borderColor": "#314549", - "currentOverloadBackground": "#314549", + "currentOverloadBackground": "#425B67", "currentParameterForeground": "#009688", "disabledForeground": "#415967", "foreground": "#B0BEC5", @@ -429,7 +455,8 @@ "background": "#263238", "disabledForeground": "#415967", "eapTagBackground": "#425B67", - "lightSelectionBackground": "#546E7A", + "hoverBackground": "#546E7A70", + "lightSelectionBackground": "#314549", "paidTagBackground": "#425B67", "selectionBackground": "#546E7A", "tagForeground": "#009688", @@ -442,7 +469,7 @@ "installFocusedBackground": "#425B67", "installFillForeground": "#415967", "installFillBackground": "#2E3C43", - "updateBackground": "#2E3C43", + "updateBackground": "#009688", "updateBorderColor": "#2E3C43", "updateForeground": "#B0BEC5" }, @@ -517,6 +544,7 @@ "selectionBackground": "#546E7A", "selectionForeground": "#FFFFFF" }, + "ScreenView.borderColor": "#2A373E", "ScrollBar": { "background": "#263238", "hoverThumbBorderColor": "#009688", @@ -576,9 +604,18 @@ }, "SearchMatch": { "endBackground": "#009688", - "startBackground": "#009688" + "startBackground": "#009688", + "endColor": "#009688", + "startColor": "#009688" }, "SearchField.errorBackground": "#1E272C", + "SearchOption": { + "selectedBackground": "#314549" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#607D8B", + "Repeated.File.Foreground": "#B0BEC5" + }, "Separator": { "background": "#32424A", "foreground": "#32424A", @@ -616,7 +653,9 @@ }, "SplitPaneDivider.draggingColor": "#32424A", "StatusBar": { - "borderColor": "#263238" + "borderColor": "#263238", + "hoverBackground": "#425B67", + "LightEditBackground": "#314549" }, "TabbedPane": { "background": "#263238", @@ -643,9 +682,11 @@ }, "TabbedPane.mt.tab.background": "#1E272C", "Table": { + "alternativeRowBackground": "#1E272C", "background": "#263238", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#415967", "dropLineColor": "#009688", "dropLineShortColor": "#009688", "focusCellBackground": "#314549", @@ -653,6 +694,8 @@ "foreground": "#B0BEC5", "gridColor": "#263238", "highlightOuter": "#314549", + "hoverBackground": "#546E7A70", + "hoverInactiveBackground": "#314549", "lightSelectionForeground": "#FFFFFF", "lightSelectionInactiveForeground": "#607D8B", "lightSelectionInactiveBackground": "#32424A", @@ -729,8 +772,8 @@ "ToolTip": { "Actions.background": "#263238", "Actions.infoForeground": "#607D8B", - "background": "#263238", - "borderColor": "#425B67", + "background": "#1E272C", + "borderColor": "#2A373E", "foreground": "#B0BEC5", "infoForeground": "#607D8B", "separatorColor": "#2A373E", @@ -751,50 +794,93 @@ "background": "#263238" }, "HeaderTab": { + "borderColor": "#425B67", "hoverBackground": "#425B67", - "hoverInactiveBackground": "#32424A", + "hoverInactiveBackground": "#425B67", "inactiveUnderlineColor": "#009688", "selectedBackground": "#1E272C", "selectedInactiveBackground": "#1E272C", "underlineColor": "#009688", - "underlinedTabBackground": "#425B67", - "underlinedTabInactiveBackground": "#32424A" + "underlinedTabBackground": "#314549", + "underlinedTabInactiveBackground": "#32424A", + "underlinedTabForeground": "#FFFFFF", + "underlinedTabInactiveForeground": "#B0BEC5" } }, "Tree": { "background": "#1E272C", "foreground": "#607D8B", "hash": "#2A373E", + "hoverBackground": "#546E7A70", + "hoverInactiveBackground": "#314549", "modifiedItemForeground": "#009688", "rowHeight": 28, - "selectionBackground": "#546E7A50", + "selectionBackground": "#546E7A70", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#546E7A50", + "selectionInactiveBackground": "#546E7A70", "textBackground": "#1E272C" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { + "UIDesigner": { "Activity.borderColor": "#2A373E", - "ColorPicker.background": "#263238", - "ColorPicker.foreground": "#B0BEC5", - "Component.borderColor": "#2A373E", - "Component.background": "#263238", - "Component.foreground": "#B0BEC5", - "Connector.borderColor": "#2A373E", - "Connector.hoverBorderColor": "#425B67", + "Canvas.background": "#1E272C", + "ColorPicker": { + "background": "#263238", + "foreground": "#B0BEC5" + }, + "Component": { + "borderColor": "#2A373E", + "background": "#263238", + "foreground": "#B0BEC5", + "hoverBorderColor": "#425B67" + }, + "Connector": { + "borderColor": "#2A373E", + "hoverBorderColor": "#425B67" + }, "Canvas.background": "#1E272C", "highStroke.foreground": "#B0BEC5", "Label.foreground": "#607D8B", - "List.selectionBackground": "#546E7A50", - "Panel.borderColor": "#2A373E", - "Panel.background": "#263238", + "List.selectionBackground": "#546E7A70", + "motion": { + "borderColor": "#2A373E", + "Component.foreground": "#B0BEC5", + "ConstraintSetText.foreground": "#607D8B", + "ConstraintSet.background": "#32424A", + "CSPanel.SelectedFocusBackground": "#546E7A", + "CSPanel.SelectedBackground": "#546E7A70", + "cs_FocusText.infoForeground": "#607D8B", + "CursorTextColor.foreground": "#B0BEC5", + "HoverColor.disabledBackground": "#415967", + "motionGraph.background": "#263238", + "Notification.background": "#1E272C", + "ourAvg.background": "#32424A", + "ourCS.background": "#32424A", + "ourCS_Border.borderColor": "#2A373E", + "ourCS_TextColor.foreground": "#607D8B", + "ourCS_SelectedFocusBackground.selectionForeground": "#FFFFFF", + "ourCS_SelectedBackground.selectionInactiveBackground": "#314549", + "ourCS_SelectedBorder.pressedBorderColor": "#425B67", + "ourML_BarColor.separatorColor": "#2A373E", + "PrimaryPanel.background": "#1E272C", + "SecondaryPanel.background": "#263238", + "SecondaryPanel.header.foreground": "#607D8B", + "SecondaryPanel.header.background": "#1E272C", + "timeLine.disabledBorderColor": "#2A373E" + }, + "Panel": { + "borderColor": "#2A373E", + "background": "#263238" + }, "percent.foreground": "#B0BEC5", - "Placeholder.background": "#263238", - "Placeholder.borderColor": "#2A373E", - "Placeholder.foreground": "#B0BEC5", - "Placeholder.selectedForeground": "#FFFFFF", + "Placeholder": { + "background": "#263238", + "borderColor": "#2A373E", + "foreground": "#B0BEC5", + "selectedForeground": "#FFFFFF" + }, "Preview.background": "#263238", "stroke.acceleratorForeground": "#607D8B" }, @@ -828,7 +914,8 @@ }, "Log": { "Commit.unmatchedForeground": "#607D8B", - "Commit.currentBranchBackground": "#32424A" + "Commit.currentBranchBackground": "#32424A", + "Commit.hoveredBackground": "#546E7A70" }, "RefLabel": { "foreground": "#FFFFFF", @@ -840,16 +927,22 @@ "foreground": "#B0BEC5" }, "WelcomeScreen": { + "AssociatedComponent.background": "#263238", "background": "#263238", "borderColor": "#263238", "captionBackground": "#1E272C", "captionForeground": "#B0BEC5", + "Details.background": "#263238", "footerBackground": "#1E272C", "footerForeground": "#B0BEC5", "headerBackground": "#263238", "headerForeground": "#B0BEC5", + "List.background": "#1E272C", "separatorColor": "#2A373E", + "SidePanel.background": "#32424A", "Projects": { + "actions.background": "#1E272C", + "actions.selectionBackground": "#425B67", "background": "#32424A", "selectionBackground": "#546E7A", "selectionInactiveBackground": "#32424A" 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 40f47454..282c2029 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 @@ -3,6 +3,12 @@ "dark": true, "author": "Mallowigi", "editorScheme": "/colors/Material Oceanic.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/oceanic.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { "acceleratorSelectionForeground": "#607D8B", @@ -72,7 +78,10 @@ "Tooltip.borderColor": "#2A373E", "Tooltip.background": "#1E272C" }, - "Content.background": "#1E272C", + "Content": { + "background": "#1E272C", + "selectionBackground": "#546E7A" + }, "CheckBox": { "background": "#263238", "disabledText": "#415967", @@ -89,6 +98,14 @@ "selectionBackground": "#546E7A", "selectionForeground": "#FFFFFF" }, + "CodeWithMe": { + "Avatar.foreground": "#B0BEC5", + "AccessEnabled": { + "accessDot": "#009688", + "dropdownBorder": "#32424A", + "pillBackground": "$second" + } + }, "ColorChooser": { "background": "#263238", "foreground": "#B0BEC5", @@ -104,6 +121,7 @@ }, "background": "#263238", "buttonBackground": "#2E3C43", + "darcula.hoveredArrowButtonForeground": "#009688", "disabledForeground": "#415967", "foreground": "#B0BEC5", "modifiedItemForeground": "#009688", @@ -168,11 +186,13 @@ "hoverBackground": "#314549", "hoverColor": "#263238", "hoverMaskColor": "#425B67", + "inactiveColoredTabBackground": "#263238", "inactiveColoredFileBackground": "#2E3C43", - "inactiveUnderlineColor": "#415967", + "inactiveUnderlineColor": "#009688", "inactiveMaskColor": "#263238", "underlineColor": "#009688", - "underlinedTabBackground": "#314549" + "underlinedTabBackground": "#314549", + "underlinedTabForeground": "#FFFFFF" }, "Desktop.background": "#263238", "DialogWrapper.southPanelBackground": "#263238", @@ -198,15 +218,17 @@ }, "EditorTabs": { "borderColor": "#32424A", + "hoverBackground": "#425B67", "hoverColor": "#425B67", "hoverMaskColor": "#425B67", "inactiveMaskColor": "#263238", - "inactiveColoredFileBackground": "#2632382", + "inactiveColoredFileBackground": "#263238", "inactiveUnderlineColor": "#415967", "selectedForeground": "#B0BEC5", "selectedBackground": "#314549", "underlineColor": "#009688", - "underlinedTabBackground": "#314549" + "underlinedTabBackground": "#314549", + "underlinedTabForeground": "#FFFFFF" }, "EditorGroupsTabs": { "background": "#263238", @@ -246,12 +268,13 @@ "selectionForeground": "#FFFFFF", "selectionBackground": "#314549" }, + "GotItTooltip.borderColor": "#1E272C", "Group": { "disabledSeparatorColor": "#2A373E", "separatorColor": "#2A373E" }, "GutterTooltip": { - "infoForeground": "#B0BEC5", + "infoForeground": "#607D8B", "lineSeparatorColor": "#263238" }, "HeaderColor": { @@ -288,7 +311,8 @@ "disabledText": "#415967", "foreground": "#B0BEC5", "infoForeground": "#607D8B", - "selectedForeground": "#FFFFFF" + "selectedForeground": "#FFFFFF", + "selectedDisabledForeground": "#B0BEC5" }, "Link": { "activeForeground": "#009688", @@ -301,10 +325,12 @@ "List": { "background": "#32424A", "foreground": "#B0BEC5", + "hoverBackground": "#546E7A70", + "hoverInactiveBackground": "#314549", "selectionBackground": "#546E7A50", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#546E7A50" + "selectionInactiveBackground": "#546E7A70" }, "material": { "background": "#263238", @@ -409,7 +435,7 @@ "ParameterInfo": { "background": "#32424A", "borderColor": "#314549", - "currentOverloadBackground": "#314549", + "currentOverloadBackground": "#425B67", "currentParameterForeground": "#009688", "disabledForeground": "#415967", "foreground": "#B0BEC5", @@ -429,7 +455,8 @@ "background": "#263238", "disabledForeground": "#415967", "eapTagBackground": "#425B67", - "lightSelectionBackground": "#546E7A", + "hoverBackground": "#546E7A70", + "lightSelectionBackground": "#314549", "paidTagBackground": "#425B67", "selectionBackground": "#546E7A", "tagForeground": "#009688", @@ -442,7 +469,7 @@ "installFocusedBackground": "#425B67", "installFillForeground": "#415967", "installFillBackground": "#2E3C43", - "updateBackground": "#2E3C43", + "updateBackground": "#009688", "updateBorderColor": "#2E3C43", "updateForeground": "#B0BEC5" }, @@ -517,6 +544,7 @@ "selectionBackground": "#546E7A", "selectionForeground": "#FFFFFF" }, + "ScreenView.borderColor": "#2A373E", "ScrollBar": { "background": "#263238", "hoverThumbBorderColor": "#009688", @@ -576,9 +604,18 @@ }, "SearchMatch": { "endBackground": "#009688", - "startBackground": "#009688" + "startBackground": "#009688", + "endColor": "#009688", + "startColor": "#009688" }, "SearchField.errorBackground": "#1E272C", + "SearchOption": { + "selectedBackground": "#314549" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#607D8B", + "Repeated.File.Foreground": "#B0BEC5" + }, "Separator": { "background": "#32424A", "foreground": "#32424A", @@ -616,7 +653,9 @@ }, "SplitPaneDivider.draggingColor": "#32424A", "StatusBar": { - "borderColor": "#263238" + "borderColor": "#263238", + "hoverBackground": "#425B67", + "LightEditBackground": "#314549" }, "TabbedPane": { "background": "#263238", @@ -643,9 +682,11 @@ }, "TabbedPane.mt.tab.background": "#263238", "Table": { + "alternativeRowBackground": "#1E272C", "background": "#263238", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#415967", "dropLineColor": "#009688", "dropLineShortColor": "#009688", "focusCellBackground": "#314549", @@ -653,6 +694,8 @@ "foreground": "#B0BEC5", "gridColor": "#263238", "highlightOuter": "#314549", + "hoverBackground": "#546E7A70", + "hoverInactiveBackground": "#314549", "lightSelectionForeground": "#FFFFFF", "lightSelectionInactiveForeground": "#607D8B", "lightSelectionInactiveBackground": "#32424A", @@ -729,8 +772,8 @@ "ToolTip": { "Actions.background": "#263238", "Actions.infoForeground": "#607D8B", - "background": "#263238", - "borderColor": "#425B67", + "background": "#1E272C", + "borderColor": "#2A373E", "foreground": "#B0BEC5", "infoForeground": "#607D8B", "separatorColor": "#2A373E", @@ -751,50 +794,93 @@ "background": "#263238" }, "HeaderTab": { + "borderColor": "#425B67", "hoverBackground": "#425B67", - "hoverInactiveBackground": "#32424A", + "hoverInactiveBackground": "#425B67", "inactiveUnderlineColor": "#009688", "selectedBackground": "#1E272C", "selectedInactiveBackground": "#1E272C", "underlineColor": "#009688", - "underlinedTabBackground": "#425B67", - "underlinedTabInactiveBackground": "#32424A" + "underlinedTabBackground": "#314549", + "underlinedTabInactiveBackground": "#32424A", + "underlinedTabForeground": "#FFFFFF", + "underlinedTabInactiveForeground": "#B0BEC5" } }, "Tree": { "background": "#263238", "foreground": "#607D8B", "hash": "#2A373E", + "hoverBackground": "#546E7A70", + "hoverInactiveBackground": "#314549", "modifiedItemForeground": "#009688", "rowHeight": 28, - "selectionBackground": "#546E7A50", + "selectionBackground": "#546E7A70", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#546E7A50", + "selectionInactiveBackground": "#546E7A70", "textBackground": "#263238" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { + "UIDesigner": { "Activity.borderColor": "#2A373E", - "ColorPicker.background": "#263238", - "ColorPicker.foreground": "#B0BEC5", - "Component.borderColor": "#2A373E", - "Component.background": "#263238", - "Component.foreground": "#B0BEC5", - "Connector.borderColor": "#2A373E", - "Connector.hoverBorderColor": "#425B67", + "Canvas.background": "#1E272C", + "ColorPicker": { + "background": "#263238", + "foreground": "#B0BEC5" + }, + "Component": { + "borderColor": "#2A373E", + "background": "#263238", + "foreground": "#B0BEC5", + "hoverBorderColor": "#425B67" + }, + "Connector": { + "borderColor": "#2A373E", + "hoverBorderColor": "#425B67" + }, "Canvas.background": "#1E272C", "highStroke.foreground": "#B0BEC5", "Label.foreground": "#607D8B", - "List.selectionBackground": "#546E7A50", - "Panel.borderColor": "#2A373E", - "Panel.background": "#263238", + "List.selectionBackground": "#546E7A70", + "motion": { + "borderColor": "#2A373E", + "Component.foreground": "#B0BEC5", + "ConstraintSetText.foreground": "#607D8B", + "ConstraintSet.background": "#32424A", + "CSPanel.SelectedFocusBackground": "#546E7A", + "CSPanel.SelectedBackground": "#546E7A70", + "cs_FocusText.infoForeground": "#607D8B", + "CursorTextColor.foreground": "#B0BEC5", + "HoverColor.disabledBackground": "#415967", + "motionGraph.background": "#263238", + "Notification.background": "#1E272C", + "ourAvg.background": "#32424A", + "ourCS.background": "#32424A", + "ourCS_Border.borderColor": "#2A373E", + "ourCS_TextColor.foreground": "#607D8B", + "ourCS_SelectedFocusBackground.selectionForeground": "#FFFFFF", + "ourCS_SelectedBackground.selectionInactiveBackground": "#314549", + "ourCS_SelectedBorder.pressedBorderColor": "#425B67", + "ourML_BarColor.separatorColor": "#2A373E", + "PrimaryPanel.background": "#1E272C", + "SecondaryPanel.background": "#263238", + "SecondaryPanel.header.foreground": "#607D8B", + "SecondaryPanel.header.background": "#1E272C", + "timeLine.disabledBorderColor": "#2A373E" + }, + "Panel": { + "borderColor": "#2A373E", + "background": "#263238" + }, "percent.foreground": "#B0BEC5", - "Placeholder.background": "#263238", - "Placeholder.borderColor": "#2A373E", - "Placeholder.foreground": "#B0BEC5", - "Placeholder.selectedForeground": "#FFFFFF", + "Placeholder": { + "background": "#263238", + "borderColor": "#2A373E", + "foreground": "#B0BEC5", + "selectedForeground": "#FFFFFF" + }, "Preview.background": "#263238", "stroke.acceleratorForeground": "#607D8B" }, @@ -828,7 +914,8 @@ }, "Log": { "Commit.unmatchedForeground": "#607D8B", - "Commit.currentBranchBackground": "#32424A" + "Commit.currentBranchBackground": "#32424A", + "Commit.hoveredBackground": "#546E7A70" }, "RefLabel": { "foreground": "#FFFFFF", @@ -840,16 +927,22 @@ "foreground": "#B0BEC5" }, "WelcomeScreen": { + "AssociatedComponent.background": "#263238", "background": "#263238", "borderColor": "#263238", "captionBackground": "#1E272C", "captionForeground": "#B0BEC5", + "Details.background": "#263238", "footerBackground": "#1E272C", "footerForeground": "#B0BEC5", "headerBackground": "#263238", "headerForeground": "#B0BEC5", + "List.background": "#1E272C", "separatorColor": "#2A373E", + "SidePanel.background": "#32424A", "Projects": { + "actions.background": "#1E272C", + "actions.selectionBackground": "#425B67", "background": "#32424A", "selectionBackground": "#546E7A", "selectionInactiveBackground": "#32424A" diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Palenight Contrast.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Palenight Contrast.theme.json index d08262df..53cc05eb 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Palenight Contrast.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Material Palenight Contrast.theme.json @@ -3,6 +3,12 @@ "dark": true, "author": "Mallowigi", "editorScheme": "/colors/Material Palenight.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/palenight.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { "acceleratorSelectionForeground": "#676E95", @@ -72,7 +78,10 @@ "Tooltip.borderColor": "#2b2a3e", "Tooltip.background": "#202331" }, - "Content.background": "#202331", + "Content": { + "background": "#202331", + "selectionBackground": "#3C435E" + }, "CheckBox": { "background": "#292D3E", "disabledText": "#515772", @@ -89,6 +98,14 @@ "selectionBackground": "#3C435E", "selectionForeground": "#FFFFFF" }, + "CodeWithMe": { + "Avatar.foreground": "#A6ACCD", + "AccessEnabled": { + "accessDot": "#ab47bc", + "dropdownBorder": "#34324a", + "pillBackground": "$second" + } + }, "ColorChooser": { "background": "#292D3E", "foreground": "#A6ACCD", @@ -104,6 +121,7 @@ }, "background": "#202331", "buttonBackground": "#303348", + "darcula.hoveredArrowButtonForeground": "#ab47bc", "disabledForeground": "#515772", "foreground": "#A6ACCD", "modifiedItemForeground": "#ab47bc", @@ -168,11 +186,13 @@ "hoverBackground": "#414863", "hoverColor": "#202331", "hoverMaskColor": "#444267", + "inactiveColoredTabBackground": "#292D3E", "inactiveColoredFileBackground": "#303348", - "inactiveUnderlineColor": "#515772", + "inactiveUnderlineColor": "#ab47bc", "inactiveMaskColor": "#202331", "underlineColor": "#ab47bc", - "underlinedTabBackground": "#414863" + "underlinedTabBackground": "#414863", + "underlinedTabForeground": "#FFFFFF" }, "Desktop.background": "#292D3E", "DialogWrapper.southPanelBackground": "#292D3E", @@ -198,15 +218,17 @@ }, "EditorTabs": { "borderColor": "#34324a", + "hoverBackground": "#444267", "hoverColor": "#444267", "hoverMaskColor": "#444267", "inactiveMaskColor": "#292D3E", - "inactiveColoredFileBackground": "#292D3E2", + "inactiveColoredFileBackground": "#292D3E", "inactiveUnderlineColor": "#515772", "selectedForeground": "#A6ACCD", "selectedBackground": "#414863", "underlineColor": "#ab47bc", - "underlinedTabBackground": "#414863" + "underlinedTabBackground": "#414863", + "underlinedTabForeground": "#FFFFFF" }, "EditorGroupsTabs": { "background": "#292D3E", @@ -246,12 +268,13 @@ "selectionForeground": "#FFFFFF", "selectionBackground": "#414863" }, + "GotItTooltip.borderColor": "#202331", "Group": { "disabledSeparatorColor": "#2b2a3e", "separatorColor": "#2b2a3e" }, "GutterTooltip": { - "infoForeground": "#A6ACCD", + "infoForeground": "#676E95", "lineSeparatorColor": "#292D3E" }, "HeaderColor": { @@ -288,7 +311,8 @@ "disabledText": "#515772", "foreground": "#A6ACCD", "infoForeground": "#676E95", - "selectedForeground": "#FFFFFF" + "selectedForeground": "#FFFFFF", + "selectedDisabledForeground": "#A6ACCD" }, "Link": { "activeForeground": "#ab47bc", @@ -301,10 +325,12 @@ "List": { "background": "#34324a", "foreground": "#A6ACCD", + "hoverBackground": "#676E9570", + "hoverInactiveBackground": "#414863", "selectionBackground": "#3C435E50", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#676E9550" + "selectionInactiveBackground": "#676E9570" }, "material": { "background": "#292D3E", @@ -409,7 +435,7 @@ "ParameterInfo": { "background": "#34324a", "borderColor": "#414863", - "currentOverloadBackground": "#414863", + "currentOverloadBackground": "#444267", "currentParameterForeground": "#ab47bc", "disabledForeground": "#515772", "foreground": "#A6ACCD", @@ -429,7 +455,8 @@ "background": "#292D3E", "disabledForeground": "#515772", "eapTagBackground": "#444267", - "lightSelectionBackground": "#3C435E", + "hoverBackground": "#676E9570", + "lightSelectionBackground": "#414863", "paidTagBackground": "#444267", "selectionBackground": "#3C435E", "tagForeground": "#ab47bc", @@ -442,7 +469,7 @@ "installFocusedBackground": "#444267", "installFillForeground": "#515772", "installFillBackground": "#303348", - "updateBackground": "#303348", + "updateBackground": "#ab47bc", "updateBorderColor": "#303348", "updateForeground": "#A6ACCD" }, @@ -517,6 +544,7 @@ "selectionBackground": "#3C435E", "selectionForeground": "#FFFFFF" }, + "ScreenView.borderColor": "#2b2a3e", "ScrollBar": { "background": "#292D3E", "hoverThumbBorderColor": "#ab47bc", @@ -576,9 +604,18 @@ }, "SearchMatch": { "endBackground": "#ab47bc", - "startBackground": "#ab47bc" + "startBackground": "#ab47bc", + "endColor": "#ab47bc", + "startColor": "#ab47bc" }, "SearchField.errorBackground": "#202331", + "SearchOption": { + "selectedBackground": "#414863" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#676E95", + "Repeated.File.Foreground": "#A6ACCD" + }, "Separator": { "background": "#34324a", "foreground": "#34324a", @@ -616,7 +653,9 @@ }, "SplitPaneDivider.draggingColor": "#34324a", "StatusBar": { - "borderColor": "#292D3E" + "borderColor": "#292D3E", + "hoverBackground": "#444267", + "LightEditBackground": "#414863" }, "TabbedPane": { "background": "#292D3E", @@ -643,9 +682,11 @@ }, "TabbedPane.mt.tab.background": "#202331", "Table": { + "alternativeRowBackground": "#202331", "background": "#292D3E", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#515772", "dropLineColor": "#ab47bc", "dropLineShortColor": "#ab47bc", "focusCellBackground": "#414863", @@ -653,6 +694,8 @@ "foreground": "#A6ACCD", "gridColor": "#292D3E", "highlightOuter": "#414863", + "hoverBackground": "#676E9570", + "hoverInactiveBackground": "#414863", "lightSelectionForeground": "#FFFFFF", "lightSelectionInactiveForeground": "#676E95", "lightSelectionInactiveBackground": "#34324a", @@ -729,8 +772,8 @@ "ToolTip": { "Actions.background": "#292D3E", "Actions.infoForeground": "#676E95", - "background": "#292D3E", - "borderColor": "#444267", + "background": "#202331", + "borderColor": "#2b2a3e", "foreground": "#A6ACCD", "infoForeground": "#676E95", "separatorColor": "#2b2a3e", @@ -751,50 +794,93 @@ "background": "#292D3E" }, "HeaderTab": { + "borderColor": "#444267", "hoverBackground": "#444267", - "hoverInactiveBackground": "#34324a", + "hoverInactiveBackground": "#444267", "inactiveUnderlineColor": "#ab47bc", "selectedBackground": "#202331", "selectedInactiveBackground": "#202331", "underlineColor": "#ab47bc", - "underlinedTabBackground": "#444267", - "underlinedTabInactiveBackground": "#34324a" + "underlinedTabBackground": "#414863", + "underlinedTabInactiveBackground": "#34324a", + "underlinedTabForeground": "#FFFFFF", + "underlinedTabInactiveForeground": "#A6ACCD" } }, "Tree": { "background": "#202331", "foreground": "#676E95", "hash": "#2b2a3e", + "hoverBackground": "#676E9570", + "hoverInactiveBackground": "#414863", "modifiedItemForeground": "#ab47bc", "rowHeight": 28, - "selectionBackground": "#676E9550", + "selectionBackground": "#676E9570", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#676E9550", + "selectionInactiveBackground": "#676E9570", "textBackground": "#202331" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { + "UIDesigner": { "Activity.borderColor": "#2b2a3e", - "ColorPicker.background": "#292D3E", - "ColorPicker.foreground": "#A6ACCD", - "Component.borderColor": "#2b2a3e", - "Component.background": "#292D3E", - "Component.foreground": "#A6ACCD", - "Connector.borderColor": "#2b2a3e", - "Connector.hoverBorderColor": "#444267", + "Canvas.background": "#202331", + "ColorPicker": { + "background": "#292D3E", + "foreground": "#A6ACCD" + }, + "Component": { + "borderColor": "#2b2a3e", + "background": "#292D3E", + "foreground": "#A6ACCD", + "hoverBorderColor": "#444267" + }, + "Connector": { + "borderColor": "#2b2a3e", + "hoverBorderColor": "#444267" + }, "Canvas.background": "#202331", "highStroke.foreground": "#A6ACCD", "Label.foreground": "#676E95", - "List.selectionBackground": "#676E9550", - "Panel.borderColor": "#2b2a3e", - "Panel.background": "#292D3E", + "List.selectionBackground": "#676E9570", + "motion": { + "borderColor": "#2b2a3e", + "Component.foreground": "#A6ACCD", + "ConstraintSetText.foreground": "#676E95", + "ConstraintSet.background": "#34324a", + "CSPanel.SelectedFocusBackground": "#3C435E", + "CSPanel.SelectedBackground": "#676E9570", + "cs_FocusText.infoForeground": "#676E95", + "CursorTextColor.foreground": "#A6ACCD", + "HoverColor.disabledBackground": "#515772", + "motionGraph.background": "#292D3E", + "Notification.background": "#202331", + "ourAvg.background": "#34324a", + "ourCS.background": "#34324a", + "ourCS_Border.borderColor": "#2b2a3e", + "ourCS_TextColor.foreground": "#676E95", + "ourCS_SelectedFocusBackground.selectionForeground": "#FFFFFF", + "ourCS_SelectedBackground.selectionInactiveBackground": "#414863", + "ourCS_SelectedBorder.pressedBorderColor": "#444267", + "ourML_BarColor.separatorColor": "#2b2a3e", + "PrimaryPanel.background": "#202331", + "SecondaryPanel.background": "#292D3E", + "SecondaryPanel.header.foreground": "#676E95", + "SecondaryPanel.header.background": "#202331", + "timeLine.disabledBorderColor": "#2b2a3e" + }, + "Panel": { + "borderColor": "#2b2a3e", + "background": "#292D3E" + }, "percent.foreground": "#A6ACCD", - "Placeholder.background": "#292D3E", - "Placeholder.borderColor": "#2b2a3e", - "Placeholder.foreground": "#A6ACCD", - "Placeholder.selectedForeground": "#FFFFFF", + "Placeholder": { + "background": "#292D3E", + "borderColor": "#2b2a3e", + "foreground": "#A6ACCD", + "selectedForeground": "#FFFFFF" + }, "Preview.background": "#292D3E", "stroke.acceleratorForeground": "#676E95" }, @@ -828,7 +914,8 @@ }, "Log": { "Commit.unmatchedForeground": "#676E95", - "Commit.currentBranchBackground": "#34324a" + "Commit.currentBranchBackground": "#34324a", + "Commit.hoveredBackground": "#676E9570" }, "RefLabel": { "foreground": "#FFFFFF", @@ -840,16 +927,22 @@ "foreground": "#A6ACCD" }, "WelcomeScreen": { + "AssociatedComponent.background": "#292D3E", "background": "#292D3E", "borderColor": "#292D3E", "captionBackground": "#202331", "captionForeground": "#A6ACCD", + "Details.background": "#292D3E", "footerBackground": "#202331", "footerForeground": "#A6ACCD", "headerBackground": "#292D3E", "headerForeground": "#A6ACCD", + "List.background": "#202331", "separatorColor": "#2b2a3e", + "SidePanel.background": "#34324a", "Projects": { + "actions.background": "#202331", + "actions.selectionBackground": "#444267", "background": "#34324a", "selectionBackground": "#3C435E", "selectionInactiveBackground": "#34324a" 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 bf0aec6f..f2713f13 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 @@ -3,6 +3,12 @@ "dark": true, "author": "Mallowigi", "editorScheme": "/colors/Material Palenight.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/palenight.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { "acceleratorSelectionForeground": "#676E95", @@ -72,7 +78,10 @@ "Tooltip.borderColor": "#2b2a3e", "Tooltip.background": "#202331" }, - "Content.background": "#202331", + "Content": { + "background": "#202331", + "selectionBackground": "#3C435E" + }, "CheckBox": { "background": "#292D3E", "disabledText": "#515772", @@ -89,6 +98,14 @@ "selectionBackground": "#3C435E", "selectionForeground": "#FFFFFF" }, + "CodeWithMe": { + "Avatar.foreground": "#A6ACCD", + "AccessEnabled": { + "accessDot": "#ab47bc", + "dropdownBorder": "#34324a", + "pillBackground": "$second" + } + }, "ColorChooser": { "background": "#292D3E", "foreground": "#A6ACCD", @@ -104,6 +121,7 @@ }, "background": "#292D3E", "buttonBackground": "#303348", + "darcula.hoveredArrowButtonForeground": "#ab47bc", "disabledForeground": "#515772", "foreground": "#A6ACCD", "modifiedItemForeground": "#ab47bc", @@ -168,11 +186,13 @@ "hoverBackground": "#414863", "hoverColor": "#292D3E", "hoverMaskColor": "#444267", + "inactiveColoredTabBackground": "#292D3E", "inactiveColoredFileBackground": "#303348", - "inactiveUnderlineColor": "#515772", + "inactiveUnderlineColor": "#ab47bc", "inactiveMaskColor": "#292D3E", "underlineColor": "#ab47bc", - "underlinedTabBackground": "#414863" + "underlinedTabBackground": "#414863", + "underlinedTabForeground": "#FFFFFF" }, "Desktop.background": "#292D3E", "DialogWrapper.southPanelBackground": "#292D3E", @@ -198,15 +218,17 @@ }, "EditorTabs": { "borderColor": "#34324a", + "hoverBackground": "#444267", "hoverColor": "#444267", "hoverMaskColor": "#444267", "inactiveMaskColor": "#292D3E", - "inactiveColoredFileBackground": "#292D3E2", + "inactiveColoredFileBackground": "#292D3E", "inactiveUnderlineColor": "#515772", "selectedForeground": "#A6ACCD", "selectedBackground": "#414863", "underlineColor": "#ab47bc", - "underlinedTabBackground": "#414863" + "underlinedTabBackground": "#414863", + "underlinedTabForeground": "#FFFFFF" }, "EditorGroupsTabs": { "background": "#292D3E", @@ -246,12 +268,13 @@ "selectionForeground": "#FFFFFF", "selectionBackground": "#414863" }, + "GotItTooltip.borderColor": "#202331", "Group": { "disabledSeparatorColor": "#2b2a3e", "separatorColor": "#2b2a3e" }, "GutterTooltip": { - "infoForeground": "#A6ACCD", + "infoForeground": "#676E95", "lineSeparatorColor": "#292D3E" }, "HeaderColor": { @@ -288,7 +311,8 @@ "disabledText": "#515772", "foreground": "#A6ACCD", "infoForeground": "#676E95", - "selectedForeground": "#FFFFFF" + "selectedForeground": "#FFFFFF", + "selectedDisabledForeground": "#A6ACCD" }, "Link": { "activeForeground": "#ab47bc", @@ -301,10 +325,12 @@ "List": { "background": "#34324a", "foreground": "#A6ACCD", + "hoverBackground": "#676E9570", + "hoverInactiveBackground": "#414863", "selectionBackground": "#3C435E50", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#676E9550" + "selectionInactiveBackground": "#676E9570" }, "material": { "background": "#292D3E", @@ -409,7 +435,7 @@ "ParameterInfo": { "background": "#34324a", "borderColor": "#414863", - "currentOverloadBackground": "#414863", + "currentOverloadBackground": "#444267", "currentParameterForeground": "#ab47bc", "disabledForeground": "#515772", "foreground": "#A6ACCD", @@ -429,7 +455,8 @@ "background": "#292D3E", "disabledForeground": "#515772", "eapTagBackground": "#444267", - "lightSelectionBackground": "#3C435E", + "hoverBackground": "#676E9570", + "lightSelectionBackground": "#414863", "paidTagBackground": "#444267", "selectionBackground": "#3C435E", "tagForeground": "#ab47bc", @@ -442,7 +469,7 @@ "installFocusedBackground": "#444267", "installFillForeground": "#515772", "installFillBackground": "#303348", - "updateBackground": "#303348", + "updateBackground": "#ab47bc", "updateBorderColor": "#303348", "updateForeground": "#A6ACCD" }, @@ -517,6 +544,7 @@ "selectionBackground": "#3C435E", "selectionForeground": "#FFFFFF" }, + "ScreenView.borderColor": "#2b2a3e", "ScrollBar": { "background": "#292D3E", "hoverThumbBorderColor": "#ab47bc", @@ -576,9 +604,18 @@ }, "SearchMatch": { "endBackground": "#ab47bc", - "startBackground": "#ab47bc" + "startBackground": "#ab47bc", + "endColor": "#ab47bc", + "startColor": "#ab47bc" }, "SearchField.errorBackground": "#202331", + "SearchOption": { + "selectedBackground": "#414863" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#676E95", + "Repeated.File.Foreground": "#A6ACCD" + }, "Separator": { "background": "#34324a", "foreground": "#34324a", @@ -616,7 +653,9 @@ }, "SplitPaneDivider.draggingColor": "#34324a", "StatusBar": { - "borderColor": "#292D3E" + "borderColor": "#292D3E", + "hoverBackground": "#444267", + "LightEditBackground": "#414863" }, "TabbedPane": { "background": "#292D3E", @@ -643,9 +682,11 @@ }, "TabbedPane.mt.tab.background": "#292D3E", "Table": { + "alternativeRowBackground": "#202331", "background": "#292D3E", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#515772", "dropLineColor": "#ab47bc", "dropLineShortColor": "#ab47bc", "focusCellBackground": "#414863", @@ -653,6 +694,8 @@ "foreground": "#A6ACCD", "gridColor": "#292D3E", "highlightOuter": "#414863", + "hoverBackground": "#676E9570", + "hoverInactiveBackground": "#414863", "lightSelectionForeground": "#FFFFFF", "lightSelectionInactiveForeground": "#676E95", "lightSelectionInactiveBackground": "#34324a", @@ -729,8 +772,8 @@ "ToolTip": { "Actions.background": "#292D3E", "Actions.infoForeground": "#676E95", - "background": "#292D3E", - "borderColor": "#444267", + "background": "#202331", + "borderColor": "#2b2a3e", "foreground": "#A6ACCD", "infoForeground": "#676E95", "separatorColor": "#2b2a3e", @@ -751,50 +794,93 @@ "background": "#292D3E" }, "HeaderTab": { + "borderColor": "#444267", "hoverBackground": "#444267", - "hoverInactiveBackground": "#34324a", + "hoverInactiveBackground": "#444267", "inactiveUnderlineColor": "#ab47bc", "selectedBackground": "#202331", "selectedInactiveBackground": "#202331", "underlineColor": "#ab47bc", - "underlinedTabBackground": "#444267", - "underlinedTabInactiveBackground": "#34324a" + "underlinedTabBackground": "#414863", + "underlinedTabInactiveBackground": "#34324a", + "underlinedTabForeground": "#FFFFFF", + "underlinedTabInactiveForeground": "#A6ACCD" } }, "Tree": { "background": "#292D3E", "foreground": "#676E95", "hash": "#2b2a3e", + "hoverBackground": "#676E9570", + "hoverInactiveBackground": "#414863", "modifiedItemForeground": "#ab47bc", "rowHeight": 28, - "selectionBackground": "#676E9550", + "selectionBackground": "#676E9570", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#676E9550", + "selectionInactiveBackground": "#676E9570", "textBackground": "#292D3E" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { + "UIDesigner": { "Activity.borderColor": "#2b2a3e", - "ColorPicker.background": "#292D3E", - "ColorPicker.foreground": "#A6ACCD", - "Component.borderColor": "#2b2a3e", - "Component.background": "#292D3E", - "Component.foreground": "#A6ACCD", - "Connector.borderColor": "#2b2a3e", - "Connector.hoverBorderColor": "#444267", + "Canvas.background": "#202331", + "ColorPicker": { + "background": "#292D3E", + "foreground": "#A6ACCD" + }, + "Component": { + "borderColor": "#2b2a3e", + "background": "#292D3E", + "foreground": "#A6ACCD", + "hoverBorderColor": "#444267" + }, + "Connector": { + "borderColor": "#2b2a3e", + "hoverBorderColor": "#444267" + }, "Canvas.background": "#202331", "highStroke.foreground": "#A6ACCD", "Label.foreground": "#676E95", - "List.selectionBackground": "#676E9550", - "Panel.borderColor": "#2b2a3e", - "Panel.background": "#292D3E", + "List.selectionBackground": "#676E9570", + "motion": { + "borderColor": "#2b2a3e", + "Component.foreground": "#A6ACCD", + "ConstraintSetText.foreground": "#676E95", + "ConstraintSet.background": "#34324a", + "CSPanel.SelectedFocusBackground": "#3C435E", + "CSPanel.SelectedBackground": "#676E9570", + "cs_FocusText.infoForeground": "#676E95", + "CursorTextColor.foreground": "#A6ACCD", + "HoverColor.disabledBackground": "#515772", + "motionGraph.background": "#292D3E", + "Notification.background": "#202331", + "ourAvg.background": "#34324a", + "ourCS.background": "#34324a", + "ourCS_Border.borderColor": "#2b2a3e", + "ourCS_TextColor.foreground": "#676E95", + "ourCS_SelectedFocusBackground.selectionForeground": "#FFFFFF", + "ourCS_SelectedBackground.selectionInactiveBackground": "#414863", + "ourCS_SelectedBorder.pressedBorderColor": "#444267", + "ourML_BarColor.separatorColor": "#2b2a3e", + "PrimaryPanel.background": "#202331", + "SecondaryPanel.background": "#292D3E", + "SecondaryPanel.header.foreground": "#676E95", + "SecondaryPanel.header.background": "#202331", + "timeLine.disabledBorderColor": "#2b2a3e" + }, + "Panel": { + "borderColor": "#2b2a3e", + "background": "#292D3E" + }, "percent.foreground": "#A6ACCD", - "Placeholder.background": "#292D3E", - "Placeholder.borderColor": "#2b2a3e", - "Placeholder.foreground": "#A6ACCD", - "Placeholder.selectedForeground": "#FFFFFF", + "Placeholder": { + "background": "#292D3E", + "borderColor": "#2b2a3e", + "foreground": "#A6ACCD", + "selectedForeground": "#FFFFFF" + }, "Preview.background": "#292D3E", "stroke.acceleratorForeground": "#676E95" }, @@ -828,7 +914,8 @@ }, "Log": { "Commit.unmatchedForeground": "#676E95", - "Commit.currentBranchBackground": "#34324a" + "Commit.currentBranchBackground": "#34324a", + "Commit.hoveredBackground": "#676E9570" }, "RefLabel": { "foreground": "#FFFFFF", @@ -840,16 +927,22 @@ "foreground": "#A6ACCD" }, "WelcomeScreen": { + "AssociatedComponent.background": "#292D3E", "background": "#292D3E", "borderColor": "#292D3E", "captionBackground": "#202331", "captionForeground": "#A6ACCD", + "Details.background": "#292D3E", "footerBackground": "#202331", "footerForeground": "#A6ACCD", "headerBackground": "#292D3E", "headerForeground": "#A6ACCD", + "List.background": "#202331", "separatorColor": "#2b2a3e", + "SidePanel.background": "#34324a", "Projects": { + "actions.background": "#202331", + "actions.selectionBackground": "#444267", "background": "#34324a", "selectionBackground": "#3C435E", "selectionInactiveBackground": "#34324a" diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Monokai Pro Contrast.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Monokai Pro Contrast.theme.json index b16896d9..f9a4b449 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Monokai Pro Contrast.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Monokai Pro Contrast.theme.json @@ -3,21 +3,27 @@ "dark": true, "author": "Mallowigi", "editorScheme": "/colors/Monokai Pro.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/monokai.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { "acceleratorSelectionForeground": "#939293", "background": "#2D2A2E", "borderColor": "#2d2a2e", "disabledBackground": "#3a3a3c", - "disabledForeground": "#5b595c", - "disabledText": "#5b595c", + "disabledForeground": "#727072", + "disabledText": "#727072", "focusColor": "#5b595c", "focusedBorderColor": "#ffd866", "foreground": "#fcfcfa", "inactiveBackground": "#3a3a3c", "inactiveForeground": "#939293", "infoForeground": "#939293", - "selectionBackground": "#6E6C6F", + "selectionBackground": "#5B595C", "selectionBackgroundInactive": "#403E41", "selectionForeground": "#FFFFFF", "selectionInactiveBackground": "#403E41", @@ -33,7 +39,7 @@ "pressedBorderColor": "#ffd86650" }, "Autocomplete": { - "selectionBackground": "#6E6C6F" + "selectionBackground": "#5B595C" }, "Borders.ContrastBorderColor": "#2D2A2E", "Borders.color": "#2d2a2e", @@ -43,7 +49,7 @@ "default": { "endBackground": "#4A474B", "endBorderColor": "#4A474B", - "foreground": "#ffd866", + "foreground": "#FFFFFF", "focusColor": "#ffd866", "focusedBorderColor": "#ffd866", "shadowColor": "#4A474B", @@ -51,7 +57,7 @@ "startBorderColor": "#4A474B" }, "disabledBorderColor": "#403E41", - "disabledText": "#5b595c", + "disabledText": "#727072", "endBackground": "#403E41", "endBorderColor": "#403E41", "focus": "#5b595c", @@ -72,10 +78,13 @@ "Tooltip.borderColor": "#2d2a2e", "Tooltip.background": "#363437" }, - "Content.background": "#3a3a3c", + "Content": { + "background": "#221F22", + "selectionBackground": "#5B595C" + }, "CheckBox": { "background": "#2D2A2E", - "disabledText": "#5b595c", + "disabledText": "#727072", "foreground": "#fcfcfa", "select": "#ffd866" }, @@ -84,10 +93,18 @@ "acceleratorSelectionForeground": "#939293", "background": "#2D2A2E", "disabledBackground": "#2D2A2E", - "disabledForeground": "#5b595c", + "disabledForeground": "#727072", "foreground": "#fcfcfa", - "selectionBackground": "#6E6C6F", - "selectionForeground": "#ffd866" + "selectionBackground": "#5B595C", + "selectionForeground": "#FFFFFF" + }, + "CodeWithMe": { + "Avatar.foreground": "#fcfcfa", + "AccessEnabled": { + "accessDot": "#ffd866", + "dropdownBorder": "#403E41", + "pillBackground": "$second" + } }, "ColorChooser": { "background": "#2D2A2E", @@ -98,19 +115,20 @@ "ComboBox": { "ArrowButton": { "background": "#403E41", - "disabledIconColor": "#5b595c", + "disabledIconColor": "#727072", "iconColor": "#fcfcfa", "nonEditableBackground": "#2D2A2E" }, - "background": "#3a3a3c", + "background": "#221F22", "buttonBackground": "#403E41", - "disabledForeground": "#5b595c", + "darcula.hoveredArrowButtonForeground": "#ffd866", + "disabledForeground": "#727072", "foreground": "#fcfcfa", "modifiedItemForeground": "#ffd866", "nonEditableBackground": "#403E41", "padding": "5,5,5,5", "selectionBackground": "#4A474B", - "selectionForeground": "#ffd866" + "selectionForeground": "#FFFFFF" }, "ComboPopup.border": "#2d2a2e", "CompletionPopup": { @@ -123,8 +141,8 @@ "selectedGrayedForeground": "#FFFFFF", "selectionGrayForeground": "#FFFFFF", "selectionInactiveInfoForeground": "#939293", - "selectionInactiveBackground": "#6E6C6F50", - "selectionBackground": "#6E6C6F80", + "selectionInactiveBackground": "#5B595C50", + "selectionBackground": "#5B595C80", "selectionForeground": "#FFFFFF", "selectionInfoForeground": "#FFFFFF" }, @@ -166,13 +184,15 @@ "background": "#2D2A2E", "borderColor": "#2D2A2E", "hoverBackground": "#4A474B", - "hoverColor": "#3a3a3c", + "hoverColor": "#221F22", "hoverMaskColor": "#5b595c", + "inactiveColoredTabBackground": "#2D2A2E", "inactiveColoredFileBackground": "#403E41", - "inactiveUnderlineColor": "#5b595c", - "inactiveMaskColor": "#3a3a3c", + "inactiveUnderlineColor": "#ffd866", + "inactiveMaskColor": "#221F22", "underlineColor": "#ffd866", - "underlinedTabBackground": "#4A474B" + "underlinedTabBackground": "#4A474B", + "underlinedTabForeground": "#FFFFFF" }, "Desktop.background": "#2D2A2E", "DialogWrapper.southPanelBackground": "#2D2A2E", @@ -183,30 +203,32 @@ "areaForeground": "#fcfcfa" }, "Editor": { - "background": "#3a3a3c", + "background": "#221F22", "foreground": "#fcfcfa", "shortcutForeground": "#939293" }, "EditorPane": { - "background": "#3a3a3c", + "background": "#221F22", "caretForeground": "#ffd866", "foreground": "#fcfcfa", "inactiveBackground": "#2D2A2E", - "inactiveForeground": "#5b595c", - "selectionBackground": "#6E6C6F", - "selectionForeground": "#ffd866" + "inactiveForeground": "#727072", + "selectionBackground": "#5B595C", + "selectionForeground": "#FFFFFF" }, "EditorTabs": { "borderColor": "#403E41", + "hoverBackground": "#5b595c", "hoverColor": "#5b595c", "hoverMaskColor": "#5b595c", "inactiveMaskColor": "#2D2A2E", - "inactiveColoredFileBackground": "#2D2A2E2", - "inactiveUnderlineColor": "#5b595c", + "inactiveColoredFileBackground": "#2D2A2E", + "inactiveUnderlineColor": "#727072", "selectedForeground": "#fcfcfa", "selectedBackground": "#4A474B", "underlineColor": "#ffd866", - "underlinedTabBackground": "#4A474B" + "underlinedTabBackground": "#4A474B", + "underlinedTabForeground": "#FFFFFF" }, "EditorGroupsTabs": { "background": "#2D2A2E", @@ -238,25 +260,26 @@ }, "Focus.color": "#2d2a2e", "FormattedTextField": { - "background": "#3a3a3c", + "background": "#221F22", "caretForeground": "#ffd866", "foreground": "#fcfcfa", "inactiveBackground": "#403E41", - "inactiveForeground": "#5b595c", - "selectionForeground": "#ffd866", + "inactiveForeground": "#727072", + "selectionForeground": "#FFFFFF", "selectionBackground": "#4A474B" }, + "GotItTooltip.borderColor": "#363437", "Group": { "disabledSeparatorColor": "#2d2a2e", "separatorColor": "#2d2a2e" }, "GutterTooltip": { - "infoForeground": "#fcfcfa", + "infoForeground": "#939293", "lineSeparatorColor": "#2D2A2E" }, "HeaderColor": { "active": "#2D2A2E", - "inactive": "#3a3a3c" + "inactive": "#221F22" }, "HelpTooltip": { "background": "#2D2A2E", @@ -283,12 +306,13 @@ }, "Label": { "background": "#2D2A2E", - "disabledForeground": "#5b595c", + "disabledForeground": "#727072", "disabledShadow": "#2D2A2E", - "disabledText": "#5b595c", + "disabledText": "#727072", "foreground": "#fcfcfa", "infoForeground": "#939293", - "selectedForeground": "#ffd866" + "selectedForeground": "#FFFFFF", + "selectedDisabledForeground": "#fcfcfa" }, "Link": { "activeForeground": "#ffd866", @@ -301,15 +325,17 @@ "List": { "background": "#403E41", "foreground": "#fcfcfa", - "selectionBackground": "#6E6C6F50", + "hoverBackground": "#403E4170", + "hoverInactiveBackground": "#4A474B", + "selectionBackground": "#5B595C50", "selectionForeground": "#FFFFFF", - "selectionInactiveForeground": "#ffd866", - "selectionInactiveBackground": "#403E41" + "selectionInactiveForeground": "#FFFFFF", + "selectionInactiveBackground": "#403E4170" }, "material": { "background": "#2D2A2E", "branchColor": "#fcfcfa", - "contrast": "#3a3a3c", + "contrast": "#221F22", "foreground": "#fcfcfa", "mergeCommits": "#403E41", "primaryColor": "#939293", @@ -330,22 +356,22 @@ "border": "4,2,4,2", "borderColor": "#403E41", "disabledBackground": "#403E41", - "disabledForeground": "#5b595c", + "disabledForeground": "#727072", "foreground": "#fcfcfa", - "selectionBackground": "#6E6C6F", + "selectionBackground": "#5B595C", "selectionForeground": "#FFFFFF", "separatorColor": "#2d2a2e" }, "MenuBar": { - "background": "#3a3a3c", + "background": "#221F22", "borderColor": "#2D2A2E", "disabledBackground": "#2D2A2E", - "disabledForeground": "#5b595c", + "disabledForeground": "#727072", "foreground": "#fcfcfa", "highlight": "#2D2A2E", - "selectionBackground": "#6E6C6F", + "selectionBackground": "#5B595C", "selectionForeground": "#FFFFFF", - "shadow": "#3a3a3c" + "shadow": "#221F22" }, "MenuItem": { "acceleratorForeground": "#939293", @@ -353,9 +379,9 @@ "border": "4,2,4,2", "background": "#2D2A2E", "disabledBackground": "#2D2A2E", - "disabledForeground": "#5b595c", + "disabledForeground": "#727072", "foreground": "#fcfcfa", - "selectionBackground": "#6E6C6F", + "selectionBackground": "#5B595C", "selectionForeground": "#FFFFFF" }, "NavBar": { @@ -367,7 +393,7 @@ "background": "#2D2A2E" }, "SearchField": { - "background": "#3a3a3c" + "background": "#221F22" } }, "NewPSD.warning": "#ffd866", @@ -400,7 +426,7 @@ "Outline": { "color": "#403E41", "focusedColor": "#ffd866", - "disabledColor": "#5b595c" + "disabledColor": "#727072" }, "Panel": { "background": "#2D2A2E", @@ -409,29 +435,30 @@ "ParameterInfo": { "background": "#403E41", "borderColor": "#4A474B", - "currentOverloadBackground": "#4A474B", + "currentOverloadBackground": "#5b595c", "currentParameterForeground": "#ffd866", - "disabledForeground": "#5b595c", + "disabledForeground": "#727072", "foreground": "#fcfcfa", "infoForeground": "#939293", "lineSeparatorColor": "#4A474B" }, "PasswordField": { - "background": "#3a3a3c", + "background": "#221F22", "capsLockIconColor": "#ffd866", "caretForeground": "#ffd866", "foreground": "#fcfcfa", - "inactiveForeground": "#5b595c", + "inactiveForeground": "#727072", "selectionBackground": "#4A474B", - "selectionForeground": "#ffd866" + "selectionForeground": "#FFFFFF" }, "Plugins": { "background": "#2D2A2E", - "disabledForeground": "#5b595c", + "disabledForeground": "#727072", "eapTagBackground": "#5b595c", - "lightSelectionBackground": "#6E6C6F", + "hoverBackground": "#403E4170", + "lightSelectionBackground": "#4A474B", "paidTagBackground": "#5b595c", - "selectionBackground": "#6E6C6F", + "selectionBackground": "#5B595C", "tagForeground": "#ffd866", "tagBackground": "#5b595c", "trialTagBackground": "#5b595c", @@ -440,14 +467,14 @@ "installBorderColor": "#403E41", "installForeground": "#fcfcfa", "installFocusedBackground": "#5b595c", - "installFillForeground": "#5b595c", + "installFillForeground": "#727072", "installFillBackground": "#403E41", - "updateBackground": "#403E41", + "updateBackground": "#ffd866", "updateBorderColor": "#403E41", "updateForeground": "#fcfcfa" }, "SearchField": { - "background": "#3a3a3c", + "background": "#221F22", "borderColor": "#2d2a2e" }, "SectionHeader": { @@ -466,20 +493,20 @@ "borderColor": "#2D2A2E", "foreground": "#ffd866" }, - "borderColor": "#3a3a3c", + "borderColor": "#221F22", "inactiveBorderColor": "#2D2A2E", "innerBorderColor": "#403E41", "Header": { "activeBackground": "#2D2A2E", - "inactiveBackground": "#3a3a3c" + "inactiveBackground": "#221F22" }, "paintBorder": true, "separatorForeground": "#fcfcfa", "separatorColor": "#403E41", "Toolbar": { - "Floating.background": "#3a3a3c", - "background": "#3a3a3c", - "borderColor": "#3a3a3c" + "Floating.background": "#221F22", + "background": "#221F22", + "borderColor": "#221F22" } }, "PopupMenu": { @@ -504,7 +531,7 @@ }, "RadioButton": { "background": "#2D2A2E", - "disabledText": "#5b595c", + "disabledText": "#727072", "foreground": "#fcfcfa" }, "RadioButtonMenuItem": { @@ -512,11 +539,12 @@ "acceleratorSelectionForeground": "#939293", "background": "#2D2A2E", "disabledBackground": "#2D2A2E", - "disabledForeground": "#5b595c", + "disabledForeground": "#727072", "foreground": "#fcfcfa", - "selectionBackground": "#6E6C6F", + "selectionBackground": "#5B595C", "selectionForeground": "#FFFFFF" }, + "ScreenView.borderColor": "#2d2a2e", "ScrollBar": { "background": "#2D2A2E", "hoverThumbBorderColor": "#ffd866", @@ -553,7 +581,7 @@ }, "SearchEverywhere": { "Advertiser": { - "background": "#3a3a3c", + "background": "#221F22", "foreground": "#939293" }, "Header": { @@ -565,27 +593,36 @@ }, "SearchField": { "background": "#2D2A2E", - "borderColor": "#3a3a3c", + "borderColor": "#221F22", "infoForeground": "#939293" }, "Tab": { - "active.foreground": "#ffd866", - "selectedForeground": "#ffd866", + "active.foreground": "#FFFFFF", + "selectedForeground": "#FFFFFF", "selectedBackground": "#5b595c" } }, "SearchMatch": { "endBackground": "#ffd866", - "startBackground": "#ffd866" + "startBackground": "#ffd866", + "endColor": "#ffd866", + "startColor": "#ffd866" }, "SearchField.errorBackground": "#363437", + "SearchOption": { + "selectedBackground": "#4A474B" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#939293", + "Repeated.File.Foreground": "#fcfcfa" + }, "Separator": { "background": "#403E41", "foreground": "#403E41", "separatorColor": "#403E41" }, "SidePanel": { - "background": "#3a3a3c" + "background": "#221F22" }, "Slider": { "background": "#2D2A2E", @@ -608,23 +645,25 @@ "background": "#2D2A2E", "border": "3,3,3,3", "foreground": "#fcfcfa", - "selectionForeground": "#ffd866" + "selectionForeground": "#FFFFFF" }, "SplitPane": { "background": "#2D2A2E", - "highlight": "#3a3a3c" + "highlight": "#221F22" }, "SplitPaneDivider.draggingColor": "#403E41", "StatusBar": { - "borderColor": "#2D2A2E" + "borderColor": "#2D2A2E", + "hoverBackground": "#5b595c", + "LightEditBackground": "#4A474B" }, "TabbedPane": { "background": "#2D2A2E", "contentAreaColor": "#5b595c", "contentBorderInsets": "3,1,1,1", "darkShadow": "#2d2a2e", - "disabledForeground": "#5b595c", - "disabledUnderlineColor": "#5b595c", + "disabledForeground": "#727072", + "disabledUnderlineColor": "#727072", "focus": "#4A474B", "focusColor": "#4A474B", "fontSizeOffset": 0, @@ -632,7 +671,7 @@ "highlight": "#2d2a2e", "hoverColor": "#5b595c", "labelShift": 0, - "selectedForeground": "#ffd866", + "selectedForeground": "#FFFFFF", "selectedLabelShift": 0, "selectedTabPadInsets": "0,0,0,0", "tabsOverlapBorder": true, @@ -641,37 +680,41 @@ "tabSelectionHeight": 2, "underlineColor": "#ffd866" }, - "TabbedPane.mt.tab.background": "#3a3a3c", + "TabbedPane.mt.tab.background": "#221F22", "Table": { + "alternativeRowBackground": "#221F22", "background": "#2D2A2E", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#727072", "dropLineColor": "#ffd866", "dropLineShortColor": "#ffd866", "focusCellBackground": "#4A474B", - "focusCellForeground": "#ffd866", + "focusCellForeground": "#FFFFFF", "foreground": "#fcfcfa", "gridColor": "#2D2A2E", "highlightOuter": "#4A474B", - "lightSelectionForeground": "#ffd866", + "hoverBackground": "#403E4170", + "hoverInactiveBackground": "#4A474B", + "lightSelectionForeground": "#FFFFFF", "lightSelectionInactiveForeground": "#939293", "lightSelectionInactiveBackground": "#403E41", "selectionBackground": "#4A474B", - "selectionForeground": "#ffd866", + "selectionForeground": "#FFFFFF", "selectionInactiveBackground": "#4A474B", "selectionInactiveForeground": "#FFFFFF", "sortIconColor": "#fcfcfa", - "stripeColor": "#3a3a3c" + "stripeColor": "#221F22" }, "TableHeader": { "background": "#2D2A2E", "borderColor": "#2D2A2E", "bottomSeparatorColor": "#403E41", "cellBorder": "4,0,4,0", - "disabledForeground": "#5b595c", + "disabledForeground": "#727072", "foreground": "#fcfcfa", "focusCellBackground": "#4A474B", - "focusCellForeground": "#ffd866", + "focusCellForeground": "#FFFFFF", "height": 25, "separatorColor": "#403E41" }, @@ -679,31 +722,31 @@ "textInactiveText": "#939293", "textText": "#939293", "TextArea": { - "background": "#3a3a3c", + "background": "#221F22", "caretForeground": "#ffd866", "foreground": "#fcfcfa", - "inactiveForeground": "#5b595c", + "inactiveForeground": "#727072", "selectionBackground": "#4A474B", - "selectionForeground": "#ffd866" + "selectionForeground": "#FFFFFF" }, "TextField": { - "background": "#3a3a3c", + "background": "#221F22", "caretForeground": "#ffd866", "foreground": "#fcfcfa", - "inactiveForeground": "#5b595c", + "inactiveForeground": "#727072", "selectionBackground": "#4A474B", - "selectionForeground": "#ffd866" + "selectionForeground": "#FFFFFF" }, "TextPane": { - "background": "#3a3a3c", + "background": "#221F22", "caretForeground": "#ffd866", "foreground": "#fcfcfa", - "inactiveForeground": "#5b595c", + "inactiveForeground": "#727072", "selectionBackground": "#4A474B", - "selectionForeground": "#ffd866" + "selectionForeground": "#FFFFFF" }, "TitlePane": { - "background": "#3a3a3c", + "background": "#221F22", "Button.hoverBackground": "#5b595c", "inactiveBackground": "#2D2A2E", "infoForeground": "#939293", @@ -713,7 +756,7 @@ "ToggleButton": { "borderColor": "#403E41", "buttonColor": "#fcfcfa", - "disabledText": "#5b595c", + "disabledText": "#727072", "foreground": "#fcfcfa", "offForeground": "#2D2A2E", "offBackground": "#2D2A2E", @@ -721,7 +764,7 @@ "onForeground": "#ffd866" }, "ToolBar": { - "background": "#3a3a3c", + "background": "#221F22", "borderHandleColor": "#939293", "floatingForeground": "#939293", "foreground": "#fcfcfa" @@ -729,8 +772,8 @@ "ToolTip": { "Actions.background": "#2D2A2E", "Actions.infoForeground": "#939293", - "background": "#2D2A2E", - "borderColor": "#5b595c", + "background": "#363437", + "borderColor": "#2d2a2e", "foreground": "#fcfcfa", "infoForeground": "#939293", "separatorColor": "#2d2a2e", @@ -739,8 +782,8 @@ "ToolWindow": { "Button": { "hoverBackground": "#4A474B", - "selectedForeground": "#ffd866", - "selectedBackground": "#3a3a3c" + "selectedForeground": "#FFFFFF", + "selectedBackground": "#221F22" }, "Header": { "background": "#2D2A2E", @@ -751,50 +794,93 @@ "background": "#2D2A2E" }, "HeaderTab": { + "borderColor": "#5b595c", "hoverBackground": "#5b595c", - "hoverInactiveBackground": "#403E41", + "hoverInactiveBackground": "#5b595c", "inactiveUnderlineColor": "#ffd866", - "selectedBackground": "#3a3a3c", - "selectedInactiveBackground": "#3a3a3c", + "selectedBackground": "#221F22", + "selectedInactiveBackground": "#221F22", "underlineColor": "#ffd866", - "underlinedTabBackground": "#5b595c", - "underlinedTabInactiveBackground": "#403E41" + "underlinedTabBackground": "#4A474B", + "underlinedTabInactiveBackground": "#403E41", + "underlinedTabForeground": "#FFFFFF", + "underlinedTabInactiveForeground": "#fcfcfa" } }, "Tree": { - "background": "#3a3a3c", + "background": "#221F22", "foreground": "#939293", "hash": "#2d2a2e", + "hoverBackground": "#403E4170", + "hoverInactiveBackground": "#4A474B", "modifiedItemForeground": "#ffd866", "rowHeight": 28, - "selectionBackground": "#403E41", + "selectionBackground": "#403E4170", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#403E41", - "textBackground": "#3a3a3c" + "selectionInactiveBackground": "#403E4170", + "textBackground": "#221F22" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { + "UIDesigner": { "Activity.borderColor": "#2d2a2e", - "ColorPicker.background": "#2D2A2E", - "ColorPicker.foreground": "#fcfcfa", - "Component.borderColor": "#2d2a2e", - "Component.background": "#2D2A2E", - "Component.foreground": "#fcfcfa", - "Connector.borderColor": "#2d2a2e", - "Connector.hoverBorderColor": "#5b595c", - "Canvas.background": "#3a3a3c", + "Canvas.background": "#221F22", + "ColorPicker": { + "background": "#2D2A2E", + "foreground": "#fcfcfa" + }, + "Component": { + "borderColor": "#2d2a2e", + "background": "#2D2A2E", + "foreground": "#fcfcfa", + "hoverBorderColor": "#5b595c" + }, + "Connector": { + "borderColor": "#2d2a2e", + "hoverBorderColor": "#5b595c" + }, + "Canvas.background": "#221F22", "highStroke.foreground": "#fcfcfa", "Label.foreground": "#939293", - "List.selectionBackground": "#403E41", - "Panel.borderColor": "#2d2a2e", - "Panel.background": "#2D2A2E", + "List.selectionBackground": "#403E4170", + "motion": { + "borderColor": "#2d2a2e", + "Component.foreground": "#fcfcfa", + "ConstraintSetText.foreground": "#939293", + "ConstraintSet.background": "#403E41", + "CSPanel.SelectedFocusBackground": "#5B595C", + "CSPanel.SelectedBackground": "#403E4170", + "cs_FocusText.infoForeground": "#939293", + "CursorTextColor.foreground": "#fcfcfa", + "HoverColor.disabledBackground": "#727072", + "motionGraph.background": "#2D2A2E", + "Notification.background": "#363437", + "ourAvg.background": "#403E41", + "ourCS.background": "#403E41", + "ourCS_Border.borderColor": "#2d2a2e", + "ourCS_TextColor.foreground": "#939293", + "ourCS_SelectedFocusBackground.selectionForeground": "#FFFFFF", + "ourCS_SelectedBackground.selectionInactiveBackground": "#4A474B", + "ourCS_SelectedBorder.pressedBorderColor": "#5b595c", + "ourML_BarColor.separatorColor": "#2d2a2e", + "PrimaryPanel.background": "#221F22", + "SecondaryPanel.background": "#2D2A2E", + "SecondaryPanel.header.foreground": "#939293", + "SecondaryPanel.header.background": "#221F22", + "timeLine.disabledBorderColor": "#2d2a2e" + }, + "Panel": { + "borderColor": "#2d2a2e", + "background": "#2D2A2E" + }, "percent.foreground": "#fcfcfa", - "Placeholder.background": "#2D2A2E", - "Placeholder.borderColor": "#2d2a2e", - "Placeholder.foreground": "#fcfcfa", - "Placeholder.selectedForeground": "#FFFFFF", + "Placeholder": { + "background": "#2D2A2E", + "borderColor": "#2d2a2e", + "foreground": "#fcfcfa", + "selectedForeground": "#FFFFFF" + }, "Preview.background": "#2D2A2E", "stroke.acceleratorForeground": "#939293" }, @@ -819,8 +905,8 @@ }, "HgLog": { "branchIconColor": "#ffd866", - "bookmarkIconColor": "#ffd866", - "closedBranchIconColor": "#5b595c", + "bookmarkIconColor": "#FFFFFF", + "closedBranchIconColor": "#727072", "localTagIconColor": "#939293", "mqTagIconColor": "#939293", "tagIconColor": "#939293", @@ -828,48 +914,55 @@ }, "Log": { "Commit.unmatchedForeground": "#939293", - "Commit.currentBranchBackground": "#403E41" + "Commit.currentBranchBackground": "#403E41", + "Commit.hoveredBackground": "#403E4170" }, "RefLabel": { - "foreground": "#ffd866", + "foreground": "#FFFFFF", "backgroundBase": "#5b595c" } }, "Viewport": { - "background": "#3a3a3c", + "background": "#221F22", "foreground": "#fcfcfa" }, "WelcomeScreen": { + "AssociatedComponent.background": "#2D2A2E", "background": "#2D2A2E", "borderColor": "#2D2A2E", - "captionBackground": "#3a3a3c", + "captionBackground": "#221F22", "captionForeground": "#fcfcfa", - "footerBackground": "#3a3a3c", + "Details.background": "#2D2A2E", + "footerBackground": "#221F22", "footerForeground": "#fcfcfa", "headerBackground": "#2D2A2E", "headerForeground": "#fcfcfa", + "List.background": "#221F22", "separatorColor": "#2d2a2e", + "SidePanel.background": "#403E41", "Projects": { + "actions.background": "#221F22", + "actions.selectionBackground": "#5b595c", "background": "#403E41", - "selectionBackground": "#6E6C6F", + "selectionBackground": "#5B595C", "selectionInactiveBackground": "#403E41" } }, - "window": "#3a3a3c", + "window": "#221F22", "windowBorder": "#2d2a2e", "windowText": "#939293", "Window.border": "#2d2a2e" }, "icons": { "ColorPalette": { - "#43494A": "#3a3a3c", + "#43494A": "#221F22", "#6B6B6B": "#939293", "#A7A7A7": "#2D2A2E", "#3D6185": "#ffd866", "#466D94": "#ffd866", "#3C3F41": "#2D2A2E", - "#545556": "#5b595c", - "#606060": "#5b595c", + "#545556": "#727072", + "#606060": "#727072", "#9AA7B0": "#fcfcfa", "#675133": "#ffd866", "Actions.Blue": "#A9DC76", @@ -879,20 +972,20 @@ "Actions.GreyInline.Dark": "#fcfcfa", "Actions.Red": "#FF6188", "Actions.Yellow": "#78DCE8", - "Checkbox.Background.Default": "#3a3a3c", - "Checkbox.Background.Default.Dark": "#3a3a3c", + "Checkbox.Background.Default": "#221F22", + "Checkbox.Background.Default.Dark": "#221F22", "Checkbox.Background.Disabled": "#3a3a3c", "Checkbox.Background.Disabled.Dark": "#3a3a3c", "Checkbox.Border.Default": "#2d2a2e", "Checkbox.Border.Default.Dark": "#2d2a2e", - "Checkbox.Border.Disabled": "#5b595c", - "Checkbox.Border.Disabled.Dark": "#5b595c", + "Checkbox.Border.Disabled": "#727072", + "Checkbox.Border.Disabled.Dark": "#727072", "Checkbox.Focus.Thin.Default": "#ffd866", "Checkbox.Focus.Thin.Default.Dark": "#ffd866", "Checkbox.Focus.Wide": "#ffd866", "Checkbox.Focus.Wide.Dark": "#ffd866", - "Checkbox.Foreground.Disabled": "#5b595c", - "Checkbox.Foreground.Disabled.Dark": "#5b595c", + "Checkbox.Foreground.Disabled": "#727072", + "Checkbox.Foreground.Disabled.Dark": "#727072", "Checkbox.Background.Selected": "#ffd866", "Checkbox.Background.Selected.Dark": "#2D2A2E", "Checkbox.Border.Selected": "#ffd866", 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 9a71d591..cdeda171 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 @@ -3,21 +3,27 @@ "dark": true, "author": "Mallowigi", "editorScheme": "/colors/Monokai Pro.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/monokai.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { "acceleratorSelectionForeground": "#939293", "background": "#2D2A2E", "borderColor": "#2d2a2e", "disabledBackground": "#3a3a3c", - "disabledForeground": "#5b595c", - "disabledText": "#5b595c", + "disabledForeground": "#727072", + "disabledText": "#727072", "focusColor": "#5b595c", "focusedBorderColor": "#ffd866", "foreground": "#fcfcfa", "inactiveBackground": "#3a3a3c", "inactiveForeground": "#939293", "infoForeground": "#939293", - "selectionBackground": "#6E6C6F", + "selectionBackground": "#5B595C", "selectionBackgroundInactive": "#403E41", "selectionForeground": "#FFFFFF", "selectionInactiveBackground": "#403E41", @@ -33,7 +39,7 @@ "pressedBorderColor": "#ffd86650" }, "Autocomplete": { - "selectionBackground": "#6E6C6F" + "selectionBackground": "#5B595C" }, "Borders.ContrastBorderColor": "#2D2A2E", "Borders.color": "#2d2a2e", @@ -43,7 +49,7 @@ "default": { "endBackground": "#4A474B", "endBorderColor": "#4A474B", - "foreground": "#ffd866", + "foreground": "#FFFFFF", "focusColor": "#ffd866", "focusedBorderColor": "#ffd866", "shadowColor": "#4A474B", @@ -51,7 +57,7 @@ "startBorderColor": "#4A474B" }, "disabledBorderColor": "#403E41", - "disabledText": "#5b595c", + "disabledText": "#727072", "endBackground": "#403E41", "endBorderColor": "#403E41", "focus": "#5b595c", @@ -72,10 +78,13 @@ "Tooltip.borderColor": "#2d2a2e", "Tooltip.background": "#363437" }, - "Content.background": "#3a3a3c", + "Content": { + "background": "#221F22", + "selectionBackground": "#5B595C" + }, "CheckBox": { "background": "#2D2A2E", - "disabledText": "#5b595c", + "disabledText": "#727072", "foreground": "#fcfcfa", "select": "#ffd866" }, @@ -84,10 +93,18 @@ "acceleratorSelectionForeground": "#939293", "background": "#2D2A2E", "disabledBackground": "#2D2A2E", - "disabledForeground": "#5b595c", + "disabledForeground": "#727072", "foreground": "#fcfcfa", - "selectionBackground": "#6E6C6F", - "selectionForeground": "#ffd866" + "selectionBackground": "#5B595C", + "selectionForeground": "#FFFFFF" + }, + "CodeWithMe": { + "Avatar.foreground": "#fcfcfa", + "AccessEnabled": { + "accessDot": "#ffd866", + "dropdownBorder": "#403E41", + "pillBackground": "$second" + } }, "ColorChooser": { "background": "#2D2A2E", @@ -98,19 +115,20 @@ "ComboBox": { "ArrowButton": { "background": "#403E41", - "disabledIconColor": "#5b595c", + "disabledIconColor": "#727072", "iconColor": "#fcfcfa", "nonEditableBackground": "#2D2A2E" }, "background": "#2D2A2E", "buttonBackground": "#403E41", - "disabledForeground": "#5b595c", + "darcula.hoveredArrowButtonForeground": "#ffd866", + "disabledForeground": "#727072", "foreground": "#fcfcfa", "modifiedItemForeground": "#ffd866", "nonEditableBackground": "#403E41", "padding": "5,5,5,5", "selectionBackground": "#4A474B", - "selectionForeground": "#ffd866" + "selectionForeground": "#FFFFFF" }, "ComboPopup.border": "#2d2a2e", "CompletionPopup": { @@ -123,8 +141,8 @@ "selectedGrayedForeground": "#FFFFFF", "selectionGrayForeground": "#FFFFFF", "selectionInactiveInfoForeground": "#939293", - "selectionInactiveBackground": "#6E6C6F50", - "selectionBackground": "#6E6C6F80", + "selectionInactiveBackground": "#5B595C50", + "selectionBackground": "#5B595C80", "selectionForeground": "#FFFFFF", "selectionInfoForeground": "#FFFFFF" }, @@ -168,11 +186,13 @@ "hoverBackground": "#4A474B", "hoverColor": "#2D2A2E", "hoverMaskColor": "#5b595c", + "inactiveColoredTabBackground": "#2D2A2E", "inactiveColoredFileBackground": "#403E41", - "inactiveUnderlineColor": "#5b595c", + "inactiveUnderlineColor": "#ffd866", "inactiveMaskColor": "#2D2A2E", "underlineColor": "#ffd866", - "underlinedTabBackground": "#4A474B" + "underlinedTabBackground": "#4A474B", + "underlinedTabForeground": "#FFFFFF" }, "Desktop.background": "#2D2A2E", "DialogWrapper.southPanelBackground": "#2D2A2E", @@ -192,21 +212,23 @@ "caretForeground": "#ffd866", "foreground": "#fcfcfa", "inactiveBackground": "#2D2A2E", - "inactiveForeground": "#5b595c", - "selectionBackground": "#6E6C6F", - "selectionForeground": "#ffd866" + "inactiveForeground": "#727072", + "selectionBackground": "#5B595C", + "selectionForeground": "#FFFFFF" }, "EditorTabs": { "borderColor": "#403E41", + "hoverBackground": "#5b595c", "hoverColor": "#5b595c", "hoverMaskColor": "#5b595c", "inactiveMaskColor": "#2D2A2E", - "inactiveColoredFileBackground": "#2D2A2E2", - "inactiveUnderlineColor": "#5b595c", + "inactiveColoredFileBackground": "#2D2A2E", + "inactiveUnderlineColor": "#727072", "selectedForeground": "#fcfcfa", "selectedBackground": "#4A474B", "underlineColor": "#ffd866", - "underlinedTabBackground": "#4A474B" + "underlinedTabBackground": "#4A474B", + "underlinedTabForeground": "#FFFFFF" }, "EditorGroupsTabs": { "background": "#2D2A2E", @@ -242,21 +264,22 @@ "caretForeground": "#ffd866", "foreground": "#fcfcfa", "inactiveBackground": "#403E41", - "inactiveForeground": "#5b595c", - "selectionForeground": "#ffd866", + "inactiveForeground": "#727072", + "selectionForeground": "#FFFFFF", "selectionBackground": "#4A474B" }, + "GotItTooltip.borderColor": "#363437", "Group": { "disabledSeparatorColor": "#2d2a2e", "separatorColor": "#2d2a2e" }, "GutterTooltip": { - "infoForeground": "#fcfcfa", + "infoForeground": "#939293", "lineSeparatorColor": "#2D2A2E" }, "HeaderColor": { "active": "#2D2A2E", - "inactive": "#3a3a3c" + "inactive": "#221F22" }, "HelpTooltip": { "background": "#2D2A2E", @@ -283,12 +306,13 @@ }, "Label": { "background": "#2D2A2E", - "disabledForeground": "#5b595c", + "disabledForeground": "#727072", "disabledShadow": "#2D2A2E", - "disabledText": "#5b595c", + "disabledText": "#727072", "foreground": "#fcfcfa", "infoForeground": "#939293", - "selectedForeground": "#ffd866" + "selectedForeground": "#FFFFFF", + "selectedDisabledForeground": "#fcfcfa" }, "Link": { "activeForeground": "#ffd866", @@ -301,15 +325,17 @@ "List": { "background": "#403E41", "foreground": "#fcfcfa", - "selectionBackground": "#6E6C6F50", + "hoverBackground": "#403E4170", + "hoverInactiveBackground": "#4A474B", + "selectionBackground": "#5B595C50", "selectionForeground": "#FFFFFF", - "selectionInactiveForeground": "#ffd866", - "selectionInactiveBackground": "#403E41" + "selectionInactiveForeground": "#FFFFFF", + "selectionInactiveBackground": "#403E4170" }, "material": { "background": "#2D2A2E", "branchColor": "#fcfcfa", - "contrast": "#3a3a3c", + "contrast": "#221F22", "foreground": "#fcfcfa", "mergeCommits": "#403E41", "primaryColor": "#939293", @@ -330,9 +356,9 @@ "border": "4,2,4,2", "borderColor": "#403E41", "disabledBackground": "#403E41", - "disabledForeground": "#5b595c", + "disabledForeground": "#727072", "foreground": "#fcfcfa", - "selectionBackground": "#6E6C6F", + "selectionBackground": "#5B595C", "selectionForeground": "#FFFFFF", "separatorColor": "#2d2a2e" }, @@ -340,10 +366,10 @@ "background": "#2D2A2E", "borderColor": "#2D2A2E", "disabledBackground": "#2D2A2E", - "disabledForeground": "#5b595c", + "disabledForeground": "#727072", "foreground": "#fcfcfa", "highlight": "#2D2A2E", - "selectionBackground": "#6E6C6F", + "selectionBackground": "#5B595C", "selectionForeground": "#FFFFFF", "shadow": "#2D2A2E" }, @@ -353,9 +379,9 @@ "border": "4,2,4,2", "background": "#2D2A2E", "disabledBackground": "#2D2A2E", - "disabledForeground": "#5b595c", + "disabledForeground": "#727072", "foreground": "#fcfcfa", - "selectionBackground": "#6E6C6F", + "selectionBackground": "#5B595C", "selectionForeground": "#FFFFFF" }, "NavBar": { @@ -400,7 +426,7 @@ "Outline": { "color": "#403E41", "focusedColor": "#ffd866", - "disabledColor": "#5b595c" + "disabledColor": "#727072" }, "Panel": { "background": "#2D2A2E", @@ -409,9 +435,9 @@ "ParameterInfo": { "background": "#403E41", "borderColor": "#4A474B", - "currentOverloadBackground": "#4A474B", + "currentOverloadBackground": "#5b595c", "currentParameterForeground": "#ffd866", - "disabledForeground": "#5b595c", + "disabledForeground": "#727072", "foreground": "#fcfcfa", "infoForeground": "#939293", "lineSeparatorColor": "#4A474B" @@ -421,17 +447,18 @@ "capsLockIconColor": "#ffd866", "caretForeground": "#ffd866", "foreground": "#fcfcfa", - "inactiveForeground": "#5b595c", + "inactiveForeground": "#727072", "selectionBackground": "#4A474B", - "selectionForeground": "#ffd866" + "selectionForeground": "#FFFFFF" }, "Plugins": { "background": "#2D2A2E", - "disabledForeground": "#5b595c", + "disabledForeground": "#727072", "eapTagBackground": "#5b595c", - "lightSelectionBackground": "#6E6C6F", + "hoverBackground": "#403E4170", + "lightSelectionBackground": "#4A474B", "paidTagBackground": "#5b595c", - "selectionBackground": "#6E6C6F", + "selectionBackground": "#5B595C", "tagForeground": "#ffd866", "tagBackground": "#5b595c", "trialTagBackground": "#5b595c", @@ -440,9 +467,9 @@ "installBorderColor": "#403E41", "installForeground": "#fcfcfa", "installFocusedBackground": "#5b595c", - "installFillForeground": "#5b595c", + "installFillForeground": "#727072", "installFillBackground": "#403E41", - "updateBackground": "#403E41", + "updateBackground": "#ffd866", "updateBorderColor": "#403E41", "updateForeground": "#fcfcfa" }, @@ -466,20 +493,20 @@ "borderColor": "#2D2A2E", "foreground": "#ffd866" }, - "borderColor": "#3a3a3c", + "borderColor": "#221F22", "inactiveBorderColor": "#2D2A2E", "innerBorderColor": "#403E41", "Header": { "activeBackground": "#2D2A2E", - "inactiveBackground": "#3a3a3c" + "inactiveBackground": "#221F22" }, "paintBorder": true, "separatorForeground": "#fcfcfa", "separatorColor": "#403E41", "Toolbar": { - "Floating.background": "#3a3a3c", - "background": "#3a3a3c", - "borderColor": "#3a3a3c" + "Floating.background": "#221F22", + "background": "#221F22", + "borderColor": "#221F22" } }, "PopupMenu": { @@ -504,7 +531,7 @@ }, "RadioButton": { "background": "#2D2A2E", - "disabledText": "#5b595c", + "disabledText": "#727072", "foreground": "#fcfcfa" }, "RadioButtonMenuItem": { @@ -512,11 +539,12 @@ "acceleratorSelectionForeground": "#939293", "background": "#2D2A2E", "disabledBackground": "#2D2A2E", - "disabledForeground": "#5b595c", + "disabledForeground": "#727072", "foreground": "#fcfcfa", - "selectionBackground": "#6E6C6F", + "selectionBackground": "#5B595C", "selectionForeground": "#FFFFFF" }, + "ScreenView.borderColor": "#2d2a2e", "ScrollBar": { "background": "#2D2A2E", "hoverThumbBorderColor": "#ffd866", @@ -553,7 +581,7 @@ }, "SearchEverywhere": { "Advertiser": { - "background": "#3a3a3c", + "background": "#221F22", "foreground": "#939293" }, "Header": { @@ -565,20 +593,29 @@ }, "SearchField": { "background": "#2D2A2E", - "borderColor": "#3a3a3c", + "borderColor": "#221F22", "infoForeground": "#939293" }, "Tab": { - "active.foreground": "#ffd866", - "selectedForeground": "#ffd866", + "active.foreground": "#FFFFFF", + "selectedForeground": "#FFFFFF", "selectedBackground": "#5b595c" } }, "SearchMatch": { "endBackground": "#ffd866", - "startBackground": "#ffd866" + "startBackground": "#ffd866", + "endColor": "#ffd866", + "startColor": "#ffd866" }, "SearchField.errorBackground": "#363437", + "SearchOption": { + "selectedBackground": "#4A474B" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#939293", + "Repeated.File.Foreground": "#fcfcfa" + }, "Separator": { "background": "#403E41", "foreground": "#403E41", @@ -608,7 +645,7 @@ "background": "#2D2A2E", "border": "3,3,3,3", "foreground": "#fcfcfa", - "selectionForeground": "#ffd866" + "selectionForeground": "#FFFFFF" }, "SplitPane": { "background": "#2D2A2E", @@ -616,15 +653,17 @@ }, "SplitPaneDivider.draggingColor": "#403E41", "StatusBar": { - "borderColor": "#2D2A2E" + "borderColor": "#2D2A2E", + "hoverBackground": "#5b595c", + "LightEditBackground": "#4A474B" }, "TabbedPane": { "background": "#2D2A2E", "contentAreaColor": "#5b595c", "contentBorderInsets": "3,1,1,1", "darkShadow": "#2d2a2e", - "disabledForeground": "#5b595c", - "disabledUnderlineColor": "#5b595c", + "disabledForeground": "#727072", + "disabledUnderlineColor": "#727072", "focus": "#4A474B", "focusColor": "#4A474B", "fontSizeOffset": 0, @@ -632,7 +671,7 @@ "highlight": "#2d2a2e", "hoverColor": "#5b595c", "labelShift": 0, - "selectedForeground": "#ffd866", + "selectedForeground": "#FFFFFF", "selectedLabelShift": 0, "selectedTabPadInsets": "0,0,0,0", "tabsOverlapBorder": true, @@ -643,35 +682,39 @@ }, "TabbedPane.mt.tab.background": "#2D2A2E", "Table": { + "alternativeRowBackground": "#221F22", "background": "#2D2A2E", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#727072", "dropLineColor": "#ffd866", "dropLineShortColor": "#ffd866", "focusCellBackground": "#4A474B", - "focusCellForeground": "#ffd866", + "focusCellForeground": "#FFFFFF", "foreground": "#fcfcfa", "gridColor": "#2D2A2E", "highlightOuter": "#4A474B", - "lightSelectionForeground": "#ffd866", + "hoverBackground": "#403E4170", + "hoverInactiveBackground": "#4A474B", + "lightSelectionForeground": "#FFFFFF", "lightSelectionInactiveForeground": "#939293", "lightSelectionInactiveBackground": "#403E41", "selectionBackground": "#4A474B", - "selectionForeground": "#ffd866", + "selectionForeground": "#FFFFFF", "selectionInactiveBackground": "#4A474B", "selectionInactiveForeground": "#FFFFFF", "sortIconColor": "#fcfcfa", - "stripeColor": "#3a3a3c" + "stripeColor": "#221F22" }, "TableHeader": { "background": "#2D2A2E", "borderColor": "#2D2A2E", "bottomSeparatorColor": "#403E41", "cellBorder": "4,0,4,0", - "disabledForeground": "#5b595c", + "disabledForeground": "#727072", "foreground": "#fcfcfa", "focusCellBackground": "#4A474B", - "focusCellForeground": "#ffd866", + "focusCellForeground": "#FFFFFF", "height": 25, "separatorColor": "#403E41" }, @@ -682,28 +725,28 @@ "background": "#2D2A2E", "caretForeground": "#ffd866", "foreground": "#fcfcfa", - "inactiveForeground": "#5b595c", + "inactiveForeground": "#727072", "selectionBackground": "#4A474B", - "selectionForeground": "#ffd866" + "selectionForeground": "#FFFFFF" }, "TextField": { "background": "#2D2A2E", "caretForeground": "#ffd866", "foreground": "#fcfcfa", - "inactiveForeground": "#5b595c", + "inactiveForeground": "#727072", "selectionBackground": "#4A474B", - "selectionForeground": "#ffd866" + "selectionForeground": "#FFFFFF" }, "TextPane": { "background": "#2D2A2E", "caretForeground": "#ffd866", "foreground": "#fcfcfa", - "inactiveForeground": "#5b595c", + "inactiveForeground": "#727072", "selectionBackground": "#4A474B", - "selectionForeground": "#ffd866" + "selectionForeground": "#FFFFFF" }, "TitlePane": { - "background": "#3a3a3c", + "background": "#221F22", "Button.hoverBackground": "#5b595c", "inactiveBackground": "#2D2A2E", "infoForeground": "#939293", @@ -713,7 +756,7 @@ "ToggleButton": { "borderColor": "#403E41", "buttonColor": "#fcfcfa", - "disabledText": "#5b595c", + "disabledText": "#727072", "foreground": "#fcfcfa", "offForeground": "#2D2A2E", "offBackground": "#2D2A2E", @@ -729,8 +772,8 @@ "ToolTip": { "Actions.background": "#2D2A2E", "Actions.infoForeground": "#939293", - "background": "#2D2A2E", - "borderColor": "#5b595c", + "background": "#363437", + "borderColor": "#2d2a2e", "foreground": "#fcfcfa", "infoForeground": "#939293", "separatorColor": "#2d2a2e", @@ -739,8 +782,8 @@ "ToolWindow": { "Button": { "hoverBackground": "#4A474B", - "selectedForeground": "#ffd866", - "selectedBackground": "#3a3a3c" + "selectedForeground": "#FFFFFF", + "selectedBackground": "#221F22" }, "Header": { "background": "#2D2A2E", @@ -751,50 +794,93 @@ "background": "#2D2A2E" }, "HeaderTab": { + "borderColor": "#5b595c", "hoverBackground": "#5b595c", - "hoverInactiveBackground": "#403E41", + "hoverInactiveBackground": "#5b595c", "inactiveUnderlineColor": "#ffd866", - "selectedBackground": "#3a3a3c", - "selectedInactiveBackground": "#3a3a3c", + "selectedBackground": "#221F22", + "selectedInactiveBackground": "#221F22", "underlineColor": "#ffd866", - "underlinedTabBackground": "#5b595c", - "underlinedTabInactiveBackground": "#403E41" + "underlinedTabBackground": "#4A474B", + "underlinedTabInactiveBackground": "#403E41", + "underlinedTabForeground": "#FFFFFF", + "underlinedTabInactiveForeground": "#fcfcfa" } }, "Tree": { "background": "#2D2A2E", "foreground": "#939293", "hash": "#2d2a2e", + "hoverBackground": "#403E4170", + "hoverInactiveBackground": "#4A474B", "modifiedItemForeground": "#ffd866", "rowHeight": 28, - "selectionBackground": "#403E41", + "selectionBackground": "#403E4170", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#403E41", + "selectionInactiveBackground": "#403E4170", "textBackground": "#2D2A2E" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { + "UIDesigner": { "Activity.borderColor": "#2d2a2e", - "ColorPicker.background": "#2D2A2E", - "ColorPicker.foreground": "#fcfcfa", - "Component.borderColor": "#2d2a2e", - "Component.background": "#2D2A2E", - "Component.foreground": "#fcfcfa", - "Connector.borderColor": "#2d2a2e", - "Connector.hoverBorderColor": "#5b595c", - "Canvas.background": "#3a3a3c", + "Canvas.background": "#221F22", + "ColorPicker": { + "background": "#2D2A2E", + "foreground": "#fcfcfa" + }, + "Component": { + "borderColor": "#2d2a2e", + "background": "#2D2A2E", + "foreground": "#fcfcfa", + "hoverBorderColor": "#5b595c" + }, + "Connector": { + "borderColor": "#2d2a2e", + "hoverBorderColor": "#5b595c" + }, + "Canvas.background": "#221F22", "highStroke.foreground": "#fcfcfa", "Label.foreground": "#939293", - "List.selectionBackground": "#403E41", - "Panel.borderColor": "#2d2a2e", - "Panel.background": "#2D2A2E", + "List.selectionBackground": "#403E4170", + "motion": { + "borderColor": "#2d2a2e", + "Component.foreground": "#fcfcfa", + "ConstraintSetText.foreground": "#939293", + "ConstraintSet.background": "#403E41", + "CSPanel.SelectedFocusBackground": "#5B595C", + "CSPanel.SelectedBackground": "#403E4170", + "cs_FocusText.infoForeground": "#939293", + "CursorTextColor.foreground": "#fcfcfa", + "HoverColor.disabledBackground": "#727072", + "motionGraph.background": "#2D2A2E", + "Notification.background": "#363437", + "ourAvg.background": "#403E41", + "ourCS.background": "#403E41", + "ourCS_Border.borderColor": "#2d2a2e", + "ourCS_TextColor.foreground": "#939293", + "ourCS_SelectedFocusBackground.selectionForeground": "#FFFFFF", + "ourCS_SelectedBackground.selectionInactiveBackground": "#4A474B", + "ourCS_SelectedBorder.pressedBorderColor": "#5b595c", + "ourML_BarColor.separatorColor": "#2d2a2e", + "PrimaryPanel.background": "#221F22", + "SecondaryPanel.background": "#2D2A2E", + "SecondaryPanel.header.foreground": "#939293", + "SecondaryPanel.header.background": "#221F22", + "timeLine.disabledBorderColor": "#2d2a2e" + }, + "Panel": { + "borderColor": "#2d2a2e", + "background": "#2D2A2E" + }, "percent.foreground": "#fcfcfa", - "Placeholder.background": "#2D2A2E", - "Placeholder.borderColor": "#2d2a2e", - "Placeholder.foreground": "#fcfcfa", - "Placeholder.selectedForeground": "#FFFFFF", + "Placeholder": { + "background": "#2D2A2E", + "borderColor": "#2d2a2e", + "foreground": "#fcfcfa", + "selectedForeground": "#FFFFFF" + }, "Preview.background": "#2D2A2E", "stroke.acceleratorForeground": "#939293" }, @@ -819,8 +905,8 @@ }, "HgLog": { "branchIconColor": "#ffd866", - "bookmarkIconColor": "#ffd866", - "closedBranchIconColor": "#5b595c", + "bookmarkIconColor": "#FFFFFF", + "closedBranchIconColor": "#727072", "localTagIconColor": "#939293", "mqTagIconColor": "#939293", "tagIconColor": "#939293", @@ -828,10 +914,11 @@ }, "Log": { "Commit.unmatchedForeground": "#939293", - "Commit.currentBranchBackground": "#403E41" + "Commit.currentBranchBackground": "#403E41", + "Commit.hoveredBackground": "#403E4170" }, "RefLabel": { - "foreground": "#ffd866", + "foreground": "#FFFFFF", "backgroundBase": "#5b595c" } }, @@ -840,18 +927,24 @@ "foreground": "#fcfcfa" }, "WelcomeScreen": { + "AssociatedComponent.background": "#2D2A2E", "background": "#2D2A2E", "borderColor": "#2D2A2E", - "captionBackground": "#3a3a3c", + "captionBackground": "#221F22", "captionForeground": "#fcfcfa", - "footerBackground": "#3a3a3c", + "Details.background": "#2D2A2E", + "footerBackground": "#221F22", "footerForeground": "#fcfcfa", "headerBackground": "#2D2A2E", "headerForeground": "#fcfcfa", + "List.background": "#221F22", "separatorColor": "#2d2a2e", + "SidePanel.background": "#403E41", "Projects": { + "actions.background": "#221F22", + "actions.selectionBackground": "#5b595c", "background": "#403E41", - "selectionBackground": "#6E6C6F", + "selectionBackground": "#5B595C", "selectionInactiveBackground": "#403E41" } }, @@ -862,14 +955,14 @@ }, "icons": { "ColorPalette": { - "#43494A": "#3a3a3c", + "#43494A": "#221F22", "#6B6B6B": "#939293", "#A7A7A7": "#2D2A2E", "#3D6185": "#ffd866", "#466D94": "#ffd866", "#3C3F41": "#2D2A2E", - "#545556": "#5b595c", - "#606060": "#5b595c", + "#545556": "#727072", + "#606060": "#727072", "#9AA7B0": "#fcfcfa", "#675133": "#ffd866", "Actions.Blue": "#A9DC76", @@ -879,20 +972,20 @@ "Actions.GreyInline.Dark": "#fcfcfa", "Actions.Red": "#FF6188", "Actions.Yellow": "#78DCE8", - "Checkbox.Background.Default": "#3a3a3c", - "Checkbox.Background.Default.Dark": "#3a3a3c", + "Checkbox.Background.Default": "#221F22", + "Checkbox.Background.Default.Dark": "#221F22", "Checkbox.Background.Disabled": "#3a3a3c", "Checkbox.Background.Disabled.Dark": "#3a3a3c", "Checkbox.Border.Default": "#2d2a2e", "Checkbox.Border.Default.Dark": "#2d2a2e", - "Checkbox.Border.Disabled": "#5b595c", - "Checkbox.Border.Disabled.Dark": "#5b595c", + "Checkbox.Border.Disabled": "#727072", + "Checkbox.Border.Disabled.Dark": "#727072", "Checkbox.Focus.Thin.Default": "#ffd866", "Checkbox.Focus.Thin.Default.Dark": "#ffd866", "Checkbox.Focus.Wide": "#ffd866", "Checkbox.Focus.Wide.Dark": "#ffd866", - "Checkbox.Foreground.Disabled": "#5b595c", - "Checkbox.Foreground.Disabled.Dark": "#5b595c", + "Checkbox.Foreground.Disabled": "#727072", + "Checkbox.Foreground.Disabled.Dark": "#727072", "Checkbox.Background.Selected": "#ffd866", "Checkbox.Background.Selected.Dark": "#2D2A2E", "Checkbox.Border.Selected": "#ffd866", diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Moonlight Contrast.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Moonlight Contrast.theme.json new file mode 100644 index 00000000..a552b01d --- /dev/null +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Moonlight Contrast.theme.json @@ -0,0 +1,1010 @@ +{ + "name": "Moonlight Contrast", + "dark": true, + "author": "Mallowigi", + "editorScheme": "/colors/Moonlight.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/moonlight.svg", + "fill": "scale", + "transparency": 50 + }, + "ui": { + "*": { + "acceleratorSelectionForeground": "#a9b8e8", + "background": "#222436", + "borderColor": "#222436", + "disabledBackground": "#2f334d", + "disabledForeground": "#828bb8", + "disabledText": "#828bb8", + "focusColor": "#444a73", + "focusedBorderColor": "#4fd6be", + "foreground": "#c8d3f5", + "inactiveBackground": "#2f334d", + "inactiveForeground": "#a9b8e8", + "infoForeground": "#a9b8e8", + "selectionBackground": "#444a73", + "selectionBackgroundInactive": "#2f334d", + "selectionForeground": "#FFFFFF", + "selectionInactiveBackground": "#2f334d", + "separatorColor": "#222436" + }, + "activeCaption": "#222436", + "ActionButton": { + "hoverBackground": "#4fd6be50", + "hoverBorderColor": "#4fd6be50", + "hoverSeparatorColor": "#444a73", + "focusedBorderColor": "#4fd6be50", + "pressedBackground": "#4fd6be50", + "pressedBorderColor": "#4fd6be50" + }, + "Autocomplete": { + "selectionBackground": "#444a73" + }, + "Borders.ContrastBorderColor": "#222436", + "Borders.color": "#222436", + "Button": { + "arc": 0, + "background": "#222436", + "default": { + "endBackground": "#2f334d", + "endBorderColor": "#2f334d", + "foreground": "#FFFFFF", + "focusColor": "#4fd6be", + "focusedBorderColor": "#4fd6be", + "shadowColor": "#2f334d", + "startBackground": "#2f334d", + "startBorderColor": "#2f334d" + }, + "disabledBorderColor": "#444a73", + "disabledText": "#828bb8", + "endBackground": "#444a73", + "endBorderColor": "#444a73", + "focus": "#444a73", + "focusedBorderColor": "#4fd6be", + "foreground": "#a9b8e8", + "highlight": "#FFFFFF", + "mt.background": "#444a73", + "mt.foreground": "#a9b8e8", + "mt.selectedForeground": "#FFFFFF", + "mt.selection.color1": "#2f334d", + "mt.selection.color2": "#2f334d", + "startBackground": "#444a73", + "startBorderColor": "#444a73", + "shadowColor": "#444a73", + "shadowWidth": 0 + }, + "Canvas": { + "Tooltip.borderColor": "#222436", + "Tooltip.background": "#191a2a" + }, + "Content": { + "background": "#191a2a", + "selectionBackground": "#444a73" + }, + "CheckBox": { + "background": "#222436", + "disabledText": "#828bb8", + "foreground": "#c8d3f5", + "select": "#4fd6be" + }, + "CheckBoxMenuItem": { + "acceleratorForeground": "#a9b8e8", + "acceleratorSelectionForeground": "#a9b8e8", + "background": "#222436", + "disabledBackground": "#222436", + "disabledForeground": "#828bb8", + "foreground": "#c8d3f5", + "selectionBackground": "#444a73", + "selectionForeground": "#FFFFFF" + }, + "CodeWithMe": { + "Avatar.foreground": "#c8d3f5", + "AccessEnabled": { + "accessDot": "#4fd6be", + "dropdownBorder": "#2f334d", + "pillBackground": "$second" + } + }, + "ColorChooser": { + "background": "#222436", + "foreground": "#c8d3f5", + "swatchesDefaultRecentColor": "#c8d3f5" + }, + "ComboBoxButton.background": "#444a73", + "ComboBox": { + "ArrowButton": { + "background": "#444a73", + "disabledIconColor": "#828bb8", + "iconColor": "#c8d3f5", + "nonEditableBackground": "#222436" + }, + "background": "#191a2a", + "buttonBackground": "#444a73", + "darcula.hoveredArrowButtonForeground": "#4fd6be", + "disabledForeground": "#828bb8", + "foreground": "#c8d3f5", + "modifiedItemForeground": "#4fd6be", + "nonEditableBackground": "#2f334d", + "padding": "5,5,5,5", + "selectionBackground": "#2f334d", + "selectionForeground": "#FFFFFF" + }, + "ComboPopup.border": "#222436", + "CompletionPopup": { + "background": "#2f334d", + "foreground": "#c8d3f5", + "infoForeground": "#a9b8e8", + "matchForeground": "#4fd6be", + "matchSelectionForeground": "#4fd6be", + "nonFocusedState": "false", + "selectedGrayedForeground": "#FFFFFF", + "selectionGrayForeground": "#FFFFFF", + "selectionInactiveInfoForeground": "#a9b8e8", + "selectionInactiveBackground": "#444a7350", + "selectionBackground": "#444a7380", + "selectionForeground": "#FFFFFF", + "selectionInfoForeground": "#FFFFFF" + }, + "Component": { + "arc": 4, + "borderColor": "#444a73", + "disabledBorderColor": "#444a73", + "focusColor": "#4fd6be", + "focusedBorderColor": "#4fd6be", + "hoverIconColor": "#4fd6be", + "infoForeground": "#a9b8e8", + "iconColor": "#c8d3f5" + }, + "control": "#222436", + "controlText": "#a9b8e8", + "Counter": { + "background": "#4fd6be", + "foreground": "#FFFFFF" + }, + "Debugger": { + "Variables": { + "collectingDataForeground": "#a9b8e8", + "changedValueForeground": "#4fd6be", + "errorMessageForeground": "#ff757f", + "evaluatingExpressionForeground": "#a9b8e8", + "exceptionForeground": "#c099ff", + "modifyingValueForeground": "#4fd6be", + "valueForeground": "#4fd6be" + } + }, + "DebuggerTabs": { + "selectedBackground": "#444a73", + "underlinedTabBackground": "#444a73" + }, + "DebuggerPopup": { + "borderColor": "#444a73" + }, + "DefaultTabs": { + "background": "#222436", + "borderColor": "#222436", + "hoverBackground": "#2f334d", + "hoverColor": "#191a2a", + "hoverMaskColor": "#444a73", + "inactiveColoredTabBackground": "#222436", + "inactiveColoredFileBackground": "#444a73", + "inactiveUnderlineColor": "#4fd6be", + "inactiveMaskColor": "#191a2a", + "underlineColor": "#4fd6be", + "underlinedTabBackground": "#2f334d", + "underlinedTabForeground": "#FFFFFF" + }, + "Desktop.background": "#222436", + "DialogWrapper.southPanelBackground": "#222436", + "DialogWrapper.southPanelDivider": "#222436", + "DragAndDrop": { + "areaBackground": "#222436", + "areaBorderColor": "#222436", + "areaForeground": "#c8d3f5" + }, + "Editor": { + "background": "#191a2a", + "foreground": "#c8d3f5", + "shortcutForeground": "#a9b8e8" + }, + "EditorPane": { + "background": "#191a2a", + "caretForeground": "#4fd6be", + "foreground": "#c8d3f5", + "inactiveBackground": "#222436", + "inactiveForeground": "#828bb8", + "selectionBackground": "#444a73", + "selectionForeground": "#FFFFFF" + }, + "EditorTabs": { + "borderColor": "#2f334d", + "hoverBackground": "#444a73", + "hoverColor": "#444a73", + "hoverMaskColor": "#444a73", + "inactiveMaskColor": "#222436", + "inactiveColoredFileBackground": "#222436", + "inactiveUnderlineColor": "#828bb8", + "selectedForeground": "#c8d3f5", + "selectedBackground": "#2f334d", + "underlineColor": "#4fd6be", + "underlinedTabBackground": "#2f334d", + "underlinedTabForeground": "#FFFFFF" + }, + "EditorGroupsTabs": { + "background": "#222436", + "borderColor": "#2f334d", + "hoverBackground": "#444a73", + "hoverColor": "#444a73", + "inactiveUnderlineColor": "#4fd6be", + "underlineColor": "#4fd6be", + "underlinedTabBackground": "#2f334d", + "underlinedTabForeground": "#c8d3f5" + }, + "FileColor": { + "Green": "#387002", + "Blue": "#004BA0", + "Yellow": "#2f334d", + "Orange": "#B53D00", + "Violet": "#4D2C91", + "Rose": "#A00037" + }, + "FlameGraph": { + "JVMBackground": "#89DDF7", + "JVMFocusBackground": "#82AAFF", + "JVMSearchNotMatchedBackground": "#FF5370", + "JVMFocusSearchNotMatchedBackground": "#AB7967", + "nativeBackground": "#FFCB6B", + "nativeFocusBackground": "#F78C6C", + "nativeSearchNotMatchedBackground": "#C792EA", + "nativeFocusSearchNotMatchedBackground": "#BB80B3" + }, + "Focus.color": "#222436", + "FormattedTextField": { + "background": "#191a2a", + "caretForeground": "#4fd6be", + "foreground": "#c8d3f5", + "inactiveBackground": "#444a73", + "inactiveForeground": "#828bb8", + "selectionForeground": "#FFFFFF", + "selectionBackground": "#2f334d" + }, + "GotItTooltip.borderColor": "#191a2a", + "Group": { + "disabledSeparatorColor": "#222436", + "separatorColor": "#222436" + }, + "GutterTooltip": { + "infoForeground": "#a9b8e8", + "lineSeparatorColor": "#222436" + }, + "HeaderColor": { + "active": "#222436", + "inactive": "#191a2a" + }, + "HelpTooltip": { + "background": "#222436", + "borderColor": "#222436", + "foreground": "#c8d3f5", + "infoForeground": "#a9b8e8", + "shortcutForeground": "#a9b8e8" + }, + "Hyperlink.linkColor": "#4fd6be", + "inactiveCaption": "#2f334d", + "inactiveCaptionBorder": "#222436", + "inactiveCaptionText": "#a9b8e8", + "info": "#a9b8e8", + "infoText": "#a9b8e8", + "IdeStatusBar.border": "4,4,4,4", + "InformationHint.borderColor": "#222436", + "InplaceRefactoringPopup": { + "borderColor": "#222436" + }, + "InternalFrame": { + "activeTitleForeground": "#c8d3f5", + "background": "#222436", + "inactiveTitleForeground": "#a9b8e8" + }, + "Label": { + "background": "#222436", + "disabledForeground": "#828bb8", + "disabledShadow": "#222436", + "disabledText": "#828bb8", + "foreground": "#c8d3f5", + "infoForeground": "#a9b8e8", + "selectedForeground": "#FFFFFF", + "selectedDisabledForeground": "#c8d3f5" + }, + "Link": { + "activeForeground": "#4fd6be", + "hoverForeground": "#4fd6be", + "pressedForeground": "#4fd6be", + "secondaryForeground": "#a9b8e8", + "visitedForeground": "#4fd6be" + }, + "link.foreground": "#4fd6be", + "List": { + "background": "#2f334d", + "foreground": "#c8d3f5", + "hoverBackground": "#444a7370", + "hoverInactiveBackground": "#2f334d", + "selectionBackground": "#444a7350", + "selectionForeground": "#FFFFFF", + "selectionInactiveForeground": "#FFFFFF", + "selectionInactiveBackground": "#444a7370" + }, + "material": { + "background": "#222436", + "branchColor": "#c8d3f5", + "contrast": "#191a2a", + "foreground": "#c8d3f5", + "mergeCommits": "#444a73", + "primaryColor": "#a9b8e8", + "selectionForeground": "#FFFFFF", + "tab.backgroundColor": "#222436", + "tab.borderColor": "#4fd6be", + "tagColor": "#a9b8e8" + }, + "MemoryIndicator": { + "allocatedBackground": "#2f334d", + "usedColor": "#444a73", + "usedBackground": "#444a73" + }, + "Menu": { + "acceleratorForeground": "#a9b8e8", + "acceleratorSelectionForeground": "#FFFFFF", + "background": "#222436", + "border": "4,2,4,2", + "borderColor": "#2f334d", + "disabledBackground": "#2f334d", + "disabledForeground": "#828bb8", + "foreground": "#c8d3f5", + "selectionBackground": "#444a73", + "selectionForeground": "#FFFFFF", + "separatorColor": "#222436" + }, + "MenuBar": { + "background": "#191a2a", + "borderColor": "#222436", + "disabledBackground": "#222436", + "disabledForeground": "#828bb8", + "foreground": "#c8d3f5", + "highlight": "#222436", + "selectionBackground": "#444a73", + "selectionForeground": "#FFFFFF", + "shadow": "#191a2a" + }, + "MenuItem": { + "acceleratorForeground": "#a9b8e8", + "acceleratorSelectionForeground": "#FFFFFF", + "border": "4,2,4,2", + "background": "#222436", + "disabledBackground": "#222436", + "disabledForeground": "#828bb8", + "foreground": "#c8d3f5", + "selectionBackground": "#444a73", + "selectionForeground": "#FFFFFF" + }, + "NavBar": { + "arrowColor": "#c8d3f5", + "borderColor": "#222436" + }, + "NewClass": { + "Panel": { + "background": "#222436" + }, + "SearchField": { + "background": "#191a2a" + } + }, + "NewPSD.warning": "#4fd6be", + "Notification": { + "background": "#191a2a", + "borderColor": "#191a2a", + "errorBackground": "#191a2a", + "errorBorderColor": "#191a2a", + "foreground": "#c8d3f5", + "MoreButton": { + "background": "#444a73", + "foreground": "#c8d3f5", + "innerBorderColor": "#444a73" + }, + "ToolWindow": { + "errorBackground": "#191a2a", + "errorBorderColor": "#191a2a", + "informativeBackground": "#191a2a", + "informativeBorderColor": "#191a2a", + "warningBackground": "#191a2a", + "warningBorderColor": "#191a2a" + } + }, + "OnePixelDivider.background": "#222436", + "OptionPane": { + "background": "#222436", + "foreground": "#c8d3f5", + "messageForeground": "#c8d3f5" + }, + "Outline": { + "color": "#444a73", + "focusedColor": "#4fd6be", + "disabledColor": "#828bb8" + }, + "Panel": { + "background": "#222436", + "foreground": "#c8d3f5" + }, + "ParameterInfo": { + "background": "#2f334d", + "borderColor": "#2f334d", + "currentOverloadBackground": "#444a73", + "currentParameterForeground": "#4fd6be", + "disabledForeground": "#828bb8", + "foreground": "#c8d3f5", + "infoForeground": "#a9b8e8", + "lineSeparatorColor": "#2f334d" + }, + "PasswordField": { + "background": "#191a2a", + "capsLockIconColor": "#4fd6be", + "caretForeground": "#4fd6be", + "foreground": "#c8d3f5", + "inactiveForeground": "#828bb8", + "selectionBackground": "#2f334d", + "selectionForeground": "#FFFFFF" + }, + "Plugins": { + "background": "#222436", + "disabledForeground": "#828bb8", + "eapTagBackground": "#444a73", + "hoverBackground": "#444a7370", + "lightSelectionBackground": "#2f334d", + "paidTagBackground": "#444a73", + "selectionBackground": "#444a73", + "tagForeground": "#4fd6be", + "tagBackground": "#444a73", + "trialTagBackground": "#444a73", + "Button": { + "installBackground": "#444a73", + "installBorderColor": "#444a73", + "installForeground": "#c8d3f5", + "installFocusedBackground": "#444a73", + "installFillForeground": "#828bb8", + "installFillBackground": "#444a73", + "updateBackground": "#4fd6be", + "updateBorderColor": "#444a73", + "updateForeground": "#c8d3f5" + }, + "SearchField": { + "background": "#191a2a", + "borderColor": "#222436" + }, + "SectionHeader": { + "background": "#2f334d", + "foreground": "#c8d3f5" + }, + "Tab": { + "hoverBackground": "#2f334d", + "selectedForeground": "#FFFFFF", + "selectedBackground": "#2f334d" + } + }, + "Popup": { + "Advertiser": { + "background": "#222436", + "borderColor": "#222436", + "foreground": "#4fd6be" + }, + "borderColor": "#191a2a", + "inactiveBorderColor": "#222436", + "innerBorderColor": "#2f334d", + "Header": { + "activeBackground": "#222436", + "inactiveBackground": "#191a2a" + }, + "paintBorder": true, + "separatorForeground": "#c8d3f5", + "separatorColor": "#2f334d", + "Toolbar": { + "Floating.background": "#191a2a", + "background": "#191a2a", + "borderColor": "#191a2a" + } + }, + "PopupMenu": { + "background": "#222436", + "border": "2,0,2,0", + "foreground": "#c8d3f5", + "translucentBackground": "#222436" + }, + "PopupMenuSeparator.height": 10, + "PopupMenuSeparator.stripeIndent": 5, + "ProgressBar": { + "background": "#222436", + "foreground": "#4fd6be", + "indeterminateEndColor": "#4fd6be", + "indeterminateStartColor": "#4fd6be", + "progressColor": "#4fd6be", + "selectionBackground": "#444a73", + "trackColor": "#444a73" + }, + "PsiViewer": { + "referenceHighlightColor": "#4fd6be" + }, + "RadioButton": { + "background": "#222436", + "disabledText": "#828bb8", + "foreground": "#c8d3f5" + }, + "RadioButtonMenuItem": { + "acceleratorForeground": "#a9b8e8", + "acceleratorSelectionForeground": "#a9b8e8", + "background": "#222436", + "disabledBackground": "#222436", + "disabledForeground": "#828bb8", + "foreground": "#c8d3f5", + "selectionBackground": "#444a73", + "selectionForeground": "#FFFFFF" + }, + "ScreenView.borderColor": "#222436", + "ScrollBar": { + "background": "#222436", + "hoverThumbBorderColor": "#4fd6be", + "hoverThumbColor": "#4fd6be", + "hoverTrackColor": "#22243630", + "Mac": { + "hoverThumbBorderColor": "#4fd6be", + "hoverThumbColor": "#4fd6be", + "hoverTrackColor": "#22243630", + "thumbBorderColor": "#4fd6be70", + "thumbColor": "#4fd6be70", + "trackColor": "#22243630", + "Transparent": { + "hoverThumbBorderColor": "#4fd6be", + "hoverThumbColor": "#4fd6be", + "hoverTrackColor": "#22243630", + "thumbBorderColor": "#4fd6be70", + "thumbColor": "#4fd6be70", + "trackColor": "#22243630" + } + }, + "thumb": "#444a73", + "thumbBorderColor": "#4fd6be70", + "thumbColor": "#4fd6be70", + "trackColor": "#22243630", + "Transparent": { + "hoverThumbBorderColor": "#4fd6be", + "hoverThumbColor": "#4fd6be", + "hoverTrackColor": "#22243630", + "thumbBorderColor": "#4fd6be70", + "thumbColor": "#4fd6be70", + "trackColor": "#22243630" + } + }, + "SearchEverywhere": { + "Advertiser": { + "background": "#191a2a", + "foreground": "#a9b8e8" + }, + "Header": { + "background": "#222436" + }, + "List": { + "separatorForeground": "#a9b8e8", + "separatorColor": "#222436" + }, + "SearchField": { + "background": "#222436", + "borderColor": "#191a2a", + "infoForeground": "#a9b8e8" + }, + "Tab": { + "active.foreground": "#FFFFFF", + "selectedForeground": "#FFFFFF", + "selectedBackground": "#444a73" + } + }, + "SearchMatch": { + "endBackground": "#4fd6be", + "startBackground": "#4fd6be", + "endColor": "#4fd6be", + "startColor": "#4fd6be" + }, + "SearchField.errorBackground": "#191a2a", + "SearchOption": { + "selectedBackground": "#2f334d" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#a9b8e8", + "Repeated.File.Foreground": "#c8d3f5" + }, + "Separator": { + "background": "#2f334d", + "foreground": "#2f334d", + "separatorColor": "#2f334d" + }, + "SidePanel": { + "background": "#191a2a" + }, + "Slider": { + "background": "#222436", + "buttonBorderColor": "#4fd6be", + "buttonColor": "#4fd6be", + "foreground": "#c8d3f5", + "majorTickLength": 6, + "tickColor": "#2f334d", + "trackColor": "#2f334d", + "trackWidth": 7, + "thumb": "#4fd6be" + }, + "SpeedSearch": { + "background": "#444a73", + "borderColor": "#222436", + "foreground": "#c8d3f5", + "errorForeground": "#c8d3f5" + }, + "Spinner": { + "background": "#222436", + "border": "3,3,3,3", + "foreground": "#c8d3f5", + "selectionForeground": "#FFFFFF" + }, + "SplitPane": { + "background": "#222436", + "highlight": "#191a2a" + }, + "SplitPaneDivider.draggingColor": "#2f334d", + "StatusBar": { + "borderColor": "#222436", + "hoverBackground": "#444a73", + "LightEditBackground": "#2f334d" + }, + "TabbedPane": { + "background": "#222436", + "contentAreaColor": "#444a73", + "contentBorderInsets": "3,1,1,1", + "darkShadow": "#222436", + "disabledForeground": "#828bb8", + "disabledUnderlineColor": "#828bb8", + "focus": "#2f334d", + "focusColor": "#2f334d", + "fontSizeOffset": 0, + "foreground": "#c8d3f5", + "highlight": "#222436", + "hoverColor": "#444a73", + "labelShift": 0, + "selectedForeground": "#FFFFFF", + "selectedLabelShift": 0, + "selectedTabPadInsets": "0,0,0,0", + "tabsOverlapBorder": true, + "tabHeight": 32, + "tabInsets": "5,10,5,10", + "tabSelectionHeight": 2, + "underlineColor": "#4fd6be" + }, + "TabbedPane.mt.tab.background": "#191a2a", + "Table": { + "alternativeRowBackground": "#191a2a", + "background": "#222436", + "cellNoFocusBorder": "10,5,10,5", + "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#828bb8", + "dropLineColor": "#4fd6be", + "dropLineShortColor": "#4fd6be", + "focusCellBackground": "#2f334d", + "focusCellForeground": "#FFFFFF", + "foreground": "#c8d3f5", + "gridColor": "#222436", + "highlightOuter": "#2f334d", + "hoverBackground": "#444a7370", + "hoverInactiveBackground": "#2f334d", + "lightSelectionForeground": "#FFFFFF", + "lightSelectionInactiveForeground": "#a9b8e8", + "lightSelectionInactiveBackground": "#2f334d", + "selectionBackground": "#2f334d", + "selectionForeground": "#FFFFFF", + "selectionInactiveBackground": "#2f334d", + "selectionInactiveForeground": "#FFFFFF", + "sortIconColor": "#c8d3f5", + "stripeColor": "#191a2a" + }, + "TableHeader": { + "background": "#222436", + "borderColor": "#222436", + "bottomSeparatorColor": "#2f334d", + "cellBorder": "4,0,4,0", + "disabledForeground": "#828bb8", + "foreground": "#c8d3f5", + "focusCellBackground": "#2f334d", + "focusCellForeground": "#FFFFFF", + "height": 25, + "separatorColor": "#2f334d" + }, + "text": "#a9b8e8", + "textInactiveText": "#a9b8e8", + "textText": "#a9b8e8", + "TextArea": { + "background": "#191a2a", + "caretForeground": "#4fd6be", + "foreground": "#c8d3f5", + "inactiveForeground": "#828bb8", + "selectionBackground": "#2f334d", + "selectionForeground": "#FFFFFF" + }, + "TextField": { + "background": "#191a2a", + "caretForeground": "#4fd6be", + "foreground": "#c8d3f5", + "inactiveForeground": "#828bb8", + "selectionBackground": "#2f334d", + "selectionForeground": "#FFFFFF" + }, + "TextPane": { + "background": "#191a2a", + "caretForeground": "#4fd6be", + "foreground": "#c8d3f5", + "inactiveForeground": "#828bb8", + "selectionBackground": "#2f334d", + "selectionForeground": "#FFFFFF" + }, + "TitlePane": { + "background": "#191a2a", + "Button.hoverBackground": "#444a73", + "inactiveBackground": "#222436", + "infoForeground": "#a9b8e8", + "inactiveInfoForeground": "#a9b8e8" + }, + "TitledBorder.titleColor": "#c8d3f5", + "ToggleButton": { + "borderColor": "#444a73", + "buttonColor": "#c8d3f5", + "disabledText": "#828bb8", + "foreground": "#c8d3f5", + "offForeground": "#222436", + "offBackground": "#222436", + "onBackground": "#4fd6be", + "onForeground": "#4fd6be" + }, + "ToolBar": { + "background": "#191a2a", + "borderHandleColor": "#a9b8e8", + "floatingForeground": "#a9b8e8", + "foreground": "#c8d3f5" + }, + "ToolTip": { + "Actions.background": "#222436", + "Actions.infoForeground": "#a9b8e8", + "background": "#191a2a", + "borderColor": "#222436", + "foreground": "#c8d3f5", + "infoForeground": "#a9b8e8", + "separatorColor": "#222436", + "shortcutForeground": "#a9b8e8" + }, + "ToolWindow": { + "Button": { + "hoverBackground": "#2f334d", + "selectedForeground": "#FFFFFF", + "selectedBackground": "#191a2a" + }, + "Header": { + "background": "#222436", + "borderColor": "#2f334d", + "inactiveBackground": "#222436" + }, + "HeaderCloseButton": { + "background": "#222436" + }, + "HeaderTab": { + "borderColor": "#444a73", + "hoverBackground": "#444a73", + "hoverInactiveBackground": "#444a73", + "inactiveUnderlineColor": "#4fd6be", + "selectedBackground": "#191a2a", + "selectedInactiveBackground": "#191a2a", + "underlineColor": "#4fd6be", + "underlinedTabBackground": "#2f334d", + "underlinedTabInactiveBackground": "#2f334d", + "underlinedTabForeground": "#FFFFFF", + "underlinedTabInactiveForeground": "#c8d3f5" + } + }, + "Tree": { + "background": "#191a2a", + "foreground": "#a9b8e8", + "hash": "#222436", + "hoverBackground": "#444a7370", + "hoverInactiveBackground": "#2f334d", + "modifiedItemForeground": "#4fd6be", + "rowHeight": 28, + "selectionBackground": "#444a7370", + "selectionForeground": "#FFFFFF", + "selectionInactiveForeground": "#FFFFFF", + "selectionInactiveBackground": "#444a7370", + "textBackground": "#191a2a" + }, + "Tree.leftChildIndent": 10, + "Tree.rightChildIndent": 5, + "UIDesigner": { + "Activity.borderColor": "#222436", + "Canvas.background": "#191a2a", + "ColorPicker": { + "background": "#222436", + "foreground": "#c8d3f5" + }, + "Component": { + "borderColor": "#222436", + "background": "#222436", + "foreground": "#c8d3f5", + "hoverBorderColor": "#444a73" + }, + "Connector": { + "borderColor": "#222436", + "hoverBorderColor": "#444a73" + }, + "Canvas.background": "#191a2a", + "highStroke.foreground": "#c8d3f5", + "Label.foreground": "#a9b8e8", + "List.selectionBackground": "#444a7370", + "motion": { + "borderColor": "#222436", + "Component.foreground": "#c8d3f5", + "ConstraintSetText.foreground": "#a9b8e8", + "ConstraintSet.background": "#2f334d", + "CSPanel.SelectedFocusBackground": "#444a73", + "CSPanel.SelectedBackground": "#444a7370", + "cs_FocusText.infoForeground": "#a9b8e8", + "CursorTextColor.foreground": "#c8d3f5", + "HoverColor.disabledBackground": "#828bb8", + "motionGraph.background": "#222436", + "Notification.background": "#191a2a", + "ourAvg.background": "#2f334d", + "ourCS.background": "#2f334d", + "ourCS_Border.borderColor": "#222436", + "ourCS_TextColor.foreground": "#a9b8e8", + "ourCS_SelectedFocusBackground.selectionForeground": "#FFFFFF", + "ourCS_SelectedBackground.selectionInactiveBackground": "#2f334d", + "ourCS_SelectedBorder.pressedBorderColor": "#444a73", + "ourML_BarColor.separatorColor": "#222436", + "PrimaryPanel.background": "#191a2a", + "SecondaryPanel.background": "#222436", + "SecondaryPanel.header.foreground": "#a9b8e8", + "SecondaryPanel.header.background": "#191a2a", + "timeLine.disabledBorderColor": "#222436" + }, + "Panel": { + "borderColor": "#222436", + "background": "#222436" + }, + "percent.foreground": "#c8d3f5", + "Placeholder": { + "background": "#222436", + "borderColor": "#222436", + "foreground": "#c8d3f5", + "selectedForeground": "#FFFFFF" + }, + "Preview.background": "#222436", + "stroke.acceleratorForeground": "#a9b8e8" + }, + "ValidationTooltip": { + "errorBackground": "#191a2a", + "errorBorderColor": "#191a2a", + "warningBackground": "#191a2a", + "warningBorderColor": "#191a2a" + }, + "VersionControl": { + "FileHistory.Commit": { + "selectedBranchBackground": "#222436" + }, + "GitCommits": { + "graphColor": "#444a73" + }, + "GitLog": { + "localBranchIconColor": "#4fd6be", + "otherIconColor": "#a9b8e8", + "remoteBranchIconColor": "#c8d3f5", + "tagIconColor": "#a9b8e8" + }, + "HgLog": { + "branchIconColor": "#4fd6be", + "bookmarkIconColor": "#FFFFFF", + "closedBranchIconColor": "#828bb8", + "localTagIconColor": "#a9b8e8", + "mqTagIconColor": "#a9b8e8", + "tagIconColor": "#a9b8e8", + "tipIconColor": "#a9b8e8" + }, + "Log": { + "Commit.unmatchedForeground": "#a9b8e8", + "Commit.currentBranchBackground": "#2f334d", + "Commit.hoveredBackground": "#444a7370" + }, + "RefLabel": { + "foreground": "#FFFFFF", + "backgroundBase": "#444a73" + } + }, + "Viewport": { + "background": "#191a2a", + "foreground": "#c8d3f5" + }, + "WelcomeScreen": { + "AssociatedComponent.background": "#222436", + "background": "#222436", + "borderColor": "#222436", + "captionBackground": "#191a2a", + "captionForeground": "#c8d3f5", + "Details.background": "#222436", + "footerBackground": "#191a2a", + "footerForeground": "#c8d3f5", + "headerBackground": "#222436", + "headerForeground": "#c8d3f5", + "List.background": "#191a2a", + "separatorColor": "#222436", + "SidePanel.background": "#2f334d", + "Projects": { + "actions.background": "#191a2a", + "actions.selectionBackground": "#444a73", + "background": "#2f334d", + "selectionBackground": "#444a73", + "selectionInactiveBackground": "#2f334d" + } + }, + "window": "#191a2a", + "windowBorder": "#222436", + "windowText": "#a9b8e8", + "Window.border": "#222436" + }, + "icons": { + "ColorPalette": { + "#43494A": "#191a2a", + "#6B6B6B": "#a9b8e8", + "#A7A7A7": "#222436", + "#3D6185": "#4fd6be", + "#466D94": "#4fd6be", + "#3C3F41": "#222436", + "#545556": "#828bb8", + "#606060": "#828bb8", + "#9AA7B0": "#c8d3f5", + "#675133": "#4fd6be", + "Actions.Blue": "#82aaff", + "Actions.Green": "#c3e88d", + "Actions.Grey": "#a9b8e8", + "Actions.GreyInline": "#7a88cf", + "Actions.GreyInline.Dark": "#c8d3f5", + "Actions.Red": "#ff757f", + "Actions.Yellow": "#c099ff", + "Checkbox.Background.Default": "#191a2a", + "Checkbox.Background.Default.Dark": "#191a2a", + "Checkbox.Background.Disabled": "#2f334d", + "Checkbox.Background.Disabled.Dark": "#2f334d", + "Checkbox.Border.Default": "#222436", + "Checkbox.Border.Default.Dark": "#222436", + "Checkbox.Border.Disabled": "#828bb8", + "Checkbox.Border.Disabled.Dark": "#828bb8", + "Checkbox.Focus.Thin.Default": "#4fd6be", + "Checkbox.Focus.Thin.Default.Dark": "#4fd6be", + "Checkbox.Focus.Wide": "#4fd6be", + "Checkbox.Focus.Wide.Dark": "#4fd6be", + "Checkbox.Foreground.Disabled": "#828bb8", + "Checkbox.Foreground.Disabled.Dark": "#828bb8", + "Checkbox.Background.Selected": "#4fd6be", + "Checkbox.Background.Selected.Dark": "#222436", + "Checkbox.Border.Selected": "#4fd6be", + "Checkbox.Border.Selected.Dark": "#4fd6be", + "Checkbox.Foreground.Selected": "#4fd6be", + "Checkbox.Foreground.Selected.Dark": "#4fd6be", + "Checkbox.Focus.Thin.Selected": "#c8d3f5", + "Checkbox.Focus.Thin.Selected.Dark": "#c8d3f5", + "Objects.Grey": "#7a88cf", + "Objects.Blue": "#82aaff", + "Objects.RedStatus": "#ff757f", + "Objects.Red": "#ff757f", + "Objects.Pink": "#c099ff", + "Objects.Yellow": "#c099ff", + "Objects.Green": "#c3e88d", + "Objects.Purple": "#c099ff", + "Objects.BlackText": "#c8d3f5", + "Objects.YellowDark": "#ff966c", + "Objects.GreenAndroid": "#c3e88d" + } + } +} 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 new file mode 100644 index 00000000..4ab94a73 --- /dev/null +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Moonlight.theme.json @@ -0,0 +1,1010 @@ +{ + "name": "Moonlight", + "dark": true, + "author": "Mallowigi", + "editorScheme": "/colors/Moonlight.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/moonlight.svg", + "fill": "scale", + "transparency": 50 + }, + "ui": { + "*": { + "acceleratorSelectionForeground": "#a9b8e8", + "background": "#222436", + "borderColor": "#222436", + "disabledBackground": "#2f334d", + "disabledForeground": "#828bb8", + "disabledText": "#828bb8", + "focusColor": "#444a73", + "focusedBorderColor": "#4fd6be", + "foreground": "#c8d3f5", + "inactiveBackground": "#2f334d", + "inactiveForeground": "#a9b8e8", + "infoForeground": "#a9b8e8", + "selectionBackground": "#444a73", + "selectionBackgroundInactive": "#2f334d", + "selectionForeground": "#FFFFFF", + "selectionInactiveBackground": "#2f334d", + "separatorColor": "#222436" + }, + "activeCaption": "#222436", + "ActionButton": { + "hoverBackground": "#4fd6be50", + "hoverBorderColor": "#4fd6be50", + "hoverSeparatorColor": "#444a73", + "focusedBorderColor": "#4fd6be50", + "pressedBackground": "#4fd6be50", + "pressedBorderColor": "#4fd6be50" + }, + "Autocomplete": { + "selectionBackground": "#444a73" + }, + "Borders.ContrastBorderColor": "#222436", + "Borders.color": "#222436", + "Button": { + "arc": 0, + "background": "#222436", + "default": { + "endBackground": "#2f334d", + "endBorderColor": "#2f334d", + "foreground": "#FFFFFF", + "focusColor": "#4fd6be", + "focusedBorderColor": "#4fd6be", + "shadowColor": "#2f334d", + "startBackground": "#2f334d", + "startBorderColor": "#2f334d" + }, + "disabledBorderColor": "#444a73", + "disabledText": "#828bb8", + "endBackground": "#444a73", + "endBorderColor": "#444a73", + "focus": "#444a73", + "focusedBorderColor": "#4fd6be", + "foreground": "#a9b8e8", + "highlight": "#FFFFFF", + "mt.background": "#444a73", + "mt.foreground": "#a9b8e8", + "mt.selectedForeground": "#FFFFFF", + "mt.selection.color1": "#2f334d", + "mt.selection.color2": "#2f334d", + "startBackground": "#444a73", + "startBorderColor": "#444a73", + "shadowColor": "#444a73", + "shadowWidth": 0 + }, + "Canvas": { + "Tooltip.borderColor": "#222436", + "Tooltip.background": "#191a2a" + }, + "Content": { + "background": "#191a2a", + "selectionBackground": "#444a73" + }, + "CheckBox": { + "background": "#222436", + "disabledText": "#828bb8", + "foreground": "#c8d3f5", + "select": "#4fd6be" + }, + "CheckBoxMenuItem": { + "acceleratorForeground": "#a9b8e8", + "acceleratorSelectionForeground": "#a9b8e8", + "background": "#222436", + "disabledBackground": "#222436", + "disabledForeground": "#828bb8", + "foreground": "#c8d3f5", + "selectionBackground": "#444a73", + "selectionForeground": "#FFFFFF" + }, + "CodeWithMe": { + "Avatar.foreground": "#c8d3f5", + "AccessEnabled": { + "accessDot": "#4fd6be", + "dropdownBorder": "#2f334d", + "pillBackground": "$second" + } + }, + "ColorChooser": { + "background": "#222436", + "foreground": "#c8d3f5", + "swatchesDefaultRecentColor": "#c8d3f5" + }, + "ComboBoxButton.background": "#444a73", + "ComboBox": { + "ArrowButton": { + "background": "#444a73", + "disabledIconColor": "#828bb8", + "iconColor": "#c8d3f5", + "nonEditableBackground": "#222436" + }, + "background": "#222436", + "buttonBackground": "#444a73", + "darcula.hoveredArrowButtonForeground": "#4fd6be", + "disabledForeground": "#828bb8", + "foreground": "#c8d3f5", + "modifiedItemForeground": "#4fd6be", + "nonEditableBackground": "#2f334d", + "padding": "5,5,5,5", + "selectionBackground": "#2f334d", + "selectionForeground": "#FFFFFF" + }, + "ComboPopup.border": "#222436", + "CompletionPopup": { + "background": "#2f334d", + "foreground": "#c8d3f5", + "infoForeground": "#a9b8e8", + "matchForeground": "#4fd6be", + "matchSelectionForeground": "#4fd6be", + "nonFocusedState": "false", + "selectedGrayedForeground": "#FFFFFF", + "selectionGrayForeground": "#FFFFFF", + "selectionInactiveInfoForeground": "#a9b8e8", + "selectionInactiveBackground": "#444a7350", + "selectionBackground": "#444a7380", + "selectionForeground": "#FFFFFF", + "selectionInfoForeground": "#FFFFFF" + }, + "Component": { + "arc": 4, + "borderColor": "#444a73", + "disabledBorderColor": "#444a73", + "focusColor": "#4fd6be", + "focusedBorderColor": "#4fd6be", + "hoverIconColor": "#4fd6be", + "infoForeground": "#a9b8e8", + "iconColor": "#c8d3f5" + }, + "control": "#222436", + "controlText": "#a9b8e8", + "Counter": { + "background": "#4fd6be", + "foreground": "#FFFFFF" + }, + "Debugger": { + "Variables": { + "collectingDataForeground": "#a9b8e8", + "changedValueForeground": "#4fd6be", + "errorMessageForeground": "#ff757f", + "evaluatingExpressionForeground": "#a9b8e8", + "exceptionForeground": "#c099ff", + "modifyingValueForeground": "#4fd6be", + "valueForeground": "#4fd6be" + } + }, + "DebuggerTabs": { + "selectedBackground": "#444a73", + "underlinedTabBackground": "#444a73" + }, + "DebuggerPopup": { + "borderColor": "#444a73" + }, + "DefaultTabs": { + "background": "#222436", + "borderColor": "#222436", + "hoverBackground": "#2f334d", + "hoverColor": "#222436", + "hoverMaskColor": "#444a73", + "inactiveColoredTabBackground": "#222436", + "inactiveColoredFileBackground": "#444a73", + "inactiveUnderlineColor": "#4fd6be", + "inactiveMaskColor": "#222436", + "underlineColor": "#4fd6be", + "underlinedTabBackground": "#2f334d", + "underlinedTabForeground": "#FFFFFF" + }, + "Desktop.background": "#222436", + "DialogWrapper.southPanelBackground": "#222436", + "DialogWrapper.southPanelDivider": "#222436", + "DragAndDrop": { + "areaBackground": "#222436", + "areaBorderColor": "#222436", + "areaForeground": "#c8d3f5" + }, + "Editor": { + "background": "#222436", + "foreground": "#c8d3f5", + "shortcutForeground": "#a9b8e8" + }, + "EditorPane": { + "background": "#222436", + "caretForeground": "#4fd6be", + "foreground": "#c8d3f5", + "inactiveBackground": "#222436", + "inactiveForeground": "#828bb8", + "selectionBackground": "#444a73", + "selectionForeground": "#FFFFFF" + }, + "EditorTabs": { + "borderColor": "#2f334d", + "hoverBackground": "#444a73", + "hoverColor": "#444a73", + "hoverMaskColor": "#444a73", + "inactiveMaskColor": "#222436", + "inactiveColoredFileBackground": "#222436", + "inactiveUnderlineColor": "#828bb8", + "selectedForeground": "#c8d3f5", + "selectedBackground": "#2f334d", + "underlineColor": "#4fd6be", + "underlinedTabBackground": "#2f334d", + "underlinedTabForeground": "#FFFFFF" + }, + "EditorGroupsTabs": { + "background": "#222436", + "borderColor": "#2f334d", + "hoverBackground": "#444a73", + "hoverColor": "#444a73", + "inactiveUnderlineColor": "#4fd6be", + "underlineColor": "#4fd6be", + "underlinedTabBackground": "#2f334d", + "underlinedTabForeground": "#c8d3f5" + }, + "FileColor": { + "Green": "#387002", + "Blue": "#004BA0", + "Yellow": "#2f334d", + "Orange": "#B53D00", + "Violet": "#4D2C91", + "Rose": "#A00037" + }, + "FlameGraph": { + "JVMBackground": "#89DDF7", + "JVMFocusBackground": "#82AAFF", + "JVMSearchNotMatchedBackground": "#FF5370", + "JVMFocusSearchNotMatchedBackground": "#AB7967", + "nativeBackground": "#FFCB6B", + "nativeFocusBackground": "#F78C6C", + "nativeSearchNotMatchedBackground": "#C792EA", + "nativeFocusSearchNotMatchedBackground": "#BB80B3" + }, + "Focus.color": "#222436", + "FormattedTextField": { + "background": "#222436", + "caretForeground": "#4fd6be", + "foreground": "#c8d3f5", + "inactiveBackground": "#444a73", + "inactiveForeground": "#828bb8", + "selectionForeground": "#FFFFFF", + "selectionBackground": "#2f334d" + }, + "GotItTooltip.borderColor": "#191a2a", + "Group": { + "disabledSeparatorColor": "#222436", + "separatorColor": "#222436" + }, + "GutterTooltip": { + "infoForeground": "#a9b8e8", + "lineSeparatorColor": "#222436" + }, + "HeaderColor": { + "active": "#222436", + "inactive": "#191a2a" + }, + "HelpTooltip": { + "background": "#222436", + "borderColor": "#222436", + "foreground": "#c8d3f5", + "infoForeground": "#a9b8e8", + "shortcutForeground": "#a9b8e8" + }, + "Hyperlink.linkColor": "#4fd6be", + "inactiveCaption": "#2f334d", + "inactiveCaptionBorder": "#222436", + "inactiveCaptionText": "#a9b8e8", + "info": "#a9b8e8", + "infoText": "#a9b8e8", + "IdeStatusBar.border": "4,4,4,4", + "InformationHint.borderColor": "#222436", + "InplaceRefactoringPopup": { + "borderColor": "#222436" + }, + "InternalFrame": { + "activeTitleForeground": "#c8d3f5", + "background": "#222436", + "inactiveTitleForeground": "#a9b8e8" + }, + "Label": { + "background": "#222436", + "disabledForeground": "#828bb8", + "disabledShadow": "#222436", + "disabledText": "#828bb8", + "foreground": "#c8d3f5", + "infoForeground": "#a9b8e8", + "selectedForeground": "#FFFFFF", + "selectedDisabledForeground": "#c8d3f5" + }, + "Link": { + "activeForeground": "#4fd6be", + "hoverForeground": "#4fd6be", + "pressedForeground": "#4fd6be", + "secondaryForeground": "#a9b8e8", + "visitedForeground": "#4fd6be" + }, + "link.foreground": "#4fd6be", + "List": { + "background": "#2f334d", + "foreground": "#c8d3f5", + "hoverBackground": "#444a7370", + "hoverInactiveBackground": "#2f334d", + "selectionBackground": "#444a7350", + "selectionForeground": "#FFFFFF", + "selectionInactiveForeground": "#FFFFFF", + "selectionInactiveBackground": "#444a7370" + }, + "material": { + "background": "#222436", + "branchColor": "#c8d3f5", + "contrast": "#191a2a", + "foreground": "#c8d3f5", + "mergeCommits": "#444a73", + "primaryColor": "#a9b8e8", + "selectionForeground": "#FFFFFF", + "tab.backgroundColor": "#222436", + "tab.borderColor": "#4fd6be", + "tagColor": "#a9b8e8" + }, + "MemoryIndicator": { + "allocatedBackground": "#2f334d", + "usedColor": "#444a73", + "usedBackground": "#444a73" + }, + "Menu": { + "acceleratorForeground": "#a9b8e8", + "acceleratorSelectionForeground": "#FFFFFF", + "background": "#222436", + "border": "4,2,4,2", + "borderColor": "#2f334d", + "disabledBackground": "#2f334d", + "disabledForeground": "#828bb8", + "foreground": "#c8d3f5", + "selectionBackground": "#444a73", + "selectionForeground": "#FFFFFF", + "separatorColor": "#222436" + }, + "MenuBar": { + "background": "#222436", + "borderColor": "#222436", + "disabledBackground": "#222436", + "disabledForeground": "#828bb8", + "foreground": "#c8d3f5", + "highlight": "#222436", + "selectionBackground": "#444a73", + "selectionForeground": "#FFFFFF", + "shadow": "#222436" + }, + "MenuItem": { + "acceleratorForeground": "#a9b8e8", + "acceleratorSelectionForeground": "#FFFFFF", + "border": "4,2,4,2", + "background": "#222436", + "disabledBackground": "#222436", + "disabledForeground": "#828bb8", + "foreground": "#c8d3f5", + "selectionBackground": "#444a73", + "selectionForeground": "#FFFFFF" + }, + "NavBar": { + "arrowColor": "#c8d3f5", + "borderColor": "#222436" + }, + "NewClass": { + "Panel": { + "background": "#222436" + }, + "SearchField": { + "background": "#222436" + } + }, + "NewPSD.warning": "#4fd6be", + "Notification": { + "background": "#191a2a", + "borderColor": "#191a2a", + "errorBackground": "#191a2a", + "errorBorderColor": "#191a2a", + "foreground": "#c8d3f5", + "MoreButton": { + "background": "#444a73", + "foreground": "#c8d3f5", + "innerBorderColor": "#444a73" + }, + "ToolWindow": { + "errorBackground": "#191a2a", + "errorBorderColor": "#191a2a", + "informativeBackground": "#191a2a", + "informativeBorderColor": "#191a2a", + "warningBackground": "#191a2a", + "warningBorderColor": "#191a2a" + } + }, + "OnePixelDivider.background": "#222436", + "OptionPane": { + "background": "#222436", + "foreground": "#c8d3f5", + "messageForeground": "#c8d3f5" + }, + "Outline": { + "color": "#444a73", + "focusedColor": "#4fd6be", + "disabledColor": "#828bb8" + }, + "Panel": { + "background": "#222436", + "foreground": "#c8d3f5" + }, + "ParameterInfo": { + "background": "#2f334d", + "borderColor": "#2f334d", + "currentOverloadBackground": "#444a73", + "currentParameterForeground": "#4fd6be", + "disabledForeground": "#828bb8", + "foreground": "#c8d3f5", + "infoForeground": "#a9b8e8", + "lineSeparatorColor": "#2f334d" + }, + "PasswordField": { + "background": "#222436", + "capsLockIconColor": "#4fd6be", + "caretForeground": "#4fd6be", + "foreground": "#c8d3f5", + "inactiveForeground": "#828bb8", + "selectionBackground": "#2f334d", + "selectionForeground": "#FFFFFF" + }, + "Plugins": { + "background": "#222436", + "disabledForeground": "#828bb8", + "eapTagBackground": "#444a73", + "hoverBackground": "#444a7370", + "lightSelectionBackground": "#2f334d", + "paidTagBackground": "#444a73", + "selectionBackground": "#444a73", + "tagForeground": "#4fd6be", + "tagBackground": "#444a73", + "trialTagBackground": "#444a73", + "Button": { + "installBackground": "#444a73", + "installBorderColor": "#444a73", + "installForeground": "#c8d3f5", + "installFocusedBackground": "#444a73", + "installFillForeground": "#828bb8", + "installFillBackground": "#444a73", + "updateBackground": "#4fd6be", + "updateBorderColor": "#444a73", + "updateForeground": "#c8d3f5" + }, + "SearchField": { + "background": "#222436", + "borderColor": "#222436" + }, + "SectionHeader": { + "background": "#2f334d", + "foreground": "#c8d3f5" + }, + "Tab": { + "hoverBackground": "#2f334d", + "selectedForeground": "#FFFFFF", + "selectedBackground": "#2f334d" + } + }, + "Popup": { + "Advertiser": { + "background": "#222436", + "borderColor": "#222436", + "foreground": "#4fd6be" + }, + "borderColor": "#191a2a", + "inactiveBorderColor": "#222436", + "innerBorderColor": "#2f334d", + "Header": { + "activeBackground": "#222436", + "inactiveBackground": "#191a2a" + }, + "paintBorder": true, + "separatorForeground": "#c8d3f5", + "separatorColor": "#2f334d", + "Toolbar": { + "Floating.background": "#191a2a", + "background": "#191a2a", + "borderColor": "#191a2a" + } + }, + "PopupMenu": { + "background": "#222436", + "border": "2,0,2,0", + "foreground": "#c8d3f5", + "translucentBackground": "#222436" + }, + "PopupMenuSeparator.height": 10, + "PopupMenuSeparator.stripeIndent": 5, + "ProgressBar": { + "background": "#222436", + "foreground": "#4fd6be", + "indeterminateEndColor": "#4fd6be", + "indeterminateStartColor": "#4fd6be", + "progressColor": "#4fd6be", + "selectionBackground": "#444a73", + "trackColor": "#444a73" + }, + "PsiViewer": { + "referenceHighlightColor": "#4fd6be" + }, + "RadioButton": { + "background": "#222436", + "disabledText": "#828bb8", + "foreground": "#c8d3f5" + }, + "RadioButtonMenuItem": { + "acceleratorForeground": "#a9b8e8", + "acceleratorSelectionForeground": "#a9b8e8", + "background": "#222436", + "disabledBackground": "#222436", + "disabledForeground": "#828bb8", + "foreground": "#c8d3f5", + "selectionBackground": "#444a73", + "selectionForeground": "#FFFFFF" + }, + "ScreenView.borderColor": "#222436", + "ScrollBar": { + "background": "#222436", + "hoverThumbBorderColor": "#4fd6be", + "hoverThumbColor": "#4fd6be", + "hoverTrackColor": "#22243630", + "Mac": { + "hoverThumbBorderColor": "#4fd6be", + "hoverThumbColor": "#4fd6be", + "hoverTrackColor": "#22243630", + "thumbBorderColor": "#4fd6be70", + "thumbColor": "#4fd6be70", + "trackColor": "#22243630", + "Transparent": { + "hoverThumbBorderColor": "#4fd6be", + "hoverThumbColor": "#4fd6be", + "hoverTrackColor": "#22243630", + "thumbBorderColor": "#4fd6be70", + "thumbColor": "#4fd6be70", + "trackColor": "#22243630" + } + }, + "thumb": "#444a73", + "thumbBorderColor": "#4fd6be70", + "thumbColor": "#4fd6be70", + "trackColor": "#22243630", + "Transparent": { + "hoverThumbBorderColor": "#4fd6be", + "hoverThumbColor": "#4fd6be", + "hoverTrackColor": "#22243630", + "thumbBorderColor": "#4fd6be70", + "thumbColor": "#4fd6be70", + "trackColor": "#22243630" + } + }, + "SearchEverywhere": { + "Advertiser": { + "background": "#191a2a", + "foreground": "#a9b8e8" + }, + "Header": { + "background": "#222436" + }, + "List": { + "separatorForeground": "#a9b8e8", + "separatorColor": "#222436" + }, + "SearchField": { + "background": "#222436", + "borderColor": "#191a2a", + "infoForeground": "#a9b8e8" + }, + "Tab": { + "active.foreground": "#FFFFFF", + "selectedForeground": "#FFFFFF", + "selectedBackground": "#444a73" + } + }, + "SearchMatch": { + "endBackground": "#4fd6be", + "startBackground": "#4fd6be", + "endColor": "#4fd6be", + "startColor": "#4fd6be" + }, + "SearchField.errorBackground": "#191a2a", + "SearchOption": { + "selectedBackground": "#2f334d" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#a9b8e8", + "Repeated.File.Foreground": "#c8d3f5" + }, + "Separator": { + "background": "#2f334d", + "foreground": "#2f334d", + "separatorColor": "#2f334d" + }, + "SidePanel": { + "background": "#222436" + }, + "Slider": { + "background": "#222436", + "buttonBorderColor": "#4fd6be", + "buttonColor": "#4fd6be", + "foreground": "#c8d3f5", + "majorTickLength": 6, + "tickColor": "#2f334d", + "trackColor": "#2f334d", + "trackWidth": 7, + "thumb": "#4fd6be" + }, + "SpeedSearch": { + "background": "#444a73", + "borderColor": "#222436", + "foreground": "#c8d3f5", + "errorForeground": "#c8d3f5" + }, + "Spinner": { + "background": "#222436", + "border": "3,3,3,3", + "foreground": "#c8d3f5", + "selectionForeground": "#FFFFFF" + }, + "SplitPane": { + "background": "#222436", + "highlight": "#222436" + }, + "SplitPaneDivider.draggingColor": "#2f334d", + "StatusBar": { + "borderColor": "#222436", + "hoverBackground": "#444a73", + "LightEditBackground": "#2f334d" + }, + "TabbedPane": { + "background": "#222436", + "contentAreaColor": "#444a73", + "contentBorderInsets": "3,1,1,1", + "darkShadow": "#222436", + "disabledForeground": "#828bb8", + "disabledUnderlineColor": "#828bb8", + "focus": "#2f334d", + "focusColor": "#2f334d", + "fontSizeOffset": 0, + "foreground": "#c8d3f5", + "highlight": "#222436", + "hoverColor": "#444a73", + "labelShift": 0, + "selectedForeground": "#FFFFFF", + "selectedLabelShift": 0, + "selectedTabPadInsets": "0,0,0,0", + "tabsOverlapBorder": true, + "tabHeight": 32, + "tabInsets": "5,10,5,10", + "tabSelectionHeight": 2, + "underlineColor": "#4fd6be" + }, + "TabbedPane.mt.tab.background": "#222436", + "Table": { + "alternativeRowBackground": "#191a2a", + "background": "#222436", + "cellNoFocusBorder": "10,5,10,5", + "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#828bb8", + "dropLineColor": "#4fd6be", + "dropLineShortColor": "#4fd6be", + "focusCellBackground": "#2f334d", + "focusCellForeground": "#FFFFFF", + "foreground": "#c8d3f5", + "gridColor": "#222436", + "highlightOuter": "#2f334d", + "hoverBackground": "#444a7370", + "hoverInactiveBackground": "#2f334d", + "lightSelectionForeground": "#FFFFFF", + "lightSelectionInactiveForeground": "#a9b8e8", + "lightSelectionInactiveBackground": "#2f334d", + "selectionBackground": "#2f334d", + "selectionForeground": "#FFFFFF", + "selectionInactiveBackground": "#2f334d", + "selectionInactiveForeground": "#FFFFFF", + "sortIconColor": "#c8d3f5", + "stripeColor": "#191a2a" + }, + "TableHeader": { + "background": "#222436", + "borderColor": "#222436", + "bottomSeparatorColor": "#2f334d", + "cellBorder": "4,0,4,0", + "disabledForeground": "#828bb8", + "foreground": "#c8d3f5", + "focusCellBackground": "#2f334d", + "focusCellForeground": "#FFFFFF", + "height": 25, + "separatorColor": "#2f334d" + }, + "text": "#a9b8e8", + "textInactiveText": "#a9b8e8", + "textText": "#a9b8e8", + "TextArea": { + "background": "#222436", + "caretForeground": "#4fd6be", + "foreground": "#c8d3f5", + "inactiveForeground": "#828bb8", + "selectionBackground": "#2f334d", + "selectionForeground": "#FFFFFF" + }, + "TextField": { + "background": "#222436", + "caretForeground": "#4fd6be", + "foreground": "#c8d3f5", + "inactiveForeground": "#828bb8", + "selectionBackground": "#2f334d", + "selectionForeground": "#FFFFFF" + }, + "TextPane": { + "background": "#222436", + "caretForeground": "#4fd6be", + "foreground": "#c8d3f5", + "inactiveForeground": "#828bb8", + "selectionBackground": "#2f334d", + "selectionForeground": "#FFFFFF" + }, + "TitlePane": { + "background": "#191a2a", + "Button.hoverBackground": "#444a73", + "inactiveBackground": "#222436", + "infoForeground": "#a9b8e8", + "inactiveInfoForeground": "#a9b8e8" + }, + "TitledBorder.titleColor": "#c8d3f5", + "ToggleButton": { + "borderColor": "#444a73", + "buttonColor": "#c8d3f5", + "disabledText": "#828bb8", + "foreground": "#c8d3f5", + "offForeground": "#222436", + "offBackground": "#222436", + "onBackground": "#4fd6be", + "onForeground": "#4fd6be" + }, + "ToolBar": { + "background": "#222436", + "borderHandleColor": "#a9b8e8", + "floatingForeground": "#a9b8e8", + "foreground": "#c8d3f5" + }, + "ToolTip": { + "Actions.background": "#222436", + "Actions.infoForeground": "#a9b8e8", + "background": "#191a2a", + "borderColor": "#222436", + "foreground": "#c8d3f5", + "infoForeground": "#a9b8e8", + "separatorColor": "#222436", + "shortcutForeground": "#a9b8e8" + }, + "ToolWindow": { + "Button": { + "hoverBackground": "#2f334d", + "selectedForeground": "#FFFFFF", + "selectedBackground": "#191a2a" + }, + "Header": { + "background": "#222436", + "borderColor": "#2f334d", + "inactiveBackground": "#222436" + }, + "HeaderCloseButton": { + "background": "#222436" + }, + "HeaderTab": { + "borderColor": "#444a73", + "hoverBackground": "#444a73", + "hoverInactiveBackground": "#444a73", + "inactiveUnderlineColor": "#4fd6be", + "selectedBackground": "#191a2a", + "selectedInactiveBackground": "#191a2a", + "underlineColor": "#4fd6be", + "underlinedTabBackground": "#2f334d", + "underlinedTabInactiveBackground": "#2f334d", + "underlinedTabForeground": "#FFFFFF", + "underlinedTabInactiveForeground": "#c8d3f5" + } + }, + "Tree": { + "background": "#222436", + "foreground": "#a9b8e8", + "hash": "#222436", + "hoverBackground": "#444a7370", + "hoverInactiveBackground": "#2f334d", + "modifiedItemForeground": "#4fd6be", + "rowHeight": 28, + "selectionBackground": "#444a7370", + "selectionForeground": "#FFFFFF", + "selectionInactiveForeground": "#FFFFFF", + "selectionInactiveBackground": "#444a7370", + "textBackground": "#222436" + }, + "Tree.leftChildIndent": 10, + "Tree.rightChildIndent": 5, + "UIDesigner": { + "Activity.borderColor": "#222436", + "Canvas.background": "#191a2a", + "ColorPicker": { + "background": "#222436", + "foreground": "#c8d3f5" + }, + "Component": { + "borderColor": "#222436", + "background": "#222436", + "foreground": "#c8d3f5", + "hoverBorderColor": "#444a73" + }, + "Connector": { + "borderColor": "#222436", + "hoverBorderColor": "#444a73" + }, + "Canvas.background": "#191a2a", + "highStroke.foreground": "#c8d3f5", + "Label.foreground": "#a9b8e8", + "List.selectionBackground": "#444a7370", + "motion": { + "borderColor": "#222436", + "Component.foreground": "#c8d3f5", + "ConstraintSetText.foreground": "#a9b8e8", + "ConstraintSet.background": "#2f334d", + "CSPanel.SelectedFocusBackground": "#444a73", + "CSPanel.SelectedBackground": "#444a7370", + "cs_FocusText.infoForeground": "#a9b8e8", + "CursorTextColor.foreground": "#c8d3f5", + "HoverColor.disabledBackground": "#828bb8", + "motionGraph.background": "#222436", + "Notification.background": "#191a2a", + "ourAvg.background": "#2f334d", + "ourCS.background": "#2f334d", + "ourCS_Border.borderColor": "#222436", + "ourCS_TextColor.foreground": "#a9b8e8", + "ourCS_SelectedFocusBackground.selectionForeground": "#FFFFFF", + "ourCS_SelectedBackground.selectionInactiveBackground": "#2f334d", + "ourCS_SelectedBorder.pressedBorderColor": "#444a73", + "ourML_BarColor.separatorColor": "#222436", + "PrimaryPanel.background": "#191a2a", + "SecondaryPanel.background": "#222436", + "SecondaryPanel.header.foreground": "#a9b8e8", + "SecondaryPanel.header.background": "#191a2a", + "timeLine.disabledBorderColor": "#222436" + }, + "Panel": { + "borderColor": "#222436", + "background": "#222436" + }, + "percent.foreground": "#c8d3f5", + "Placeholder": { + "background": "#222436", + "borderColor": "#222436", + "foreground": "#c8d3f5", + "selectedForeground": "#FFFFFF" + }, + "Preview.background": "#222436", + "stroke.acceleratorForeground": "#a9b8e8" + }, + "ValidationTooltip": { + "errorBackground": "#191a2a", + "errorBorderColor": "#191a2a", + "warningBackground": "#191a2a", + "warningBorderColor": "#191a2a" + }, + "VersionControl": { + "FileHistory.Commit": { + "selectedBranchBackground": "#222436" + }, + "GitCommits": { + "graphColor": "#444a73" + }, + "GitLog": { + "localBranchIconColor": "#4fd6be", + "otherIconColor": "#a9b8e8", + "remoteBranchIconColor": "#c8d3f5", + "tagIconColor": "#a9b8e8" + }, + "HgLog": { + "branchIconColor": "#4fd6be", + "bookmarkIconColor": "#FFFFFF", + "closedBranchIconColor": "#828bb8", + "localTagIconColor": "#a9b8e8", + "mqTagIconColor": "#a9b8e8", + "tagIconColor": "#a9b8e8", + "tipIconColor": "#a9b8e8" + }, + "Log": { + "Commit.unmatchedForeground": "#a9b8e8", + "Commit.currentBranchBackground": "#2f334d", + "Commit.hoveredBackground": "#444a7370" + }, + "RefLabel": { + "foreground": "#FFFFFF", + "backgroundBase": "#444a73" + } + }, + "Viewport": { + "background": "#222436", + "foreground": "#c8d3f5" + }, + "WelcomeScreen": { + "AssociatedComponent.background": "#222436", + "background": "#222436", + "borderColor": "#222436", + "captionBackground": "#191a2a", + "captionForeground": "#c8d3f5", + "Details.background": "#222436", + "footerBackground": "#191a2a", + "footerForeground": "#c8d3f5", + "headerBackground": "#222436", + "headerForeground": "#c8d3f5", + "List.background": "#191a2a", + "separatorColor": "#222436", + "SidePanel.background": "#2f334d", + "Projects": { + "actions.background": "#191a2a", + "actions.selectionBackground": "#444a73", + "background": "#2f334d", + "selectionBackground": "#444a73", + "selectionInactiveBackground": "#2f334d" + } + }, + "window": "#222436", + "windowBorder": "#222436", + "windowText": "#a9b8e8", + "Window.border": "#222436" + }, + "icons": { + "ColorPalette": { + "#43494A": "#191a2a", + "#6B6B6B": "#a9b8e8", + "#A7A7A7": "#222436", + "#3D6185": "#4fd6be", + "#466D94": "#4fd6be", + "#3C3F41": "#222436", + "#545556": "#828bb8", + "#606060": "#828bb8", + "#9AA7B0": "#c8d3f5", + "#675133": "#4fd6be", + "Actions.Blue": "#82aaff", + "Actions.Green": "#c3e88d", + "Actions.Grey": "#a9b8e8", + "Actions.GreyInline": "#7a88cf", + "Actions.GreyInline.Dark": "#c8d3f5", + "Actions.Red": "#ff757f", + "Actions.Yellow": "#c099ff", + "Checkbox.Background.Default": "#191a2a", + "Checkbox.Background.Default.Dark": "#191a2a", + "Checkbox.Background.Disabled": "#2f334d", + "Checkbox.Background.Disabled.Dark": "#2f334d", + "Checkbox.Border.Default": "#222436", + "Checkbox.Border.Default.Dark": "#222436", + "Checkbox.Border.Disabled": "#828bb8", + "Checkbox.Border.Disabled.Dark": "#828bb8", + "Checkbox.Focus.Thin.Default": "#4fd6be", + "Checkbox.Focus.Thin.Default.Dark": "#4fd6be", + "Checkbox.Focus.Wide": "#4fd6be", + "Checkbox.Focus.Wide.Dark": "#4fd6be", + "Checkbox.Foreground.Disabled": "#828bb8", + "Checkbox.Foreground.Disabled.Dark": "#828bb8", + "Checkbox.Background.Selected": "#4fd6be", + "Checkbox.Background.Selected.Dark": "#222436", + "Checkbox.Border.Selected": "#4fd6be", + "Checkbox.Border.Selected.Dark": "#4fd6be", + "Checkbox.Foreground.Selected": "#4fd6be", + "Checkbox.Foreground.Selected.Dark": "#4fd6be", + "Checkbox.Focus.Thin.Selected": "#c8d3f5", + "Checkbox.Focus.Thin.Selected.Dark": "#c8d3f5", + "Objects.Grey": "#7a88cf", + "Objects.Blue": "#82aaff", + "Objects.RedStatus": "#ff757f", + "Objects.Red": "#ff757f", + "Objects.Pink": "#c099ff", + "Objects.Yellow": "#c099ff", + "Objects.Green": "#c3e88d", + "Objects.Purple": "#c099ff", + "Objects.BlackText": "#c8d3f5", + "Objects.YellowDark": "#ff966c", + "Objects.GreenAndroid": "#c3e88d" + } + } +} diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Night Owl Contrast.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Night Owl Contrast.theme.json index 2e6a6b24..a8a0314a 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Night Owl Contrast.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Night Owl Contrast.theme.json @@ -3,176 +3,196 @@ "dark": true, "author": "Mallowigi", "editorScheme": "/colors/Night Owl.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/nightowl.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { - "acceleratorSelectionForeground": "#5f7e97", + "acceleratorSelectionForeground": "#607d8b", "background": "#011627", - "borderColor": "#122d42", - "disabledBackground": "#0e293f", - "disabledForeground": "#697098", - "disabledText": "#697098", - "focusColor": "#084d81", + "borderColor": "#2a373e", + "disabledBackground": "#0B253A", + "disabledForeground": "#2e3c42", + "disabledText": "#2e3c42", + "focusColor": "#152C3B", "focusedBorderColor": "#7e57c2", - "foreground": "#d6deeb", - "inactiveBackground": "#0e293f", - "inactiveForeground": "#5f7e97", - "infoForeground": "#5f7e97", - "selectionBackground": "#5f7e97", - "selectionBackgroundInactive": "#0b2942", + "foreground": "#b0bec5", + "inactiveBackground": "#0B253A", + "inactiveForeground": "#607d8b", + "infoForeground": "#607d8b", + "selectionBackground": "#152C3B", + "selectionBackgroundInactive": "#011627", "selectionForeground": "#ffffff", - "selectionInactiveBackground": "#0b2942", - "separatorColor": "#122d42" + "selectionInactiveBackground": "#011627", + "separatorColor": "#2a373e" }, "activeCaption": "#011627", "ActionButton": { "hoverBackground": "#7e57c250", "hoverBorderColor": "#7e57c250", - "hoverSeparatorColor": "#0b253a", + "hoverSeparatorColor": "#2e3c43", "focusedBorderColor": "#7e57c250", "pressedBackground": "#7e57c250", "pressedBorderColor": "#7e57c250" }, "Autocomplete": { - "selectionBackground": "#5f7e97" + "selectionBackground": "#152C3B" }, "Borders.ContrastBorderColor": "#011627", - "Borders.color": "#122d42", + "Borders.color": "#2a373e", "Button": { "arc": 0, "background": "#011627", "default": { - "endBackground": "#13344f", - "endBorderColor": "#13344f", + "endBackground": "#152C3B", + "endBorderColor": "#152C3B", "foreground": "#ffffff", "focusColor": "#7e57c2", "focusedBorderColor": "#7e57c2", - "shadowColor": "#13344f", - "startBackground": "#13344f", - "startBorderColor": "#13344f" + "shadowColor": "#152C3B", + "startBackground": "#152C3B", + "startBorderColor": "#152C3B" }, - "disabledBorderColor": "#0b253a", - "disabledText": "#697098", - "endBackground": "#0b253a", - "endBorderColor": "#0b253a", - "focus": "#084d81", + "disabledBorderColor": "#2e3c43", + "disabledText": "#2e3c42", + "endBackground": "#2e3c43", + "endBorderColor": "#2e3c43", + "focus": "#152C3B", "focusedBorderColor": "#7e57c2", - "foreground": "#5f7e97", + "foreground": "#607d8b", "highlight": "#ffffff", - "mt.background": "#0b253a", - "mt.foreground": "#5f7e97", + "mt.background": "#2e3c43", + "mt.foreground": "#607d8b", "mt.selectedForeground": "#ffffff", - "mt.selection.color1": "#13344f", - "mt.selection.color2": "#13344f", - "startBackground": "#0b253a", - "startBorderColor": "#0b253a", - "shadowColor": "#0b253a", + "mt.selection.color1": "#152C3B", + "mt.selection.color2": "#152C3B", + "startBackground": "#2e3c43", + "startBorderColor": "#2e3c43", + "shadowColor": "#2e3c43", "shadowWidth": 0 }, "Canvas": { - "Tooltip.borderColor": "#122d42", - "Tooltip.background": "#01111d" + "Tooltip.borderColor": "#2a373e", + "Tooltip.background": "#152C3B" + }, + "Content": { + "background": "#001424", + "selectionBackground": "#152C3B" }, - "Content.background": "#010e1a", "CheckBox": { "background": "#011627", - "disabledText": "#697098", - "foreground": "#d6deeb", + "disabledText": "#2e3c42", + "foreground": "#b0bec5", "select": "#7e57c2" }, "CheckBoxMenuItem": { - "acceleratorForeground": "#5f7e97", - "acceleratorSelectionForeground": "#5f7e97", + "acceleratorForeground": "#607d8b", + "acceleratorSelectionForeground": "#607d8b", "background": "#011627", "disabledBackground": "#011627", - "disabledForeground": "#697098", - "foreground": "#d6deeb", - "selectionBackground": "#5f7e97", + "disabledForeground": "#2e3c42", + "foreground": "#b0bec5", + "selectionBackground": "#152C3B", "selectionForeground": "#ffffff" }, + "CodeWithMe": { + "Avatar.foreground": "#b0bec5", + "AccessEnabled": { + "accessDot": "#7e57c2", + "dropdownBorder": "#011627", + "pillBackground": "$second" + } + }, "ColorChooser": { "background": "#011627", - "foreground": "#d6deeb", - "swatchesDefaultRecentColor": "#d6deeb" + "foreground": "#b0bec5", + "swatchesDefaultRecentColor": "#b0bec5" }, - "ComboBoxButton.background": "#0b253a", + "ComboBoxButton.background": "#2e3c43", "ComboBox": { "ArrowButton": { - "background": "#0b253a", - "disabledIconColor": "#697098", - "iconColor": "#d6deeb", + "background": "#2e3c43", + "disabledIconColor": "#2e3c42", + "iconColor": "#b0bec5", "nonEditableBackground": "#011627" }, - "background": "#010e1a", - "buttonBackground": "#0b253a", - "disabledForeground": "#697098", - "foreground": "#d6deeb", + "background": "#001424", + "buttonBackground": "#2e3c43", + "darcula.hoveredArrowButtonForeground": "#7e57c2", + "disabledForeground": "#2e3c42", + "foreground": "#b0bec5", "modifiedItemForeground": "#7e57c2", - "nonEditableBackground": "#0b2942", + "nonEditableBackground": "#011627", "padding": "5,5,5,5", - "selectionBackground": "#13344f", + "selectionBackground": "#152C3B", "selectionForeground": "#ffffff" }, - "ComboPopup.border": "#122d42", + "ComboPopup.border": "#2a373e", "CompletionPopup": { - "background": "#0b2942", - "foreground": "#d6deeb", - "infoForeground": "#5f7e97", + "background": "#011627", + "foreground": "#b0bec5", + "infoForeground": "#607d8b", "matchForeground": "#7e57c2", "matchSelectionForeground": "#7e57c2", "nonFocusedState": "false", "selectedGrayedForeground": "#ffffff", "selectionGrayForeground": "#ffffff", - "selectionInactiveInfoForeground": "#5f7e97", - "selectionInactiveBackground": "#5f7e9750", - "selectionBackground": "#5f7e9780", + "selectionInactiveInfoForeground": "#607d8b", + "selectionInactiveBackground": "#152C3B50", + "selectionBackground": "#152C3B80", "selectionForeground": "#ffffff", "selectionInfoForeground": "#ffffff" }, "Component": { "arc": 4, - "borderColor": "#084d81", - "disabledBorderColor": "#0b253a", + "borderColor": "#152C3B", + "disabledBorderColor": "#2e3c43", "focusColor": "#7e57c2", "focusedBorderColor": "#7e57c2", "hoverIconColor": "#7e57c2", - "infoForeground": "#5f7e97", - "iconColor": "#d6deeb" + "infoForeground": "#607d8b", + "iconColor": "#b0bec5" }, "control": "#011627", - "controlText": "#5f7e97", + "controlText": "#607d8b", "Counter": { "background": "#7e57c2", "foreground": "#ffffff" }, "Debugger": { "Variables": { - "collectingDataForeground": "#5f7e97", + "collectingDataForeground": "#607d8b", "changedValueForeground": "#7e57c2", "errorMessageForeground": "#7fdbca", - "evaluatingExpressionForeground": "#5f7e97", + "evaluatingExpressionForeground": "#607d8b", "exceptionForeground": "#FAD430", "modifyingValueForeground": "#7e57c2", "valueForeground": "#7e57c2" } }, "DebuggerTabs": { - "selectedBackground": "#084d81", - "underlinedTabBackground": "#084d81" + "selectedBackground": "#152C3B", + "underlinedTabBackground": "#152C3B" }, "DebuggerPopup": { - "borderColor": "#084d81" + "borderColor": "#152C3B" }, "DefaultTabs": { "background": "#011627", "borderColor": "#011627", - "hoverBackground": "#13344f", - "hoverColor": "#010e1a", - "hoverMaskColor": "#084d81", - "inactiveColoredFileBackground": "#0b253a", - "inactiveUnderlineColor": "#697098", - "inactiveMaskColor": "#010e1a", + "hoverBackground": "#152C3B", + "hoverColor": "#001424", + "hoverMaskColor": "#152C3B", + "inactiveColoredTabBackground": "#011627", + "inactiveColoredFileBackground": "#2e3c43", + "inactiveUnderlineColor": "#7e57c2", + "inactiveMaskColor": "#001424", "underlineColor": "#7e57c2", - "underlinedTabBackground": "#13344f" + "underlinedTabBackground": "#152C3B", + "underlinedTabForeground": "#ffffff" }, "Desktop.background": "#011627", "DialogWrapper.southPanelBackground": "#011627", @@ -180,48 +200,50 @@ "DragAndDrop": { "areaBackground": "#011627", "areaBorderColor": "#011627", - "areaForeground": "#d6deeb" + "areaForeground": "#b0bec5" }, "Editor": { - "background": "#010e1a", - "foreground": "#d6deeb", - "shortcutForeground": "#5f7e97" + "background": "#001424", + "foreground": "#b0bec5", + "shortcutForeground": "#607d8b" }, "EditorPane": { - "background": "#010e1a", + "background": "#001424", "caretForeground": "#7e57c2", - "foreground": "#d6deeb", + "foreground": "#b0bec5", "inactiveBackground": "#011627", - "inactiveForeground": "#697098", - "selectionBackground": "#5f7e97", + "inactiveForeground": "#2e3c42", + "selectionBackground": "#152C3B", "selectionForeground": "#ffffff" }, "EditorTabs": { - "borderColor": "#0b2942", - "hoverColor": "#084d81", - "hoverMaskColor": "#084d81", + "borderColor": "#011627", + "hoverBackground": "#152C3B", + "hoverColor": "#152C3B", + "hoverMaskColor": "#152C3B", "inactiveMaskColor": "#011627", - "inactiveColoredFileBackground": "#0116272", - "inactiveUnderlineColor": "#697098", - "selectedForeground": "#d6deeb", - "selectedBackground": "#13344f", + "inactiveColoredFileBackground": "#011627", + "inactiveUnderlineColor": "#2e3c42", + "selectedForeground": "#b0bec5", + "selectedBackground": "#152C3B", "underlineColor": "#7e57c2", - "underlinedTabBackground": "#13344f" + "underlinedTabBackground": "#152C3B", + "underlinedTabForeground": "#ffffff" }, "EditorGroupsTabs": { "background": "#011627", - "borderColor": "#0b2942", - "hoverBackground": "#084d81", - "hoverColor": "#084d81", + "borderColor": "#011627", + "hoverBackground": "#152C3B", + "hoverColor": "#152C3B", "inactiveUnderlineColor": "#7e57c2", "underlineColor": "#7e57c2", - "underlinedTabBackground": "#13344f", - "underlinedTabForeground": "#d6deeb" + "underlinedTabBackground": "#152C3B", + "underlinedTabForeground": "#b0bec5" }, "FileColor": { "Green": "#387002", "Blue": "#004BA0", - "Yellow": "#0e293f", + "Yellow": "#0B253A", "Orange": "#B53D00", "Violet": "#4D2C91", "Rose": "#A00037" @@ -236,130 +258,134 @@ "nativeSearchNotMatchedBackground": "#C792EA", "nativeFocusSearchNotMatchedBackground": "#BB80B3" }, - "Focus.color": "#122d42", + "Focus.color": "#2a373e", "FormattedTextField": { - "background": "#010e1a", + "background": "#001424", "caretForeground": "#7e57c2", - "foreground": "#d6deeb", - "inactiveBackground": "#0b253a", - "inactiveForeground": "#697098", + "foreground": "#b0bec5", + "inactiveBackground": "#2e3c43", + "inactiveForeground": "#2e3c42", "selectionForeground": "#ffffff", - "selectionBackground": "#13344f" + "selectionBackground": "#152C3B" }, + "GotItTooltip.borderColor": "#152C3B", "Group": { - "disabledSeparatorColor": "#122d42", - "separatorColor": "#122d42" + "disabledSeparatorColor": "#2a373e", + "separatorColor": "#2a373e" }, "GutterTooltip": { - "infoForeground": "#d6deeb", + "infoForeground": "#607d8b", "lineSeparatorColor": "#011627" }, "HeaderColor": { "active": "#011627", - "inactive": "#010e1a" + "inactive": "#001424" }, "HelpTooltip": { "background": "#011627", - "borderColor": "#122d42", - "foreground": "#d6deeb", - "infoForeground": "#5f7e97", - "shortcutForeground": "#5f7e97" + "borderColor": "#2a373e", + "foreground": "#b0bec5", + "infoForeground": "#607d8b", + "shortcutForeground": "#607d8b" }, "Hyperlink.linkColor": "#7e57c2", - "inactiveCaption": "#0b2942", + "inactiveCaption": "#011627", "inactiveCaptionBorder": "#011627", - "inactiveCaptionText": "#5f7e97", - "info": "#5f7e97", - "infoText": "#5f7e97", + "inactiveCaptionText": "#607d8b", + "info": "#607d8b", + "infoText": "#607d8b", "IdeStatusBar.border": "4,4,4,4", - "InformationHint.borderColor": "#122d42", + "InformationHint.borderColor": "#2a373e", "InplaceRefactoringPopup": { "borderColor": "#011627" }, "InternalFrame": { - "activeTitleForeground": "#d6deeb", + "activeTitleForeground": "#b0bec5", "background": "#011627", - "inactiveTitleForeground": "#5f7e97" + "inactiveTitleForeground": "#607d8b" }, "Label": { "background": "#011627", - "disabledForeground": "#697098", + "disabledForeground": "#2e3c42", "disabledShadow": "#011627", - "disabledText": "#697098", - "foreground": "#d6deeb", - "infoForeground": "#5f7e97", - "selectedForeground": "#ffffff" + "disabledText": "#2e3c42", + "foreground": "#b0bec5", + "infoForeground": "#607d8b", + "selectedForeground": "#ffffff", + "selectedDisabledForeground": "#b0bec5" }, "Link": { "activeForeground": "#7e57c2", "hoverForeground": "#7e57c2", "pressedForeground": "#7e57c2", - "secondaryForeground": "#5f7e97", + "secondaryForeground": "#607d8b", "visitedForeground": "#7e57c2" }, "link.foreground": "#7e57c2", "List": { - "background": "#0b2942", - "foreground": "#d6deeb", - "selectionBackground": "#5f7e9750", + "background": "#011627", + "foreground": "#b0bec5", + "hoverBackground": "#152C3B70", + "hoverInactiveBackground": "#152C3B", + "selectionBackground": "#152C3B50", "selectionForeground": "#ffffff", "selectionInactiveForeground": "#ffffff", - "selectionInactiveBackground": "#13344f50" + "selectionInactiveBackground": "#152C3B70" }, "material": { "background": "#011627", - "branchColor": "#d6deeb", - "contrast": "#010e1a", - "foreground": "#d6deeb", - "mergeCommits": "#0b253a", - "primaryColor": "#5f7e97", + "branchColor": "#b0bec5", + "contrast": "#001424", + "foreground": "#b0bec5", + "mergeCommits": "#2e3c43", + "primaryColor": "#607d8b", "selectionForeground": "#ffffff", "tab.backgroundColor": "#011627", "tab.borderColor": "#7e57c2", - "tagColor": "#5f7e97" + "tagColor": "#607d8b" }, "MemoryIndicator": { - "allocatedBackground": "#0b2942", - "usedColor": "#084d81", - "usedBackground": "#084d81" + "allocatedBackground": "#011627", + "usedColor": "#152C3B", + "usedBackground": "#152C3B" }, "Menu": { - "acceleratorForeground": "#5f7e97", + "acceleratorForeground": "#607d8b", "acceleratorSelectionForeground": "#ffffff", "background": "#011627", "border": "4,2,4,2", - "borderColor": "#0b2942", - "disabledBackground": "#0b2942", - "disabledForeground": "#697098", - "foreground": "#d6deeb", - "selectionBackground": "#5f7e97", - "selectionForeground": "#ffffff", - "separatorColor": "#122d42" - }, - "MenuBar": { - "background": "#010e1a", "borderColor": "#011627", "disabledBackground": "#011627", - "disabledForeground": "#697098", - "foreground": "#d6deeb", - "highlight": "#011627", - "selectionBackground": "#5f7e97", + "disabledForeground": "#2e3c42", + "foreground": "#b0bec5", + "selectionBackground": "#152C3B", "selectionForeground": "#ffffff", - "shadow": "#010e1a" + "separatorColor": "#2a373e" + }, + "MenuBar": { + "background": "#001424", + "borderColor": "#011627", + "disabledBackground": "#011627", + "disabledForeground": "#2e3c42", + "foreground": "#b0bec5", + "highlight": "#011627", + "selectionBackground": "#152C3B", + "selectionForeground": "#ffffff", + "shadow": "#001424" }, "MenuItem": { - "acceleratorForeground": "#5f7e97", + "acceleratorForeground": "#607d8b", "acceleratorSelectionForeground": "#ffffff", "border": "4,2,4,2", "background": "#011627", "disabledBackground": "#011627", - "disabledForeground": "#697098", - "foreground": "#d6deeb", - "selectionBackground": "#5f7e97", + "disabledForeground": "#2e3c42", + "foreground": "#b0bec5", + "selectionBackground": "#152C3B", "selectionForeground": "#ffffff" }, "NavBar": { - "arrowColor": "#d6deeb", + "arrowColor": "#b0bec5", "borderColor": "#011627" }, "NewClass": { @@ -367,97 +393,98 @@ "background": "#011627" }, "SearchField": { - "background": "#010e1a" + "background": "#001424" } }, "NewPSD.warning": "#7e57c2", "Notification": { - "background": "#01111d", - "borderColor": "#01111d", - "errorBackground": "#01111d", - "errorBorderColor": "#01111d", - "foreground": "#d6deeb", + "background": "#152C3B", + "borderColor": "#152C3B", + "errorBackground": "#152C3B", + "errorBorderColor": "#152C3B", + "foreground": "#b0bec5", "MoreButton": { - "background": "#0b253a", - "foreground": "#d6deeb", - "innerBorderColor": "#0b253a" + "background": "#2e3c43", + "foreground": "#b0bec5", + "innerBorderColor": "#2e3c43" }, "ToolWindow": { - "errorBackground": "#01111d", - "errorBorderColor": "#01111d", - "informativeBackground": "#01111d", - "informativeBorderColor": "#01111d", - "warningBackground": "#01111d", - "warningBorderColor": "#01111d" + "errorBackground": "#152C3B", + "errorBorderColor": "#152C3B", + "informativeBackground": "#152C3B", + "informativeBorderColor": "#152C3B", + "warningBackground": "#152C3B", + "warningBorderColor": "#152C3B" } }, - "OnePixelDivider.background": "#122d42", + "OnePixelDivider.background": "#2a373e", "OptionPane": { "background": "#011627", - "foreground": "#d6deeb", - "messageForeground": "#d6deeb" + "foreground": "#b0bec5", + "messageForeground": "#b0bec5" }, "Outline": { - "color": "#0b253a", + "color": "#2e3c43", "focusedColor": "#7e57c2", - "disabledColor": "#697098" + "disabledColor": "#2e3c42" }, "Panel": { "background": "#011627", - "foreground": "#d6deeb" + "foreground": "#b0bec5" }, "ParameterInfo": { - "background": "#0b2942", - "borderColor": "#13344f", - "currentOverloadBackground": "#13344f", + "background": "#011627", + "borderColor": "#152C3B", + "currentOverloadBackground": "#152C3B", "currentParameterForeground": "#7e57c2", - "disabledForeground": "#697098", - "foreground": "#d6deeb", - "infoForeground": "#5f7e97", - "lineSeparatorColor": "#13344f" + "disabledForeground": "#2e3c42", + "foreground": "#b0bec5", + "infoForeground": "#607d8b", + "lineSeparatorColor": "#152C3B" }, "PasswordField": { - "background": "#010e1a", + "background": "#001424", "capsLockIconColor": "#7e57c2", "caretForeground": "#7e57c2", - "foreground": "#d6deeb", - "inactiveForeground": "#697098", - "selectionBackground": "#13344f", + "foreground": "#b0bec5", + "inactiveForeground": "#2e3c42", + "selectionBackground": "#152C3B", "selectionForeground": "#ffffff" }, "Plugins": { "background": "#011627", - "disabledForeground": "#697098", - "eapTagBackground": "#084d81", - "lightSelectionBackground": "#5f7e97", - "paidTagBackground": "#084d81", - "selectionBackground": "#5f7e97", + "disabledForeground": "#2e3c42", + "eapTagBackground": "#152C3B", + "hoverBackground": "#152C3B70", + "lightSelectionBackground": "#152C3B", + "paidTagBackground": "#152C3B", + "selectionBackground": "#152C3B", "tagForeground": "#7e57c2", - "tagBackground": "#084d81", - "trialTagBackground": "#084d81", + "tagBackground": "#152C3B", + "trialTagBackground": "#152C3B", "Button": { - "installBackground": "#0b253a", - "installBorderColor": "#0b253a", - "installForeground": "#d6deeb", - "installFocusedBackground": "#084d81", - "installFillForeground": "#697098", - "installFillBackground": "#0b253a", - "updateBackground": "#0b253a", - "updateBorderColor": "#0b253a", - "updateForeground": "#d6deeb" + "installBackground": "#2e3c43", + "installBorderColor": "#2e3c43", + "installForeground": "#b0bec5", + "installFocusedBackground": "#152C3B", + "installFillForeground": "#2e3c42", + "installFillBackground": "#2e3c43", + "updateBackground": "#7e57c2", + "updateBorderColor": "#2e3c43", + "updateForeground": "#b0bec5" }, "SearchField": { - "background": "#010e1a", - "borderColor": "#122d42" + "background": "#001424", + "borderColor": "#2a373e" }, "SectionHeader": { - "background": "#0b2942", - "foreground": "#d6deeb" + "background": "#011627", + "foreground": "#b0bec5" }, "Tab": { - "hoverBackground": "#13344f", + "hoverBackground": "#152C3B", "selectedForeground": "#ffffff", - "selectedBackground": "#13344f" + "selectedBackground": "#152C3B" } }, "Popup": { @@ -466,26 +493,26 @@ "borderColor": "#011627", "foreground": "#7e57c2" }, - "borderColor": "#010e1a", + "borderColor": "#001424", "inactiveBorderColor": "#011627", - "innerBorderColor": "#0b2942", + "innerBorderColor": "#011627", "Header": { "activeBackground": "#011627", - "inactiveBackground": "#010e1a" + "inactiveBackground": "#001424" }, "paintBorder": true, - "separatorForeground": "#d6deeb", - "separatorColor": "#0b2942", + "separatorForeground": "#b0bec5", + "separatorColor": "#011627", "Toolbar": { - "Floating.background": "#010e1a", - "background": "#010e1a", - "borderColor": "#010e1a" + "Floating.background": "#001424", + "background": "#001424", + "borderColor": "#001424" } }, "PopupMenu": { "background": "#011627", "border": "2,0,2,0", - "foreground": "#d6deeb", + "foreground": "#b0bec5", "translucentBackground": "#011627" }, "PopupMenuSeparator.height": 10, @@ -496,27 +523,28 @@ "indeterminateEndColor": "#7e57c2", "indeterminateStartColor": "#7e57c2", "progressColor": "#7e57c2", - "selectionBackground": "#084d81", - "trackColor": "#084d81" + "selectionBackground": "#152C3B", + "trackColor": "#152C3B" }, "PsiViewer": { "referenceHighlightColor": "#7e57c2" }, "RadioButton": { "background": "#011627", - "disabledText": "#697098", - "foreground": "#d6deeb" + "disabledText": "#2e3c42", + "foreground": "#b0bec5" }, "RadioButtonMenuItem": { - "acceleratorForeground": "#5f7e97", - "acceleratorSelectionForeground": "#5f7e97", + "acceleratorForeground": "#607d8b", + "acceleratorSelectionForeground": "#607d8b", "background": "#011627", "disabledBackground": "#011627", - "disabledForeground": "#697098", - "foreground": "#d6deeb", - "selectionBackground": "#5f7e97", + "disabledForeground": "#2e3c42", + "foreground": "#b0bec5", + "selectionBackground": "#152C3B", "selectionForeground": "#ffffff" }, + "ScreenView.borderColor": "#2a373e", "ScrollBar": { "background": "#011627", "hoverThumbBorderColor": "#7e57c2", @@ -538,7 +566,7 @@ "trackColor": "#01162730" } }, - "thumb": "#084d81", + "thumb": "#152C3B", "thumbBorderColor": "#7e57c270", "thumbColor": "#7e57c270", "trackColor": "#01162730", @@ -553,84 +581,95 @@ }, "SearchEverywhere": { "Advertiser": { - "background": "#010e1a", - "foreground": "#5f7e97" + "background": "#001424", + "foreground": "#607d8b" }, "Header": { "background": "#011627" }, "List": { - "separatorForeground": "#5f7e97", - "separatorColor": "#122d42" + "separatorForeground": "#607d8b", + "separatorColor": "#2a373e" }, "SearchField": { "background": "#011627", - "borderColor": "#010e1a", - "infoForeground": "#5f7e97" + "borderColor": "#001424", + "infoForeground": "#607d8b" }, "Tab": { "active.foreground": "#ffffff", "selectedForeground": "#ffffff", - "selectedBackground": "#084d81" + "selectedBackground": "#152C3B" } }, "SearchMatch": { "endBackground": "#7e57c2", - "startBackground": "#7e57c2" + "startBackground": "#7e57c2", + "endColor": "#7e57c2", + "startColor": "#7e57c2" + }, + "SearchField.errorBackground": "#152C3B", + "SearchOption": { + "selectedBackground": "#152C3B" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#607d8b", + "Repeated.File.Foreground": "#b0bec5" }, - "SearchField.errorBackground": "#01111d", "Separator": { - "background": "#0b2942", - "foreground": "#0b2942", - "separatorColor": "#0b2942" + "background": "#011627", + "foreground": "#011627", + "separatorColor": "#011627" }, "SidePanel": { - "background": "#010e1a" + "background": "#001424" }, "Slider": { "background": "#011627", "buttonBorderColor": "#7e57c2", "buttonColor": "#7e57c2", - "foreground": "#d6deeb", + "foreground": "#b0bec5", "majorTickLength": 6, - "tickColor": "#0b2942", - "trackColor": "#13344f", + "tickColor": "#011627", + "trackColor": "#152C3B", "trackWidth": 7, "thumb": "#7e57c2" }, "SpeedSearch": { - "background": "#084d81", - "borderColor": "#122d42", - "foreground": "#d6deeb", - "errorForeground": "#d6deeb" + "background": "#152C3B", + "borderColor": "#2a373e", + "foreground": "#b0bec5", + "errorForeground": "#b0bec5" }, "Spinner": { "background": "#011627", "border": "3,3,3,3", - "foreground": "#d6deeb", + "foreground": "#b0bec5", "selectionForeground": "#ffffff" }, "SplitPane": { "background": "#011627", - "highlight": "#010e1a" + "highlight": "#001424" }, - "SplitPaneDivider.draggingColor": "#0b2942", + "SplitPaneDivider.draggingColor": "#011627", "StatusBar": { - "borderColor": "#011627" + "borderColor": "#011627", + "hoverBackground": "#152C3B", + "LightEditBackground": "#152C3B" }, "TabbedPane": { "background": "#011627", - "contentAreaColor": "#084d81", + "contentAreaColor": "#152C3B", "contentBorderInsets": "3,1,1,1", - "darkShadow": "#122d42", - "disabledForeground": "#697098", - "disabledUnderlineColor": "#697098", - "focus": "#13344f", - "focusColor": "#13344f", + "darkShadow": "#2a373e", + "disabledForeground": "#2e3c42", + "disabledUnderlineColor": "#2e3c42", + "focus": "#152C3B", + "focusColor": "#152C3B", "fontSizeOffset": 0, - "foreground": "#d6deeb", - "highlight": "#122d42", - "hoverColor": "#084d81", + "foreground": "#b0bec5", + "highlight": "#2a373e", + "hoverColor": "#152C3B", "labelShift": 0, "selectedForeground": "#ffffff", "selectedLabelShift": 0, @@ -641,266 +680,320 @@ "tabSelectionHeight": 2, "underlineColor": "#7e57c2" }, - "TabbedPane.mt.tab.background": "#010e1a", + "TabbedPane.mt.tab.background": "#001424", "Table": { + "alternativeRowBackground": "#001424", "background": "#011627", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#2e3c42", "dropLineColor": "#7e57c2", "dropLineShortColor": "#7e57c2", - "focusCellBackground": "#13344f", + "focusCellBackground": "#152C3B", "focusCellForeground": "#ffffff", - "foreground": "#d6deeb", + "foreground": "#b0bec5", "gridColor": "#011627", - "highlightOuter": "#13344f", + "highlightOuter": "#152C3B", + "hoverBackground": "#152C3B70", + "hoverInactiveBackground": "#152C3B", "lightSelectionForeground": "#ffffff", - "lightSelectionInactiveForeground": "#5f7e97", - "lightSelectionInactiveBackground": "#0b2942", - "selectionBackground": "#13344f", + "lightSelectionInactiveForeground": "#607d8b", + "lightSelectionInactiveBackground": "#011627", + "selectionBackground": "#152C3B", "selectionForeground": "#ffffff", - "selectionInactiveBackground": "#13344f", + "selectionInactiveBackground": "#152C3B", "selectionInactiveForeground": "#ffffff", - "sortIconColor": "#d6deeb", - "stripeColor": "#010e1a" + "sortIconColor": "#b0bec5", + "stripeColor": "#001424" }, "TableHeader": { "background": "#011627", "borderColor": "#011627", - "bottomSeparatorColor": "#0b2942", + "bottomSeparatorColor": "#011627", "cellBorder": "4,0,4,0", - "disabledForeground": "#697098", - "foreground": "#d6deeb", - "focusCellBackground": "#13344f", + "disabledForeground": "#2e3c42", + "foreground": "#b0bec5", + "focusCellBackground": "#152C3B", "focusCellForeground": "#ffffff", "height": 25, - "separatorColor": "#0b2942" + "separatorColor": "#011627" }, - "text": "#5f7e97", - "textInactiveText": "#5f7e97", - "textText": "#5f7e97", + "text": "#607d8b", + "textInactiveText": "#607d8b", + "textText": "#607d8b", "TextArea": { - "background": "#010e1a", + "background": "#001424", "caretForeground": "#7e57c2", - "foreground": "#d6deeb", - "inactiveForeground": "#697098", - "selectionBackground": "#13344f", + "foreground": "#b0bec5", + "inactiveForeground": "#2e3c42", + "selectionBackground": "#152C3B", "selectionForeground": "#ffffff" }, "TextField": { - "background": "#010e1a", + "background": "#001424", "caretForeground": "#7e57c2", - "foreground": "#d6deeb", - "inactiveForeground": "#697098", - "selectionBackground": "#13344f", + "foreground": "#b0bec5", + "inactiveForeground": "#2e3c42", + "selectionBackground": "#152C3B", "selectionForeground": "#ffffff" }, "TextPane": { - "background": "#010e1a", + "background": "#001424", "caretForeground": "#7e57c2", - "foreground": "#d6deeb", - "inactiveForeground": "#697098", - "selectionBackground": "#13344f", + "foreground": "#b0bec5", + "inactiveForeground": "#2e3c42", + "selectionBackground": "#152C3B", "selectionForeground": "#ffffff" }, "TitlePane": { - "background": "#010e1a", - "Button.hoverBackground": "#084d81", + "background": "#001424", + "Button.hoverBackground": "#152C3B", "inactiveBackground": "#011627", - "infoForeground": "#5f7e97", - "inactiveInfoForeground": "#5f7e97" + "infoForeground": "#607d8b", + "inactiveInfoForeground": "#607d8b" }, - "TitledBorder.titleColor": "#d6deeb", + "TitledBorder.titleColor": "#b0bec5", "ToggleButton": { - "borderColor": "#0b253a", - "buttonColor": "#d6deeb", - "disabledText": "#697098", - "foreground": "#d6deeb", + "borderColor": "#2e3c43", + "buttonColor": "#b0bec5", + "disabledText": "#2e3c42", + "foreground": "#b0bec5", "offForeground": "#011627", "offBackground": "#011627", "onBackground": "#7e57c2", "onForeground": "#7e57c2" }, "ToolBar": { - "background": "#010e1a", - "borderHandleColor": "#5f7e97", - "floatingForeground": "#5f7e97", - "foreground": "#d6deeb" + "background": "#001424", + "borderHandleColor": "#607d8b", + "floatingForeground": "#607d8b", + "foreground": "#b0bec5" }, "ToolTip": { "Actions.background": "#011627", - "Actions.infoForeground": "#5f7e97", - "background": "#011627", - "borderColor": "#084d81", - "foreground": "#d6deeb", - "infoForeground": "#5f7e97", - "separatorColor": "#122d42", - "shortcutForeground": "#5f7e97" + "Actions.infoForeground": "#607d8b", + "background": "#152C3B", + "borderColor": "#2a373e", + "foreground": "#b0bec5", + "infoForeground": "#607d8b", + "separatorColor": "#2a373e", + "shortcutForeground": "#607d8b" }, "ToolWindow": { "Button": { - "hoverBackground": "#13344f", + "hoverBackground": "#152C3B", "selectedForeground": "#ffffff", - "selectedBackground": "#010e1a" + "selectedBackground": "#001424" }, "Header": { "background": "#011627", - "borderColor": "#0b2942", + "borderColor": "#011627", "inactiveBackground": "#011627" }, "HeaderCloseButton": { "background": "#011627" }, "HeaderTab": { - "hoverBackground": "#084d81", - "hoverInactiveBackground": "#0b2942", + "borderColor": "#152C3B", + "hoverBackground": "#152C3B", + "hoverInactiveBackground": "#152C3B", "inactiveUnderlineColor": "#7e57c2", - "selectedBackground": "#010e1a", - "selectedInactiveBackground": "#010e1a", + "selectedBackground": "#001424", + "selectedInactiveBackground": "#001424", "underlineColor": "#7e57c2", - "underlinedTabBackground": "#084d81", - "underlinedTabInactiveBackground": "#0b2942" + "underlinedTabBackground": "#152C3B", + "underlinedTabInactiveBackground": "#011627", + "underlinedTabForeground": "#ffffff", + "underlinedTabInactiveForeground": "#b0bec5" } }, "Tree": { - "background": "#010e1a", - "foreground": "#5f7e97", - "hash": "#122d42", + "background": "#001424", + "foreground": "#607d8b", + "hash": "#2a373e", + "hoverBackground": "#152C3B70", + "hoverInactiveBackground": "#152C3B", "modifiedItemForeground": "#7e57c2", "rowHeight": 28, - "selectionBackground": "#13344f50", + "selectionBackground": "#152C3B70", "selectionForeground": "#ffffff", "selectionInactiveForeground": "#ffffff", - "selectionInactiveBackground": "#13344f50", - "textBackground": "#010e1a" + "selectionInactiveBackground": "#152C3B70", + "textBackground": "#001424" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { - "Activity.borderColor": "#122d42", - "ColorPicker.background": "#011627", - "ColorPicker.foreground": "#d6deeb", - "Component.borderColor": "#122d42", - "Component.background": "#011627", - "Component.foreground": "#d6deeb", - "Connector.borderColor": "#122d42", - "Connector.hoverBorderColor": "#084d81", - "Canvas.background": "#010e1a", - "highStroke.foreground": "#d6deeb", - "Label.foreground": "#5f7e97", - "List.selectionBackground": "#13344f50", - "Panel.borderColor": "#122d42", - "Panel.background": "#011627", - "percent.foreground": "#d6deeb", - "Placeholder.background": "#011627", - "Placeholder.borderColor": "#122d42", - "Placeholder.foreground": "#d6deeb", - "Placeholder.selectedForeground": "#ffffff", + "UIDesigner": { + "Activity.borderColor": "#2a373e", + "Canvas.background": "#001424", + "ColorPicker": { + "background": "#011627", + "foreground": "#b0bec5" + }, + "Component": { + "borderColor": "#2a373e", + "background": "#011627", + "foreground": "#b0bec5", + "hoverBorderColor": "#152C3B" + }, + "Connector": { + "borderColor": "#2a373e", + "hoverBorderColor": "#152C3B" + }, + "Canvas.background": "#001424", + "highStroke.foreground": "#b0bec5", + "Label.foreground": "#607d8b", + "List.selectionBackground": "#152C3B70", + "motion": { + "borderColor": "#2a373e", + "Component.foreground": "#b0bec5", + "ConstraintSetText.foreground": "#607d8b", + "ConstraintSet.background": "#011627", + "CSPanel.SelectedFocusBackground": "#152C3B", + "CSPanel.SelectedBackground": "#152C3B70", + "cs_FocusText.infoForeground": "#607d8b", + "CursorTextColor.foreground": "#b0bec5", + "HoverColor.disabledBackground": "#2e3c42", + "motionGraph.background": "#011627", + "Notification.background": "#152C3B", + "ourAvg.background": "#011627", + "ourCS.background": "#011627", + "ourCS_Border.borderColor": "#2a373e", + "ourCS_TextColor.foreground": "#607d8b", + "ourCS_SelectedFocusBackground.selectionForeground": "#ffffff", + "ourCS_SelectedBackground.selectionInactiveBackground": "#152C3B", + "ourCS_SelectedBorder.pressedBorderColor": "#152C3B", + "ourML_BarColor.separatorColor": "#2a373e", + "PrimaryPanel.background": "#001424", + "SecondaryPanel.background": "#011627", + "SecondaryPanel.header.foreground": "#607d8b", + "SecondaryPanel.header.background": "#001424", + "timeLine.disabledBorderColor": "#2a373e" + }, + "Panel": { + "borderColor": "#2a373e", + "background": "#011627" + }, + "percent.foreground": "#b0bec5", + "Placeholder": { + "background": "#011627", + "borderColor": "#2a373e", + "foreground": "#b0bec5", + "selectedForeground": "#ffffff" + }, "Preview.background": "#011627", - "stroke.acceleratorForeground": "#5f7e97" + "stroke.acceleratorForeground": "#607d8b" }, "ValidationTooltip": { - "errorBackground": "#01111d", - "errorBorderColor": "#01111d", - "warningBackground": "#01111d", - "warningBorderColor": "#01111d" + "errorBackground": "#152C3B", + "errorBorderColor": "#152C3B", + "warningBackground": "#152C3B", + "warningBorderColor": "#152C3B" }, "VersionControl": { "FileHistory.Commit": { "selectedBranchBackground": "#011627" }, "GitCommits": { - "graphColor": "#084d81" + "graphColor": "#152C3B" }, "GitLog": { "localBranchIconColor": "#7e57c2", - "otherIconColor": "#5f7e97", - "remoteBranchIconColor": "#d6deeb", - "tagIconColor": "#5f7e97" + "otherIconColor": "#607d8b", + "remoteBranchIconColor": "#b0bec5", + "tagIconColor": "#607d8b" }, "HgLog": { "branchIconColor": "#7e57c2", "bookmarkIconColor": "#ffffff", - "closedBranchIconColor": "#697098", - "localTagIconColor": "#5f7e97", - "mqTagIconColor": "#5f7e97", - "tagIconColor": "#5f7e97", - "tipIconColor": "#5f7e97" + "closedBranchIconColor": "#2e3c42", + "localTagIconColor": "#607d8b", + "mqTagIconColor": "#607d8b", + "tagIconColor": "#607d8b", + "tipIconColor": "#607d8b" }, "Log": { - "Commit.unmatchedForeground": "#5f7e97", - "Commit.currentBranchBackground": "#0b2942" + "Commit.unmatchedForeground": "#607d8b", + "Commit.currentBranchBackground": "#011627", + "Commit.hoveredBackground": "#152C3B70" }, "RefLabel": { "foreground": "#ffffff", - "backgroundBase": "#084d81" + "backgroundBase": "#152C3B" } }, "Viewport": { - "background": "#010e1a", - "foreground": "#d6deeb" + "background": "#001424", + "foreground": "#b0bec5" }, "WelcomeScreen": { + "AssociatedComponent.background": "#011627", "background": "#011627", "borderColor": "#011627", - "captionBackground": "#010e1a", - "captionForeground": "#d6deeb", - "footerBackground": "#010e1a", - "footerForeground": "#d6deeb", + "captionBackground": "#001424", + "captionForeground": "#b0bec5", + "Details.background": "#011627", + "footerBackground": "#001424", + "footerForeground": "#b0bec5", "headerBackground": "#011627", - "headerForeground": "#d6deeb", - "separatorColor": "#122d42", + "headerForeground": "#b0bec5", + "List.background": "#001424", + "separatorColor": "#2a373e", + "SidePanel.background": "#011627", "Projects": { - "background": "#0b2942", - "selectionBackground": "#5f7e97", - "selectionInactiveBackground": "#0b2942" + "actions.background": "#001424", + "actions.selectionBackground": "#152C3B", + "background": "#011627", + "selectionBackground": "#152C3B", + "selectionInactiveBackground": "#011627" } }, - "window": "#010e1a", - "windowBorder": "#122d42", - "windowText": "#5f7e97", - "Window.border": "#122d42" + "window": "#001424", + "windowBorder": "#2a373e", + "windowText": "#607d8b", + "Window.border": "#2a373e" }, "icons": { "ColorPalette": { - "#43494A": "#010e1a", - "#6B6B6B": "#5f7e97", + "#43494A": "#001424", + "#6B6B6B": "#607d8b", "#A7A7A7": "#011627", "#3D6185": "#7e57c2", "#466D94": "#7e57c2", "#3C3F41": "#011627", - "#545556": "#697098", - "#606060": "#697098", - "#9AA7B0": "#d6deeb", + "#545556": "#2e3c42", + "#606060": "#2e3c42", + "#9AA7B0": "#b0bec5", "#675133": "#7e57c2", "Actions.Blue": "#82AAFF", "Actions.Green": "#ecc48d", - "Actions.Grey": "#5f7e97", + "Actions.Grey": "#607d8b", "Actions.GreyInline": "#637777", - "Actions.GreyInline.Dark": "#d6deeb", + "Actions.GreyInline.Dark": "#b0bec5", "Actions.Red": "#7fdbca", "Actions.Yellow": "#FAD430", - "Checkbox.Background.Default": "#010e1a", - "Checkbox.Background.Default.Dark": "#010e1a", - "Checkbox.Background.Disabled": "#0e293f", - "Checkbox.Background.Disabled.Dark": "#0e293f", - "Checkbox.Border.Default": "#122d42", - "Checkbox.Border.Default.Dark": "#122d42", - "Checkbox.Border.Disabled": "#697098", - "Checkbox.Border.Disabled.Dark": "#697098", + "Checkbox.Background.Default": "#001424", + "Checkbox.Background.Default.Dark": "#001424", + "Checkbox.Background.Disabled": "#0B253A", + "Checkbox.Background.Disabled.Dark": "#0B253A", + "Checkbox.Border.Default": "#2a373e", + "Checkbox.Border.Default.Dark": "#2a373e", + "Checkbox.Border.Disabled": "#2e3c42", + "Checkbox.Border.Disabled.Dark": "#2e3c42", "Checkbox.Focus.Thin.Default": "#7e57c2", "Checkbox.Focus.Thin.Default.Dark": "#7e57c2", "Checkbox.Focus.Wide": "#7e57c2", "Checkbox.Focus.Wide.Dark": "#7e57c2", - "Checkbox.Foreground.Disabled": "#697098", - "Checkbox.Foreground.Disabled.Dark": "#697098", + "Checkbox.Foreground.Disabled": "#2e3c42", + "Checkbox.Foreground.Disabled.Dark": "#2e3c42", "Checkbox.Background.Selected": "#7e57c2", "Checkbox.Background.Selected.Dark": "#011627", "Checkbox.Border.Selected": "#7e57c2", "Checkbox.Border.Selected.Dark": "#7e57c2", "Checkbox.Foreground.Selected": "#7e57c2", "Checkbox.Foreground.Selected.Dark": "#7e57c2", - "Checkbox.Focus.Thin.Selected": "#d6deeb", - "Checkbox.Focus.Thin.Selected.Dark": "#d6deeb", + "Checkbox.Focus.Thin.Selected": "#b0bec5", + "Checkbox.Focus.Thin.Selected.Dark": "#b0bec5", "Objects.Grey": "#637777", "Objects.Blue": "#82AAFF", "Objects.RedStatus": "#7fdbca", @@ -909,7 +1002,7 @@ "Objects.Yellow": "#FAD430", "Objects.Green": "#ecc48d", "Objects.Purple": "#c792ea", - "Objects.BlackText": "#d6deeb", + "Objects.BlackText": "#b0bec5", "Objects.YellowDark": "#f78c6c", "Objects.GreenAndroid": "#ecc48d" } 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 1412b1ce..36e60be7 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 @@ -3,176 +3,196 @@ "dark": true, "author": "Mallowigi", "editorScheme": "/colors/Night Owl.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/nightowl.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { - "acceleratorSelectionForeground": "#5f7e97", + "acceleratorSelectionForeground": "#607d8b", "background": "#011627", - "borderColor": "#122d42", - "disabledBackground": "#0e293f", - "disabledForeground": "#697098", - "disabledText": "#697098", - "focusColor": "#084d81", + "borderColor": "#2a373e", + "disabledBackground": "#0B253A", + "disabledForeground": "#2e3c42", + "disabledText": "#2e3c42", + "focusColor": "#152C3B", "focusedBorderColor": "#7e57c2", - "foreground": "#d6deeb", - "inactiveBackground": "#0e293f", - "inactiveForeground": "#5f7e97", - "infoForeground": "#5f7e97", - "selectionBackground": "#5f7e97", - "selectionBackgroundInactive": "#0b2942", + "foreground": "#b0bec5", + "inactiveBackground": "#0B253A", + "inactiveForeground": "#607d8b", + "infoForeground": "#607d8b", + "selectionBackground": "#152C3B", + "selectionBackgroundInactive": "#011627", "selectionForeground": "#ffffff", - "selectionInactiveBackground": "#0b2942", - "separatorColor": "#122d42" + "selectionInactiveBackground": "#011627", + "separatorColor": "#2a373e" }, "activeCaption": "#011627", "ActionButton": { "hoverBackground": "#7e57c250", "hoverBorderColor": "#7e57c250", - "hoverSeparatorColor": "#0b253a", + "hoverSeparatorColor": "#2e3c43", "focusedBorderColor": "#7e57c250", "pressedBackground": "#7e57c250", "pressedBorderColor": "#7e57c250" }, "Autocomplete": { - "selectionBackground": "#5f7e97" + "selectionBackground": "#152C3B" }, "Borders.ContrastBorderColor": "#011627", - "Borders.color": "#122d42", + "Borders.color": "#2a373e", "Button": { "arc": 0, "background": "#011627", "default": { - "endBackground": "#13344f", - "endBorderColor": "#13344f", + "endBackground": "#152C3B", + "endBorderColor": "#152C3B", "foreground": "#ffffff", "focusColor": "#7e57c2", "focusedBorderColor": "#7e57c2", - "shadowColor": "#13344f", - "startBackground": "#13344f", - "startBorderColor": "#13344f" + "shadowColor": "#152C3B", + "startBackground": "#152C3B", + "startBorderColor": "#152C3B" }, - "disabledBorderColor": "#0b253a", - "disabledText": "#697098", - "endBackground": "#0b253a", - "endBorderColor": "#0b253a", - "focus": "#084d81", + "disabledBorderColor": "#2e3c43", + "disabledText": "#2e3c42", + "endBackground": "#2e3c43", + "endBorderColor": "#2e3c43", + "focus": "#152C3B", "focusedBorderColor": "#7e57c2", - "foreground": "#5f7e97", + "foreground": "#607d8b", "highlight": "#ffffff", - "mt.background": "#0b253a", - "mt.foreground": "#5f7e97", + "mt.background": "#2e3c43", + "mt.foreground": "#607d8b", "mt.selectedForeground": "#ffffff", - "mt.selection.color1": "#13344f", - "mt.selection.color2": "#13344f", - "startBackground": "#0b253a", - "startBorderColor": "#0b253a", - "shadowColor": "#0b253a", + "mt.selection.color1": "#152C3B", + "mt.selection.color2": "#152C3B", + "startBackground": "#2e3c43", + "startBorderColor": "#2e3c43", + "shadowColor": "#2e3c43", "shadowWidth": 0 }, "Canvas": { - "Tooltip.borderColor": "#122d42", - "Tooltip.background": "#01111d" + "Tooltip.borderColor": "#2a373e", + "Tooltip.background": "#152C3B" + }, + "Content": { + "background": "#001424", + "selectionBackground": "#152C3B" }, - "Content.background": "#010e1a", "CheckBox": { "background": "#011627", - "disabledText": "#697098", - "foreground": "#d6deeb", + "disabledText": "#2e3c42", + "foreground": "#b0bec5", "select": "#7e57c2" }, "CheckBoxMenuItem": { - "acceleratorForeground": "#5f7e97", - "acceleratorSelectionForeground": "#5f7e97", + "acceleratorForeground": "#607d8b", + "acceleratorSelectionForeground": "#607d8b", "background": "#011627", "disabledBackground": "#011627", - "disabledForeground": "#697098", - "foreground": "#d6deeb", - "selectionBackground": "#5f7e97", + "disabledForeground": "#2e3c42", + "foreground": "#b0bec5", + "selectionBackground": "#152C3B", "selectionForeground": "#ffffff" }, + "CodeWithMe": { + "Avatar.foreground": "#b0bec5", + "AccessEnabled": { + "accessDot": "#7e57c2", + "dropdownBorder": "#011627", + "pillBackground": "$second" + } + }, "ColorChooser": { "background": "#011627", - "foreground": "#d6deeb", - "swatchesDefaultRecentColor": "#d6deeb" + "foreground": "#b0bec5", + "swatchesDefaultRecentColor": "#b0bec5" }, - "ComboBoxButton.background": "#0b253a", + "ComboBoxButton.background": "#2e3c43", "ComboBox": { "ArrowButton": { - "background": "#0b253a", - "disabledIconColor": "#697098", - "iconColor": "#d6deeb", + "background": "#2e3c43", + "disabledIconColor": "#2e3c42", + "iconColor": "#b0bec5", "nonEditableBackground": "#011627" }, "background": "#011627", - "buttonBackground": "#0b253a", - "disabledForeground": "#697098", - "foreground": "#d6deeb", + "buttonBackground": "#2e3c43", + "darcula.hoveredArrowButtonForeground": "#7e57c2", + "disabledForeground": "#2e3c42", + "foreground": "#b0bec5", "modifiedItemForeground": "#7e57c2", - "nonEditableBackground": "#0b2942", + "nonEditableBackground": "#011627", "padding": "5,5,5,5", - "selectionBackground": "#13344f", + "selectionBackground": "#152C3B", "selectionForeground": "#ffffff" }, - "ComboPopup.border": "#122d42", + "ComboPopup.border": "#2a373e", "CompletionPopup": { - "background": "#0b2942", - "foreground": "#d6deeb", - "infoForeground": "#5f7e97", + "background": "#011627", + "foreground": "#b0bec5", + "infoForeground": "#607d8b", "matchForeground": "#7e57c2", "matchSelectionForeground": "#7e57c2", "nonFocusedState": "false", "selectedGrayedForeground": "#ffffff", "selectionGrayForeground": "#ffffff", - "selectionInactiveInfoForeground": "#5f7e97", - "selectionInactiveBackground": "#5f7e9750", - "selectionBackground": "#5f7e9780", + "selectionInactiveInfoForeground": "#607d8b", + "selectionInactiveBackground": "#152C3B50", + "selectionBackground": "#152C3B80", "selectionForeground": "#ffffff", "selectionInfoForeground": "#ffffff" }, "Component": { "arc": 4, - "borderColor": "#084d81", - "disabledBorderColor": "#0b253a", + "borderColor": "#152C3B", + "disabledBorderColor": "#2e3c43", "focusColor": "#7e57c2", "focusedBorderColor": "#7e57c2", "hoverIconColor": "#7e57c2", - "infoForeground": "#5f7e97", - "iconColor": "#d6deeb" + "infoForeground": "#607d8b", + "iconColor": "#b0bec5" }, "control": "#011627", - "controlText": "#5f7e97", + "controlText": "#607d8b", "Counter": { "background": "#7e57c2", "foreground": "#ffffff" }, "Debugger": { "Variables": { - "collectingDataForeground": "#5f7e97", + "collectingDataForeground": "#607d8b", "changedValueForeground": "#7e57c2", "errorMessageForeground": "#7fdbca", - "evaluatingExpressionForeground": "#5f7e97", + "evaluatingExpressionForeground": "#607d8b", "exceptionForeground": "#FAD430", "modifyingValueForeground": "#7e57c2", "valueForeground": "#7e57c2" } }, "DebuggerTabs": { - "selectedBackground": "#084d81", - "underlinedTabBackground": "#084d81" + "selectedBackground": "#152C3B", + "underlinedTabBackground": "#152C3B" }, "DebuggerPopup": { - "borderColor": "#084d81" + "borderColor": "#152C3B" }, "DefaultTabs": { "background": "#011627", "borderColor": "#011627", - "hoverBackground": "#13344f", + "hoverBackground": "#152C3B", "hoverColor": "#011627", - "hoverMaskColor": "#084d81", - "inactiveColoredFileBackground": "#0b253a", - "inactiveUnderlineColor": "#697098", + "hoverMaskColor": "#152C3B", + "inactiveColoredTabBackground": "#011627", + "inactiveColoredFileBackground": "#2e3c43", + "inactiveUnderlineColor": "#7e57c2", "inactiveMaskColor": "#011627", "underlineColor": "#7e57c2", - "underlinedTabBackground": "#13344f" + "underlinedTabBackground": "#152C3B", + "underlinedTabForeground": "#ffffff" }, "Desktop.background": "#011627", "DialogWrapper.southPanelBackground": "#011627", @@ -180,48 +200,50 @@ "DragAndDrop": { "areaBackground": "#011627", "areaBorderColor": "#011627", - "areaForeground": "#d6deeb" + "areaForeground": "#b0bec5" }, "Editor": { "background": "#011627", - "foreground": "#d6deeb", - "shortcutForeground": "#5f7e97" + "foreground": "#b0bec5", + "shortcutForeground": "#607d8b" }, "EditorPane": { "background": "#011627", "caretForeground": "#7e57c2", - "foreground": "#d6deeb", + "foreground": "#b0bec5", "inactiveBackground": "#011627", - "inactiveForeground": "#697098", - "selectionBackground": "#5f7e97", + "inactiveForeground": "#2e3c42", + "selectionBackground": "#152C3B", "selectionForeground": "#ffffff" }, "EditorTabs": { - "borderColor": "#0b2942", - "hoverColor": "#084d81", - "hoverMaskColor": "#084d81", + "borderColor": "#011627", + "hoverBackground": "#152C3B", + "hoverColor": "#152C3B", + "hoverMaskColor": "#152C3B", "inactiveMaskColor": "#011627", - "inactiveColoredFileBackground": "#0116272", - "inactiveUnderlineColor": "#697098", - "selectedForeground": "#d6deeb", - "selectedBackground": "#13344f", + "inactiveColoredFileBackground": "#011627", + "inactiveUnderlineColor": "#2e3c42", + "selectedForeground": "#b0bec5", + "selectedBackground": "#152C3B", "underlineColor": "#7e57c2", - "underlinedTabBackground": "#13344f" + "underlinedTabBackground": "#152C3B", + "underlinedTabForeground": "#ffffff" }, "EditorGroupsTabs": { "background": "#011627", - "borderColor": "#0b2942", - "hoverBackground": "#084d81", - "hoverColor": "#084d81", + "borderColor": "#011627", + "hoverBackground": "#152C3B", + "hoverColor": "#152C3B", "inactiveUnderlineColor": "#7e57c2", "underlineColor": "#7e57c2", - "underlinedTabBackground": "#13344f", - "underlinedTabForeground": "#d6deeb" + "underlinedTabBackground": "#152C3B", + "underlinedTabForeground": "#b0bec5" }, "FileColor": { "Green": "#387002", "Blue": "#004BA0", - "Yellow": "#0e293f", + "Yellow": "#0B253A", "Orange": "#B53D00", "Violet": "#4D2C91", "Rose": "#A00037" @@ -236,130 +258,134 @@ "nativeSearchNotMatchedBackground": "#C792EA", "nativeFocusSearchNotMatchedBackground": "#BB80B3" }, - "Focus.color": "#122d42", + "Focus.color": "#2a373e", "FormattedTextField": { "background": "#011627", "caretForeground": "#7e57c2", - "foreground": "#d6deeb", - "inactiveBackground": "#0b253a", - "inactiveForeground": "#697098", + "foreground": "#b0bec5", + "inactiveBackground": "#2e3c43", + "inactiveForeground": "#2e3c42", "selectionForeground": "#ffffff", - "selectionBackground": "#13344f" + "selectionBackground": "#152C3B" }, + "GotItTooltip.borderColor": "#152C3B", "Group": { - "disabledSeparatorColor": "#122d42", - "separatorColor": "#122d42" + "disabledSeparatorColor": "#2a373e", + "separatorColor": "#2a373e" }, "GutterTooltip": { - "infoForeground": "#d6deeb", + "infoForeground": "#607d8b", "lineSeparatorColor": "#011627" }, "HeaderColor": { "active": "#011627", - "inactive": "#010e1a" + "inactive": "#001424" }, "HelpTooltip": { "background": "#011627", - "borderColor": "#122d42", - "foreground": "#d6deeb", - "infoForeground": "#5f7e97", - "shortcutForeground": "#5f7e97" + "borderColor": "#2a373e", + "foreground": "#b0bec5", + "infoForeground": "#607d8b", + "shortcutForeground": "#607d8b" }, "Hyperlink.linkColor": "#7e57c2", - "inactiveCaption": "#0b2942", + "inactiveCaption": "#011627", "inactiveCaptionBorder": "#011627", - "inactiveCaptionText": "#5f7e97", - "info": "#5f7e97", - "infoText": "#5f7e97", + "inactiveCaptionText": "#607d8b", + "info": "#607d8b", + "infoText": "#607d8b", "IdeStatusBar.border": "4,4,4,4", - "InformationHint.borderColor": "#122d42", + "InformationHint.borderColor": "#2a373e", "InplaceRefactoringPopup": { "borderColor": "#011627" }, "InternalFrame": { - "activeTitleForeground": "#d6deeb", + "activeTitleForeground": "#b0bec5", "background": "#011627", - "inactiveTitleForeground": "#5f7e97" + "inactiveTitleForeground": "#607d8b" }, "Label": { "background": "#011627", - "disabledForeground": "#697098", + "disabledForeground": "#2e3c42", "disabledShadow": "#011627", - "disabledText": "#697098", - "foreground": "#d6deeb", - "infoForeground": "#5f7e97", - "selectedForeground": "#ffffff" + "disabledText": "#2e3c42", + "foreground": "#b0bec5", + "infoForeground": "#607d8b", + "selectedForeground": "#ffffff", + "selectedDisabledForeground": "#b0bec5" }, "Link": { "activeForeground": "#7e57c2", "hoverForeground": "#7e57c2", "pressedForeground": "#7e57c2", - "secondaryForeground": "#5f7e97", + "secondaryForeground": "#607d8b", "visitedForeground": "#7e57c2" }, "link.foreground": "#7e57c2", "List": { - "background": "#0b2942", - "foreground": "#d6deeb", - "selectionBackground": "#5f7e9750", + "background": "#011627", + "foreground": "#b0bec5", + "hoverBackground": "#152C3B70", + "hoverInactiveBackground": "#152C3B", + "selectionBackground": "#152C3B50", "selectionForeground": "#ffffff", "selectionInactiveForeground": "#ffffff", - "selectionInactiveBackground": "#13344f50" + "selectionInactiveBackground": "#152C3B70" }, "material": { "background": "#011627", - "branchColor": "#d6deeb", - "contrast": "#010e1a", - "foreground": "#d6deeb", - "mergeCommits": "#0b253a", - "primaryColor": "#5f7e97", + "branchColor": "#b0bec5", + "contrast": "#001424", + "foreground": "#b0bec5", + "mergeCommits": "#2e3c43", + "primaryColor": "#607d8b", "selectionForeground": "#ffffff", "tab.backgroundColor": "#011627", "tab.borderColor": "#7e57c2", - "tagColor": "#5f7e97" + "tagColor": "#607d8b" }, "MemoryIndicator": { - "allocatedBackground": "#0b2942", - "usedColor": "#084d81", - "usedBackground": "#084d81" + "allocatedBackground": "#011627", + "usedColor": "#152C3B", + "usedBackground": "#152C3B" }, "Menu": { - "acceleratorForeground": "#5f7e97", + "acceleratorForeground": "#607d8b", "acceleratorSelectionForeground": "#ffffff", "background": "#011627", "border": "4,2,4,2", - "borderColor": "#0b2942", - "disabledBackground": "#0b2942", - "disabledForeground": "#697098", - "foreground": "#d6deeb", - "selectionBackground": "#5f7e97", + "borderColor": "#011627", + "disabledBackground": "#011627", + "disabledForeground": "#2e3c42", + "foreground": "#b0bec5", + "selectionBackground": "#152C3B", "selectionForeground": "#ffffff", - "separatorColor": "#122d42" + "separatorColor": "#2a373e" }, "MenuBar": { "background": "#011627", "borderColor": "#011627", "disabledBackground": "#011627", - "disabledForeground": "#697098", - "foreground": "#d6deeb", + "disabledForeground": "#2e3c42", + "foreground": "#b0bec5", "highlight": "#011627", - "selectionBackground": "#5f7e97", + "selectionBackground": "#152C3B", "selectionForeground": "#ffffff", "shadow": "#011627" }, "MenuItem": { - "acceleratorForeground": "#5f7e97", + "acceleratorForeground": "#607d8b", "acceleratorSelectionForeground": "#ffffff", "border": "4,2,4,2", "background": "#011627", "disabledBackground": "#011627", - "disabledForeground": "#697098", - "foreground": "#d6deeb", - "selectionBackground": "#5f7e97", + "disabledForeground": "#2e3c42", + "foreground": "#b0bec5", + "selectionBackground": "#152C3B", "selectionForeground": "#ffffff" }, "NavBar": { - "arrowColor": "#d6deeb", + "arrowColor": "#b0bec5", "borderColor": "#011627" }, "NewClass": { @@ -372,92 +398,93 @@ }, "NewPSD.warning": "#7e57c2", "Notification": { - "background": "#01111d", - "borderColor": "#01111d", - "errorBackground": "#01111d", - "errorBorderColor": "#01111d", - "foreground": "#d6deeb", + "background": "#152C3B", + "borderColor": "#152C3B", + "errorBackground": "#152C3B", + "errorBorderColor": "#152C3B", + "foreground": "#b0bec5", "MoreButton": { - "background": "#0b253a", - "foreground": "#d6deeb", - "innerBorderColor": "#0b253a" + "background": "#2e3c43", + "foreground": "#b0bec5", + "innerBorderColor": "#2e3c43" }, "ToolWindow": { - "errorBackground": "#01111d", - "errorBorderColor": "#01111d", - "informativeBackground": "#01111d", - "informativeBorderColor": "#01111d", - "warningBackground": "#01111d", - "warningBorderColor": "#01111d" + "errorBackground": "#152C3B", + "errorBorderColor": "#152C3B", + "informativeBackground": "#152C3B", + "informativeBorderColor": "#152C3B", + "warningBackground": "#152C3B", + "warningBorderColor": "#152C3B" } }, - "OnePixelDivider.background": "#122d42", + "OnePixelDivider.background": "#2a373e", "OptionPane": { "background": "#011627", - "foreground": "#d6deeb", - "messageForeground": "#d6deeb" + "foreground": "#b0bec5", + "messageForeground": "#b0bec5" }, "Outline": { - "color": "#0b253a", + "color": "#2e3c43", "focusedColor": "#7e57c2", - "disabledColor": "#697098" + "disabledColor": "#2e3c42" }, "Panel": { "background": "#011627", - "foreground": "#d6deeb" + "foreground": "#b0bec5" }, "ParameterInfo": { - "background": "#0b2942", - "borderColor": "#13344f", - "currentOverloadBackground": "#13344f", + "background": "#011627", + "borderColor": "#152C3B", + "currentOverloadBackground": "#152C3B", "currentParameterForeground": "#7e57c2", - "disabledForeground": "#697098", - "foreground": "#d6deeb", - "infoForeground": "#5f7e97", - "lineSeparatorColor": "#13344f" + "disabledForeground": "#2e3c42", + "foreground": "#b0bec5", + "infoForeground": "#607d8b", + "lineSeparatorColor": "#152C3B" }, "PasswordField": { "background": "#011627", "capsLockIconColor": "#7e57c2", "caretForeground": "#7e57c2", - "foreground": "#d6deeb", - "inactiveForeground": "#697098", - "selectionBackground": "#13344f", + "foreground": "#b0bec5", + "inactiveForeground": "#2e3c42", + "selectionBackground": "#152C3B", "selectionForeground": "#ffffff" }, "Plugins": { "background": "#011627", - "disabledForeground": "#697098", - "eapTagBackground": "#084d81", - "lightSelectionBackground": "#5f7e97", - "paidTagBackground": "#084d81", - "selectionBackground": "#5f7e97", + "disabledForeground": "#2e3c42", + "eapTagBackground": "#152C3B", + "hoverBackground": "#152C3B70", + "lightSelectionBackground": "#152C3B", + "paidTagBackground": "#152C3B", + "selectionBackground": "#152C3B", "tagForeground": "#7e57c2", - "tagBackground": "#084d81", - "trialTagBackground": "#084d81", + "tagBackground": "#152C3B", + "trialTagBackground": "#152C3B", "Button": { - "installBackground": "#0b253a", - "installBorderColor": "#0b253a", - "installForeground": "#d6deeb", - "installFocusedBackground": "#084d81", - "installFillForeground": "#697098", - "installFillBackground": "#0b253a", - "updateBackground": "#0b253a", - "updateBorderColor": "#0b253a", - "updateForeground": "#d6deeb" + "installBackground": "#2e3c43", + "installBorderColor": "#2e3c43", + "installForeground": "#b0bec5", + "installFocusedBackground": "#152C3B", + "installFillForeground": "#2e3c42", + "installFillBackground": "#2e3c43", + "updateBackground": "#7e57c2", + "updateBorderColor": "#2e3c43", + "updateForeground": "#b0bec5" }, "SearchField": { "background": "#011627", - "borderColor": "#122d42" + "borderColor": "#2a373e" }, "SectionHeader": { - "background": "#0b2942", - "foreground": "#d6deeb" + "background": "#011627", + "foreground": "#b0bec5" }, "Tab": { - "hoverBackground": "#13344f", + "hoverBackground": "#152C3B", "selectedForeground": "#ffffff", - "selectedBackground": "#13344f" + "selectedBackground": "#152C3B" } }, "Popup": { @@ -466,26 +493,26 @@ "borderColor": "#011627", "foreground": "#7e57c2" }, - "borderColor": "#010e1a", + "borderColor": "#001424", "inactiveBorderColor": "#011627", - "innerBorderColor": "#0b2942", + "innerBorderColor": "#011627", "Header": { "activeBackground": "#011627", - "inactiveBackground": "#010e1a" + "inactiveBackground": "#001424" }, "paintBorder": true, - "separatorForeground": "#d6deeb", - "separatorColor": "#0b2942", + "separatorForeground": "#b0bec5", + "separatorColor": "#011627", "Toolbar": { - "Floating.background": "#010e1a", - "background": "#010e1a", - "borderColor": "#010e1a" + "Floating.background": "#001424", + "background": "#001424", + "borderColor": "#001424" } }, "PopupMenu": { "background": "#011627", "border": "2,0,2,0", - "foreground": "#d6deeb", + "foreground": "#b0bec5", "translucentBackground": "#011627" }, "PopupMenuSeparator.height": 10, @@ -496,27 +523,28 @@ "indeterminateEndColor": "#7e57c2", "indeterminateStartColor": "#7e57c2", "progressColor": "#7e57c2", - "selectionBackground": "#084d81", - "trackColor": "#084d81" + "selectionBackground": "#152C3B", + "trackColor": "#152C3B" }, "PsiViewer": { "referenceHighlightColor": "#7e57c2" }, "RadioButton": { "background": "#011627", - "disabledText": "#697098", - "foreground": "#d6deeb" + "disabledText": "#2e3c42", + "foreground": "#b0bec5" }, "RadioButtonMenuItem": { - "acceleratorForeground": "#5f7e97", - "acceleratorSelectionForeground": "#5f7e97", + "acceleratorForeground": "#607d8b", + "acceleratorSelectionForeground": "#607d8b", "background": "#011627", "disabledBackground": "#011627", - "disabledForeground": "#697098", - "foreground": "#d6deeb", - "selectionBackground": "#5f7e97", + "disabledForeground": "#2e3c42", + "foreground": "#b0bec5", + "selectionBackground": "#152C3B", "selectionForeground": "#ffffff" }, + "ScreenView.borderColor": "#2a373e", "ScrollBar": { "background": "#011627", "hoverThumbBorderColor": "#7e57c2", @@ -538,7 +566,7 @@ "trackColor": "#01162730" } }, - "thumb": "#084d81", + "thumb": "#152C3B", "thumbBorderColor": "#7e57c270", "thumbColor": "#7e57c270", "trackColor": "#01162730", @@ -553,36 +581,45 @@ }, "SearchEverywhere": { "Advertiser": { - "background": "#010e1a", - "foreground": "#5f7e97" + "background": "#001424", + "foreground": "#607d8b" }, "Header": { "background": "#011627" }, "List": { - "separatorForeground": "#5f7e97", - "separatorColor": "#122d42" + "separatorForeground": "#607d8b", + "separatorColor": "#2a373e" }, "SearchField": { "background": "#011627", - "borderColor": "#010e1a", - "infoForeground": "#5f7e97" + "borderColor": "#001424", + "infoForeground": "#607d8b" }, "Tab": { "active.foreground": "#ffffff", "selectedForeground": "#ffffff", - "selectedBackground": "#084d81" + "selectedBackground": "#152C3B" } }, "SearchMatch": { "endBackground": "#7e57c2", - "startBackground": "#7e57c2" + "startBackground": "#7e57c2", + "endColor": "#7e57c2", + "startColor": "#7e57c2" + }, + "SearchField.errorBackground": "#152C3B", + "SearchOption": { + "selectedBackground": "#152C3B" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#607d8b", + "Repeated.File.Foreground": "#b0bec5" }, - "SearchField.errorBackground": "#01111d", "Separator": { - "background": "#0b2942", - "foreground": "#0b2942", - "separatorColor": "#0b2942" + "background": "#011627", + "foreground": "#011627", + "separatorColor": "#011627" }, "SidePanel": { "background": "#011627" @@ -591,46 +628,48 @@ "background": "#011627", "buttonBorderColor": "#7e57c2", "buttonColor": "#7e57c2", - "foreground": "#d6deeb", + "foreground": "#b0bec5", "majorTickLength": 6, - "tickColor": "#0b2942", - "trackColor": "#13344f", + "tickColor": "#011627", + "trackColor": "#152C3B", "trackWidth": 7, "thumb": "#7e57c2" }, "SpeedSearch": { - "background": "#084d81", - "borderColor": "#122d42", - "foreground": "#d6deeb", - "errorForeground": "#d6deeb" + "background": "#152C3B", + "borderColor": "#2a373e", + "foreground": "#b0bec5", + "errorForeground": "#b0bec5" }, "Spinner": { "background": "#011627", "border": "3,3,3,3", - "foreground": "#d6deeb", + "foreground": "#b0bec5", "selectionForeground": "#ffffff" }, "SplitPane": { "background": "#011627", "highlight": "#011627" }, - "SplitPaneDivider.draggingColor": "#0b2942", + "SplitPaneDivider.draggingColor": "#011627", "StatusBar": { - "borderColor": "#011627" + "borderColor": "#011627", + "hoverBackground": "#152C3B", + "LightEditBackground": "#152C3B" }, "TabbedPane": { "background": "#011627", - "contentAreaColor": "#084d81", + "contentAreaColor": "#152C3B", "contentBorderInsets": "3,1,1,1", - "darkShadow": "#122d42", - "disabledForeground": "#697098", - "disabledUnderlineColor": "#697098", - "focus": "#13344f", - "focusColor": "#13344f", + "darkShadow": "#2a373e", + "disabledForeground": "#2e3c42", + "disabledUnderlineColor": "#2e3c42", + "focus": "#152C3B", + "focusColor": "#152C3B", "fontSizeOffset": 0, - "foreground": "#d6deeb", - "highlight": "#122d42", - "hoverColor": "#084d81", + "foreground": "#b0bec5", + "highlight": "#2a373e", + "hoverColor": "#152C3B", "labelShift": 0, "selectedForeground": "#ffffff", "selectedLabelShift": 0, @@ -643,78 +682,82 @@ }, "TabbedPane.mt.tab.background": "#011627", "Table": { + "alternativeRowBackground": "#001424", "background": "#011627", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#2e3c42", "dropLineColor": "#7e57c2", "dropLineShortColor": "#7e57c2", - "focusCellBackground": "#13344f", + "focusCellBackground": "#152C3B", "focusCellForeground": "#ffffff", - "foreground": "#d6deeb", + "foreground": "#b0bec5", "gridColor": "#011627", - "highlightOuter": "#13344f", + "highlightOuter": "#152C3B", + "hoverBackground": "#152C3B70", + "hoverInactiveBackground": "#152C3B", "lightSelectionForeground": "#ffffff", - "lightSelectionInactiveForeground": "#5f7e97", - "lightSelectionInactiveBackground": "#0b2942", - "selectionBackground": "#13344f", + "lightSelectionInactiveForeground": "#607d8b", + "lightSelectionInactiveBackground": "#011627", + "selectionBackground": "#152C3B", "selectionForeground": "#ffffff", - "selectionInactiveBackground": "#13344f", + "selectionInactiveBackground": "#152C3B", "selectionInactiveForeground": "#ffffff", - "sortIconColor": "#d6deeb", - "stripeColor": "#010e1a" + "sortIconColor": "#b0bec5", + "stripeColor": "#001424" }, "TableHeader": { "background": "#011627", "borderColor": "#011627", - "bottomSeparatorColor": "#0b2942", + "bottomSeparatorColor": "#011627", "cellBorder": "4,0,4,0", - "disabledForeground": "#697098", - "foreground": "#d6deeb", - "focusCellBackground": "#13344f", + "disabledForeground": "#2e3c42", + "foreground": "#b0bec5", + "focusCellBackground": "#152C3B", "focusCellForeground": "#ffffff", "height": 25, - "separatorColor": "#0b2942" + "separatorColor": "#011627" }, - "text": "#5f7e97", - "textInactiveText": "#5f7e97", - "textText": "#5f7e97", + "text": "#607d8b", + "textInactiveText": "#607d8b", + "textText": "#607d8b", "TextArea": { "background": "#011627", "caretForeground": "#7e57c2", - "foreground": "#d6deeb", - "inactiveForeground": "#697098", - "selectionBackground": "#13344f", + "foreground": "#b0bec5", + "inactiveForeground": "#2e3c42", + "selectionBackground": "#152C3B", "selectionForeground": "#ffffff" }, "TextField": { "background": "#011627", "caretForeground": "#7e57c2", - "foreground": "#d6deeb", - "inactiveForeground": "#697098", - "selectionBackground": "#13344f", + "foreground": "#b0bec5", + "inactiveForeground": "#2e3c42", + "selectionBackground": "#152C3B", "selectionForeground": "#ffffff" }, "TextPane": { "background": "#011627", "caretForeground": "#7e57c2", - "foreground": "#d6deeb", - "inactiveForeground": "#697098", - "selectionBackground": "#13344f", + "foreground": "#b0bec5", + "inactiveForeground": "#2e3c42", + "selectionBackground": "#152C3B", "selectionForeground": "#ffffff" }, "TitlePane": { - "background": "#010e1a", - "Button.hoverBackground": "#084d81", + "background": "#001424", + "Button.hoverBackground": "#152C3B", "inactiveBackground": "#011627", - "infoForeground": "#5f7e97", - "inactiveInfoForeground": "#5f7e97" + "infoForeground": "#607d8b", + "inactiveInfoForeground": "#607d8b" }, - "TitledBorder.titleColor": "#d6deeb", + "TitledBorder.titleColor": "#b0bec5", "ToggleButton": { - "borderColor": "#0b253a", - "buttonColor": "#d6deeb", - "disabledText": "#697098", - "foreground": "#d6deeb", + "borderColor": "#2e3c43", + "buttonColor": "#b0bec5", + "disabledText": "#2e3c42", + "foreground": "#b0bec5", "offForeground": "#011627", "offBackground": "#011627", "onBackground": "#7e57c2", @@ -722,185 +765,235 @@ }, "ToolBar": { "background": "#011627", - "borderHandleColor": "#5f7e97", - "floatingForeground": "#5f7e97", - "foreground": "#d6deeb" + "borderHandleColor": "#607d8b", + "floatingForeground": "#607d8b", + "foreground": "#b0bec5" }, "ToolTip": { "Actions.background": "#011627", - "Actions.infoForeground": "#5f7e97", - "background": "#011627", - "borderColor": "#084d81", - "foreground": "#d6deeb", - "infoForeground": "#5f7e97", - "separatorColor": "#122d42", - "shortcutForeground": "#5f7e97" + "Actions.infoForeground": "#607d8b", + "background": "#152C3B", + "borderColor": "#2a373e", + "foreground": "#b0bec5", + "infoForeground": "#607d8b", + "separatorColor": "#2a373e", + "shortcutForeground": "#607d8b" }, "ToolWindow": { "Button": { - "hoverBackground": "#13344f", + "hoverBackground": "#152C3B", "selectedForeground": "#ffffff", - "selectedBackground": "#010e1a" + "selectedBackground": "#001424" }, "Header": { "background": "#011627", - "borderColor": "#0b2942", + "borderColor": "#011627", "inactiveBackground": "#011627" }, "HeaderCloseButton": { "background": "#011627" }, "HeaderTab": { - "hoverBackground": "#084d81", - "hoverInactiveBackground": "#0b2942", + "borderColor": "#152C3B", + "hoverBackground": "#152C3B", + "hoverInactiveBackground": "#152C3B", "inactiveUnderlineColor": "#7e57c2", - "selectedBackground": "#010e1a", - "selectedInactiveBackground": "#010e1a", + "selectedBackground": "#001424", + "selectedInactiveBackground": "#001424", "underlineColor": "#7e57c2", - "underlinedTabBackground": "#084d81", - "underlinedTabInactiveBackground": "#0b2942" + "underlinedTabBackground": "#152C3B", + "underlinedTabInactiveBackground": "#011627", + "underlinedTabForeground": "#ffffff", + "underlinedTabInactiveForeground": "#b0bec5" } }, "Tree": { "background": "#011627", - "foreground": "#5f7e97", - "hash": "#122d42", + "foreground": "#607d8b", + "hash": "#2a373e", + "hoverBackground": "#152C3B70", + "hoverInactiveBackground": "#152C3B", "modifiedItemForeground": "#7e57c2", "rowHeight": 28, - "selectionBackground": "#13344f50", + "selectionBackground": "#152C3B70", "selectionForeground": "#ffffff", "selectionInactiveForeground": "#ffffff", - "selectionInactiveBackground": "#13344f50", + "selectionInactiveBackground": "#152C3B70", "textBackground": "#011627" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { - "Activity.borderColor": "#122d42", - "ColorPicker.background": "#011627", - "ColorPicker.foreground": "#d6deeb", - "Component.borderColor": "#122d42", - "Component.background": "#011627", - "Component.foreground": "#d6deeb", - "Connector.borderColor": "#122d42", - "Connector.hoverBorderColor": "#084d81", - "Canvas.background": "#010e1a", - "highStroke.foreground": "#d6deeb", - "Label.foreground": "#5f7e97", - "List.selectionBackground": "#13344f50", - "Panel.borderColor": "#122d42", - "Panel.background": "#011627", - "percent.foreground": "#d6deeb", - "Placeholder.background": "#011627", - "Placeholder.borderColor": "#122d42", - "Placeholder.foreground": "#d6deeb", - "Placeholder.selectedForeground": "#ffffff", + "UIDesigner": { + "Activity.borderColor": "#2a373e", + "Canvas.background": "#001424", + "ColorPicker": { + "background": "#011627", + "foreground": "#b0bec5" + }, + "Component": { + "borderColor": "#2a373e", + "background": "#011627", + "foreground": "#b0bec5", + "hoverBorderColor": "#152C3B" + }, + "Connector": { + "borderColor": "#2a373e", + "hoverBorderColor": "#152C3B" + }, + "Canvas.background": "#001424", + "highStroke.foreground": "#b0bec5", + "Label.foreground": "#607d8b", + "List.selectionBackground": "#152C3B70", + "motion": { + "borderColor": "#2a373e", + "Component.foreground": "#b0bec5", + "ConstraintSetText.foreground": "#607d8b", + "ConstraintSet.background": "#011627", + "CSPanel.SelectedFocusBackground": "#152C3B", + "CSPanel.SelectedBackground": "#152C3B70", + "cs_FocusText.infoForeground": "#607d8b", + "CursorTextColor.foreground": "#b0bec5", + "HoverColor.disabledBackground": "#2e3c42", + "motionGraph.background": "#011627", + "Notification.background": "#152C3B", + "ourAvg.background": "#011627", + "ourCS.background": "#011627", + "ourCS_Border.borderColor": "#2a373e", + "ourCS_TextColor.foreground": "#607d8b", + "ourCS_SelectedFocusBackground.selectionForeground": "#ffffff", + "ourCS_SelectedBackground.selectionInactiveBackground": "#152C3B", + "ourCS_SelectedBorder.pressedBorderColor": "#152C3B", + "ourML_BarColor.separatorColor": "#2a373e", + "PrimaryPanel.background": "#001424", + "SecondaryPanel.background": "#011627", + "SecondaryPanel.header.foreground": "#607d8b", + "SecondaryPanel.header.background": "#001424", + "timeLine.disabledBorderColor": "#2a373e" + }, + "Panel": { + "borderColor": "#2a373e", + "background": "#011627" + }, + "percent.foreground": "#b0bec5", + "Placeholder": { + "background": "#011627", + "borderColor": "#2a373e", + "foreground": "#b0bec5", + "selectedForeground": "#ffffff" + }, "Preview.background": "#011627", - "stroke.acceleratorForeground": "#5f7e97" + "stroke.acceleratorForeground": "#607d8b" }, "ValidationTooltip": { - "errorBackground": "#01111d", - "errorBorderColor": "#01111d", - "warningBackground": "#01111d", - "warningBorderColor": "#01111d" + "errorBackground": "#152C3B", + "errorBorderColor": "#152C3B", + "warningBackground": "#152C3B", + "warningBorderColor": "#152C3B" }, "VersionControl": { "FileHistory.Commit": { "selectedBranchBackground": "#011627" }, "GitCommits": { - "graphColor": "#084d81" + "graphColor": "#152C3B" }, "GitLog": { "localBranchIconColor": "#7e57c2", - "otherIconColor": "#5f7e97", - "remoteBranchIconColor": "#d6deeb", - "tagIconColor": "#5f7e97" + "otherIconColor": "#607d8b", + "remoteBranchIconColor": "#b0bec5", + "tagIconColor": "#607d8b" }, "HgLog": { "branchIconColor": "#7e57c2", "bookmarkIconColor": "#ffffff", - "closedBranchIconColor": "#697098", - "localTagIconColor": "#5f7e97", - "mqTagIconColor": "#5f7e97", - "tagIconColor": "#5f7e97", - "tipIconColor": "#5f7e97" + "closedBranchIconColor": "#2e3c42", + "localTagIconColor": "#607d8b", + "mqTagIconColor": "#607d8b", + "tagIconColor": "#607d8b", + "tipIconColor": "#607d8b" }, "Log": { - "Commit.unmatchedForeground": "#5f7e97", - "Commit.currentBranchBackground": "#0b2942" + "Commit.unmatchedForeground": "#607d8b", + "Commit.currentBranchBackground": "#011627", + "Commit.hoveredBackground": "#152C3B70" }, "RefLabel": { "foreground": "#ffffff", - "backgroundBase": "#084d81" + "backgroundBase": "#152C3B" } }, "Viewport": { "background": "#011627", - "foreground": "#d6deeb" + "foreground": "#b0bec5" }, "WelcomeScreen": { + "AssociatedComponent.background": "#011627", "background": "#011627", "borderColor": "#011627", - "captionBackground": "#010e1a", - "captionForeground": "#d6deeb", - "footerBackground": "#010e1a", - "footerForeground": "#d6deeb", + "captionBackground": "#001424", + "captionForeground": "#b0bec5", + "Details.background": "#011627", + "footerBackground": "#001424", + "footerForeground": "#b0bec5", "headerBackground": "#011627", - "headerForeground": "#d6deeb", - "separatorColor": "#122d42", + "headerForeground": "#b0bec5", + "List.background": "#001424", + "separatorColor": "#2a373e", + "SidePanel.background": "#011627", "Projects": { - "background": "#0b2942", - "selectionBackground": "#5f7e97", - "selectionInactiveBackground": "#0b2942" + "actions.background": "#001424", + "actions.selectionBackground": "#152C3B", + "background": "#011627", + "selectionBackground": "#152C3B", + "selectionInactiveBackground": "#011627" } }, "window": "#011627", - "windowBorder": "#122d42", - "windowText": "#5f7e97", - "Window.border": "#122d42" + "windowBorder": "#2a373e", + "windowText": "#607d8b", + "Window.border": "#2a373e" }, "icons": { "ColorPalette": { - "#43494A": "#010e1a", - "#6B6B6B": "#5f7e97", + "#43494A": "#001424", + "#6B6B6B": "#607d8b", "#A7A7A7": "#011627", "#3D6185": "#7e57c2", "#466D94": "#7e57c2", "#3C3F41": "#011627", - "#545556": "#697098", - "#606060": "#697098", - "#9AA7B0": "#d6deeb", + "#545556": "#2e3c42", + "#606060": "#2e3c42", + "#9AA7B0": "#b0bec5", "#675133": "#7e57c2", "Actions.Blue": "#82AAFF", "Actions.Green": "#ecc48d", - "Actions.Grey": "#5f7e97", + "Actions.Grey": "#607d8b", "Actions.GreyInline": "#637777", - "Actions.GreyInline.Dark": "#d6deeb", + "Actions.GreyInline.Dark": "#b0bec5", "Actions.Red": "#7fdbca", "Actions.Yellow": "#FAD430", - "Checkbox.Background.Default": "#010e1a", - "Checkbox.Background.Default.Dark": "#010e1a", - "Checkbox.Background.Disabled": "#0e293f", - "Checkbox.Background.Disabled.Dark": "#0e293f", - "Checkbox.Border.Default": "#122d42", - "Checkbox.Border.Default.Dark": "#122d42", - "Checkbox.Border.Disabled": "#697098", - "Checkbox.Border.Disabled.Dark": "#697098", + "Checkbox.Background.Default": "#001424", + "Checkbox.Background.Default.Dark": "#001424", + "Checkbox.Background.Disabled": "#0B253A", + "Checkbox.Background.Disabled.Dark": "#0B253A", + "Checkbox.Border.Default": "#2a373e", + "Checkbox.Border.Default.Dark": "#2a373e", + "Checkbox.Border.Disabled": "#2e3c42", + "Checkbox.Border.Disabled.Dark": "#2e3c42", "Checkbox.Focus.Thin.Default": "#7e57c2", "Checkbox.Focus.Thin.Default.Dark": "#7e57c2", "Checkbox.Focus.Wide": "#7e57c2", "Checkbox.Focus.Wide.Dark": "#7e57c2", - "Checkbox.Foreground.Disabled": "#697098", - "Checkbox.Foreground.Disabled.Dark": "#697098", + "Checkbox.Foreground.Disabled": "#2e3c42", + "Checkbox.Foreground.Disabled.Dark": "#2e3c42", "Checkbox.Background.Selected": "#7e57c2", "Checkbox.Background.Selected.Dark": "#011627", "Checkbox.Border.Selected": "#7e57c2", "Checkbox.Border.Selected.Dark": "#7e57c2", "Checkbox.Foreground.Selected": "#7e57c2", "Checkbox.Foreground.Selected.Dark": "#7e57c2", - "Checkbox.Focus.Thin.Selected": "#d6deeb", - "Checkbox.Focus.Thin.Selected.Dark": "#d6deeb", + "Checkbox.Focus.Thin.Selected": "#b0bec5", + "Checkbox.Focus.Thin.Selected.Dark": "#b0bec5", "Objects.Grey": "#637777", "Objects.Blue": "#82AAFF", "Objects.RedStatus": "#7fdbca", @@ -909,7 +1002,7 @@ "Objects.Yellow": "#FAD430", "Objects.Green": "#ecc48d", "Objects.Purple": "#c792ea", - "Objects.BlackText": "#d6deeb", + "Objects.BlackText": "#b0bec5", "Objects.YellowDark": "#f78c6c", "Objects.GreenAndroid": "#ecc48d" } diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Solarized Dark Contrast.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Solarized Dark Contrast.theme.json index 218f50e6..0f3616ad 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Solarized Dark Contrast.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Solarized Dark Contrast.theme.json @@ -1,8 +1,14 @@ { - "name": "Material Solarized Dark Contrast", + "name": "Solarized Dark Contrast", "dark": true, "author": "Mallowigi", "editorScheme": "/colors/Solarized Dark.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/solardark.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { "acceleratorSelectionForeground": "#586e75", @@ -11,7 +17,7 @@ "disabledBackground": "#083F4D", "disabledForeground": "#2E5861", "disabledText": "#2E5861", - "focusColor": "#005a6f", + "focusColor": "#11353F", "focusedBorderColor": "#d33682", "foreground": "#839496", "inactiveBackground": "#083F4D", @@ -41,28 +47,28 @@ "arc": 0, "background": "#002B36", "default": { - "endBackground": "#003946", - "endBorderColor": "#003946", + "endBackground": "#11353F", + "endBorderColor": "#11353F", "foreground": "#FFFFFF", "focusColor": "#d33682", "focusedBorderColor": "#d33682", - "shadowColor": "#003946", - "startBackground": "#003946", - "startBorderColor": "#003946" + "shadowColor": "#11353F", + "startBackground": "#11353F", + "startBorderColor": "#11353F" }, "disabledBorderColor": "#073642", "disabledText": "#2E5861", "endBackground": "#073642", "endBorderColor": "#073642", - "focus": "#005a6f", + "focus": "#11353F", "focusedBorderColor": "#d33682", "foreground": "#586e75", "highlight": "#FFFFFF", "mt.background": "#073642", "mt.foreground": "#586e75", "mt.selectedForeground": "#FFFFFF", - "mt.selection.color1": "#003946", - "mt.selection.color2": "#003946", + "mt.selection.color1": "#11353F", + "mt.selection.color2": "#11353F", "startBackground": "#073642", "startBorderColor": "#073642", "shadowColor": "#073642", @@ -72,7 +78,10 @@ "Tooltip.borderColor": "#0D3640", "Tooltip.background": "#2E4C52" }, - "Content.background": "#00252E", + "Content": { + "background": "#00252E", + "selectionBackground": "#2E4C52" + }, "CheckBox": { "background": "#002B36", "disabledText": "#2E5861", @@ -89,6 +98,14 @@ "selectionBackground": "#2E4C52", "selectionForeground": "#FFFFFF" }, + "CodeWithMe": { + "Avatar.foreground": "#839496", + "AccessEnabled": { + "accessDot": "#d33682", + "dropdownBorder": "#003745", + "pillBackground": "$second" + } + }, "ColorChooser": { "background": "#002B36", "foreground": "#839496", @@ -104,12 +121,13 @@ }, "background": "#00252E", "buttonBackground": "#073642", + "darcula.hoveredArrowButtonForeground": "#d33682", "disabledForeground": "#2E5861", "foreground": "#839496", "modifiedItemForeground": "#d33682", "nonEditableBackground": "#003745", "padding": "5,5,5,5", - "selectionBackground": "#003946", + "selectionBackground": "#11353F", "selectionForeground": "#FFFFFF" }, "ComboPopup.border": "#0D3640", @@ -130,7 +148,7 @@ }, "Component": { "arc": 4, - "borderColor": "#005a6f", + "borderColor": "#11353F", "disabledBorderColor": "#073642", "focusColor": "#d33682", "focusedBorderColor": "#d33682", @@ -156,23 +174,25 @@ } }, "DebuggerTabs": { - "selectedBackground": "#005a6f", - "underlinedTabBackground": "#005a6f" + "selectedBackground": "#11353F", + "underlinedTabBackground": "#11353F" }, "DebuggerPopup": { - "borderColor": "#005a6f" + "borderColor": "#11353F" }, "DefaultTabs": { "background": "#002B36", "borderColor": "#002B36", - "hoverBackground": "#003946", + "hoverBackground": "#11353F", "hoverColor": "#00252E", - "hoverMaskColor": "#005a6f", + "hoverMaskColor": "#11353F", + "inactiveColoredTabBackground": "#002B36", "inactiveColoredFileBackground": "#073642", - "inactiveUnderlineColor": "#2E5861", + "inactiveUnderlineColor": "#d33682", "inactiveMaskColor": "#00252E", "underlineColor": "#d33682", - "underlinedTabBackground": "#003946" + "underlinedTabBackground": "#11353F", + "underlinedTabForeground": "#FFFFFF" }, "Desktop.background": "#002B36", "DialogWrapper.southPanelBackground": "#002B36", @@ -198,24 +218,26 @@ }, "EditorTabs": { "borderColor": "#003745", - "hoverColor": "#005a6f", - "hoverMaskColor": "#005a6f", + "hoverBackground": "#11353F", + "hoverColor": "#11353F", + "hoverMaskColor": "#11353F", "inactiveMaskColor": "#002B36", - "inactiveColoredFileBackground": "#002B362", + "inactiveColoredFileBackground": "#002B36", "inactiveUnderlineColor": "#2E5861", "selectedForeground": "#839496", - "selectedBackground": "#003946", + "selectedBackground": "#11353F", "underlineColor": "#d33682", - "underlinedTabBackground": "#003946" + "underlinedTabBackground": "#11353F", + "underlinedTabForeground": "#FFFFFF" }, "EditorGroupsTabs": { "background": "#002B36", "borderColor": "#003745", - "hoverBackground": "#005a6f", - "hoverColor": "#005a6f", + "hoverBackground": "#11353F", + "hoverColor": "#11353F", "inactiveUnderlineColor": "#d33682", "underlineColor": "#d33682", - "underlinedTabBackground": "#003946", + "underlinedTabBackground": "#11353F", "underlinedTabForeground": "#839496" }, "FileColor": { @@ -244,14 +266,15 @@ "inactiveBackground": "#073642", "inactiveForeground": "#2E5861", "selectionForeground": "#FFFFFF", - "selectionBackground": "#003946" + "selectionBackground": "#11353F" }, + "GotItTooltip.borderColor": "#2E4C52", "Group": { "disabledSeparatorColor": "#0D3640", "separatorColor": "#0D3640" }, "GutterTooltip": { - "infoForeground": "#839496", + "infoForeground": "#586e75", "lineSeparatorColor": "#002B36" }, "HeaderColor": { @@ -288,7 +311,8 @@ "disabledText": "#2E5861", "foreground": "#839496", "infoForeground": "#586e75", - "selectedForeground": "#FFFFFF" + "selectedForeground": "#FFFFFF", + "selectedDisabledForeground": "#839496" }, "Link": { "activeForeground": "#d33682", @@ -301,10 +325,12 @@ "List": { "background": "#003745", "foreground": "#839496", + "hoverBackground": "#2E4C5270", + "hoverInactiveBackground": "#11353F", "selectionBackground": "#2E4C5250", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#2E4C5280" + "selectionInactiveBackground": "#2E4C5270" }, "material": { "background": "#002B36", @@ -320,8 +346,8 @@ }, "MemoryIndicator": { "allocatedBackground": "#003745", - "usedColor": "#005a6f", - "usedBackground": "#005a6f" + "usedColor": "#11353F", + "usedBackground": "#11353F" }, "Menu": { "acceleratorForeground": "#586e75", @@ -408,13 +434,13 @@ }, "ParameterInfo": { "background": "#003745", - "borderColor": "#003946", - "currentOverloadBackground": "#003946", + "borderColor": "#11353F", + "currentOverloadBackground": "#11353F", "currentParameterForeground": "#d33682", "disabledForeground": "#2E5861", "foreground": "#839496", "infoForeground": "#586e75", - "lineSeparatorColor": "#003946" + "lineSeparatorColor": "#11353F" }, "PasswordField": { "background": "#00252E", @@ -422,27 +448,28 @@ "caretForeground": "#d33682", "foreground": "#839496", "inactiveForeground": "#2E5861", - "selectionBackground": "#003946", + "selectionBackground": "#11353F", "selectionForeground": "#FFFFFF" }, "Plugins": { "background": "#002B36", "disabledForeground": "#2E5861", - "eapTagBackground": "#005a6f", - "lightSelectionBackground": "#2E4C52", - "paidTagBackground": "#005a6f", + "eapTagBackground": "#11353F", + "hoverBackground": "#2E4C5270", + "lightSelectionBackground": "#11353F", + "paidTagBackground": "#11353F", "selectionBackground": "#2E4C52", "tagForeground": "#d33682", - "tagBackground": "#005a6f", - "trialTagBackground": "#005a6f", + "tagBackground": "#11353F", + "trialTagBackground": "#11353F", "Button": { "installBackground": "#073642", "installBorderColor": "#073642", "installForeground": "#839496", - "installFocusedBackground": "#005a6f", + "installFocusedBackground": "#11353F", "installFillForeground": "#2E5861", "installFillBackground": "#073642", - "updateBackground": "#073642", + "updateBackground": "#d33682", "updateBorderColor": "#073642", "updateForeground": "#839496" }, @@ -455,9 +482,9 @@ "foreground": "#839496" }, "Tab": { - "hoverBackground": "#003946", + "hoverBackground": "#11353F", "selectedForeground": "#FFFFFF", - "selectedBackground": "#003946" + "selectedBackground": "#11353F" } }, "Popup": { @@ -496,8 +523,8 @@ "indeterminateEndColor": "#d33682", "indeterminateStartColor": "#d33682", "progressColor": "#d33682", - "selectionBackground": "#005a6f", - "trackColor": "#005a6f" + "selectionBackground": "#11353F", + "trackColor": "#11353F" }, "PsiViewer": { "referenceHighlightColor": "#d33682" @@ -517,6 +544,7 @@ "selectionBackground": "#2E4C52", "selectionForeground": "#FFFFFF" }, + "ScreenView.borderColor": "#0D3640", "ScrollBar": { "background": "#002B36", "hoverThumbBorderColor": "#d33682", @@ -538,7 +566,7 @@ "trackColor": "#002B3630" } }, - "thumb": "#005a6f", + "thumb": "#11353F", "thumbBorderColor": "#d3368270", "thumbColor": "#d3368270", "trackColor": "#002B3630", @@ -571,14 +599,23 @@ "Tab": { "active.foreground": "#FFFFFF", "selectedForeground": "#FFFFFF", - "selectedBackground": "#005a6f" + "selectedBackground": "#11353F" } }, "SearchMatch": { "endBackground": "#d33682", - "startBackground": "#d33682" + "startBackground": "#d33682", + "endColor": "#d33682", + "startColor": "#d33682" }, "SearchField.errorBackground": "#2E4C52", + "SearchOption": { + "selectedBackground": "#11353F" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#586e75", + "Repeated.File.Foreground": "#839496" + }, "Separator": { "background": "#003745", "foreground": "#003745", @@ -594,12 +631,12 @@ "foreground": "#839496", "majorTickLength": 6, "tickColor": "#003745", - "trackColor": "#003946", + "trackColor": "#11353F", "trackWidth": 7, "thumb": "#d33682" }, "SpeedSearch": { - "background": "#005a6f", + "background": "#11353F", "borderColor": "#0D3640", "foreground": "#839496", "errorForeground": "#839496" @@ -616,21 +653,23 @@ }, "SplitPaneDivider.draggingColor": "#003745", "StatusBar": { - "borderColor": "#002B36" + "borderColor": "#002B36", + "hoverBackground": "#11353F", + "LightEditBackground": "#11353F" }, "TabbedPane": { "background": "#002B36", - "contentAreaColor": "#005a6f", + "contentAreaColor": "#11353F", "contentBorderInsets": "3,1,1,1", "darkShadow": "#0D3640", "disabledForeground": "#2E5861", "disabledUnderlineColor": "#2E5861", - "focus": "#003946", - "focusColor": "#003946", + "focus": "#11353F", + "focusColor": "#11353F", "fontSizeOffset": 0, "foreground": "#839496", "highlight": "#0D3640", - "hoverColor": "#005a6f", + "hoverColor": "#11353F", "labelShift": 0, "selectedForeground": "#FFFFFF", "selectedLabelShift": 0, @@ -643,22 +682,26 @@ }, "TabbedPane.mt.tab.background": "#00252E", "Table": { + "alternativeRowBackground": "#00252E", "background": "#002B36", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#2E5861", "dropLineColor": "#d33682", "dropLineShortColor": "#d33682", - "focusCellBackground": "#003946", + "focusCellBackground": "#11353F", "focusCellForeground": "#FFFFFF", "foreground": "#839496", "gridColor": "#002B36", - "highlightOuter": "#003946", + "highlightOuter": "#11353F", + "hoverBackground": "#2E4C5270", + "hoverInactiveBackground": "#11353F", "lightSelectionForeground": "#FFFFFF", "lightSelectionInactiveForeground": "#586e75", "lightSelectionInactiveBackground": "#003745", - "selectionBackground": "#003946", + "selectionBackground": "#11353F", "selectionForeground": "#FFFFFF", - "selectionInactiveBackground": "#003946", + "selectionInactiveBackground": "#11353F", "selectionInactiveForeground": "#FFFFFF", "sortIconColor": "#839496", "stripeColor": "#00252E" @@ -670,7 +713,7 @@ "cellBorder": "4,0,4,0", "disabledForeground": "#2E5861", "foreground": "#839496", - "focusCellBackground": "#003946", + "focusCellBackground": "#11353F", "focusCellForeground": "#FFFFFF", "height": 25, "separatorColor": "#003745" @@ -683,7 +726,7 @@ "caretForeground": "#d33682", "foreground": "#839496", "inactiveForeground": "#2E5861", - "selectionBackground": "#003946", + "selectionBackground": "#11353F", "selectionForeground": "#FFFFFF" }, "TextField": { @@ -691,7 +734,7 @@ "caretForeground": "#d33682", "foreground": "#839496", "inactiveForeground": "#2E5861", - "selectionBackground": "#003946", + "selectionBackground": "#11353F", "selectionForeground": "#FFFFFF" }, "TextPane": { @@ -699,12 +742,12 @@ "caretForeground": "#d33682", "foreground": "#839496", "inactiveForeground": "#2E5861", - "selectionBackground": "#003946", + "selectionBackground": "#11353F", "selectionForeground": "#FFFFFF" }, "TitlePane": { "background": "#00252E", - "Button.hoverBackground": "#005a6f", + "Button.hoverBackground": "#11353F", "inactiveBackground": "#002B36", "infoForeground": "#586e75", "inactiveInfoForeground": "#586e75" @@ -729,8 +772,8 @@ "ToolTip": { "Actions.background": "#002B36", "Actions.infoForeground": "#586e75", - "background": "#002B36", - "borderColor": "#005a6f", + "background": "#2E4C52", + "borderColor": "#0D3640", "foreground": "#839496", "infoForeground": "#586e75", "separatorColor": "#0D3640", @@ -738,7 +781,7 @@ }, "ToolWindow": { "Button": { - "hoverBackground": "#003946", + "hoverBackground": "#11353F", "selectedForeground": "#FFFFFF", "selectedBackground": "#00252E" }, @@ -751,50 +794,93 @@ "background": "#002B36" }, "HeaderTab": { - "hoverBackground": "#005a6f", - "hoverInactiveBackground": "#003745", + "borderColor": "#11353F", + "hoverBackground": "#11353F", + "hoverInactiveBackground": "#11353F", "inactiveUnderlineColor": "#d33682", "selectedBackground": "#00252E", "selectedInactiveBackground": "#00252E", "underlineColor": "#d33682", - "underlinedTabBackground": "#005a6f", - "underlinedTabInactiveBackground": "#003745" + "underlinedTabBackground": "#11353F", + "underlinedTabInactiveBackground": "#003745", + "underlinedTabForeground": "#FFFFFF", + "underlinedTabInactiveForeground": "#839496" } }, "Tree": { "background": "#00252E", "foreground": "#586e75", "hash": "#0D3640", + "hoverBackground": "#2E4C5270", + "hoverInactiveBackground": "#11353F", "modifiedItemForeground": "#d33682", "rowHeight": 28, - "selectionBackground": "#2E4C5280", + "selectionBackground": "#2E4C5270", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#2E4C5280", + "selectionInactiveBackground": "#2E4C5270", "textBackground": "#00252E" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { + "UIDesigner": { "Activity.borderColor": "#0D3640", - "ColorPicker.background": "#002B36", - "ColorPicker.foreground": "#839496", - "Component.borderColor": "#0D3640", - "Component.background": "#002B36", - "Component.foreground": "#839496", - "Connector.borderColor": "#0D3640", - "Connector.hoverBorderColor": "#005a6f", + "Canvas.background": "#00252E", + "ColorPicker": { + "background": "#002B36", + "foreground": "#839496" + }, + "Component": { + "borderColor": "#0D3640", + "background": "#002B36", + "foreground": "#839496", + "hoverBorderColor": "#11353F" + }, + "Connector": { + "borderColor": "#0D3640", + "hoverBorderColor": "#11353F" + }, "Canvas.background": "#00252E", "highStroke.foreground": "#839496", "Label.foreground": "#586e75", - "List.selectionBackground": "#2E4C5280", - "Panel.borderColor": "#0D3640", - "Panel.background": "#002B36", + "List.selectionBackground": "#2E4C5270", + "motion": { + "borderColor": "#0D3640", + "Component.foreground": "#839496", + "ConstraintSetText.foreground": "#586e75", + "ConstraintSet.background": "#003745", + "CSPanel.SelectedFocusBackground": "#2E4C52", + "CSPanel.SelectedBackground": "#2E4C5270", + "cs_FocusText.infoForeground": "#586e75", + "CursorTextColor.foreground": "#839496", + "HoverColor.disabledBackground": "#2E5861", + "motionGraph.background": "#002B36", + "Notification.background": "#2E4C52", + "ourAvg.background": "#003745", + "ourCS.background": "#003745", + "ourCS_Border.borderColor": "#0D3640", + "ourCS_TextColor.foreground": "#586e75", + "ourCS_SelectedFocusBackground.selectionForeground": "#FFFFFF", + "ourCS_SelectedBackground.selectionInactiveBackground": "#11353F", + "ourCS_SelectedBorder.pressedBorderColor": "#11353F", + "ourML_BarColor.separatorColor": "#0D3640", + "PrimaryPanel.background": "#00252E", + "SecondaryPanel.background": "#002B36", + "SecondaryPanel.header.foreground": "#586e75", + "SecondaryPanel.header.background": "#00252E", + "timeLine.disabledBorderColor": "#0D3640" + }, + "Panel": { + "borderColor": "#0D3640", + "background": "#002B36" + }, "percent.foreground": "#839496", - "Placeholder.background": "#002B36", - "Placeholder.borderColor": "#0D3640", - "Placeholder.foreground": "#839496", - "Placeholder.selectedForeground": "#FFFFFF", + "Placeholder": { + "background": "#002B36", + "borderColor": "#0D3640", + "foreground": "#839496", + "selectedForeground": "#FFFFFF" + }, "Preview.background": "#002B36", "stroke.acceleratorForeground": "#586e75" }, @@ -809,7 +895,7 @@ "selectedBranchBackground": "#002B36" }, "GitCommits": { - "graphColor": "#005a6f" + "graphColor": "#11353F" }, "GitLog": { "localBranchIconColor": "#d33682", @@ -828,11 +914,12 @@ }, "Log": { "Commit.unmatchedForeground": "#586e75", - "Commit.currentBranchBackground": "#003745" + "Commit.currentBranchBackground": "#003745", + "Commit.hoveredBackground": "#2E4C5270" }, "RefLabel": { "foreground": "#FFFFFF", - "backgroundBase": "#005a6f" + "backgroundBase": "#11353F" } }, "Viewport": { @@ -840,16 +927,22 @@ "foreground": "#839496" }, "WelcomeScreen": { + "AssociatedComponent.background": "#002B36", "background": "#002B36", "borderColor": "#002B36", "captionBackground": "#00252E", "captionForeground": "#839496", + "Details.background": "#002B36", "footerBackground": "#00252E", "footerForeground": "#839496", "headerBackground": "#002B36", "headerForeground": "#839496", + "List.background": "#00252E", "separatorColor": "#0D3640", + "SidePanel.background": "#003745", "Projects": { + "actions.background": "#00252E", + "actions.selectionBackground": "#11353F", "background": "#003745", "selectionBackground": "#2E4C52", "selectionInactiveBackground": "#003745" 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 77c18cf1..bc03015d 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 @@ -3,6 +3,12 @@ "dark": true, "author": "Mallowigi", "editorScheme": "/colors/Solarized Dark.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/solardark.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { "acceleratorSelectionForeground": "#586e75", @@ -11,7 +17,7 @@ "disabledBackground": "#083F4D", "disabledForeground": "#2E5861", "disabledText": "#2E5861", - "focusColor": "#005a6f", + "focusColor": "#11353F", "focusedBorderColor": "#d33682", "foreground": "#839496", "inactiveBackground": "#083F4D", @@ -41,28 +47,28 @@ "arc": 0, "background": "#002B36", "default": { - "endBackground": "#003946", - "endBorderColor": "#003946", + "endBackground": "#11353F", + "endBorderColor": "#11353F", "foreground": "#FFFFFF", "focusColor": "#d33682", "focusedBorderColor": "#d33682", - "shadowColor": "#003946", - "startBackground": "#003946", - "startBorderColor": "#003946" + "shadowColor": "#11353F", + "startBackground": "#11353F", + "startBorderColor": "#11353F" }, "disabledBorderColor": "#073642", "disabledText": "#2E5861", "endBackground": "#073642", "endBorderColor": "#073642", - "focus": "#005a6f", + "focus": "#11353F", "focusedBorderColor": "#d33682", "foreground": "#586e75", "highlight": "#FFFFFF", "mt.background": "#073642", "mt.foreground": "#586e75", "mt.selectedForeground": "#FFFFFF", - "mt.selection.color1": "#003946", - "mt.selection.color2": "#003946", + "mt.selection.color1": "#11353F", + "mt.selection.color2": "#11353F", "startBackground": "#073642", "startBorderColor": "#073642", "shadowColor": "#073642", @@ -72,7 +78,10 @@ "Tooltip.borderColor": "#0D3640", "Tooltip.background": "#2E4C52" }, - "Content.background": "#00252E", + "Content": { + "background": "#00252E", + "selectionBackground": "#2E4C52" + }, "CheckBox": { "background": "#002B36", "disabledText": "#2E5861", @@ -89,6 +98,14 @@ "selectionBackground": "#2E4C52", "selectionForeground": "#FFFFFF" }, + "CodeWithMe": { + "Avatar.foreground": "#839496", + "AccessEnabled": { + "accessDot": "#d33682", + "dropdownBorder": "#003745", + "pillBackground": "$second" + } + }, "ColorChooser": { "background": "#002B36", "foreground": "#839496", @@ -104,12 +121,13 @@ }, "background": "#002B36", "buttonBackground": "#073642", + "darcula.hoveredArrowButtonForeground": "#d33682", "disabledForeground": "#2E5861", "foreground": "#839496", "modifiedItemForeground": "#d33682", "nonEditableBackground": "#003745", "padding": "5,5,5,5", - "selectionBackground": "#003946", + "selectionBackground": "#11353F", "selectionForeground": "#FFFFFF" }, "ComboPopup.border": "#0D3640", @@ -130,7 +148,7 @@ }, "Component": { "arc": 4, - "borderColor": "#005a6f", + "borderColor": "#11353F", "disabledBorderColor": "#073642", "focusColor": "#d33682", "focusedBorderColor": "#d33682", @@ -156,23 +174,25 @@ } }, "DebuggerTabs": { - "selectedBackground": "#005a6f", - "underlinedTabBackground": "#005a6f" + "selectedBackground": "#11353F", + "underlinedTabBackground": "#11353F" }, "DebuggerPopup": { - "borderColor": "#005a6f" + "borderColor": "#11353F" }, "DefaultTabs": { "background": "#002B36", "borderColor": "#002B36", - "hoverBackground": "#003946", + "hoverBackground": "#11353F", "hoverColor": "#002B36", - "hoverMaskColor": "#005a6f", + "hoverMaskColor": "#11353F", + "inactiveColoredTabBackground": "#002B36", "inactiveColoredFileBackground": "#073642", - "inactiveUnderlineColor": "#2E5861", + "inactiveUnderlineColor": "#d33682", "inactiveMaskColor": "#002B36", "underlineColor": "#d33682", - "underlinedTabBackground": "#003946" + "underlinedTabBackground": "#11353F", + "underlinedTabForeground": "#FFFFFF" }, "Desktop.background": "#002B36", "DialogWrapper.southPanelBackground": "#002B36", @@ -198,24 +218,26 @@ }, "EditorTabs": { "borderColor": "#003745", - "hoverColor": "#005a6f", - "hoverMaskColor": "#005a6f", + "hoverBackground": "#11353F", + "hoverColor": "#11353F", + "hoverMaskColor": "#11353F", "inactiveMaskColor": "#002B36", - "inactiveColoredFileBackground": "#002B362", + "inactiveColoredFileBackground": "#002B36", "inactiveUnderlineColor": "#2E5861", "selectedForeground": "#839496", - "selectedBackground": "#003946", + "selectedBackground": "#11353F", "underlineColor": "#d33682", - "underlinedTabBackground": "#003946" + "underlinedTabBackground": "#11353F", + "underlinedTabForeground": "#FFFFFF" }, "EditorGroupsTabs": { "background": "#002B36", "borderColor": "#003745", - "hoverBackground": "#005a6f", - "hoverColor": "#005a6f", + "hoverBackground": "#11353F", + "hoverColor": "#11353F", "inactiveUnderlineColor": "#d33682", "underlineColor": "#d33682", - "underlinedTabBackground": "#003946", + "underlinedTabBackground": "#11353F", "underlinedTabForeground": "#839496" }, "FileColor": { @@ -244,14 +266,15 @@ "inactiveBackground": "#073642", "inactiveForeground": "#2E5861", "selectionForeground": "#FFFFFF", - "selectionBackground": "#003946" + "selectionBackground": "#11353F" }, + "GotItTooltip.borderColor": "#2E4C52", "Group": { "disabledSeparatorColor": "#0D3640", "separatorColor": "#0D3640" }, "GutterTooltip": { - "infoForeground": "#839496", + "infoForeground": "#586e75", "lineSeparatorColor": "#002B36" }, "HeaderColor": { @@ -288,7 +311,8 @@ "disabledText": "#2E5861", "foreground": "#839496", "infoForeground": "#586e75", - "selectedForeground": "#FFFFFF" + "selectedForeground": "#FFFFFF", + "selectedDisabledForeground": "#839496" }, "Link": { "activeForeground": "#d33682", @@ -301,10 +325,12 @@ "List": { "background": "#003745", "foreground": "#839496", + "hoverBackground": "#2E4C5270", + "hoverInactiveBackground": "#11353F", "selectionBackground": "#2E4C5250", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#2E4C5280" + "selectionInactiveBackground": "#2E4C5270" }, "material": { "background": "#002B36", @@ -320,8 +346,8 @@ }, "MemoryIndicator": { "allocatedBackground": "#003745", - "usedColor": "#005a6f", - "usedBackground": "#005a6f" + "usedColor": "#11353F", + "usedBackground": "#11353F" }, "Menu": { "acceleratorForeground": "#586e75", @@ -408,13 +434,13 @@ }, "ParameterInfo": { "background": "#003745", - "borderColor": "#003946", - "currentOverloadBackground": "#003946", + "borderColor": "#11353F", + "currentOverloadBackground": "#11353F", "currentParameterForeground": "#d33682", "disabledForeground": "#2E5861", "foreground": "#839496", "infoForeground": "#586e75", - "lineSeparatorColor": "#003946" + "lineSeparatorColor": "#11353F" }, "PasswordField": { "background": "#002B36", @@ -422,27 +448,28 @@ "caretForeground": "#d33682", "foreground": "#839496", "inactiveForeground": "#2E5861", - "selectionBackground": "#003946", + "selectionBackground": "#11353F", "selectionForeground": "#FFFFFF" }, "Plugins": { "background": "#002B36", "disabledForeground": "#2E5861", - "eapTagBackground": "#005a6f", - "lightSelectionBackground": "#2E4C52", - "paidTagBackground": "#005a6f", + "eapTagBackground": "#11353F", + "hoverBackground": "#2E4C5270", + "lightSelectionBackground": "#11353F", + "paidTagBackground": "#11353F", "selectionBackground": "#2E4C52", "tagForeground": "#d33682", - "tagBackground": "#005a6f", - "trialTagBackground": "#005a6f", + "tagBackground": "#11353F", + "trialTagBackground": "#11353F", "Button": { "installBackground": "#073642", "installBorderColor": "#073642", "installForeground": "#839496", - "installFocusedBackground": "#005a6f", + "installFocusedBackground": "#11353F", "installFillForeground": "#2E5861", "installFillBackground": "#073642", - "updateBackground": "#073642", + "updateBackground": "#d33682", "updateBorderColor": "#073642", "updateForeground": "#839496" }, @@ -455,9 +482,9 @@ "foreground": "#839496" }, "Tab": { - "hoverBackground": "#003946", + "hoverBackground": "#11353F", "selectedForeground": "#FFFFFF", - "selectedBackground": "#003946" + "selectedBackground": "#11353F" } }, "Popup": { @@ -496,8 +523,8 @@ "indeterminateEndColor": "#d33682", "indeterminateStartColor": "#d33682", "progressColor": "#d33682", - "selectionBackground": "#005a6f", - "trackColor": "#005a6f" + "selectionBackground": "#11353F", + "trackColor": "#11353F" }, "PsiViewer": { "referenceHighlightColor": "#d33682" @@ -517,6 +544,7 @@ "selectionBackground": "#2E4C52", "selectionForeground": "#FFFFFF" }, + "ScreenView.borderColor": "#0D3640", "ScrollBar": { "background": "#002B36", "hoverThumbBorderColor": "#d33682", @@ -538,7 +566,7 @@ "trackColor": "#002B3630" } }, - "thumb": "#005a6f", + "thumb": "#11353F", "thumbBorderColor": "#d3368270", "thumbColor": "#d3368270", "trackColor": "#002B3630", @@ -571,14 +599,23 @@ "Tab": { "active.foreground": "#FFFFFF", "selectedForeground": "#FFFFFF", - "selectedBackground": "#005a6f" + "selectedBackground": "#11353F" } }, "SearchMatch": { "endBackground": "#d33682", - "startBackground": "#d33682" + "startBackground": "#d33682", + "endColor": "#d33682", + "startColor": "#d33682" }, "SearchField.errorBackground": "#2E4C52", + "SearchOption": { + "selectedBackground": "#11353F" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#586e75", + "Repeated.File.Foreground": "#839496" + }, "Separator": { "background": "#003745", "foreground": "#003745", @@ -594,12 +631,12 @@ "foreground": "#839496", "majorTickLength": 6, "tickColor": "#003745", - "trackColor": "#003946", + "trackColor": "#11353F", "trackWidth": 7, "thumb": "#d33682" }, "SpeedSearch": { - "background": "#005a6f", + "background": "#11353F", "borderColor": "#0D3640", "foreground": "#839496", "errorForeground": "#839496" @@ -616,21 +653,23 @@ }, "SplitPaneDivider.draggingColor": "#003745", "StatusBar": { - "borderColor": "#002B36" + "borderColor": "#002B36", + "hoverBackground": "#11353F", + "LightEditBackground": "#11353F" }, "TabbedPane": { "background": "#002B36", - "contentAreaColor": "#005a6f", + "contentAreaColor": "#11353F", "contentBorderInsets": "3,1,1,1", "darkShadow": "#0D3640", "disabledForeground": "#2E5861", "disabledUnderlineColor": "#2E5861", - "focus": "#003946", - "focusColor": "#003946", + "focus": "#11353F", + "focusColor": "#11353F", "fontSizeOffset": 0, "foreground": "#839496", "highlight": "#0D3640", - "hoverColor": "#005a6f", + "hoverColor": "#11353F", "labelShift": 0, "selectedForeground": "#FFFFFF", "selectedLabelShift": 0, @@ -643,22 +682,26 @@ }, "TabbedPane.mt.tab.background": "#002B36", "Table": { + "alternativeRowBackground": "#00252E", "background": "#002B36", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#2E5861", "dropLineColor": "#d33682", "dropLineShortColor": "#d33682", - "focusCellBackground": "#003946", + "focusCellBackground": "#11353F", "focusCellForeground": "#FFFFFF", "foreground": "#839496", "gridColor": "#002B36", - "highlightOuter": "#003946", + "highlightOuter": "#11353F", + "hoverBackground": "#2E4C5270", + "hoverInactiveBackground": "#11353F", "lightSelectionForeground": "#FFFFFF", "lightSelectionInactiveForeground": "#586e75", "lightSelectionInactiveBackground": "#003745", - "selectionBackground": "#003946", + "selectionBackground": "#11353F", "selectionForeground": "#FFFFFF", - "selectionInactiveBackground": "#003946", + "selectionInactiveBackground": "#11353F", "selectionInactiveForeground": "#FFFFFF", "sortIconColor": "#839496", "stripeColor": "#00252E" @@ -670,7 +713,7 @@ "cellBorder": "4,0,4,0", "disabledForeground": "#2E5861", "foreground": "#839496", - "focusCellBackground": "#003946", + "focusCellBackground": "#11353F", "focusCellForeground": "#FFFFFF", "height": 25, "separatorColor": "#003745" @@ -683,7 +726,7 @@ "caretForeground": "#d33682", "foreground": "#839496", "inactiveForeground": "#2E5861", - "selectionBackground": "#003946", + "selectionBackground": "#11353F", "selectionForeground": "#FFFFFF" }, "TextField": { @@ -691,7 +734,7 @@ "caretForeground": "#d33682", "foreground": "#839496", "inactiveForeground": "#2E5861", - "selectionBackground": "#003946", + "selectionBackground": "#11353F", "selectionForeground": "#FFFFFF" }, "TextPane": { @@ -699,12 +742,12 @@ "caretForeground": "#d33682", "foreground": "#839496", "inactiveForeground": "#2E5861", - "selectionBackground": "#003946", + "selectionBackground": "#11353F", "selectionForeground": "#FFFFFF" }, "TitlePane": { "background": "#00252E", - "Button.hoverBackground": "#005a6f", + "Button.hoverBackground": "#11353F", "inactiveBackground": "#002B36", "infoForeground": "#586e75", "inactiveInfoForeground": "#586e75" @@ -729,8 +772,8 @@ "ToolTip": { "Actions.background": "#002B36", "Actions.infoForeground": "#586e75", - "background": "#002B36", - "borderColor": "#005a6f", + "background": "#2E4C52", + "borderColor": "#0D3640", "foreground": "#839496", "infoForeground": "#586e75", "separatorColor": "#0D3640", @@ -738,7 +781,7 @@ }, "ToolWindow": { "Button": { - "hoverBackground": "#003946", + "hoverBackground": "#11353F", "selectedForeground": "#FFFFFF", "selectedBackground": "#00252E" }, @@ -751,50 +794,93 @@ "background": "#002B36" }, "HeaderTab": { - "hoverBackground": "#005a6f", - "hoverInactiveBackground": "#003745", + "borderColor": "#11353F", + "hoverBackground": "#11353F", + "hoverInactiveBackground": "#11353F", "inactiveUnderlineColor": "#d33682", "selectedBackground": "#00252E", "selectedInactiveBackground": "#00252E", "underlineColor": "#d33682", - "underlinedTabBackground": "#005a6f", - "underlinedTabInactiveBackground": "#003745" + "underlinedTabBackground": "#11353F", + "underlinedTabInactiveBackground": "#003745", + "underlinedTabForeground": "#FFFFFF", + "underlinedTabInactiveForeground": "#839496" } }, "Tree": { "background": "#002B36", "foreground": "#586e75", "hash": "#0D3640", + "hoverBackground": "#2E4C5270", + "hoverInactiveBackground": "#11353F", "modifiedItemForeground": "#d33682", "rowHeight": 28, - "selectionBackground": "#2E4C5280", + "selectionBackground": "#2E4C5270", "selectionForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF", - "selectionInactiveBackground": "#2E4C5280", + "selectionInactiveBackground": "#2E4C5270", "textBackground": "#002B36" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { + "UIDesigner": { "Activity.borderColor": "#0D3640", - "ColorPicker.background": "#002B36", - "ColorPicker.foreground": "#839496", - "Component.borderColor": "#0D3640", - "Component.background": "#002B36", - "Component.foreground": "#839496", - "Connector.borderColor": "#0D3640", - "Connector.hoverBorderColor": "#005a6f", + "Canvas.background": "#00252E", + "ColorPicker": { + "background": "#002B36", + "foreground": "#839496" + }, + "Component": { + "borderColor": "#0D3640", + "background": "#002B36", + "foreground": "#839496", + "hoverBorderColor": "#11353F" + }, + "Connector": { + "borderColor": "#0D3640", + "hoverBorderColor": "#11353F" + }, "Canvas.background": "#00252E", "highStroke.foreground": "#839496", "Label.foreground": "#586e75", - "List.selectionBackground": "#2E4C5280", - "Panel.borderColor": "#0D3640", - "Panel.background": "#002B36", + "List.selectionBackground": "#2E4C5270", + "motion": { + "borderColor": "#0D3640", + "Component.foreground": "#839496", + "ConstraintSetText.foreground": "#586e75", + "ConstraintSet.background": "#003745", + "CSPanel.SelectedFocusBackground": "#2E4C52", + "CSPanel.SelectedBackground": "#2E4C5270", + "cs_FocusText.infoForeground": "#586e75", + "CursorTextColor.foreground": "#839496", + "HoverColor.disabledBackground": "#2E5861", + "motionGraph.background": "#002B36", + "Notification.background": "#2E4C52", + "ourAvg.background": "#003745", + "ourCS.background": "#003745", + "ourCS_Border.borderColor": "#0D3640", + "ourCS_TextColor.foreground": "#586e75", + "ourCS_SelectedFocusBackground.selectionForeground": "#FFFFFF", + "ourCS_SelectedBackground.selectionInactiveBackground": "#11353F", + "ourCS_SelectedBorder.pressedBorderColor": "#11353F", + "ourML_BarColor.separatorColor": "#0D3640", + "PrimaryPanel.background": "#00252E", + "SecondaryPanel.background": "#002B36", + "SecondaryPanel.header.foreground": "#586e75", + "SecondaryPanel.header.background": "#00252E", + "timeLine.disabledBorderColor": "#0D3640" + }, + "Panel": { + "borderColor": "#0D3640", + "background": "#002B36" + }, "percent.foreground": "#839496", - "Placeholder.background": "#002B36", - "Placeholder.borderColor": "#0D3640", - "Placeholder.foreground": "#839496", - "Placeholder.selectedForeground": "#FFFFFF", + "Placeholder": { + "background": "#002B36", + "borderColor": "#0D3640", + "foreground": "#839496", + "selectedForeground": "#FFFFFF" + }, "Preview.background": "#002B36", "stroke.acceleratorForeground": "#586e75" }, @@ -809,7 +895,7 @@ "selectedBranchBackground": "#002B36" }, "GitCommits": { - "graphColor": "#005a6f" + "graphColor": "#11353F" }, "GitLog": { "localBranchIconColor": "#d33682", @@ -828,11 +914,12 @@ }, "Log": { "Commit.unmatchedForeground": "#586e75", - "Commit.currentBranchBackground": "#003745" + "Commit.currentBranchBackground": "#003745", + "Commit.hoveredBackground": "#2E4C5270" }, "RefLabel": { "foreground": "#FFFFFF", - "backgroundBase": "#005a6f" + "backgroundBase": "#11353F" } }, "Viewport": { @@ -840,16 +927,22 @@ "foreground": "#839496" }, "WelcomeScreen": { + "AssociatedComponent.background": "#002B36", "background": "#002B36", "borderColor": "#002B36", "captionBackground": "#00252E", "captionForeground": "#839496", + "Details.background": "#002B36", "footerBackground": "#00252E", "footerForeground": "#839496", "headerBackground": "#002B36", "headerForeground": "#839496", + "List.background": "#00252E", "separatorColor": "#0D3640", + "SidePanel.background": "#003745", "Projects": { + "actions.background": "#00252E", + "actions.selectionBackground": "#11353F", "background": "#003745", "selectionBackground": "#2E4C52", "selectionInactiveBackground": "#003745" diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Solarized Light Contrast.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Solarized Light Contrast.theme.json index 19d5aae6..a6c24d12 100644 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Solarized Light Contrast.theme.json +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/Solarized Light Contrast.theme.json @@ -1,8 +1,14 @@ { - "name": "Material Solarized Light Contrast", + "name": "Solarized Light Contrast", "dark": false, "author": "Mallowigi", "editorScheme": "/colors/Solarized Light.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/solarlight.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { "acceleratorSelectionForeground": "#93a1a1", @@ -11,13 +17,13 @@ "disabledBackground": "#E3DCC9", "disabledForeground": "#C9CCC3", "disabledText": "#C9CCC3", - "focusColor": "#d1cbb8", + "focusColor": "#F6F0DE", "focusedBorderColor": "#d33682", "foreground": "#586e75", "inactiveBackground": "#E3DCC9", "inactiveForeground": "#93a1a1", "infoForeground": "#93a1a1", - "selectionBackground": "#e8dcb6", + "selectionBackground": "#93a1a1", "selectionBackgroundInactive": "#F6F0DE", "selectionForeground": "#002b36", "selectionInactiveBackground": "#F6F0DE", @@ -27,13 +33,13 @@ "ActionButton": { "hoverBackground": "#d3368250", "hoverBorderColor": "#d3368250", - "hoverSeparatorColor": "#d8d4c4", + "hoverSeparatorColor": "#FEFBF1", "focusedBorderColor": "#d3368250", "pressedBackground": "#d3368250", "pressedBorderColor": "#d3368250" }, "Autocomplete": { - "selectionBackground": "#e8dcb6" + "selectionBackground": "#93a1a1" }, "Borders.ContrastBorderColor": "#fdf6e3", "Borders.color": "#edead9", @@ -41,38 +47,41 @@ "arc": 0, "background": "#fdf6e3", "default": { - "endBackground": "#d1cbb8", - "endBorderColor": "#d1cbb8", + "endBackground": "#F6F0DE", + "endBorderColor": "#F6F0DE", "foreground": "#002b36", "focusColor": "#d33682", "focusedBorderColor": "#d33682", - "shadowColor": "#d1cbb8", - "startBackground": "#d1cbb8", - "startBorderColor": "#d1cbb8" + "shadowColor": "#F6F0DE", + "startBackground": "#F6F0DE", + "startBorderColor": "#F6F0DE" }, - "disabledBorderColor": "#d8d4c4", + "disabledBorderColor": "#FEFBF1", "disabledText": "#C9CCC3", - "endBackground": "#d8d4c4", - "endBorderColor": "#d8d4c4", - "focus": "#d1cbb8", + "endBackground": "#FEFBF1", + "endBorderColor": "#FEFBF1", + "focus": "#F6F0DE", "focusedBorderColor": "#d33682", "foreground": "#93a1a1", "highlight": "#002b36", - "mt.background": "#d8d4c4", + "mt.background": "#FEFBF1", "mt.foreground": "#93a1a1", "mt.selectedForeground": "#002b36", - "mt.selection.color1": "#d1cbb8", - "mt.selection.color2": "#d1cbb8", - "startBackground": "#d8d4c4", - "startBorderColor": "#d8d4c4", - "shadowColor": "#d8d4c4", + "mt.selection.color1": "#F6F0DE", + "mt.selection.color2": "#F6F0DE", + "startBackground": "#FEFBF1", + "startBorderColor": "#FEFBF1", + "shadowColor": "#FEFBF1", "shadowWidth": 0 }, "Canvas": { "Tooltip.borderColor": "#edead9", "Tooltip.background": "#EDE8D4" }, - "Content.background": "#eee8d5", + "Content": { + "background": "#eee8d5", + "selectionBackground": "#93a1a1" + }, "CheckBox": { "background": "#fdf6e3", "disabledText": "#C9CCC3", @@ -86,30 +95,39 @@ "disabledBackground": "#fdf6e3", "disabledForeground": "#C9CCC3", "foreground": "#586e75", - "selectionBackground": "#e8dcb6", + "selectionBackground": "#93a1a1", "selectionForeground": "#002b36" }, + "CodeWithMe": { + "Avatar.foreground": "#586e75", + "AccessEnabled": { + "accessDot": "#d33682", + "dropdownBorder": "#F6F0DE", + "pillBackground": "$second" + } + }, "ColorChooser": { "background": "#fdf6e3", "foreground": "#586e75", "swatchesDefaultRecentColor": "#586e75" }, - "ComboBoxButton.background": "#d8d4c4", + "ComboBoxButton.background": "#FEFBF1", "ComboBox": { "ArrowButton": { - "background": "#d8d4c4", + "background": "#FEFBF1", "disabledIconColor": "#C9CCC3", "iconColor": "#586e75", "nonEditableBackground": "#fdf6e3" }, "background": "#eee8d5", - "buttonBackground": "#d8d4c4", + "buttonBackground": "#FEFBF1", + "darcula.hoveredArrowButtonForeground": "#d33682", "disabledForeground": "#C9CCC3", "foreground": "#586e75", "modifiedItemForeground": "#d33682", "nonEditableBackground": "#F6F0DE", "padding": "5,5,5,5", - "selectionBackground": "#d1cbb8", + "selectionBackground": "#F6F0DE", "selectionForeground": "#002b36" }, "ComboPopup.border": "#edead9", @@ -123,15 +141,15 @@ "selectedGrayedForeground": "#002b36", "selectionGrayForeground": "#002b36", "selectionInactiveInfoForeground": "#93a1a1", - "selectionInactiveBackground": "#e8dcb650", - "selectionBackground": "#e8dcb680", + "selectionInactiveBackground": "#93a1a150", + "selectionBackground": "#93a1a180", "selectionForeground": "#002b36", "selectionInfoForeground": "#002b36" }, "Component": { "arc": 4, - "borderColor": "#d1cbb8", - "disabledBorderColor": "#d8d4c4", + "borderColor": "#F6F0DE", + "disabledBorderColor": "#FEFBF1", "focusColor": "#d33682", "focusedBorderColor": "#d33682", "hoverIconColor": "#d33682", @@ -156,23 +174,25 @@ } }, "DebuggerTabs": { - "selectedBackground": "#d1cbb8", - "underlinedTabBackground": "#d1cbb8" + "selectedBackground": "#F6F0DE", + "underlinedTabBackground": "#F6F0DE" }, "DebuggerPopup": { - "borderColor": "#d1cbb8" + "borderColor": "#F6F0DE" }, "DefaultTabs": { "background": "#fdf6e3", "borderColor": "#fdf6e3", - "hoverBackground": "#d1cbb8", + "hoverBackground": "#F6F0DE", "hoverColor": "#eee8d5", - "hoverMaskColor": "#d1cbb8", - "inactiveColoredFileBackground": "#d8d4c4", - "inactiveUnderlineColor": "#C9CCC3", + "hoverMaskColor": "#F6F0DE", + "inactiveColoredTabBackground": "#fdf6e3", + "inactiveColoredFileBackground": "#FEFBF1", + "inactiveUnderlineColor": "#d33682", "inactiveMaskColor": "#eee8d5", "underlineColor": "#d33682", - "underlinedTabBackground": "#d1cbb8" + "underlinedTabBackground": "#F6F0DE", + "underlinedTabForeground": "#002b36" }, "Desktop.background": "#fdf6e3", "DialogWrapper.southPanelBackground": "#fdf6e3", @@ -193,29 +213,31 @@ "foreground": "#586e75", "inactiveBackground": "#fdf6e3", "inactiveForeground": "#C9CCC3", - "selectionBackground": "#e8dcb6", + "selectionBackground": "#93a1a1", "selectionForeground": "#002b36" }, "EditorTabs": { "borderColor": "#F6F0DE", - "hoverColor": "#d1cbb8", - "hoverMaskColor": "#d1cbb8", + "hoverBackground": "#F6F0DE", + "hoverColor": "#F6F0DE", + "hoverMaskColor": "#F6F0DE", "inactiveMaskColor": "#fdf6e3", - "inactiveColoredFileBackground": "#fdf6e32", + "inactiveColoredFileBackground": "#fdf6e3", "inactiveUnderlineColor": "#C9CCC3", "selectedForeground": "#586e75", - "selectedBackground": "#d1cbb8", + "selectedBackground": "#F6F0DE", "underlineColor": "#d33682", - "underlinedTabBackground": "#d1cbb8" + "underlinedTabBackground": "#F6F0DE", + "underlinedTabForeground": "#002b36" }, "EditorGroupsTabs": { "background": "#fdf6e3", "borderColor": "#F6F0DE", - "hoverBackground": "#d1cbb8", - "hoverColor": "#d1cbb8", + "hoverBackground": "#F6F0DE", + "hoverColor": "#F6F0DE", "inactiveUnderlineColor": "#d33682", "underlineColor": "#d33682", - "underlinedTabBackground": "#d1cbb8", + "underlinedTabBackground": "#F6F0DE", "underlinedTabForeground": "#586e75" }, "FileColor": { @@ -241,17 +263,18 @@ "background": "#eee8d5", "caretForeground": "#d33682", "foreground": "#586e75", - "inactiveBackground": "#d8d4c4", + "inactiveBackground": "#FEFBF1", "inactiveForeground": "#C9CCC3", "selectionForeground": "#002b36", - "selectionBackground": "#d1cbb8" + "selectionBackground": "#F6F0DE" }, + "GotItTooltip.borderColor": "#EDE8D4", "Group": { "disabledSeparatorColor": "#edead9", "separatorColor": "#edead9" }, "GutterTooltip": { - "infoForeground": "#586e75", + "infoForeground": "#93a1a1", "lineSeparatorColor": "#fdf6e3" }, "HeaderColor": { @@ -288,7 +311,8 @@ "disabledText": "#C9CCC3", "foreground": "#586e75", "infoForeground": "#93a1a1", - "selectedForeground": "#002b36" + "selectedForeground": "#002b36", + "selectedDisabledForeground": "#586e75" }, "Link": { "activeForeground": "#d33682", @@ -301,17 +325,19 @@ "List": { "background": "#F6F0DE", "foreground": "#586e75", - "selectionBackground": "#e8dcb650", + "hoverBackground": "#93a1a170", + "hoverInactiveBackground": "#F6F0DE", + "selectionBackground": "#93a1a150", "selectionForeground": "#002b36", "selectionInactiveForeground": "#002b36", - "selectionInactiveBackground": "#e8dcb6b0" + "selectionInactiveBackground": "#93a1a170" }, "material": { "background": "#fdf6e3", "branchColor": "#586e75", "contrast": "#eee8d5", "foreground": "#586e75", - "mergeCommits": "#d8d4c4", + "mergeCommits": "#FEFBF1", "primaryColor": "#93a1a1", "selectionForeground": "#002b36", "tab.backgroundColor": "#fdf6e3", @@ -320,8 +346,8 @@ }, "MemoryIndicator": { "allocatedBackground": "#F6F0DE", - "usedColor": "#d1cbb8", - "usedBackground": "#d1cbb8" + "usedColor": "#F6F0DE", + "usedBackground": "#F6F0DE" }, "Menu": { "acceleratorForeground": "#93a1a1", @@ -332,7 +358,7 @@ "disabledBackground": "#F6F0DE", "disabledForeground": "#C9CCC3", "foreground": "#586e75", - "selectionBackground": "#e8dcb6", + "selectionBackground": "#93a1a1", "selectionForeground": "#002b36", "separatorColor": "#edead9" }, @@ -343,7 +369,7 @@ "disabledForeground": "#C9CCC3", "foreground": "#586e75", "highlight": "#fdf6e3", - "selectionBackground": "#e8dcb6", + "selectionBackground": "#93a1a1", "selectionForeground": "#002b36", "shadow": "#eee8d5" }, @@ -355,7 +381,7 @@ "disabledBackground": "#fdf6e3", "disabledForeground": "#C9CCC3", "foreground": "#586e75", - "selectionBackground": "#e8dcb6", + "selectionBackground": "#93a1a1", "selectionForeground": "#002b36" }, "NavBar": { @@ -378,9 +404,9 @@ "errorBorderColor": "#EDE8D4", "foreground": "#586e75", "MoreButton": { - "background": "#d8d4c4", + "background": "#FEFBF1", "foreground": "#586e75", - "innerBorderColor": "#d8d4c4" + "innerBorderColor": "#FEFBF1" }, "ToolWindow": { "errorBackground": "#EDE8D4", @@ -398,7 +424,7 @@ "messageForeground": "#586e75" }, "Outline": { - "color": "#d8d4c4", + "color": "#FEFBF1", "focusedColor": "#d33682", "disabledColor": "#C9CCC3" }, @@ -408,13 +434,13 @@ }, "ParameterInfo": { "background": "#F6F0DE", - "borderColor": "#d1cbb8", - "currentOverloadBackground": "#d1cbb8", + "borderColor": "#F6F0DE", + "currentOverloadBackground": "#F6F0DE", "currentParameterForeground": "#d33682", "disabledForeground": "#C9CCC3", "foreground": "#586e75", "infoForeground": "#93a1a1", - "lineSeparatorColor": "#d1cbb8" + "lineSeparatorColor": "#F6F0DE" }, "PasswordField": { "background": "#eee8d5", @@ -422,28 +448,29 @@ "caretForeground": "#d33682", "foreground": "#586e75", "inactiveForeground": "#C9CCC3", - "selectionBackground": "#d1cbb8", + "selectionBackground": "#F6F0DE", "selectionForeground": "#002b36" }, "Plugins": { "background": "#fdf6e3", "disabledForeground": "#C9CCC3", - "eapTagBackground": "#d1cbb8", - "lightSelectionBackground": "#e8dcb6", - "paidTagBackground": "#d1cbb8", - "selectionBackground": "#e8dcb6", + "eapTagBackground": "#F6F0DE", + "hoverBackground": "#93a1a170", + "lightSelectionBackground": "#F6F0DE", + "paidTagBackground": "#F6F0DE", + "selectionBackground": "#93a1a1", "tagForeground": "#d33682", - "tagBackground": "#d1cbb8", - "trialTagBackground": "#d1cbb8", + "tagBackground": "#F6F0DE", + "trialTagBackground": "#F6F0DE", "Button": { - "installBackground": "#d8d4c4", - "installBorderColor": "#d8d4c4", + "installBackground": "#FEFBF1", + "installBorderColor": "#FEFBF1", "installForeground": "#586e75", - "installFocusedBackground": "#d1cbb8", + "installFocusedBackground": "#F6F0DE", "installFillForeground": "#C9CCC3", - "installFillBackground": "#d8d4c4", - "updateBackground": "#d8d4c4", - "updateBorderColor": "#d8d4c4", + "installFillBackground": "#FEFBF1", + "updateBackground": "#d33682", + "updateBorderColor": "#FEFBF1", "updateForeground": "#586e75" }, "SearchField": { @@ -455,9 +482,9 @@ "foreground": "#586e75" }, "Tab": { - "hoverBackground": "#d1cbb8", + "hoverBackground": "#F6F0DE", "selectedForeground": "#002b36", - "selectedBackground": "#d1cbb8" + "selectedBackground": "#F6F0DE" } }, "Popup": { @@ -496,8 +523,8 @@ "indeterminateEndColor": "#d33682", "indeterminateStartColor": "#d33682", "progressColor": "#d33682", - "selectionBackground": "#d1cbb8", - "trackColor": "#d1cbb8" + "selectionBackground": "#F6F0DE", + "trackColor": "#F6F0DE" }, "PsiViewer": { "referenceHighlightColor": "#d33682" @@ -514,9 +541,10 @@ "disabledBackground": "#fdf6e3", "disabledForeground": "#C9CCC3", "foreground": "#586e75", - "selectionBackground": "#e8dcb6", + "selectionBackground": "#93a1a1", "selectionForeground": "#002b36" }, + "ScreenView.borderColor": "#edead9", "ScrollBar": { "background": "#fdf6e3", "hoverThumbBorderColor": "#d33682", @@ -538,7 +566,7 @@ "trackColor": "#fdf6e330" } }, - "thumb": "#d1cbb8", + "thumb": "#F6F0DE", "thumbBorderColor": "#d3368270", "thumbColor": "#d3368270", "trackColor": "#fdf6e330", @@ -571,14 +599,23 @@ "Tab": { "active.foreground": "#002b36", "selectedForeground": "#002b36", - "selectedBackground": "#d1cbb8" + "selectedBackground": "#F6F0DE" } }, "SearchMatch": { "endBackground": "#d33682", - "startBackground": "#d33682" + "startBackground": "#d33682", + "endColor": "#d33682", + "startColor": "#d33682" }, "SearchField.errorBackground": "#EDE8D4", + "SearchOption": { + "selectedBackground": "#F6F0DE" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#93a1a1", + "Repeated.File.Foreground": "#586e75" + }, "Separator": { "background": "#F6F0DE", "foreground": "#F6F0DE", @@ -594,12 +631,12 @@ "foreground": "#586e75", "majorTickLength": 6, "tickColor": "#F6F0DE", - "trackColor": "#d1cbb8", + "trackColor": "#F6F0DE", "trackWidth": 7, "thumb": "#d33682" }, "SpeedSearch": { - "background": "#d1cbb8", + "background": "#F6F0DE", "borderColor": "#edead9", "foreground": "#586e75", "errorForeground": "#586e75" @@ -616,21 +653,23 @@ }, "SplitPaneDivider.draggingColor": "#F6F0DE", "StatusBar": { - "borderColor": "#fdf6e3" + "borderColor": "#fdf6e3", + "hoverBackground": "#F6F0DE", + "LightEditBackground": "#F6F0DE" }, "TabbedPane": { "background": "#fdf6e3", - "contentAreaColor": "#d1cbb8", + "contentAreaColor": "#F6F0DE", "contentBorderInsets": "3,1,1,1", "darkShadow": "#edead9", "disabledForeground": "#C9CCC3", "disabledUnderlineColor": "#C9CCC3", - "focus": "#d1cbb8", - "focusColor": "#d1cbb8", + "focus": "#F6F0DE", + "focusColor": "#F6F0DE", "fontSizeOffset": 0, "foreground": "#586e75", "highlight": "#edead9", - "hoverColor": "#d1cbb8", + "hoverColor": "#F6F0DE", "labelShift": 0, "selectedForeground": "#002b36", "selectedLabelShift": 0, @@ -643,22 +682,26 @@ }, "TabbedPane.mt.tab.background": "#eee8d5", "Table": { + "alternativeRowBackground": "#eee8d5", "background": "#fdf6e3", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#C9CCC3", "dropLineColor": "#d33682", "dropLineShortColor": "#d33682", - "focusCellBackground": "#d1cbb8", + "focusCellBackground": "#F6F0DE", "focusCellForeground": "#002b36", "foreground": "#586e75", "gridColor": "#fdf6e3", - "highlightOuter": "#d1cbb8", + "highlightOuter": "#F6F0DE", + "hoverBackground": "#93a1a170", + "hoverInactiveBackground": "#F6F0DE", "lightSelectionForeground": "#002b36", "lightSelectionInactiveForeground": "#93a1a1", "lightSelectionInactiveBackground": "#F6F0DE", - "selectionBackground": "#d1cbb8", + "selectionBackground": "#F6F0DE", "selectionForeground": "#002b36", - "selectionInactiveBackground": "#d1cbb8", + "selectionInactiveBackground": "#F6F0DE", "selectionInactiveForeground": "#002b36", "sortIconColor": "#586e75", "stripeColor": "#eee8d5" @@ -670,7 +713,7 @@ "cellBorder": "4,0,4,0", "disabledForeground": "#C9CCC3", "foreground": "#586e75", - "focusCellBackground": "#d1cbb8", + "focusCellBackground": "#F6F0DE", "focusCellForeground": "#002b36", "height": 25, "separatorColor": "#F6F0DE" @@ -683,7 +726,7 @@ "caretForeground": "#d33682", "foreground": "#586e75", "inactiveForeground": "#C9CCC3", - "selectionBackground": "#d1cbb8", + "selectionBackground": "#F6F0DE", "selectionForeground": "#002b36" }, "TextField": { @@ -691,7 +734,7 @@ "caretForeground": "#d33682", "foreground": "#586e75", "inactiveForeground": "#C9CCC3", - "selectionBackground": "#d1cbb8", + "selectionBackground": "#F6F0DE", "selectionForeground": "#002b36" }, "TextPane": { @@ -699,19 +742,19 @@ "caretForeground": "#d33682", "foreground": "#586e75", "inactiveForeground": "#C9CCC3", - "selectionBackground": "#d1cbb8", + "selectionBackground": "#F6F0DE", "selectionForeground": "#002b36" }, "TitlePane": { "background": "#eee8d5", - "Button.hoverBackground": "#d1cbb8", + "Button.hoverBackground": "#F6F0DE", "inactiveBackground": "#fdf6e3", "infoForeground": "#93a1a1", "inactiveInfoForeground": "#93a1a1" }, "TitledBorder.titleColor": "#586e75", "ToggleButton": { - "borderColor": "#d8d4c4", + "borderColor": "#FEFBF1", "buttonColor": "#586e75", "disabledText": "#C9CCC3", "foreground": "#586e75", @@ -729,8 +772,8 @@ "ToolTip": { "Actions.background": "#fdf6e3", "Actions.infoForeground": "#93a1a1", - "background": "#fdf6e3", - "borderColor": "#d1cbb8", + "background": "#EDE8D4", + "borderColor": "#edead9", "foreground": "#586e75", "infoForeground": "#93a1a1", "separatorColor": "#edead9", @@ -738,7 +781,7 @@ }, "ToolWindow": { "Button": { - "hoverBackground": "#d1cbb8", + "hoverBackground": "#F6F0DE", "selectedForeground": "#002b36", "selectedBackground": "#eee8d5" }, @@ -751,50 +794,93 @@ "background": "#fdf6e3" }, "HeaderTab": { - "hoverBackground": "#d1cbb8", + "borderColor": "#F6F0DE", + "hoverBackground": "#F6F0DE", "hoverInactiveBackground": "#F6F0DE", "inactiveUnderlineColor": "#d33682", "selectedBackground": "#eee8d5", "selectedInactiveBackground": "#eee8d5", "underlineColor": "#d33682", - "underlinedTabBackground": "#d1cbb8", - "underlinedTabInactiveBackground": "#F6F0DE" + "underlinedTabBackground": "#F6F0DE", + "underlinedTabInactiveBackground": "#F6F0DE", + "underlinedTabForeground": "#002b36", + "underlinedTabInactiveForeground": "#586e75" } }, "Tree": { "background": "#eee8d5", "foreground": "#93a1a1", "hash": "#edead9", + "hoverBackground": "#93a1a170", + "hoverInactiveBackground": "#F6F0DE", "modifiedItemForeground": "#d33682", "rowHeight": 28, - "selectionBackground": "#e8dcb6b0", + "selectionBackground": "#93a1a170", "selectionForeground": "#002b36", "selectionInactiveForeground": "#002b36", - "selectionInactiveBackground": "#e8dcb6b0", + "selectionInactiveBackground": "#93a1a170", "textBackground": "#eee8d5" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { + "UIDesigner": { "Activity.borderColor": "#edead9", - "ColorPicker.background": "#fdf6e3", - "ColorPicker.foreground": "#586e75", - "Component.borderColor": "#edead9", - "Component.background": "#fdf6e3", - "Component.foreground": "#586e75", - "Connector.borderColor": "#edead9", - "Connector.hoverBorderColor": "#d1cbb8", + "Canvas.background": "#eee8d5", + "ColorPicker": { + "background": "#fdf6e3", + "foreground": "#586e75" + }, + "Component": { + "borderColor": "#edead9", + "background": "#fdf6e3", + "foreground": "#586e75", + "hoverBorderColor": "#F6F0DE" + }, + "Connector": { + "borderColor": "#edead9", + "hoverBorderColor": "#F6F0DE" + }, "Canvas.background": "#eee8d5", "highStroke.foreground": "#586e75", "Label.foreground": "#93a1a1", - "List.selectionBackground": "#e8dcb6b0", - "Panel.borderColor": "#edead9", - "Panel.background": "#fdf6e3", + "List.selectionBackground": "#93a1a170", + "motion": { + "borderColor": "#edead9", + "Component.foreground": "#586e75", + "ConstraintSetText.foreground": "#93a1a1", + "ConstraintSet.background": "#F6F0DE", + "CSPanel.SelectedFocusBackground": "#93a1a1", + "CSPanel.SelectedBackground": "#93a1a170", + "cs_FocusText.infoForeground": "#93a1a1", + "CursorTextColor.foreground": "#586e75", + "HoverColor.disabledBackground": "#C9CCC3", + "motionGraph.background": "#fdf6e3", + "Notification.background": "#EDE8D4", + "ourAvg.background": "#F6F0DE", + "ourCS.background": "#F6F0DE", + "ourCS_Border.borderColor": "#edead9", + "ourCS_TextColor.foreground": "#93a1a1", + "ourCS_SelectedFocusBackground.selectionForeground": "#002b36", + "ourCS_SelectedBackground.selectionInactiveBackground": "#F6F0DE", + "ourCS_SelectedBorder.pressedBorderColor": "#F6F0DE", + "ourML_BarColor.separatorColor": "#edead9", + "PrimaryPanel.background": "#eee8d5", + "SecondaryPanel.background": "#fdf6e3", + "SecondaryPanel.header.foreground": "#93a1a1", + "SecondaryPanel.header.background": "#eee8d5", + "timeLine.disabledBorderColor": "#edead9" + }, + "Panel": { + "borderColor": "#edead9", + "background": "#fdf6e3" + }, "percent.foreground": "#586e75", - "Placeholder.background": "#fdf6e3", - "Placeholder.borderColor": "#edead9", - "Placeholder.foreground": "#586e75", - "Placeholder.selectedForeground": "#002b36", + "Placeholder": { + "background": "#fdf6e3", + "borderColor": "#edead9", + "foreground": "#586e75", + "selectedForeground": "#002b36" + }, "Preview.background": "#fdf6e3", "stroke.acceleratorForeground": "#93a1a1" }, @@ -809,7 +895,7 @@ "selectedBranchBackground": "#fdf6e3" }, "GitCommits": { - "graphColor": "#d1cbb8" + "graphColor": "#F6F0DE" }, "GitLog": { "localBranchIconColor": "#d33682", @@ -828,11 +914,12 @@ }, "Log": { "Commit.unmatchedForeground": "#93a1a1", - "Commit.currentBranchBackground": "#F6F0DE" + "Commit.currentBranchBackground": "#F6F0DE", + "Commit.hoveredBackground": "#93a1a170" }, "RefLabel": { "foreground": "#002b36", - "backgroundBase": "#d1cbb8" + "backgroundBase": "#F6F0DE" } }, "Viewport": { @@ -840,18 +927,24 @@ "foreground": "#586e75" }, "WelcomeScreen": { + "AssociatedComponent.background": "#fdf6e3", "background": "#fdf6e3", "borderColor": "#fdf6e3", "captionBackground": "#eee8d5", "captionForeground": "#586e75", + "Details.background": "#fdf6e3", "footerBackground": "#eee8d5", "footerForeground": "#586e75", "headerBackground": "#fdf6e3", "headerForeground": "#586e75", + "List.background": "#eee8d5", "separatorColor": "#edead9", + "SidePanel.background": "#F6F0DE", "Projects": { + "actions.background": "#eee8d5", + "actions.selectionBackground": "#F6F0DE", "background": "#F6F0DE", - "selectionBackground": "#e8dcb6", + "selectionBackground": "#93a1a1", "selectionInactiveBackground": "#F6F0DE" } }, 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 af9f9ec6..a260b958 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 @@ -3,6 +3,12 @@ "dark": false, "author": "Mallowigi", "editorScheme": "/colors/Solarized Light.xml", + "emptyFrameBackground": { + "anchor": "center", + "image": "/walls/solarlight.svg", + "fill": "scale", + "transparency": 50 + }, "ui": { "*": { "acceleratorSelectionForeground": "#93a1a1", @@ -11,13 +17,13 @@ "disabledBackground": "#E3DCC9", "disabledForeground": "#C9CCC3", "disabledText": "#C9CCC3", - "focusColor": "#d1cbb8", + "focusColor": "#F6F0DE", "focusedBorderColor": "#d33682", "foreground": "#586e75", "inactiveBackground": "#E3DCC9", "inactiveForeground": "#93a1a1", "infoForeground": "#93a1a1", - "selectionBackground": "#e8dcb6", + "selectionBackground": "#93a1a1", "selectionBackgroundInactive": "#F6F0DE", "selectionForeground": "#002b36", "selectionInactiveBackground": "#F6F0DE", @@ -27,13 +33,13 @@ "ActionButton": { "hoverBackground": "#d3368250", "hoverBorderColor": "#d3368250", - "hoverSeparatorColor": "#d8d4c4", + "hoverSeparatorColor": "#FEFBF1", "focusedBorderColor": "#d3368250", "pressedBackground": "#d3368250", "pressedBorderColor": "#d3368250" }, "Autocomplete": { - "selectionBackground": "#e8dcb6" + "selectionBackground": "#93a1a1" }, "Borders.ContrastBorderColor": "#fdf6e3", "Borders.color": "#edead9", @@ -41,38 +47,41 @@ "arc": 0, "background": "#fdf6e3", "default": { - "endBackground": "#d1cbb8", - "endBorderColor": "#d1cbb8", + "endBackground": "#F6F0DE", + "endBorderColor": "#F6F0DE", "foreground": "#002b36", "focusColor": "#d33682", "focusedBorderColor": "#d33682", - "shadowColor": "#d1cbb8", - "startBackground": "#d1cbb8", - "startBorderColor": "#d1cbb8" + "shadowColor": "#F6F0DE", + "startBackground": "#F6F0DE", + "startBorderColor": "#F6F0DE" }, - "disabledBorderColor": "#d8d4c4", + "disabledBorderColor": "#FEFBF1", "disabledText": "#C9CCC3", - "endBackground": "#d8d4c4", - "endBorderColor": "#d8d4c4", - "focus": "#d1cbb8", + "endBackground": "#FEFBF1", + "endBorderColor": "#FEFBF1", + "focus": "#F6F0DE", "focusedBorderColor": "#d33682", "foreground": "#93a1a1", "highlight": "#002b36", - "mt.background": "#d8d4c4", + "mt.background": "#FEFBF1", "mt.foreground": "#93a1a1", "mt.selectedForeground": "#002b36", - "mt.selection.color1": "#d1cbb8", - "mt.selection.color2": "#d1cbb8", - "startBackground": "#d8d4c4", - "startBorderColor": "#d8d4c4", - "shadowColor": "#d8d4c4", + "mt.selection.color1": "#F6F0DE", + "mt.selection.color2": "#F6F0DE", + "startBackground": "#FEFBF1", + "startBorderColor": "#FEFBF1", + "shadowColor": "#FEFBF1", "shadowWidth": 0 }, "Canvas": { "Tooltip.borderColor": "#edead9", "Tooltip.background": "#EDE8D4" }, - "Content.background": "#eee8d5", + "Content": { + "background": "#eee8d5", + "selectionBackground": "#93a1a1" + }, "CheckBox": { "background": "#fdf6e3", "disabledText": "#C9CCC3", @@ -86,30 +95,39 @@ "disabledBackground": "#fdf6e3", "disabledForeground": "#C9CCC3", "foreground": "#586e75", - "selectionBackground": "#e8dcb6", + "selectionBackground": "#93a1a1", "selectionForeground": "#002b36" }, + "CodeWithMe": { + "Avatar.foreground": "#586e75", + "AccessEnabled": { + "accessDot": "#d33682", + "dropdownBorder": "#F6F0DE", + "pillBackground": "$second" + } + }, "ColorChooser": { "background": "#fdf6e3", "foreground": "#586e75", "swatchesDefaultRecentColor": "#586e75" }, - "ComboBoxButton.background": "#d8d4c4", + "ComboBoxButton.background": "#FEFBF1", "ComboBox": { "ArrowButton": { - "background": "#d8d4c4", + "background": "#FEFBF1", "disabledIconColor": "#C9CCC3", "iconColor": "#586e75", "nonEditableBackground": "#fdf6e3" }, "background": "#fdf6e3", - "buttonBackground": "#d8d4c4", + "buttonBackground": "#FEFBF1", + "darcula.hoveredArrowButtonForeground": "#d33682", "disabledForeground": "#C9CCC3", "foreground": "#586e75", "modifiedItemForeground": "#d33682", "nonEditableBackground": "#F6F0DE", "padding": "5,5,5,5", - "selectionBackground": "#d1cbb8", + "selectionBackground": "#F6F0DE", "selectionForeground": "#002b36" }, "ComboPopup.border": "#edead9", @@ -123,15 +141,15 @@ "selectedGrayedForeground": "#002b36", "selectionGrayForeground": "#002b36", "selectionInactiveInfoForeground": "#93a1a1", - "selectionInactiveBackground": "#e8dcb650", - "selectionBackground": "#e8dcb680", + "selectionInactiveBackground": "#93a1a150", + "selectionBackground": "#93a1a180", "selectionForeground": "#002b36", "selectionInfoForeground": "#002b36" }, "Component": { "arc": 4, - "borderColor": "#d1cbb8", - "disabledBorderColor": "#d8d4c4", + "borderColor": "#F6F0DE", + "disabledBorderColor": "#FEFBF1", "focusColor": "#d33682", "focusedBorderColor": "#d33682", "hoverIconColor": "#d33682", @@ -156,23 +174,25 @@ } }, "DebuggerTabs": { - "selectedBackground": "#d1cbb8", - "underlinedTabBackground": "#d1cbb8" + "selectedBackground": "#F6F0DE", + "underlinedTabBackground": "#F6F0DE" }, "DebuggerPopup": { - "borderColor": "#d1cbb8" + "borderColor": "#F6F0DE" }, "DefaultTabs": { "background": "#fdf6e3", "borderColor": "#fdf6e3", - "hoverBackground": "#d1cbb8", + "hoverBackground": "#F6F0DE", "hoverColor": "#fdf6e3", - "hoverMaskColor": "#d1cbb8", - "inactiveColoredFileBackground": "#d8d4c4", - "inactiveUnderlineColor": "#C9CCC3", + "hoverMaskColor": "#F6F0DE", + "inactiveColoredTabBackground": "#fdf6e3", + "inactiveColoredFileBackground": "#FEFBF1", + "inactiveUnderlineColor": "#d33682", "inactiveMaskColor": "#fdf6e3", "underlineColor": "#d33682", - "underlinedTabBackground": "#d1cbb8" + "underlinedTabBackground": "#F6F0DE", + "underlinedTabForeground": "#002b36" }, "Desktop.background": "#fdf6e3", "DialogWrapper.southPanelBackground": "#fdf6e3", @@ -193,29 +213,31 @@ "foreground": "#586e75", "inactiveBackground": "#fdf6e3", "inactiveForeground": "#C9CCC3", - "selectionBackground": "#e8dcb6", + "selectionBackground": "#93a1a1", "selectionForeground": "#002b36" }, "EditorTabs": { "borderColor": "#F6F0DE", - "hoverColor": "#d1cbb8", - "hoverMaskColor": "#d1cbb8", + "hoverBackground": "#F6F0DE", + "hoverColor": "#F6F0DE", + "hoverMaskColor": "#F6F0DE", "inactiveMaskColor": "#fdf6e3", - "inactiveColoredFileBackground": "#fdf6e32", + "inactiveColoredFileBackground": "#fdf6e3", "inactiveUnderlineColor": "#C9CCC3", "selectedForeground": "#586e75", - "selectedBackground": "#d1cbb8", + "selectedBackground": "#F6F0DE", "underlineColor": "#d33682", - "underlinedTabBackground": "#d1cbb8" + "underlinedTabBackground": "#F6F0DE", + "underlinedTabForeground": "#002b36" }, "EditorGroupsTabs": { "background": "#fdf6e3", "borderColor": "#F6F0DE", - "hoverBackground": "#d1cbb8", - "hoverColor": "#d1cbb8", + "hoverBackground": "#F6F0DE", + "hoverColor": "#F6F0DE", "inactiveUnderlineColor": "#d33682", "underlineColor": "#d33682", - "underlinedTabBackground": "#d1cbb8", + "underlinedTabBackground": "#F6F0DE", "underlinedTabForeground": "#586e75" }, "FileColor": { @@ -241,17 +263,18 @@ "background": "#fdf6e3", "caretForeground": "#d33682", "foreground": "#586e75", - "inactiveBackground": "#d8d4c4", + "inactiveBackground": "#FEFBF1", "inactiveForeground": "#C9CCC3", "selectionForeground": "#002b36", - "selectionBackground": "#d1cbb8" + "selectionBackground": "#F6F0DE" }, + "GotItTooltip.borderColor": "#EDE8D4", "Group": { "disabledSeparatorColor": "#edead9", "separatorColor": "#edead9" }, "GutterTooltip": { - "infoForeground": "#586e75", + "infoForeground": "#93a1a1", "lineSeparatorColor": "#fdf6e3" }, "HeaderColor": { @@ -288,7 +311,8 @@ "disabledText": "#C9CCC3", "foreground": "#586e75", "infoForeground": "#93a1a1", - "selectedForeground": "#002b36" + "selectedForeground": "#002b36", + "selectedDisabledForeground": "#586e75" }, "Link": { "activeForeground": "#d33682", @@ -301,17 +325,19 @@ "List": { "background": "#F6F0DE", "foreground": "#586e75", - "selectionBackground": "#e8dcb650", + "hoverBackground": "#93a1a170", + "hoverInactiveBackground": "#F6F0DE", + "selectionBackground": "#93a1a150", "selectionForeground": "#002b36", "selectionInactiveForeground": "#002b36", - "selectionInactiveBackground": "#e8dcb6b0" + "selectionInactiveBackground": "#93a1a170" }, "material": { "background": "#fdf6e3", "branchColor": "#586e75", "contrast": "#eee8d5", "foreground": "#586e75", - "mergeCommits": "#d8d4c4", + "mergeCommits": "#FEFBF1", "primaryColor": "#93a1a1", "selectionForeground": "#002b36", "tab.backgroundColor": "#fdf6e3", @@ -320,8 +346,8 @@ }, "MemoryIndicator": { "allocatedBackground": "#F6F0DE", - "usedColor": "#d1cbb8", - "usedBackground": "#d1cbb8" + "usedColor": "#F6F0DE", + "usedBackground": "#F6F0DE" }, "Menu": { "acceleratorForeground": "#93a1a1", @@ -332,7 +358,7 @@ "disabledBackground": "#F6F0DE", "disabledForeground": "#C9CCC3", "foreground": "#586e75", - "selectionBackground": "#e8dcb6", + "selectionBackground": "#93a1a1", "selectionForeground": "#002b36", "separatorColor": "#edead9" }, @@ -343,7 +369,7 @@ "disabledForeground": "#C9CCC3", "foreground": "#586e75", "highlight": "#fdf6e3", - "selectionBackground": "#e8dcb6", + "selectionBackground": "#93a1a1", "selectionForeground": "#002b36", "shadow": "#fdf6e3" }, @@ -355,7 +381,7 @@ "disabledBackground": "#fdf6e3", "disabledForeground": "#C9CCC3", "foreground": "#586e75", - "selectionBackground": "#e8dcb6", + "selectionBackground": "#93a1a1", "selectionForeground": "#002b36" }, "NavBar": { @@ -378,9 +404,9 @@ "errorBorderColor": "#EDE8D4", "foreground": "#586e75", "MoreButton": { - "background": "#d8d4c4", + "background": "#FEFBF1", "foreground": "#586e75", - "innerBorderColor": "#d8d4c4" + "innerBorderColor": "#FEFBF1" }, "ToolWindow": { "errorBackground": "#EDE8D4", @@ -398,7 +424,7 @@ "messageForeground": "#586e75" }, "Outline": { - "color": "#d8d4c4", + "color": "#FEFBF1", "focusedColor": "#d33682", "disabledColor": "#C9CCC3" }, @@ -408,13 +434,13 @@ }, "ParameterInfo": { "background": "#F6F0DE", - "borderColor": "#d1cbb8", - "currentOverloadBackground": "#d1cbb8", + "borderColor": "#F6F0DE", + "currentOverloadBackground": "#F6F0DE", "currentParameterForeground": "#d33682", "disabledForeground": "#C9CCC3", "foreground": "#586e75", "infoForeground": "#93a1a1", - "lineSeparatorColor": "#d1cbb8" + "lineSeparatorColor": "#F6F0DE" }, "PasswordField": { "background": "#fdf6e3", @@ -422,28 +448,29 @@ "caretForeground": "#d33682", "foreground": "#586e75", "inactiveForeground": "#C9CCC3", - "selectionBackground": "#d1cbb8", + "selectionBackground": "#F6F0DE", "selectionForeground": "#002b36" }, "Plugins": { "background": "#fdf6e3", "disabledForeground": "#C9CCC3", - "eapTagBackground": "#d1cbb8", - "lightSelectionBackground": "#e8dcb6", - "paidTagBackground": "#d1cbb8", - "selectionBackground": "#e8dcb6", + "eapTagBackground": "#F6F0DE", + "hoverBackground": "#93a1a170", + "lightSelectionBackground": "#F6F0DE", + "paidTagBackground": "#F6F0DE", + "selectionBackground": "#93a1a1", "tagForeground": "#d33682", - "tagBackground": "#d1cbb8", - "trialTagBackground": "#d1cbb8", + "tagBackground": "#F6F0DE", + "trialTagBackground": "#F6F0DE", "Button": { - "installBackground": "#d8d4c4", - "installBorderColor": "#d8d4c4", + "installBackground": "#FEFBF1", + "installBorderColor": "#FEFBF1", "installForeground": "#586e75", - "installFocusedBackground": "#d1cbb8", + "installFocusedBackground": "#F6F0DE", "installFillForeground": "#C9CCC3", - "installFillBackground": "#d8d4c4", - "updateBackground": "#d8d4c4", - "updateBorderColor": "#d8d4c4", + "installFillBackground": "#FEFBF1", + "updateBackground": "#d33682", + "updateBorderColor": "#FEFBF1", "updateForeground": "#586e75" }, "SearchField": { @@ -455,9 +482,9 @@ "foreground": "#586e75" }, "Tab": { - "hoverBackground": "#d1cbb8", + "hoverBackground": "#F6F0DE", "selectedForeground": "#002b36", - "selectedBackground": "#d1cbb8" + "selectedBackground": "#F6F0DE" } }, "Popup": { @@ -496,8 +523,8 @@ "indeterminateEndColor": "#d33682", "indeterminateStartColor": "#d33682", "progressColor": "#d33682", - "selectionBackground": "#d1cbb8", - "trackColor": "#d1cbb8" + "selectionBackground": "#F6F0DE", + "trackColor": "#F6F0DE" }, "PsiViewer": { "referenceHighlightColor": "#d33682" @@ -514,9 +541,10 @@ "disabledBackground": "#fdf6e3", "disabledForeground": "#C9CCC3", "foreground": "#586e75", - "selectionBackground": "#e8dcb6", + "selectionBackground": "#93a1a1", "selectionForeground": "#002b36" }, + "ScreenView.borderColor": "#edead9", "ScrollBar": { "background": "#fdf6e3", "hoverThumbBorderColor": "#d33682", @@ -538,7 +566,7 @@ "trackColor": "#fdf6e330" } }, - "thumb": "#d1cbb8", + "thumb": "#F6F0DE", "thumbBorderColor": "#d3368270", "thumbColor": "#d3368270", "trackColor": "#fdf6e330", @@ -571,14 +599,23 @@ "Tab": { "active.foreground": "#002b36", "selectedForeground": "#002b36", - "selectedBackground": "#d1cbb8" + "selectedBackground": "#F6F0DE" } }, "SearchMatch": { "endBackground": "#d33682", - "startBackground": "#d33682" + "startBackground": "#d33682", + "endColor": "#d33682", + "startColor": "#d33682" }, "SearchField.errorBackground": "#EDE8D4", + "SearchOption": { + "selectedBackground": "#F6F0DE" + }, + "SearchResults": { + "Ordinal.File.Foreground": "#93a1a1", + "Repeated.File.Foreground": "#586e75" + }, "Separator": { "background": "#F6F0DE", "foreground": "#F6F0DE", @@ -594,12 +631,12 @@ "foreground": "#586e75", "majorTickLength": 6, "tickColor": "#F6F0DE", - "trackColor": "#d1cbb8", + "trackColor": "#F6F0DE", "trackWidth": 7, "thumb": "#d33682" }, "SpeedSearch": { - "background": "#d1cbb8", + "background": "#F6F0DE", "borderColor": "#edead9", "foreground": "#586e75", "errorForeground": "#586e75" @@ -616,21 +653,23 @@ }, "SplitPaneDivider.draggingColor": "#F6F0DE", "StatusBar": { - "borderColor": "#fdf6e3" + "borderColor": "#fdf6e3", + "hoverBackground": "#F6F0DE", + "LightEditBackground": "#F6F0DE" }, "TabbedPane": { "background": "#fdf6e3", - "contentAreaColor": "#d1cbb8", + "contentAreaColor": "#F6F0DE", "contentBorderInsets": "3,1,1,1", "darkShadow": "#edead9", "disabledForeground": "#C9CCC3", "disabledUnderlineColor": "#C9CCC3", - "focus": "#d1cbb8", - "focusColor": "#d1cbb8", + "focus": "#F6F0DE", + "focusColor": "#F6F0DE", "fontSizeOffset": 0, "foreground": "#586e75", "highlight": "#edead9", - "hoverColor": "#d1cbb8", + "hoverColor": "#F6F0DE", "labelShift": 0, "selectedForeground": "#002b36", "selectedLabelShift": 0, @@ -643,22 +682,26 @@ }, "TabbedPane.mt.tab.background": "#fdf6e3", "Table": { + "alternativeRowBackground": "#eee8d5", "background": "#fdf6e3", "cellNoFocusBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5", + "disabledForeground": "#C9CCC3", "dropLineColor": "#d33682", "dropLineShortColor": "#d33682", - "focusCellBackground": "#d1cbb8", + "focusCellBackground": "#F6F0DE", "focusCellForeground": "#002b36", "foreground": "#586e75", "gridColor": "#fdf6e3", - "highlightOuter": "#d1cbb8", + "highlightOuter": "#F6F0DE", + "hoverBackground": "#93a1a170", + "hoverInactiveBackground": "#F6F0DE", "lightSelectionForeground": "#002b36", "lightSelectionInactiveForeground": "#93a1a1", "lightSelectionInactiveBackground": "#F6F0DE", - "selectionBackground": "#d1cbb8", + "selectionBackground": "#F6F0DE", "selectionForeground": "#002b36", - "selectionInactiveBackground": "#d1cbb8", + "selectionInactiveBackground": "#F6F0DE", "selectionInactiveForeground": "#002b36", "sortIconColor": "#586e75", "stripeColor": "#eee8d5" @@ -670,7 +713,7 @@ "cellBorder": "4,0,4,0", "disabledForeground": "#C9CCC3", "foreground": "#586e75", - "focusCellBackground": "#d1cbb8", + "focusCellBackground": "#F6F0DE", "focusCellForeground": "#002b36", "height": 25, "separatorColor": "#F6F0DE" @@ -683,7 +726,7 @@ "caretForeground": "#d33682", "foreground": "#586e75", "inactiveForeground": "#C9CCC3", - "selectionBackground": "#d1cbb8", + "selectionBackground": "#F6F0DE", "selectionForeground": "#002b36" }, "TextField": { @@ -691,7 +734,7 @@ "caretForeground": "#d33682", "foreground": "#586e75", "inactiveForeground": "#C9CCC3", - "selectionBackground": "#d1cbb8", + "selectionBackground": "#F6F0DE", "selectionForeground": "#002b36" }, "TextPane": { @@ -699,19 +742,19 @@ "caretForeground": "#d33682", "foreground": "#586e75", "inactiveForeground": "#C9CCC3", - "selectionBackground": "#d1cbb8", + "selectionBackground": "#F6F0DE", "selectionForeground": "#002b36" }, "TitlePane": { "background": "#eee8d5", - "Button.hoverBackground": "#d1cbb8", + "Button.hoverBackground": "#F6F0DE", "inactiveBackground": "#fdf6e3", "infoForeground": "#93a1a1", "inactiveInfoForeground": "#93a1a1" }, "TitledBorder.titleColor": "#586e75", "ToggleButton": { - "borderColor": "#d8d4c4", + "borderColor": "#FEFBF1", "buttonColor": "#586e75", "disabledText": "#C9CCC3", "foreground": "#586e75", @@ -729,8 +772,8 @@ "ToolTip": { "Actions.background": "#fdf6e3", "Actions.infoForeground": "#93a1a1", - "background": "#fdf6e3", - "borderColor": "#d1cbb8", + "background": "#EDE8D4", + "borderColor": "#edead9", "foreground": "#586e75", "infoForeground": "#93a1a1", "separatorColor": "#edead9", @@ -738,7 +781,7 @@ }, "ToolWindow": { "Button": { - "hoverBackground": "#d1cbb8", + "hoverBackground": "#F6F0DE", "selectedForeground": "#002b36", "selectedBackground": "#eee8d5" }, @@ -751,50 +794,93 @@ "background": "#fdf6e3" }, "HeaderTab": { - "hoverBackground": "#d1cbb8", + "borderColor": "#F6F0DE", + "hoverBackground": "#F6F0DE", "hoverInactiveBackground": "#F6F0DE", "inactiveUnderlineColor": "#d33682", "selectedBackground": "#eee8d5", "selectedInactiveBackground": "#eee8d5", "underlineColor": "#d33682", - "underlinedTabBackground": "#d1cbb8", - "underlinedTabInactiveBackground": "#F6F0DE" + "underlinedTabBackground": "#F6F0DE", + "underlinedTabInactiveBackground": "#F6F0DE", + "underlinedTabForeground": "#002b36", + "underlinedTabInactiveForeground": "#586e75" } }, "Tree": { "background": "#fdf6e3", "foreground": "#93a1a1", "hash": "#edead9", + "hoverBackground": "#93a1a170", + "hoverInactiveBackground": "#F6F0DE", "modifiedItemForeground": "#d33682", "rowHeight": 28, - "selectionBackground": "#e8dcb6b0", + "selectionBackground": "#93a1a170", "selectionForeground": "#002b36", "selectionInactiveForeground": "#002b36", - "selectionInactiveBackground": "#e8dcb6b0", + "selectionInactiveBackground": "#93a1a170", "textBackground": "#fdf6e3" }, "Tree.leftChildIndent": 10, "Tree.rightChildIndent": 5, - "UiDesigner": { + "UIDesigner": { "Activity.borderColor": "#edead9", - "ColorPicker.background": "#fdf6e3", - "ColorPicker.foreground": "#586e75", - "Component.borderColor": "#edead9", - "Component.background": "#fdf6e3", - "Component.foreground": "#586e75", - "Connector.borderColor": "#edead9", - "Connector.hoverBorderColor": "#d1cbb8", + "Canvas.background": "#eee8d5", + "ColorPicker": { + "background": "#fdf6e3", + "foreground": "#586e75" + }, + "Component": { + "borderColor": "#edead9", + "background": "#fdf6e3", + "foreground": "#586e75", + "hoverBorderColor": "#F6F0DE" + }, + "Connector": { + "borderColor": "#edead9", + "hoverBorderColor": "#F6F0DE" + }, "Canvas.background": "#eee8d5", "highStroke.foreground": "#586e75", "Label.foreground": "#93a1a1", - "List.selectionBackground": "#e8dcb6b0", - "Panel.borderColor": "#edead9", - "Panel.background": "#fdf6e3", + "List.selectionBackground": "#93a1a170", + "motion": { + "borderColor": "#edead9", + "Component.foreground": "#586e75", + "ConstraintSetText.foreground": "#93a1a1", + "ConstraintSet.background": "#F6F0DE", + "CSPanel.SelectedFocusBackground": "#93a1a1", + "CSPanel.SelectedBackground": "#93a1a170", + "cs_FocusText.infoForeground": "#93a1a1", + "CursorTextColor.foreground": "#586e75", + "HoverColor.disabledBackground": "#C9CCC3", + "motionGraph.background": "#fdf6e3", + "Notification.background": "#EDE8D4", + "ourAvg.background": "#F6F0DE", + "ourCS.background": "#F6F0DE", + "ourCS_Border.borderColor": "#edead9", + "ourCS_TextColor.foreground": "#93a1a1", + "ourCS_SelectedFocusBackground.selectionForeground": "#002b36", + "ourCS_SelectedBackground.selectionInactiveBackground": "#F6F0DE", + "ourCS_SelectedBorder.pressedBorderColor": "#F6F0DE", + "ourML_BarColor.separatorColor": "#edead9", + "PrimaryPanel.background": "#eee8d5", + "SecondaryPanel.background": "#fdf6e3", + "SecondaryPanel.header.foreground": "#93a1a1", + "SecondaryPanel.header.background": "#eee8d5", + "timeLine.disabledBorderColor": "#edead9" + }, + "Panel": { + "borderColor": "#edead9", + "background": "#fdf6e3" + }, "percent.foreground": "#586e75", - "Placeholder.background": "#fdf6e3", - "Placeholder.borderColor": "#edead9", - "Placeholder.foreground": "#586e75", - "Placeholder.selectedForeground": "#002b36", + "Placeholder": { + "background": "#fdf6e3", + "borderColor": "#edead9", + "foreground": "#586e75", + "selectedForeground": "#002b36" + }, "Preview.background": "#fdf6e3", "stroke.acceleratorForeground": "#93a1a1" }, @@ -809,7 +895,7 @@ "selectedBranchBackground": "#fdf6e3" }, "GitCommits": { - "graphColor": "#d1cbb8" + "graphColor": "#F6F0DE" }, "GitLog": { "localBranchIconColor": "#d33682", @@ -828,11 +914,12 @@ }, "Log": { "Commit.unmatchedForeground": "#93a1a1", - "Commit.currentBranchBackground": "#F6F0DE" + "Commit.currentBranchBackground": "#F6F0DE", + "Commit.hoveredBackground": "#93a1a170" }, "RefLabel": { "foreground": "#002b36", - "backgroundBase": "#d1cbb8" + "backgroundBase": "#F6F0DE" } }, "Viewport": { @@ -840,18 +927,24 @@ "foreground": "#586e75" }, "WelcomeScreen": { + "AssociatedComponent.background": "#fdf6e3", "background": "#fdf6e3", "borderColor": "#fdf6e3", "captionBackground": "#eee8d5", "captionForeground": "#586e75", + "Details.background": "#fdf6e3", "footerBackground": "#eee8d5", "footerForeground": "#586e75", "headerBackground": "#fdf6e3", "headerForeground": "#586e75", + "List.background": "#eee8d5", "separatorColor": "#edead9", + "SidePanel.background": "#F6F0DE", "Projects": { + "actions.background": "#eee8d5", + "actions.selectionBackground": "#F6F0DE", "background": "#F6F0DE", - "selectionBackground": "#e8dcb6", + "selectionBackground": "#93a1a1", "selectionInactiveBackground": "#F6F0DE" } },