IntelliJ Themes: updated "Material Theme UI Lite" themes; added "Material Theme UI Lite / Moonlight" theme

This commit is contained in:
Karl Tauber
2021-01-09 17:55:09 +01:00
parent cf141f0e55
commit 1d06a2c2e8
38 changed files with 9629 additions and 4690 deletions

View File

@@ -14,7 +14,8 @@ FlatLaf Change Log
`FlatUIDefaultsInspector.createInspectorPanel()`. `FlatUIDefaultsInspector.createInspectorPanel()`.
- Copy selected keys and values into clipboard via context menu. - Copy selected keys and values into clipboard via context menu.
- IntelliJ Themes: - 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 #### Fixed bugs

View File

@@ -410,6 +410,22 @@
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite", "sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
"sourceCodePath": "blob/master/src/main/resources/themes/Monokai Pro Contrast.theme.json" "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": { "material-theme-ui-lite/Night Owl.theme.json": {
"name": "Material Theme UI Lite / Night Owl", "name": "Material Theme UI Lite / Night Owl",
"dark": true, "dark": true,

View File

@@ -101,6 +101,8 @@ Name | Class
[Material Palenight Contrast (Material)](https://github.com/mallowigi/material-theme-ui-lite) | `com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatMaterialPalenightContrastIJTheme` [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 (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` [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 (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` [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` [Solarized Dark (Material)](https://github.com/mallowigi/material-theme-ui-lite) | `com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatSolarizedDarkIJTheme`

View File

@@ -82,6 +82,8 @@ public class FlatAllIJThemes
new FlatIJLookAndFeelInfo( "Material Palenight Contrast (Material)", "com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatMaterialPalenightContrastIJTheme", true ), 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 (Material)", "com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatMonokaiProIJTheme", true ),
new FlatIJLookAndFeelInfo( "Monokai Pro Contrast (Material)", "com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatMonokaiProContrastIJTheme", 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 (Material)", "com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatNightOwlIJTheme", true ),
new FlatIJLookAndFeelInfo( "Night Owl Contrast (Material)", "com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatNightOwlContrastIJTheme", 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 ), new FlatIJLookAndFeelInfo( "Solarized Dark (Material)", "com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatSolarizedDarkIJTheme", true ),

View File

@@ -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;
}
}

View File

@@ -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;
}
}

View File

@@ -3,18 +3,24 @@
"dark": true, "dark": true,
"author": "Mallowigi", "author": "Mallowigi",
"editorScheme": "/colors/Arc Dark.xml", "editorScheme": "/colors/Arc Dark.xml",
"emptyFrameBackground": {
"anchor": "center",
"image": "/walls/arcdark.svg",
"fill": "scale",
"transparency": 50
},
"ui": { "ui": {
"*": { "*": {
"acceleratorSelectionForeground": "#8b9eb5", "acceleratorSelectionForeground": "#8b9eb5",
"background": "#2f343f", "background": "#2f343f",
"borderColor": "#404552", "borderColor": "#404552",
"disabledBackground": "#37373d", "disabledBackground": "#474B57",
"disabledForeground": "#D3DAE3", "disabledForeground": "#D3DAE3",
"disabledText": "#D3DAE3", "disabledText": "#D3DAE3",
"focusColor": "#08507C", "focusColor": "#3F3F46",
"focusedBorderColor": "#42A5F5", "focusedBorderColor": "#42A5F5",
"foreground": "#D3DAE3", "foreground": "#D3DAE3",
"inactiveBackground": "#37373d", "inactiveBackground": "#474B57",
"inactiveForeground": "#8b9eb5", "inactiveForeground": "#8b9eb5",
"infoForeground": "#8b9eb5", "infoForeground": "#8b9eb5",
"selectionBackground": "#8888FF", "selectionBackground": "#8888FF",
@@ -54,7 +60,7 @@
"disabledText": "#D3DAE3", "disabledText": "#D3DAE3",
"endBackground": "#383C4A", "endBackground": "#383C4A",
"endBorderColor": "#383C4A", "endBorderColor": "#383C4A",
"focus": "#08507C", "focus": "#3F3F46",
"focusedBorderColor": "#42A5F5", "focusedBorderColor": "#42A5F5",
"foreground": "#8b9eb5", "foreground": "#8b9eb5",
"highlight": "#FFFFFF", "highlight": "#FFFFFF",
@@ -72,7 +78,10 @@
"Tooltip.borderColor": "#404552", "Tooltip.borderColor": "#404552",
"Tooltip.background": "#262a33" "Tooltip.background": "#262a33"
}, },
"Content.background": "#262b33", "Content": {
"background": "#262b33",
"selectionBackground": "#8888FF"
},
"CheckBox": { "CheckBox": {
"background": "#2f343f", "background": "#2f343f",
"disabledText": "#D3DAE3", "disabledText": "#D3DAE3",
@@ -89,6 +98,14 @@
"selectionBackground": "#8888FF", "selectionBackground": "#8888FF",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"CodeWithMe": {
"Avatar.foreground": "#D3DAE3",
"AccessEnabled": {
"accessDot": "#42A5F5",
"dropdownBorder": "#393f4c",
"pillBackground": "$second"
}
},
"ColorChooser": { "ColorChooser": {
"background": "#2f343f", "background": "#2f343f",
"foreground": "#D3DAE3", "foreground": "#D3DAE3",
@@ -104,6 +121,7 @@
}, },
"background": "#262b33", "background": "#262b33",
"buttonBackground": "#383C4A", "buttonBackground": "#383C4A",
"darcula.hoveredArrowButtonForeground": "#42A5F5",
"disabledForeground": "#D3DAE3", "disabledForeground": "#D3DAE3",
"foreground": "#D3DAE3", "foreground": "#D3DAE3",
"modifiedItemForeground": "#42A5F5", "modifiedItemForeground": "#42A5F5",
@@ -130,7 +148,7 @@
}, },
"Component": { "Component": {
"arc": 4, "arc": 4,
"borderColor": "#08507C", "borderColor": "#3F3F46",
"disabledBorderColor": "#383C4A", "disabledBorderColor": "#383C4A",
"focusColor": "#42A5F5", "focusColor": "#42A5F5",
"focusedBorderColor": "#42A5F5", "focusedBorderColor": "#42A5F5",
@@ -156,23 +174,25 @@
} }
}, },
"DebuggerTabs": { "DebuggerTabs": {
"selectedBackground": "#08507C", "selectedBackground": "#3F3F46",
"underlinedTabBackground": "#08507C" "underlinedTabBackground": "#3F3F46"
}, },
"DebuggerPopup": { "DebuggerPopup": {
"borderColor": "#08507C" "borderColor": "#3F3F46"
}, },
"DefaultTabs": { "DefaultTabs": {
"background": "#2f343f", "background": "#2f343f",
"borderColor": "#2f343f", "borderColor": "#2f343f",
"hoverBackground": "#41416A", "hoverBackground": "#41416A",
"hoverColor": "#262b33", "hoverColor": "#262b33",
"hoverMaskColor": "#08507C", "hoverMaskColor": "#3F3F46",
"inactiveColoredTabBackground": "#2f343f",
"inactiveColoredFileBackground": "#383C4A", "inactiveColoredFileBackground": "#383C4A",
"inactiveUnderlineColor": "#D3DAE3", "inactiveUnderlineColor": "#42A5F5",
"inactiveMaskColor": "#262b33", "inactiveMaskColor": "#262b33",
"underlineColor": "#42A5F5", "underlineColor": "#42A5F5",
"underlinedTabBackground": "#41416A" "underlinedTabBackground": "#41416A",
"underlinedTabForeground": "#FFFFFF"
}, },
"Desktop.background": "#2f343f", "Desktop.background": "#2f343f",
"DialogWrapper.southPanelBackground": "#2f343f", "DialogWrapper.southPanelBackground": "#2f343f",
@@ -198,21 +218,23 @@
}, },
"EditorTabs": { "EditorTabs": {
"borderColor": "#393f4c", "borderColor": "#393f4c",
"hoverColor": "#08507C", "hoverBackground": "#3F3F46",
"hoverMaskColor": "#08507C", "hoverColor": "#3F3F46",
"hoverMaskColor": "#3F3F46",
"inactiveMaskColor": "#2f343f", "inactiveMaskColor": "#2f343f",
"inactiveColoredFileBackground": "#2f343f2", "inactiveColoredFileBackground": "#2f343f",
"inactiveUnderlineColor": "#D3DAE3", "inactiveUnderlineColor": "#D3DAE3",
"selectedForeground": "#D3DAE3", "selectedForeground": "#D3DAE3",
"selectedBackground": "#41416A", "selectedBackground": "#41416A",
"underlineColor": "#42A5F5", "underlineColor": "#42A5F5",
"underlinedTabBackground": "#41416A" "underlinedTabBackground": "#41416A",
"underlinedTabForeground": "#FFFFFF"
}, },
"EditorGroupsTabs": { "EditorGroupsTabs": {
"background": "#2f343f", "background": "#2f343f",
"borderColor": "#393f4c", "borderColor": "#393f4c",
"hoverBackground": "#08507C", "hoverBackground": "#3F3F46",
"hoverColor": "#08507C", "hoverColor": "#3F3F46",
"inactiveUnderlineColor": "#42A5F5", "inactiveUnderlineColor": "#42A5F5",
"underlineColor": "#42A5F5", "underlineColor": "#42A5F5",
"underlinedTabBackground": "#41416A", "underlinedTabBackground": "#41416A",
@@ -221,7 +243,7 @@
"FileColor": { "FileColor": {
"Green": "#387002", "Green": "#387002",
"Blue": "#004BA0", "Blue": "#004BA0",
"Yellow": "#37373d", "Yellow": "#474B57",
"Orange": "#B53D00", "Orange": "#B53D00",
"Violet": "#4D2C91", "Violet": "#4D2C91",
"Rose": "#A00037" "Rose": "#A00037"
@@ -246,12 +268,13 @@
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionBackground": "#41416A" "selectionBackground": "#41416A"
}, },
"GotItTooltip.borderColor": "#262a33",
"Group": { "Group": {
"disabledSeparatorColor": "#404552", "disabledSeparatorColor": "#404552",
"separatorColor": "#404552" "separatorColor": "#404552"
}, },
"GutterTooltip": { "GutterTooltip": {
"infoForeground": "#D3DAE3", "infoForeground": "#8b9eb5",
"lineSeparatorColor": "#2f343f" "lineSeparatorColor": "#2f343f"
}, },
"HeaderColor": { "HeaderColor": {
@@ -288,7 +311,8 @@
"disabledText": "#D3DAE3", "disabledText": "#D3DAE3",
"foreground": "#D3DAE3", "foreground": "#D3DAE3",
"infoForeground": "#8b9eb5", "infoForeground": "#8b9eb5",
"selectedForeground": "#FFFFFF" "selectedForeground": "#FFFFFF",
"selectedDisabledForeground": "#D3DAE3"
}, },
"Link": { "Link": {
"activeForeground": "#42A5F5", "activeForeground": "#42A5F5",
@@ -301,10 +325,12 @@
"List": { "List": {
"background": "#393f4c", "background": "#393f4c",
"foreground": "#D3DAE3", "foreground": "#D3DAE3",
"hoverBackground": "#08507C70",
"hoverInactiveBackground": "#41416A",
"selectionBackground": "#8888FF50", "selectionBackground": "#8888FF50",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#09477170" "selectionInactiveBackground": "#08507C70"
}, },
"material": { "material": {
"background": "#2f343f", "background": "#2f343f",
@@ -320,8 +346,8 @@
}, },
"MemoryIndicator": { "MemoryIndicator": {
"allocatedBackground": "#393f4c", "allocatedBackground": "#393f4c",
"usedColor": "#08507C", "usedColor": "#3F3F46",
"usedBackground": "#08507C" "usedBackground": "#3F3F46"
}, },
"Menu": { "Menu": {
"acceleratorForeground": "#8b9eb5", "acceleratorForeground": "#8b9eb5",
@@ -409,7 +435,7 @@
"ParameterInfo": { "ParameterInfo": {
"background": "#393f4c", "background": "#393f4c",
"borderColor": "#41416A", "borderColor": "#41416A",
"currentOverloadBackground": "#41416A", "currentOverloadBackground": "#3F3F46",
"currentParameterForeground": "#42A5F5", "currentParameterForeground": "#42A5F5",
"disabledForeground": "#D3DAE3", "disabledForeground": "#D3DAE3",
"foreground": "#D3DAE3", "foreground": "#D3DAE3",
@@ -428,21 +454,22 @@
"Plugins": { "Plugins": {
"background": "#2f343f", "background": "#2f343f",
"disabledForeground": "#D3DAE3", "disabledForeground": "#D3DAE3",
"eapTagBackground": "#08507C", "eapTagBackground": "#3F3F46",
"lightSelectionBackground": "#8888FF", "hoverBackground": "#08507C70",
"paidTagBackground": "#08507C", "lightSelectionBackground": "#41416A",
"paidTagBackground": "#3F3F46",
"selectionBackground": "#8888FF", "selectionBackground": "#8888FF",
"tagForeground": "#42A5F5", "tagForeground": "#42A5F5",
"tagBackground": "#08507C", "tagBackground": "#3F3F46",
"trialTagBackground": "#08507C", "trialTagBackground": "#3F3F46",
"Button": { "Button": {
"installBackground": "#383C4A", "installBackground": "#383C4A",
"installBorderColor": "#383C4A", "installBorderColor": "#383C4A",
"installForeground": "#D3DAE3", "installForeground": "#D3DAE3",
"installFocusedBackground": "#08507C", "installFocusedBackground": "#3F3F46",
"installFillForeground": "#D3DAE3", "installFillForeground": "#D3DAE3",
"installFillBackground": "#383C4A", "installFillBackground": "#383C4A",
"updateBackground": "#383C4A", "updateBackground": "#42A5F5",
"updateBorderColor": "#383C4A", "updateBorderColor": "#383C4A",
"updateForeground": "#D3DAE3" "updateForeground": "#D3DAE3"
}, },
@@ -496,8 +523,8 @@
"indeterminateEndColor": "#42A5F5", "indeterminateEndColor": "#42A5F5",
"indeterminateStartColor": "#42A5F5", "indeterminateStartColor": "#42A5F5",
"progressColor": "#42A5F5", "progressColor": "#42A5F5",
"selectionBackground": "#08507C", "selectionBackground": "#3F3F46",
"trackColor": "#08507C" "trackColor": "#3F3F46"
}, },
"PsiViewer": { "PsiViewer": {
"referenceHighlightColor": "#42A5F5" "referenceHighlightColor": "#42A5F5"
@@ -517,6 +544,7 @@
"selectionBackground": "#8888FF", "selectionBackground": "#8888FF",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"ScreenView.borderColor": "#404552",
"ScrollBar": { "ScrollBar": {
"background": "#2f343f", "background": "#2f343f",
"hoverThumbBorderColor": "#42A5F5", "hoverThumbBorderColor": "#42A5F5",
@@ -538,7 +566,7 @@
"trackColor": "#2f343f30" "trackColor": "#2f343f30"
} }
}, },
"thumb": "#08507C", "thumb": "#3F3F46",
"thumbBorderColor": "#42A5F570", "thumbBorderColor": "#42A5F570",
"thumbColor": "#42A5F570", "thumbColor": "#42A5F570",
"trackColor": "#2f343f30", "trackColor": "#2f343f30",
@@ -571,14 +599,23 @@
"Tab": { "Tab": {
"active.foreground": "#FFFFFF", "active.foreground": "#FFFFFF",
"selectedForeground": "#FFFFFF", "selectedForeground": "#FFFFFF",
"selectedBackground": "#08507C" "selectedBackground": "#3F3F46"
} }
}, },
"SearchMatch": { "SearchMatch": {
"endBackground": "#42A5F5", "endBackground": "#42A5F5",
"startBackground": "#42A5F5" "startBackground": "#42A5F5",
"endColor": "#42A5F5",
"startColor": "#42A5F5"
}, },
"SearchField.errorBackground": "#262a33", "SearchField.errorBackground": "#262a33",
"SearchOption": {
"selectedBackground": "#41416A"
},
"SearchResults": {
"Ordinal.File.Foreground": "#8b9eb5",
"Repeated.File.Foreground": "#D3DAE3"
},
"Separator": { "Separator": {
"background": "#393f4c", "background": "#393f4c",
"foreground": "#393f4c", "foreground": "#393f4c",
@@ -599,7 +636,7 @@
"thumb": "#42A5F5" "thumb": "#42A5F5"
}, },
"SpeedSearch": { "SpeedSearch": {
"background": "#08507C", "background": "#3F3F46",
"borderColor": "#404552", "borderColor": "#404552",
"foreground": "#D3DAE3", "foreground": "#D3DAE3",
"errorForeground": "#D3DAE3" "errorForeground": "#D3DAE3"
@@ -616,11 +653,13 @@
}, },
"SplitPaneDivider.draggingColor": "#393f4c", "SplitPaneDivider.draggingColor": "#393f4c",
"StatusBar": { "StatusBar": {
"borderColor": "#2f343f" "borderColor": "#2f343f",
"hoverBackground": "#3F3F46",
"LightEditBackground": "#41416A"
}, },
"TabbedPane": { "TabbedPane": {
"background": "#2f343f", "background": "#2f343f",
"contentAreaColor": "#08507C", "contentAreaColor": "#3F3F46",
"contentBorderInsets": "3,1,1,1", "contentBorderInsets": "3,1,1,1",
"darkShadow": "#404552", "darkShadow": "#404552",
"disabledForeground": "#D3DAE3", "disabledForeground": "#D3DAE3",
@@ -630,7 +669,7 @@
"fontSizeOffset": 0, "fontSizeOffset": 0,
"foreground": "#D3DAE3", "foreground": "#D3DAE3",
"highlight": "#404552", "highlight": "#404552",
"hoverColor": "#08507C", "hoverColor": "#3F3F46",
"labelShift": 0, "labelShift": 0,
"selectedForeground": "#FFFFFF", "selectedForeground": "#FFFFFF",
"selectedLabelShift": 0, "selectedLabelShift": 0,
@@ -643,9 +682,11 @@
}, },
"TabbedPane.mt.tab.background": "#262b33", "TabbedPane.mt.tab.background": "#262b33",
"Table": { "Table": {
"alternativeRowBackground": "#262b33",
"background": "#2f343f", "background": "#2f343f",
"cellNoFocusBorder": "10,5,10,5", "cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5",
"disabledForeground": "#D3DAE3",
"dropLineColor": "#42A5F5", "dropLineColor": "#42A5F5",
"dropLineShortColor": "#42A5F5", "dropLineShortColor": "#42A5F5",
"focusCellBackground": "#41416A", "focusCellBackground": "#41416A",
@@ -653,6 +694,8 @@
"foreground": "#D3DAE3", "foreground": "#D3DAE3",
"gridColor": "#2f343f", "gridColor": "#2f343f",
"highlightOuter": "#41416A", "highlightOuter": "#41416A",
"hoverBackground": "#08507C70",
"hoverInactiveBackground": "#41416A",
"lightSelectionForeground": "#FFFFFF", "lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#8b9eb5", "lightSelectionInactiveForeground": "#8b9eb5",
"lightSelectionInactiveBackground": "#393f4c", "lightSelectionInactiveBackground": "#393f4c",
@@ -704,7 +747,7 @@
}, },
"TitlePane": { "TitlePane": {
"background": "#262b33", "background": "#262b33",
"Button.hoverBackground": "#08507C", "Button.hoverBackground": "#3F3F46",
"inactiveBackground": "#2f343f", "inactiveBackground": "#2f343f",
"infoForeground": "#8b9eb5", "infoForeground": "#8b9eb5",
"inactiveInfoForeground": "#8b9eb5" "inactiveInfoForeground": "#8b9eb5"
@@ -729,8 +772,8 @@
"ToolTip": { "ToolTip": {
"Actions.background": "#2f343f", "Actions.background": "#2f343f",
"Actions.infoForeground": "#8b9eb5", "Actions.infoForeground": "#8b9eb5",
"background": "#2f343f", "background": "#262a33",
"borderColor": "#08507C", "borderColor": "#404552",
"foreground": "#D3DAE3", "foreground": "#D3DAE3",
"infoForeground": "#8b9eb5", "infoForeground": "#8b9eb5",
"separatorColor": "#404552", "separatorColor": "#404552",
@@ -751,50 +794,93 @@
"background": "#2f343f" "background": "#2f343f"
}, },
"HeaderTab": { "HeaderTab": {
"hoverBackground": "#08507C", "borderColor": "#3F3F46",
"hoverInactiveBackground": "#393f4c", "hoverBackground": "#3F3F46",
"hoverInactiveBackground": "#3F3F46",
"inactiveUnderlineColor": "#42A5F5", "inactiveUnderlineColor": "#42A5F5",
"selectedBackground": "#262b33", "selectedBackground": "#262b33",
"selectedInactiveBackground": "#262b33", "selectedInactiveBackground": "#262b33",
"underlineColor": "#42A5F5", "underlineColor": "#42A5F5",
"underlinedTabBackground": "#08507C", "underlinedTabBackground": "#41416A",
"underlinedTabInactiveBackground": "#393f4c" "underlinedTabInactiveBackground": "#393f4c",
"underlinedTabForeground": "#FFFFFF",
"underlinedTabInactiveForeground": "#D3DAE3"
} }
}, },
"Tree": { "Tree": {
"background": "#262b33", "background": "#262b33",
"foreground": "#8b9eb5", "foreground": "#8b9eb5",
"hash": "#404552", "hash": "#404552",
"hoverBackground": "#08507C70",
"hoverInactiveBackground": "#41416A",
"modifiedItemForeground": "#42A5F5", "modifiedItemForeground": "#42A5F5",
"rowHeight": 28, "rowHeight": 28,
"selectionBackground": "#09477170", "selectionBackground": "#08507C70",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#09477170", "selectionInactiveBackground": "#08507C70",
"textBackground": "#262b33" "textBackground": "#262b33"
}, },
"Tree.leftChildIndent": 10, "Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5, "Tree.rightChildIndent": 5,
"UiDesigner": { "UIDesigner": {
"Activity.borderColor": "#404552", "Activity.borderColor": "#404552",
"ColorPicker.background": "#2f343f", "Canvas.background": "#262b33",
"ColorPicker.foreground": "#D3DAE3", "ColorPicker": {
"Component.borderColor": "#404552", "background": "#2f343f",
"Component.background": "#2f343f", "foreground": "#D3DAE3"
"Component.foreground": "#D3DAE3", },
"Connector.borderColor": "#404552", "Component": {
"Connector.hoverBorderColor": "#08507C", "borderColor": "#404552",
"background": "#2f343f",
"foreground": "#D3DAE3",
"hoverBorderColor": "#3F3F46"
},
"Connector": {
"borderColor": "#404552",
"hoverBorderColor": "#3F3F46"
},
"Canvas.background": "#262b33", "Canvas.background": "#262b33",
"highStroke.foreground": "#D3DAE3", "highStroke.foreground": "#D3DAE3",
"Label.foreground": "#8b9eb5", "Label.foreground": "#8b9eb5",
"List.selectionBackground": "#09477170", "List.selectionBackground": "#08507C70",
"Panel.borderColor": "#404552", "motion": {
"Panel.background": "#2f343f", "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", "percent.foreground": "#D3DAE3",
"Placeholder.background": "#2f343f", "Placeholder": {
"Placeholder.borderColor": "#404552", "background": "#2f343f",
"Placeholder.foreground": "#D3DAE3", "borderColor": "#404552",
"Placeholder.selectedForeground": "#FFFFFF", "foreground": "#D3DAE3",
"selectedForeground": "#FFFFFF"
},
"Preview.background": "#2f343f", "Preview.background": "#2f343f",
"stroke.acceleratorForeground": "#8b9eb5" "stroke.acceleratorForeground": "#8b9eb5"
}, },
@@ -809,7 +895,7 @@
"selectedBranchBackground": "#2f343f" "selectedBranchBackground": "#2f343f"
}, },
"GitCommits": { "GitCommits": {
"graphColor": "#08507C" "graphColor": "#3F3F46"
}, },
"GitLog": { "GitLog": {
"localBranchIconColor": "#42A5F5", "localBranchIconColor": "#42A5F5",
@@ -828,11 +914,12 @@
}, },
"Log": { "Log": {
"Commit.unmatchedForeground": "#8b9eb5", "Commit.unmatchedForeground": "#8b9eb5",
"Commit.currentBranchBackground": "#393f4c" "Commit.currentBranchBackground": "#393f4c",
"Commit.hoveredBackground": "#08507C70"
}, },
"RefLabel": { "RefLabel": {
"foreground": "#FFFFFF", "foreground": "#FFFFFF",
"backgroundBase": "#08507C" "backgroundBase": "#3F3F46"
} }
}, },
"Viewport": { "Viewport": {
@@ -840,16 +927,22 @@
"foreground": "#D3DAE3" "foreground": "#D3DAE3"
}, },
"WelcomeScreen": { "WelcomeScreen": {
"AssociatedComponent.background": "#2f343f",
"background": "#2f343f", "background": "#2f343f",
"borderColor": "#2f343f", "borderColor": "#2f343f",
"captionBackground": "#262b33", "captionBackground": "#262b33",
"captionForeground": "#D3DAE3", "captionForeground": "#D3DAE3",
"Details.background": "#2f343f",
"footerBackground": "#262b33", "footerBackground": "#262b33",
"footerForeground": "#D3DAE3", "footerForeground": "#D3DAE3",
"headerBackground": "#2f343f", "headerBackground": "#2f343f",
"headerForeground": "#D3DAE3", "headerForeground": "#D3DAE3",
"List.background": "#262b33",
"separatorColor": "#404552", "separatorColor": "#404552",
"SidePanel.background": "#393f4c",
"Projects": { "Projects": {
"actions.background": "#262b33",
"actions.selectionBackground": "#3F3F46",
"background": "#393f4c", "background": "#393f4c",
"selectionBackground": "#8888FF", "selectionBackground": "#8888FF",
"selectionInactiveBackground": "#393f4c" "selectionInactiveBackground": "#393f4c"
@@ -881,8 +974,8 @@
"Actions.Yellow": "#F9EE98", "Actions.Yellow": "#F9EE98",
"Checkbox.Background.Default": "#262b33", "Checkbox.Background.Default": "#262b33",
"Checkbox.Background.Default.Dark": "#262b33", "Checkbox.Background.Default.Dark": "#262b33",
"Checkbox.Background.Disabled": "#37373d", "Checkbox.Background.Disabled": "#474B57",
"Checkbox.Background.Disabled.Dark": "#37373d", "Checkbox.Background.Disabled.Dark": "#474B57",
"Checkbox.Border.Default": "#404552", "Checkbox.Border.Default": "#404552",
"Checkbox.Border.Default.Dark": "#404552", "Checkbox.Border.Default.Dark": "#404552",
"Checkbox.Border.Disabled": "#D3DAE3", "Checkbox.Border.Disabled": "#D3DAE3",

View File

@@ -3,18 +3,24 @@
"dark": true, "dark": true,
"author": "Mallowigi", "author": "Mallowigi",
"editorScheme": "/colors/Arc Dark.xml", "editorScheme": "/colors/Arc Dark.xml",
"emptyFrameBackground": {
"anchor": "center",
"image": "/walls/arcdark.svg",
"fill": "scale",
"transparency": 50
},
"ui": { "ui": {
"*": { "*": {
"acceleratorSelectionForeground": "#8b9eb5", "acceleratorSelectionForeground": "#8b9eb5",
"background": "#2f343f", "background": "#2f343f",
"borderColor": "#404552", "borderColor": "#404552",
"disabledBackground": "#37373d", "disabledBackground": "#474B57",
"disabledForeground": "#D3DAE3", "disabledForeground": "#D3DAE3",
"disabledText": "#D3DAE3", "disabledText": "#D3DAE3",
"focusColor": "#08507C", "focusColor": "#3F3F46",
"focusedBorderColor": "#42A5F5", "focusedBorderColor": "#42A5F5",
"foreground": "#D3DAE3", "foreground": "#D3DAE3",
"inactiveBackground": "#37373d", "inactiveBackground": "#474B57",
"inactiveForeground": "#8b9eb5", "inactiveForeground": "#8b9eb5",
"infoForeground": "#8b9eb5", "infoForeground": "#8b9eb5",
"selectionBackground": "#8888FF", "selectionBackground": "#8888FF",
@@ -54,7 +60,7 @@
"disabledText": "#D3DAE3", "disabledText": "#D3DAE3",
"endBackground": "#383C4A", "endBackground": "#383C4A",
"endBorderColor": "#383C4A", "endBorderColor": "#383C4A",
"focus": "#08507C", "focus": "#3F3F46",
"focusedBorderColor": "#42A5F5", "focusedBorderColor": "#42A5F5",
"foreground": "#8b9eb5", "foreground": "#8b9eb5",
"highlight": "#FFFFFF", "highlight": "#FFFFFF",
@@ -72,7 +78,10 @@
"Tooltip.borderColor": "#404552", "Tooltip.borderColor": "#404552",
"Tooltip.background": "#262a33" "Tooltip.background": "#262a33"
}, },
"Content.background": "#262b33", "Content": {
"background": "#262b33",
"selectionBackground": "#8888FF"
},
"CheckBox": { "CheckBox": {
"background": "#2f343f", "background": "#2f343f",
"disabledText": "#D3DAE3", "disabledText": "#D3DAE3",
@@ -89,6 +98,14 @@
"selectionBackground": "#8888FF", "selectionBackground": "#8888FF",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"CodeWithMe": {
"Avatar.foreground": "#D3DAE3",
"AccessEnabled": {
"accessDot": "#42A5F5",
"dropdownBorder": "#393f4c",
"pillBackground": "$second"
}
},
"ColorChooser": { "ColorChooser": {
"background": "#2f343f", "background": "#2f343f",
"foreground": "#D3DAE3", "foreground": "#D3DAE3",
@@ -104,6 +121,7 @@
}, },
"background": "#2f343f", "background": "#2f343f",
"buttonBackground": "#383C4A", "buttonBackground": "#383C4A",
"darcula.hoveredArrowButtonForeground": "#42A5F5",
"disabledForeground": "#D3DAE3", "disabledForeground": "#D3DAE3",
"foreground": "#D3DAE3", "foreground": "#D3DAE3",
"modifiedItemForeground": "#42A5F5", "modifiedItemForeground": "#42A5F5",
@@ -130,7 +148,7 @@
}, },
"Component": { "Component": {
"arc": 4, "arc": 4,
"borderColor": "#08507C", "borderColor": "#3F3F46",
"disabledBorderColor": "#383C4A", "disabledBorderColor": "#383C4A",
"focusColor": "#42A5F5", "focusColor": "#42A5F5",
"focusedBorderColor": "#42A5F5", "focusedBorderColor": "#42A5F5",
@@ -156,23 +174,25 @@
} }
}, },
"DebuggerTabs": { "DebuggerTabs": {
"selectedBackground": "#08507C", "selectedBackground": "#3F3F46",
"underlinedTabBackground": "#08507C" "underlinedTabBackground": "#3F3F46"
}, },
"DebuggerPopup": { "DebuggerPopup": {
"borderColor": "#08507C" "borderColor": "#3F3F46"
}, },
"DefaultTabs": { "DefaultTabs": {
"background": "#2f343f", "background": "#2f343f",
"borderColor": "#2f343f", "borderColor": "#2f343f",
"hoverBackground": "#41416A", "hoverBackground": "#41416A",
"hoverColor": "#2f343f", "hoverColor": "#2f343f",
"hoverMaskColor": "#08507C", "hoverMaskColor": "#3F3F46",
"inactiveColoredTabBackground": "#2f343f",
"inactiveColoredFileBackground": "#383C4A", "inactiveColoredFileBackground": "#383C4A",
"inactiveUnderlineColor": "#D3DAE3", "inactiveUnderlineColor": "#42A5F5",
"inactiveMaskColor": "#2f343f", "inactiveMaskColor": "#2f343f",
"underlineColor": "#42A5F5", "underlineColor": "#42A5F5",
"underlinedTabBackground": "#41416A" "underlinedTabBackground": "#41416A",
"underlinedTabForeground": "#FFFFFF"
}, },
"Desktop.background": "#2f343f", "Desktop.background": "#2f343f",
"DialogWrapper.southPanelBackground": "#2f343f", "DialogWrapper.southPanelBackground": "#2f343f",
@@ -198,21 +218,23 @@
}, },
"EditorTabs": { "EditorTabs": {
"borderColor": "#393f4c", "borderColor": "#393f4c",
"hoverColor": "#08507C", "hoverBackground": "#3F3F46",
"hoverMaskColor": "#08507C", "hoverColor": "#3F3F46",
"hoverMaskColor": "#3F3F46",
"inactiveMaskColor": "#2f343f", "inactiveMaskColor": "#2f343f",
"inactiveColoredFileBackground": "#2f343f2", "inactiveColoredFileBackground": "#2f343f",
"inactiveUnderlineColor": "#D3DAE3", "inactiveUnderlineColor": "#D3DAE3",
"selectedForeground": "#D3DAE3", "selectedForeground": "#D3DAE3",
"selectedBackground": "#41416A", "selectedBackground": "#41416A",
"underlineColor": "#42A5F5", "underlineColor": "#42A5F5",
"underlinedTabBackground": "#41416A" "underlinedTabBackground": "#41416A",
"underlinedTabForeground": "#FFFFFF"
}, },
"EditorGroupsTabs": { "EditorGroupsTabs": {
"background": "#2f343f", "background": "#2f343f",
"borderColor": "#393f4c", "borderColor": "#393f4c",
"hoverBackground": "#08507C", "hoverBackground": "#3F3F46",
"hoverColor": "#08507C", "hoverColor": "#3F3F46",
"inactiveUnderlineColor": "#42A5F5", "inactiveUnderlineColor": "#42A5F5",
"underlineColor": "#42A5F5", "underlineColor": "#42A5F5",
"underlinedTabBackground": "#41416A", "underlinedTabBackground": "#41416A",
@@ -221,7 +243,7 @@
"FileColor": { "FileColor": {
"Green": "#387002", "Green": "#387002",
"Blue": "#004BA0", "Blue": "#004BA0",
"Yellow": "#37373d", "Yellow": "#474B57",
"Orange": "#B53D00", "Orange": "#B53D00",
"Violet": "#4D2C91", "Violet": "#4D2C91",
"Rose": "#A00037" "Rose": "#A00037"
@@ -246,12 +268,13 @@
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionBackground": "#41416A" "selectionBackground": "#41416A"
}, },
"GotItTooltip.borderColor": "#262a33",
"Group": { "Group": {
"disabledSeparatorColor": "#404552", "disabledSeparatorColor": "#404552",
"separatorColor": "#404552" "separatorColor": "#404552"
}, },
"GutterTooltip": { "GutterTooltip": {
"infoForeground": "#D3DAE3", "infoForeground": "#8b9eb5",
"lineSeparatorColor": "#2f343f" "lineSeparatorColor": "#2f343f"
}, },
"HeaderColor": { "HeaderColor": {
@@ -288,7 +311,8 @@
"disabledText": "#D3DAE3", "disabledText": "#D3DAE3",
"foreground": "#D3DAE3", "foreground": "#D3DAE3",
"infoForeground": "#8b9eb5", "infoForeground": "#8b9eb5",
"selectedForeground": "#FFFFFF" "selectedForeground": "#FFFFFF",
"selectedDisabledForeground": "#D3DAE3"
}, },
"Link": { "Link": {
"activeForeground": "#42A5F5", "activeForeground": "#42A5F5",
@@ -301,10 +325,12 @@
"List": { "List": {
"background": "#393f4c", "background": "#393f4c",
"foreground": "#D3DAE3", "foreground": "#D3DAE3",
"hoverBackground": "#08507C70",
"hoverInactiveBackground": "#41416A",
"selectionBackground": "#8888FF50", "selectionBackground": "#8888FF50",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#09477170" "selectionInactiveBackground": "#08507C70"
}, },
"material": { "material": {
"background": "#2f343f", "background": "#2f343f",
@@ -320,8 +346,8 @@
}, },
"MemoryIndicator": { "MemoryIndicator": {
"allocatedBackground": "#393f4c", "allocatedBackground": "#393f4c",
"usedColor": "#08507C", "usedColor": "#3F3F46",
"usedBackground": "#08507C" "usedBackground": "#3F3F46"
}, },
"Menu": { "Menu": {
"acceleratorForeground": "#8b9eb5", "acceleratorForeground": "#8b9eb5",
@@ -409,7 +435,7 @@
"ParameterInfo": { "ParameterInfo": {
"background": "#393f4c", "background": "#393f4c",
"borderColor": "#41416A", "borderColor": "#41416A",
"currentOverloadBackground": "#41416A", "currentOverloadBackground": "#3F3F46",
"currentParameterForeground": "#42A5F5", "currentParameterForeground": "#42A5F5",
"disabledForeground": "#D3DAE3", "disabledForeground": "#D3DAE3",
"foreground": "#D3DAE3", "foreground": "#D3DAE3",
@@ -428,21 +454,22 @@
"Plugins": { "Plugins": {
"background": "#2f343f", "background": "#2f343f",
"disabledForeground": "#D3DAE3", "disabledForeground": "#D3DAE3",
"eapTagBackground": "#08507C", "eapTagBackground": "#3F3F46",
"lightSelectionBackground": "#8888FF", "hoverBackground": "#08507C70",
"paidTagBackground": "#08507C", "lightSelectionBackground": "#41416A",
"paidTagBackground": "#3F3F46",
"selectionBackground": "#8888FF", "selectionBackground": "#8888FF",
"tagForeground": "#42A5F5", "tagForeground": "#42A5F5",
"tagBackground": "#08507C", "tagBackground": "#3F3F46",
"trialTagBackground": "#08507C", "trialTagBackground": "#3F3F46",
"Button": { "Button": {
"installBackground": "#383C4A", "installBackground": "#383C4A",
"installBorderColor": "#383C4A", "installBorderColor": "#383C4A",
"installForeground": "#D3DAE3", "installForeground": "#D3DAE3",
"installFocusedBackground": "#08507C", "installFocusedBackground": "#3F3F46",
"installFillForeground": "#D3DAE3", "installFillForeground": "#D3DAE3",
"installFillBackground": "#383C4A", "installFillBackground": "#383C4A",
"updateBackground": "#383C4A", "updateBackground": "#42A5F5",
"updateBorderColor": "#383C4A", "updateBorderColor": "#383C4A",
"updateForeground": "#D3DAE3" "updateForeground": "#D3DAE3"
}, },
@@ -496,8 +523,8 @@
"indeterminateEndColor": "#42A5F5", "indeterminateEndColor": "#42A5F5",
"indeterminateStartColor": "#42A5F5", "indeterminateStartColor": "#42A5F5",
"progressColor": "#42A5F5", "progressColor": "#42A5F5",
"selectionBackground": "#08507C", "selectionBackground": "#3F3F46",
"trackColor": "#08507C" "trackColor": "#3F3F46"
}, },
"PsiViewer": { "PsiViewer": {
"referenceHighlightColor": "#42A5F5" "referenceHighlightColor": "#42A5F5"
@@ -517,6 +544,7 @@
"selectionBackground": "#8888FF", "selectionBackground": "#8888FF",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"ScreenView.borderColor": "#404552",
"ScrollBar": { "ScrollBar": {
"background": "#2f343f", "background": "#2f343f",
"hoverThumbBorderColor": "#42A5F5", "hoverThumbBorderColor": "#42A5F5",
@@ -538,7 +566,7 @@
"trackColor": "#2f343f30" "trackColor": "#2f343f30"
} }
}, },
"thumb": "#08507C", "thumb": "#3F3F46",
"thumbBorderColor": "#42A5F570", "thumbBorderColor": "#42A5F570",
"thumbColor": "#42A5F570", "thumbColor": "#42A5F570",
"trackColor": "#2f343f30", "trackColor": "#2f343f30",
@@ -571,14 +599,23 @@
"Tab": { "Tab": {
"active.foreground": "#FFFFFF", "active.foreground": "#FFFFFF",
"selectedForeground": "#FFFFFF", "selectedForeground": "#FFFFFF",
"selectedBackground": "#08507C" "selectedBackground": "#3F3F46"
} }
}, },
"SearchMatch": { "SearchMatch": {
"endBackground": "#42A5F5", "endBackground": "#42A5F5",
"startBackground": "#42A5F5" "startBackground": "#42A5F5",
"endColor": "#42A5F5",
"startColor": "#42A5F5"
}, },
"SearchField.errorBackground": "#262a33", "SearchField.errorBackground": "#262a33",
"SearchOption": {
"selectedBackground": "#41416A"
},
"SearchResults": {
"Ordinal.File.Foreground": "#8b9eb5",
"Repeated.File.Foreground": "#D3DAE3"
},
"Separator": { "Separator": {
"background": "#393f4c", "background": "#393f4c",
"foreground": "#393f4c", "foreground": "#393f4c",
@@ -599,7 +636,7 @@
"thumb": "#42A5F5" "thumb": "#42A5F5"
}, },
"SpeedSearch": { "SpeedSearch": {
"background": "#08507C", "background": "#3F3F46",
"borderColor": "#404552", "borderColor": "#404552",
"foreground": "#D3DAE3", "foreground": "#D3DAE3",
"errorForeground": "#D3DAE3" "errorForeground": "#D3DAE3"
@@ -616,11 +653,13 @@
}, },
"SplitPaneDivider.draggingColor": "#393f4c", "SplitPaneDivider.draggingColor": "#393f4c",
"StatusBar": { "StatusBar": {
"borderColor": "#2f343f" "borderColor": "#2f343f",
"hoverBackground": "#3F3F46",
"LightEditBackground": "#41416A"
}, },
"TabbedPane": { "TabbedPane": {
"background": "#2f343f", "background": "#2f343f",
"contentAreaColor": "#08507C", "contentAreaColor": "#3F3F46",
"contentBorderInsets": "3,1,1,1", "contentBorderInsets": "3,1,1,1",
"darkShadow": "#404552", "darkShadow": "#404552",
"disabledForeground": "#D3DAE3", "disabledForeground": "#D3DAE3",
@@ -630,7 +669,7 @@
"fontSizeOffset": 0, "fontSizeOffset": 0,
"foreground": "#D3DAE3", "foreground": "#D3DAE3",
"highlight": "#404552", "highlight": "#404552",
"hoverColor": "#08507C", "hoverColor": "#3F3F46",
"labelShift": 0, "labelShift": 0,
"selectedForeground": "#FFFFFF", "selectedForeground": "#FFFFFF",
"selectedLabelShift": 0, "selectedLabelShift": 0,
@@ -643,9 +682,11 @@
}, },
"TabbedPane.mt.tab.background": "#2f343f", "TabbedPane.mt.tab.background": "#2f343f",
"Table": { "Table": {
"alternativeRowBackground": "#262b33",
"background": "#2f343f", "background": "#2f343f",
"cellNoFocusBorder": "10,5,10,5", "cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5",
"disabledForeground": "#D3DAE3",
"dropLineColor": "#42A5F5", "dropLineColor": "#42A5F5",
"dropLineShortColor": "#42A5F5", "dropLineShortColor": "#42A5F5",
"focusCellBackground": "#41416A", "focusCellBackground": "#41416A",
@@ -653,6 +694,8 @@
"foreground": "#D3DAE3", "foreground": "#D3DAE3",
"gridColor": "#2f343f", "gridColor": "#2f343f",
"highlightOuter": "#41416A", "highlightOuter": "#41416A",
"hoverBackground": "#08507C70",
"hoverInactiveBackground": "#41416A",
"lightSelectionForeground": "#FFFFFF", "lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#8b9eb5", "lightSelectionInactiveForeground": "#8b9eb5",
"lightSelectionInactiveBackground": "#393f4c", "lightSelectionInactiveBackground": "#393f4c",
@@ -704,7 +747,7 @@
}, },
"TitlePane": { "TitlePane": {
"background": "#262b33", "background": "#262b33",
"Button.hoverBackground": "#08507C", "Button.hoverBackground": "#3F3F46",
"inactiveBackground": "#2f343f", "inactiveBackground": "#2f343f",
"infoForeground": "#8b9eb5", "infoForeground": "#8b9eb5",
"inactiveInfoForeground": "#8b9eb5" "inactiveInfoForeground": "#8b9eb5"
@@ -729,8 +772,8 @@
"ToolTip": { "ToolTip": {
"Actions.background": "#2f343f", "Actions.background": "#2f343f",
"Actions.infoForeground": "#8b9eb5", "Actions.infoForeground": "#8b9eb5",
"background": "#2f343f", "background": "#262a33",
"borderColor": "#08507C", "borderColor": "#404552",
"foreground": "#D3DAE3", "foreground": "#D3DAE3",
"infoForeground": "#8b9eb5", "infoForeground": "#8b9eb5",
"separatorColor": "#404552", "separatorColor": "#404552",
@@ -751,50 +794,93 @@
"background": "#2f343f" "background": "#2f343f"
}, },
"HeaderTab": { "HeaderTab": {
"hoverBackground": "#08507C", "borderColor": "#3F3F46",
"hoverInactiveBackground": "#393f4c", "hoverBackground": "#3F3F46",
"hoverInactiveBackground": "#3F3F46",
"inactiveUnderlineColor": "#42A5F5", "inactiveUnderlineColor": "#42A5F5",
"selectedBackground": "#262b33", "selectedBackground": "#262b33",
"selectedInactiveBackground": "#262b33", "selectedInactiveBackground": "#262b33",
"underlineColor": "#42A5F5", "underlineColor": "#42A5F5",
"underlinedTabBackground": "#08507C", "underlinedTabBackground": "#41416A",
"underlinedTabInactiveBackground": "#393f4c" "underlinedTabInactiveBackground": "#393f4c",
"underlinedTabForeground": "#FFFFFF",
"underlinedTabInactiveForeground": "#D3DAE3"
} }
}, },
"Tree": { "Tree": {
"background": "#2f343f", "background": "#2f343f",
"foreground": "#8b9eb5", "foreground": "#8b9eb5",
"hash": "#404552", "hash": "#404552",
"hoverBackground": "#08507C70",
"hoverInactiveBackground": "#41416A",
"modifiedItemForeground": "#42A5F5", "modifiedItemForeground": "#42A5F5",
"rowHeight": 28, "rowHeight": 28,
"selectionBackground": "#09477170", "selectionBackground": "#08507C70",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#09477170", "selectionInactiveBackground": "#08507C70",
"textBackground": "#2f343f" "textBackground": "#2f343f"
}, },
"Tree.leftChildIndent": 10, "Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5, "Tree.rightChildIndent": 5,
"UiDesigner": { "UIDesigner": {
"Activity.borderColor": "#404552", "Activity.borderColor": "#404552",
"ColorPicker.background": "#2f343f", "Canvas.background": "#262b33",
"ColorPicker.foreground": "#D3DAE3", "ColorPicker": {
"Component.borderColor": "#404552", "background": "#2f343f",
"Component.background": "#2f343f", "foreground": "#D3DAE3"
"Component.foreground": "#D3DAE3", },
"Connector.borderColor": "#404552", "Component": {
"Connector.hoverBorderColor": "#08507C", "borderColor": "#404552",
"background": "#2f343f",
"foreground": "#D3DAE3",
"hoverBorderColor": "#3F3F46"
},
"Connector": {
"borderColor": "#404552",
"hoverBorderColor": "#3F3F46"
},
"Canvas.background": "#262b33", "Canvas.background": "#262b33",
"highStroke.foreground": "#D3DAE3", "highStroke.foreground": "#D3DAE3",
"Label.foreground": "#8b9eb5", "Label.foreground": "#8b9eb5",
"List.selectionBackground": "#09477170", "List.selectionBackground": "#08507C70",
"Panel.borderColor": "#404552", "motion": {
"Panel.background": "#2f343f", "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", "percent.foreground": "#D3DAE3",
"Placeholder.background": "#2f343f", "Placeholder": {
"Placeholder.borderColor": "#404552", "background": "#2f343f",
"Placeholder.foreground": "#D3DAE3", "borderColor": "#404552",
"Placeholder.selectedForeground": "#FFFFFF", "foreground": "#D3DAE3",
"selectedForeground": "#FFFFFF"
},
"Preview.background": "#2f343f", "Preview.background": "#2f343f",
"stroke.acceleratorForeground": "#8b9eb5" "stroke.acceleratorForeground": "#8b9eb5"
}, },
@@ -809,7 +895,7 @@
"selectedBranchBackground": "#2f343f" "selectedBranchBackground": "#2f343f"
}, },
"GitCommits": { "GitCommits": {
"graphColor": "#08507C" "graphColor": "#3F3F46"
}, },
"GitLog": { "GitLog": {
"localBranchIconColor": "#42A5F5", "localBranchIconColor": "#42A5F5",
@@ -828,11 +914,12 @@
}, },
"Log": { "Log": {
"Commit.unmatchedForeground": "#8b9eb5", "Commit.unmatchedForeground": "#8b9eb5",
"Commit.currentBranchBackground": "#393f4c" "Commit.currentBranchBackground": "#393f4c",
"Commit.hoveredBackground": "#08507C70"
}, },
"RefLabel": { "RefLabel": {
"foreground": "#FFFFFF", "foreground": "#FFFFFF",
"backgroundBase": "#08507C" "backgroundBase": "#3F3F46"
} }
}, },
"Viewport": { "Viewport": {
@@ -840,16 +927,22 @@
"foreground": "#D3DAE3" "foreground": "#D3DAE3"
}, },
"WelcomeScreen": { "WelcomeScreen": {
"AssociatedComponent.background": "#2f343f",
"background": "#2f343f", "background": "#2f343f",
"borderColor": "#2f343f", "borderColor": "#2f343f",
"captionBackground": "#262b33", "captionBackground": "#262b33",
"captionForeground": "#D3DAE3", "captionForeground": "#D3DAE3",
"Details.background": "#2f343f",
"footerBackground": "#262b33", "footerBackground": "#262b33",
"footerForeground": "#D3DAE3", "footerForeground": "#D3DAE3",
"headerBackground": "#2f343f", "headerBackground": "#2f343f",
"headerForeground": "#D3DAE3", "headerForeground": "#D3DAE3",
"List.background": "#262b33",
"separatorColor": "#404552", "separatorColor": "#404552",
"SidePanel.background": "#393f4c",
"Projects": { "Projects": {
"actions.background": "#262b33",
"actions.selectionBackground": "#3F3F46",
"background": "#393f4c", "background": "#393f4c",
"selectionBackground": "#8888FF", "selectionBackground": "#8888FF",
"selectionInactiveBackground": "#393f4c" "selectionInactiveBackground": "#393f4c"
@@ -881,8 +974,8 @@
"Actions.Yellow": "#F9EE98", "Actions.Yellow": "#F9EE98",
"Checkbox.Background.Default": "#262b33", "Checkbox.Background.Default": "#262b33",
"Checkbox.Background.Default.Dark": "#262b33", "Checkbox.Background.Default.Dark": "#262b33",
"Checkbox.Background.Disabled": "#37373d", "Checkbox.Background.Disabled": "#474B57",
"Checkbox.Background.Disabled.Dark": "#37373d", "Checkbox.Background.Disabled.Dark": "#474B57",
"Checkbox.Border.Default": "#404552", "Checkbox.Border.Default": "#404552",
"Checkbox.Border.Default.Dark": "#404552", "Checkbox.Border.Default.Dark": "#404552",
"Checkbox.Border.Disabled": "#D3DAE3", "Checkbox.Border.Disabled": "#D3DAE3",

View File

@@ -3,6 +3,12 @@
"dark": true, "dark": true,
"author": "Mallowigi", "author": "Mallowigi",
"editorScheme": "/colors/Atom One Dark.xml", "editorScheme": "/colors/Atom One Dark.xml",
"emptyFrameBackground": {
"anchor": "center",
"image": "/walls/onedark.svg",
"fill": "scale",
"transparency": 50
},
"ui": { "ui": {
"*": { "*": {
"acceleratorSelectionForeground": "#979FAD", "acceleratorSelectionForeground": "#979FAD",
@@ -17,7 +23,7 @@
"inactiveBackground": "#3c4150", "inactiveBackground": "#3c4150",
"inactiveForeground": "#979FAD", "inactiveForeground": "#979FAD",
"infoForeground": "#979FAD", "infoForeground": "#979FAD",
"selectionBackground": "#4D515D", "selectionBackground": "#3A3F4B",
"selectionBackgroundInactive": "#2F333D", "selectionBackgroundInactive": "#2F333D",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#2F333D", "selectionInactiveBackground": "#2F333D",
@@ -33,7 +39,7 @@
"pressedBorderColor": "#2979ff50" "pressedBorderColor": "#2979ff50"
}, },
"Autocomplete": { "Autocomplete": {
"selectionBackground": "#4D515D" "selectionBackground": "#3A3F4B"
}, },
"Borders.ContrastBorderColor": "#282C34", "Borders.ContrastBorderColor": "#282C34",
"Borders.color": "#282C34", "Borders.color": "#282C34",
@@ -72,7 +78,10 @@
"Tooltip.borderColor": "#282C34", "Tooltip.borderColor": "#282C34",
"Tooltip.background": "#282C34" "Tooltip.background": "#282C34"
}, },
"Content.background": "#21252B", "Content": {
"background": "#21252B",
"selectionBackground": "#3A3F4B"
},
"CheckBox": { "CheckBox": {
"background": "#282C34", "background": "#282C34",
"disabledText": "#6B727D", "disabledText": "#6B727D",
@@ -86,9 +95,17 @@
"disabledBackground": "#282C34", "disabledBackground": "#282C34",
"disabledForeground": "#6B727D", "disabledForeground": "#6B727D",
"foreground": "#979FAD", "foreground": "#979FAD",
"selectionBackground": "#4D515D", "selectionBackground": "#3A3F4B",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"CodeWithMe": {
"Avatar.foreground": "#979FAD",
"AccessEnabled": {
"accessDot": "#2979ff",
"dropdownBorder": "#2F333D",
"pillBackground": "$second"
}
},
"ColorChooser": { "ColorChooser": {
"background": "#282C34", "background": "#282C34",
"foreground": "#979FAD", "foreground": "#979FAD",
@@ -104,6 +121,7 @@
}, },
"background": "#21252B", "background": "#21252B",
"buttonBackground": "#3A3F4B", "buttonBackground": "#3A3F4B",
"darcula.hoveredArrowButtonForeground": "#2979ff",
"disabledForeground": "#6B727D", "disabledForeground": "#6B727D",
"foreground": "#979FAD", "foreground": "#979FAD",
"modifiedItemForeground": "#2979ff", "modifiedItemForeground": "#2979ff",
@@ -123,8 +141,8 @@
"selectedGrayedForeground": "#FFFFFF", "selectedGrayedForeground": "#FFFFFF",
"selectionGrayForeground": "#FFFFFF", "selectionGrayForeground": "#FFFFFF",
"selectionInactiveInfoForeground": "#979FAD", "selectionInactiveInfoForeground": "#979FAD",
"selectionInactiveBackground": "#4D515D50", "selectionInactiveBackground": "#3A3F4B50",
"selectionBackground": "#4D515D80", "selectionBackground": "#3A3F4B80",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInfoForeground": "#FFFFFF" "selectionInfoForeground": "#FFFFFF"
}, },
@@ -168,11 +186,13 @@
"hoverBackground": "#383E49", "hoverBackground": "#383E49",
"hoverColor": "#21252B", "hoverColor": "#21252B",
"hoverMaskColor": "#383D48", "hoverMaskColor": "#383D48",
"inactiveColoredTabBackground": "#282C34",
"inactiveColoredFileBackground": "#3A3F4B", "inactiveColoredFileBackground": "#3A3F4B",
"inactiveUnderlineColor": "#6B727D", "inactiveUnderlineColor": "#2979ff",
"inactiveMaskColor": "#21252B", "inactiveMaskColor": "#21252B",
"underlineColor": "#2979ff", "underlineColor": "#2979ff",
"underlinedTabBackground": "#383E49" "underlinedTabBackground": "#383E49",
"underlinedTabForeground": "#FFFFFF"
}, },
"Desktop.background": "#282C34", "Desktop.background": "#282C34",
"DialogWrapper.southPanelBackground": "#282C34", "DialogWrapper.southPanelBackground": "#282C34",
@@ -193,20 +213,22 @@
"foreground": "#979FAD", "foreground": "#979FAD",
"inactiveBackground": "#282C34", "inactiveBackground": "#282C34",
"inactiveForeground": "#6B727D", "inactiveForeground": "#6B727D",
"selectionBackground": "#4D515D", "selectionBackground": "#3A3F4B",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"EditorTabs": { "EditorTabs": {
"borderColor": "#2F333D", "borderColor": "#2F333D",
"hoverBackground": "#383D48",
"hoverColor": "#383D48", "hoverColor": "#383D48",
"hoverMaskColor": "#383D48", "hoverMaskColor": "#383D48",
"inactiveMaskColor": "#282C34", "inactiveMaskColor": "#282C34",
"inactiveColoredFileBackground": "#282C342", "inactiveColoredFileBackground": "#282C34",
"inactiveUnderlineColor": "#6B727D", "inactiveUnderlineColor": "#6B727D",
"selectedForeground": "#979FAD", "selectedForeground": "#979FAD",
"selectedBackground": "#383E49", "selectedBackground": "#383E49",
"underlineColor": "#2979ff", "underlineColor": "#2979ff",
"underlinedTabBackground": "#383E49" "underlinedTabBackground": "#383E49",
"underlinedTabForeground": "#FFFFFF"
}, },
"EditorGroupsTabs": { "EditorGroupsTabs": {
"background": "#282C34", "background": "#282C34",
@@ -246,6 +268,7 @@
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionBackground": "#383E49" "selectionBackground": "#383E49"
}, },
"GotItTooltip.borderColor": "#282C34",
"Group": { "Group": {
"disabledSeparatorColor": "#282C34", "disabledSeparatorColor": "#282C34",
"separatorColor": "#282C34" "separatorColor": "#282C34"
@@ -288,7 +311,8 @@
"disabledText": "#6B727D", "disabledText": "#6B727D",
"foreground": "#979FAD", "foreground": "#979FAD",
"infoForeground": "#979FAD", "infoForeground": "#979FAD",
"selectedForeground": "#FFFFFF" "selectedForeground": "#FFFFFF",
"selectedDisabledForeground": "#979FAD"
}, },
"Link": { "Link": {
"activeForeground": "#2979ff", "activeForeground": "#2979ff",
@@ -301,10 +325,12 @@
"List": { "List": {
"background": "#2F333D", "background": "#2F333D",
"foreground": "#979FAD", "foreground": "#979FAD",
"selectionBackground": "#4D515D50", "hoverBackground": "#3A3F4B70",
"hoverInactiveBackground": "#383E49",
"selectionBackground": "#3A3F4B50",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#3A3F4B80" "selectionInactiveBackground": "#3A3F4B70"
}, },
"material": { "material": {
"background": "#282C34", "background": "#282C34",
@@ -332,7 +358,7 @@
"disabledBackground": "#2F333D", "disabledBackground": "#2F333D",
"disabledForeground": "#6B727D", "disabledForeground": "#6B727D",
"foreground": "#979FAD", "foreground": "#979FAD",
"selectionBackground": "#4D515D", "selectionBackground": "#3A3F4B",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"separatorColor": "#282C34" "separatorColor": "#282C34"
}, },
@@ -343,7 +369,7 @@
"disabledForeground": "#6B727D", "disabledForeground": "#6B727D",
"foreground": "#979FAD", "foreground": "#979FAD",
"highlight": "#282C34", "highlight": "#282C34",
"selectionBackground": "#4D515D", "selectionBackground": "#3A3F4B",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"shadow": "#21252B" "shadow": "#21252B"
}, },
@@ -355,7 +381,7 @@
"disabledBackground": "#282C34", "disabledBackground": "#282C34",
"disabledForeground": "#6B727D", "disabledForeground": "#6B727D",
"foreground": "#979FAD", "foreground": "#979FAD",
"selectionBackground": "#4D515D", "selectionBackground": "#3A3F4B",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"NavBar": { "NavBar": {
@@ -409,7 +435,7 @@
"ParameterInfo": { "ParameterInfo": {
"background": "#2F333D", "background": "#2F333D",
"borderColor": "#383E49", "borderColor": "#383E49",
"currentOverloadBackground": "#383E49", "currentOverloadBackground": "#383D48",
"currentParameterForeground": "#2979ff", "currentParameterForeground": "#2979ff",
"disabledForeground": "#6B727D", "disabledForeground": "#6B727D",
"foreground": "#979FAD", "foreground": "#979FAD",
@@ -429,9 +455,10 @@
"background": "#282C34", "background": "#282C34",
"disabledForeground": "#6B727D", "disabledForeground": "#6B727D",
"eapTagBackground": "#383D48", "eapTagBackground": "#383D48",
"lightSelectionBackground": "#4D515D", "hoverBackground": "#3A3F4B70",
"lightSelectionBackground": "#383E49",
"paidTagBackground": "#383D48", "paidTagBackground": "#383D48",
"selectionBackground": "#4D515D", "selectionBackground": "#3A3F4B",
"tagForeground": "#2979ff", "tagForeground": "#2979ff",
"tagBackground": "#383D48", "tagBackground": "#383D48",
"trialTagBackground": "#383D48", "trialTagBackground": "#383D48",
@@ -442,7 +469,7 @@
"installFocusedBackground": "#383D48", "installFocusedBackground": "#383D48",
"installFillForeground": "#6B727D", "installFillForeground": "#6B727D",
"installFillBackground": "#3A3F4B", "installFillBackground": "#3A3F4B",
"updateBackground": "#3A3F4B", "updateBackground": "#2979ff",
"updateBorderColor": "#3A3F4B", "updateBorderColor": "#3A3F4B",
"updateForeground": "#979FAD" "updateForeground": "#979FAD"
}, },
@@ -514,9 +541,10 @@
"disabledBackground": "#282C34", "disabledBackground": "#282C34",
"disabledForeground": "#6B727D", "disabledForeground": "#6B727D",
"foreground": "#979FAD", "foreground": "#979FAD",
"selectionBackground": "#4D515D", "selectionBackground": "#3A3F4B",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"ScreenView.borderColor": "#282C34",
"ScrollBar": { "ScrollBar": {
"background": "#282C34", "background": "#282C34",
"hoverThumbBorderColor": "#2979ff", "hoverThumbBorderColor": "#2979ff",
@@ -576,9 +604,18 @@
}, },
"SearchMatch": { "SearchMatch": {
"endBackground": "#2979ff", "endBackground": "#2979ff",
"startBackground": "#2979ff" "startBackground": "#2979ff",
"endColor": "#2979ff",
"startColor": "#2979ff"
}, },
"SearchField.errorBackground": "#282C34", "SearchField.errorBackground": "#282C34",
"SearchOption": {
"selectedBackground": "#383E49"
},
"SearchResults": {
"Ordinal.File.Foreground": "#979FAD",
"Repeated.File.Foreground": "#979FAD"
},
"Separator": { "Separator": {
"background": "#2F333D", "background": "#2F333D",
"foreground": "#2F333D", "foreground": "#2F333D",
@@ -616,7 +653,9 @@
}, },
"SplitPaneDivider.draggingColor": "#2F333D", "SplitPaneDivider.draggingColor": "#2F333D",
"StatusBar": { "StatusBar": {
"borderColor": "#282C34" "borderColor": "#282C34",
"hoverBackground": "#383D48",
"LightEditBackground": "#383E49"
}, },
"TabbedPane": { "TabbedPane": {
"background": "#282C34", "background": "#282C34",
@@ -643,9 +682,11 @@
}, },
"TabbedPane.mt.tab.background": "#21252B", "TabbedPane.mt.tab.background": "#21252B",
"Table": { "Table": {
"alternativeRowBackground": "#21252B",
"background": "#282C34", "background": "#282C34",
"cellNoFocusBorder": "10,5,10,5", "cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5",
"disabledForeground": "#6B727D",
"dropLineColor": "#2979ff", "dropLineColor": "#2979ff",
"dropLineShortColor": "#2979ff", "dropLineShortColor": "#2979ff",
"focusCellBackground": "#383E49", "focusCellBackground": "#383E49",
@@ -653,6 +694,8 @@
"foreground": "#979FAD", "foreground": "#979FAD",
"gridColor": "#282C34", "gridColor": "#282C34",
"highlightOuter": "#383E49", "highlightOuter": "#383E49",
"hoverBackground": "#3A3F4B70",
"hoverInactiveBackground": "#383E49",
"lightSelectionForeground": "#FFFFFF", "lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#979FAD", "lightSelectionInactiveForeground": "#979FAD",
"lightSelectionInactiveBackground": "#2F333D", "lightSelectionInactiveBackground": "#2F333D",
@@ -730,7 +773,7 @@
"Actions.background": "#282C34", "Actions.background": "#282C34",
"Actions.infoForeground": "#979FAD", "Actions.infoForeground": "#979FAD",
"background": "#282C34", "background": "#282C34",
"borderColor": "#383D48", "borderColor": "#282C34",
"foreground": "#979FAD", "foreground": "#979FAD",
"infoForeground": "#979FAD", "infoForeground": "#979FAD",
"separatorColor": "#282C34", "separatorColor": "#282C34",
@@ -751,50 +794,93 @@
"background": "#282C34" "background": "#282C34"
}, },
"HeaderTab": { "HeaderTab": {
"borderColor": "#383D48",
"hoverBackground": "#383D48", "hoverBackground": "#383D48",
"hoverInactiveBackground": "#2F333D", "hoverInactiveBackground": "#383D48",
"inactiveUnderlineColor": "#2979ff", "inactiveUnderlineColor": "#2979ff",
"selectedBackground": "#21252B", "selectedBackground": "#21252B",
"selectedInactiveBackground": "#21252B", "selectedInactiveBackground": "#21252B",
"underlineColor": "#2979ff", "underlineColor": "#2979ff",
"underlinedTabBackground": "#383D48", "underlinedTabBackground": "#383E49",
"underlinedTabInactiveBackground": "#2F333D" "underlinedTabInactiveBackground": "#2F333D",
"underlinedTabForeground": "#FFFFFF",
"underlinedTabInactiveForeground": "#979FAD"
} }
}, },
"Tree": { "Tree": {
"background": "#21252B", "background": "#21252B",
"foreground": "#979FAD", "foreground": "#979FAD",
"hash": "#282C34", "hash": "#282C34",
"hoverBackground": "#3A3F4B70",
"hoverInactiveBackground": "#383E49",
"modifiedItemForeground": "#2979ff", "modifiedItemForeground": "#2979ff",
"rowHeight": 28, "rowHeight": 28,
"selectionBackground": "#3A3F4B80", "selectionBackground": "#3A3F4B70",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#3A3F4B80", "selectionInactiveBackground": "#3A3F4B70",
"textBackground": "#21252B" "textBackground": "#21252B"
}, },
"Tree.leftChildIndent": 10, "Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5, "Tree.rightChildIndent": 5,
"UiDesigner": { "UIDesigner": {
"Activity.borderColor": "#282C34", "Activity.borderColor": "#282C34",
"ColorPicker.background": "#282C34", "Canvas.background": "#21252B",
"ColorPicker.foreground": "#979FAD", "ColorPicker": {
"Component.borderColor": "#282C34", "background": "#282C34",
"Component.background": "#282C34", "foreground": "#979FAD"
"Component.foreground": "#979FAD", },
"Connector.borderColor": "#282C34", "Component": {
"Connector.hoverBorderColor": "#383D48", "borderColor": "#282C34",
"background": "#282C34",
"foreground": "#979FAD",
"hoverBorderColor": "#383D48"
},
"Connector": {
"borderColor": "#282C34",
"hoverBorderColor": "#383D48"
},
"Canvas.background": "#21252B", "Canvas.background": "#21252B",
"highStroke.foreground": "#979FAD", "highStroke.foreground": "#979FAD",
"Label.foreground": "#979FAD", "Label.foreground": "#979FAD",
"List.selectionBackground": "#3A3F4B80", "List.selectionBackground": "#3A3F4B70",
"Panel.borderColor": "#282C34", "motion": {
"Panel.background": "#282C34", "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", "percent.foreground": "#979FAD",
"Placeholder.background": "#282C34", "Placeholder": {
"Placeholder.borderColor": "#282C34", "background": "#282C34",
"Placeholder.foreground": "#979FAD", "borderColor": "#282C34",
"Placeholder.selectedForeground": "#FFFFFF", "foreground": "#979FAD",
"selectedForeground": "#FFFFFF"
},
"Preview.background": "#282C34", "Preview.background": "#282C34",
"stroke.acceleratorForeground": "#979FAD" "stroke.acceleratorForeground": "#979FAD"
}, },
@@ -828,7 +914,8 @@
}, },
"Log": { "Log": {
"Commit.unmatchedForeground": "#979FAD", "Commit.unmatchedForeground": "#979FAD",
"Commit.currentBranchBackground": "#2F333D" "Commit.currentBranchBackground": "#2F333D",
"Commit.hoveredBackground": "#3A3F4B70"
}, },
"RefLabel": { "RefLabel": {
"foreground": "#FFFFFF", "foreground": "#FFFFFF",
@@ -840,18 +927,24 @@
"foreground": "#979FAD" "foreground": "#979FAD"
}, },
"WelcomeScreen": { "WelcomeScreen": {
"AssociatedComponent.background": "#282C34",
"background": "#282C34", "background": "#282C34",
"borderColor": "#282C34", "borderColor": "#282C34",
"captionBackground": "#21252B", "captionBackground": "#21252B",
"captionForeground": "#979FAD", "captionForeground": "#979FAD",
"Details.background": "#282C34",
"footerBackground": "#21252B", "footerBackground": "#21252B",
"footerForeground": "#979FAD", "footerForeground": "#979FAD",
"headerBackground": "#282C34", "headerBackground": "#282C34",
"headerForeground": "#979FAD", "headerForeground": "#979FAD",
"List.background": "#21252B",
"separatorColor": "#282C34", "separatorColor": "#282C34",
"SidePanel.background": "#2F333D",
"Projects": { "Projects": {
"actions.background": "#21252B",
"actions.selectionBackground": "#383D48",
"background": "#2F333D", "background": "#2F333D",
"selectionBackground": "#4D515D", "selectionBackground": "#3A3F4B",
"selectionInactiveBackground": "#2F333D" "selectionInactiveBackground": "#2F333D"
} }
}, },

View File

@@ -3,6 +3,12 @@
"dark": true, "dark": true,
"author": "Mallowigi", "author": "Mallowigi",
"editorScheme": "/colors/Atom One Dark.xml", "editorScheme": "/colors/Atom One Dark.xml",
"emptyFrameBackground": {
"anchor": "center",
"image": "/walls/onedark.svg",
"fill": "scale",
"transparency": 50
},
"ui": { "ui": {
"*": { "*": {
"acceleratorSelectionForeground": "#979FAD", "acceleratorSelectionForeground": "#979FAD",
@@ -17,7 +23,7 @@
"inactiveBackground": "#3c4150", "inactiveBackground": "#3c4150",
"inactiveForeground": "#979FAD", "inactiveForeground": "#979FAD",
"infoForeground": "#979FAD", "infoForeground": "#979FAD",
"selectionBackground": "#4D515D", "selectionBackground": "#3A3F4B",
"selectionBackgroundInactive": "#2F333D", "selectionBackgroundInactive": "#2F333D",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#2F333D", "selectionInactiveBackground": "#2F333D",
@@ -33,7 +39,7 @@
"pressedBorderColor": "#2979ff50" "pressedBorderColor": "#2979ff50"
}, },
"Autocomplete": { "Autocomplete": {
"selectionBackground": "#4D515D" "selectionBackground": "#3A3F4B"
}, },
"Borders.ContrastBorderColor": "#282C34", "Borders.ContrastBorderColor": "#282C34",
"Borders.color": "#282C34", "Borders.color": "#282C34",
@@ -72,7 +78,10 @@
"Tooltip.borderColor": "#282C34", "Tooltip.borderColor": "#282C34",
"Tooltip.background": "#282C34" "Tooltip.background": "#282C34"
}, },
"Content.background": "#21252B", "Content": {
"background": "#21252B",
"selectionBackground": "#3A3F4B"
},
"CheckBox": { "CheckBox": {
"background": "#282C34", "background": "#282C34",
"disabledText": "#6B727D", "disabledText": "#6B727D",
@@ -86,9 +95,17 @@
"disabledBackground": "#282C34", "disabledBackground": "#282C34",
"disabledForeground": "#6B727D", "disabledForeground": "#6B727D",
"foreground": "#979FAD", "foreground": "#979FAD",
"selectionBackground": "#4D515D", "selectionBackground": "#3A3F4B",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"CodeWithMe": {
"Avatar.foreground": "#979FAD",
"AccessEnabled": {
"accessDot": "#2979ff",
"dropdownBorder": "#2F333D",
"pillBackground": "$second"
}
},
"ColorChooser": { "ColorChooser": {
"background": "#282C34", "background": "#282C34",
"foreground": "#979FAD", "foreground": "#979FAD",
@@ -104,6 +121,7 @@
}, },
"background": "#282C34", "background": "#282C34",
"buttonBackground": "#3A3F4B", "buttonBackground": "#3A3F4B",
"darcula.hoveredArrowButtonForeground": "#2979ff",
"disabledForeground": "#6B727D", "disabledForeground": "#6B727D",
"foreground": "#979FAD", "foreground": "#979FAD",
"modifiedItemForeground": "#2979ff", "modifiedItemForeground": "#2979ff",
@@ -123,8 +141,8 @@
"selectedGrayedForeground": "#FFFFFF", "selectedGrayedForeground": "#FFFFFF",
"selectionGrayForeground": "#FFFFFF", "selectionGrayForeground": "#FFFFFF",
"selectionInactiveInfoForeground": "#979FAD", "selectionInactiveInfoForeground": "#979FAD",
"selectionInactiveBackground": "#4D515D50", "selectionInactiveBackground": "#3A3F4B50",
"selectionBackground": "#4D515D80", "selectionBackground": "#3A3F4B80",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInfoForeground": "#FFFFFF" "selectionInfoForeground": "#FFFFFF"
}, },
@@ -168,11 +186,13 @@
"hoverBackground": "#383E49", "hoverBackground": "#383E49",
"hoverColor": "#282C34", "hoverColor": "#282C34",
"hoverMaskColor": "#383D48", "hoverMaskColor": "#383D48",
"inactiveColoredTabBackground": "#282C34",
"inactiveColoredFileBackground": "#3A3F4B", "inactiveColoredFileBackground": "#3A3F4B",
"inactiveUnderlineColor": "#6B727D", "inactiveUnderlineColor": "#2979ff",
"inactiveMaskColor": "#282C34", "inactiveMaskColor": "#282C34",
"underlineColor": "#2979ff", "underlineColor": "#2979ff",
"underlinedTabBackground": "#383E49" "underlinedTabBackground": "#383E49",
"underlinedTabForeground": "#FFFFFF"
}, },
"Desktop.background": "#282C34", "Desktop.background": "#282C34",
"DialogWrapper.southPanelBackground": "#282C34", "DialogWrapper.southPanelBackground": "#282C34",
@@ -193,20 +213,22 @@
"foreground": "#979FAD", "foreground": "#979FAD",
"inactiveBackground": "#282C34", "inactiveBackground": "#282C34",
"inactiveForeground": "#6B727D", "inactiveForeground": "#6B727D",
"selectionBackground": "#4D515D", "selectionBackground": "#3A3F4B",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"EditorTabs": { "EditorTabs": {
"borderColor": "#2F333D", "borderColor": "#2F333D",
"hoverBackground": "#383D48",
"hoverColor": "#383D48", "hoverColor": "#383D48",
"hoverMaskColor": "#383D48", "hoverMaskColor": "#383D48",
"inactiveMaskColor": "#282C34", "inactiveMaskColor": "#282C34",
"inactiveColoredFileBackground": "#282C342", "inactiveColoredFileBackground": "#282C34",
"inactiveUnderlineColor": "#6B727D", "inactiveUnderlineColor": "#6B727D",
"selectedForeground": "#979FAD", "selectedForeground": "#979FAD",
"selectedBackground": "#383E49", "selectedBackground": "#383E49",
"underlineColor": "#2979ff", "underlineColor": "#2979ff",
"underlinedTabBackground": "#383E49" "underlinedTabBackground": "#383E49",
"underlinedTabForeground": "#FFFFFF"
}, },
"EditorGroupsTabs": { "EditorGroupsTabs": {
"background": "#282C34", "background": "#282C34",
@@ -246,6 +268,7 @@
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionBackground": "#383E49" "selectionBackground": "#383E49"
}, },
"GotItTooltip.borderColor": "#282C34",
"Group": { "Group": {
"disabledSeparatorColor": "#282C34", "disabledSeparatorColor": "#282C34",
"separatorColor": "#282C34" "separatorColor": "#282C34"
@@ -288,7 +311,8 @@
"disabledText": "#6B727D", "disabledText": "#6B727D",
"foreground": "#979FAD", "foreground": "#979FAD",
"infoForeground": "#979FAD", "infoForeground": "#979FAD",
"selectedForeground": "#FFFFFF" "selectedForeground": "#FFFFFF",
"selectedDisabledForeground": "#979FAD"
}, },
"Link": { "Link": {
"activeForeground": "#2979ff", "activeForeground": "#2979ff",
@@ -301,10 +325,12 @@
"List": { "List": {
"background": "#2F333D", "background": "#2F333D",
"foreground": "#979FAD", "foreground": "#979FAD",
"selectionBackground": "#4D515D50", "hoverBackground": "#3A3F4B70",
"hoverInactiveBackground": "#383E49",
"selectionBackground": "#3A3F4B50",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#3A3F4B80" "selectionInactiveBackground": "#3A3F4B70"
}, },
"material": { "material": {
"background": "#282C34", "background": "#282C34",
@@ -332,7 +358,7 @@
"disabledBackground": "#2F333D", "disabledBackground": "#2F333D",
"disabledForeground": "#6B727D", "disabledForeground": "#6B727D",
"foreground": "#979FAD", "foreground": "#979FAD",
"selectionBackground": "#4D515D", "selectionBackground": "#3A3F4B",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"separatorColor": "#282C34" "separatorColor": "#282C34"
}, },
@@ -343,7 +369,7 @@
"disabledForeground": "#6B727D", "disabledForeground": "#6B727D",
"foreground": "#979FAD", "foreground": "#979FAD",
"highlight": "#282C34", "highlight": "#282C34",
"selectionBackground": "#4D515D", "selectionBackground": "#3A3F4B",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"shadow": "#282C34" "shadow": "#282C34"
}, },
@@ -355,7 +381,7 @@
"disabledBackground": "#282C34", "disabledBackground": "#282C34",
"disabledForeground": "#6B727D", "disabledForeground": "#6B727D",
"foreground": "#979FAD", "foreground": "#979FAD",
"selectionBackground": "#4D515D", "selectionBackground": "#3A3F4B",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"NavBar": { "NavBar": {
@@ -409,7 +435,7 @@
"ParameterInfo": { "ParameterInfo": {
"background": "#2F333D", "background": "#2F333D",
"borderColor": "#383E49", "borderColor": "#383E49",
"currentOverloadBackground": "#383E49", "currentOverloadBackground": "#383D48",
"currentParameterForeground": "#2979ff", "currentParameterForeground": "#2979ff",
"disabledForeground": "#6B727D", "disabledForeground": "#6B727D",
"foreground": "#979FAD", "foreground": "#979FAD",
@@ -429,9 +455,10 @@
"background": "#282C34", "background": "#282C34",
"disabledForeground": "#6B727D", "disabledForeground": "#6B727D",
"eapTagBackground": "#383D48", "eapTagBackground": "#383D48",
"lightSelectionBackground": "#4D515D", "hoverBackground": "#3A3F4B70",
"lightSelectionBackground": "#383E49",
"paidTagBackground": "#383D48", "paidTagBackground": "#383D48",
"selectionBackground": "#4D515D", "selectionBackground": "#3A3F4B",
"tagForeground": "#2979ff", "tagForeground": "#2979ff",
"tagBackground": "#383D48", "tagBackground": "#383D48",
"trialTagBackground": "#383D48", "trialTagBackground": "#383D48",
@@ -442,7 +469,7 @@
"installFocusedBackground": "#383D48", "installFocusedBackground": "#383D48",
"installFillForeground": "#6B727D", "installFillForeground": "#6B727D",
"installFillBackground": "#3A3F4B", "installFillBackground": "#3A3F4B",
"updateBackground": "#3A3F4B", "updateBackground": "#2979ff",
"updateBorderColor": "#3A3F4B", "updateBorderColor": "#3A3F4B",
"updateForeground": "#979FAD" "updateForeground": "#979FAD"
}, },
@@ -514,9 +541,10 @@
"disabledBackground": "#282C34", "disabledBackground": "#282C34",
"disabledForeground": "#6B727D", "disabledForeground": "#6B727D",
"foreground": "#979FAD", "foreground": "#979FAD",
"selectionBackground": "#4D515D", "selectionBackground": "#3A3F4B",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"ScreenView.borderColor": "#282C34",
"ScrollBar": { "ScrollBar": {
"background": "#282C34", "background": "#282C34",
"hoverThumbBorderColor": "#2979ff", "hoverThumbBorderColor": "#2979ff",
@@ -576,9 +604,18 @@
}, },
"SearchMatch": { "SearchMatch": {
"endBackground": "#2979ff", "endBackground": "#2979ff",
"startBackground": "#2979ff" "startBackground": "#2979ff",
"endColor": "#2979ff",
"startColor": "#2979ff"
}, },
"SearchField.errorBackground": "#282C34", "SearchField.errorBackground": "#282C34",
"SearchOption": {
"selectedBackground": "#383E49"
},
"SearchResults": {
"Ordinal.File.Foreground": "#979FAD",
"Repeated.File.Foreground": "#979FAD"
},
"Separator": { "Separator": {
"background": "#2F333D", "background": "#2F333D",
"foreground": "#2F333D", "foreground": "#2F333D",
@@ -616,7 +653,9 @@
}, },
"SplitPaneDivider.draggingColor": "#2F333D", "SplitPaneDivider.draggingColor": "#2F333D",
"StatusBar": { "StatusBar": {
"borderColor": "#282C34" "borderColor": "#282C34",
"hoverBackground": "#383D48",
"LightEditBackground": "#383E49"
}, },
"TabbedPane": { "TabbedPane": {
"background": "#282C34", "background": "#282C34",
@@ -643,9 +682,11 @@
}, },
"TabbedPane.mt.tab.background": "#282C34", "TabbedPane.mt.tab.background": "#282C34",
"Table": { "Table": {
"alternativeRowBackground": "#21252B",
"background": "#282C34", "background": "#282C34",
"cellNoFocusBorder": "10,5,10,5", "cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5",
"disabledForeground": "#6B727D",
"dropLineColor": "#2979ff", "dropLineColor": "#2979ff",
"dropLineShortColor": "#2979ff", "dropLineShortColor": "#2979ff",
"focusCellBackground": "#383E49", "focusCellBackground": "#383E49",
@@ -653,6 +694,8 @@
"foreground": "#979FAD", "foreground": "#979FAD",
"gridColor": "#282C34", "gridColor": "#282C34",
"highlightOuter": "#383E49", "highlightOuter": "#383E49",
"hoverBackground": "#3A3F4B70",
"hoverInactiveBackground": "#383E49",
"lightSelectionForeground": "#FFFFFF", "lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#979FAD", "lightSelectionInactiveForeground": "#979FAD",
"lightSelectionInactiveBackground": "#2F333D", "lightSelectionInactiveBackground": "#2F333D",
@@ -730,7 +773,7 @@
"Actions.background": "#282C34", "Actions.background": "#282C34",
"Actions.infoForeground": "#979FAD", "Actions.infoForeground": "#979FAD",
"background": "#282C34", "background": "#282C34",
"borderColor": "#383D48", "borderColor": "#282C34",
"foreground": "#979FAD", "foreground": "#979FAD",
"infoForeground": "#979FAD", "infoForeground": "#979FAD",
"separatorColor": "#282C34", "separatorColor": "#282C34",
@@ -751,50 +794,93 @@
"background": "#282C34" "background": "#282C34"
}, },
"HeaderTab": { "HeaderTab": {
"borderColor": "#383D48",
"hoverBackground": "#383D48", "hoverBackground": "#383D48",
"hoverInactiveBackground": "#2F333D", "hoverInactiveBackground": "#383D48",
"inactiveUnderlineColor": "#2979ff", "inactiveUnderlineColor": "#2979ff",
"selectedBackground": "#21252B", "selectedBackground": "#21252B",
"selectedInactiveBackground": "#21252B", "selectedInactiveBackground": "#21252B",
"underlineColor": "#2979ff", "underlineColor": "#2979ff",
"underlinedTabBackground": "#383D48", "underlinedTabBackground": "#383E49",
"underlinedTabInactiveBackground": "#2F333D" "underlinedTabInactiveBackground": "#2F333D",
"underlinedTabForeground": "#FFFFFF",
"underlinedTabInactiveForeground": "#979FAD"
} }
}, },
"Tree": { "Tree": {
"background": "#282C34", "background": "#282C34",
"foreground": "#979FAD", "foreground": "#979FAD",
"hash": "#282C34", "hash": "#282C34",
"hoverBackground": "#3A3F4B70",
"hoverInactiveBackground": "#383E49",
"modifiedItemForeground": "#2979ff", "modifiedItemForeground": "#2979ff",
"rowHeight": 28, "rowHeight": 28,
"selectionBackground": "#3A3F4B80", "selectionBackground": "#3A3F4B70",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#3A3F4B80", "selectionInactiveBackground": "#3A3F4B70",
"textBackground": "#282C34" "textBackground": "#282C34"
}, },
"Tree.leftChildIndent": 10, "Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5, "Tree.rightChildIndent": 5,
"UiDesigner": { "UIDesigner": {
"Activity.borderColor": "#282C34", "Activity.borderColor": "#282C34",
"ColorPicker.background": "#282C34", "Canvas.background": "#21252B",
"ColorPicker.foreground": "#979FAD", "ColorPicker": {
"Component.borderColor": "#282C34", "background": "#282C34",
"Component.background": "#282C34", "foreground": "#979FAD"
"Component.foreground": "#979FAD", },
"Connector.borderColor": "#282C34", "Component": {
"Connector.hoverBorderColor": "#383D48", "borderColor": "#282C34",
"background": "#282C34",
"foreground": "#979FAD",
"hoverBorderColor": "#383D48"
},
"Connector": {
"borderColor": "#282C34",
"hoverBorderColor": "#383D48"
},
"Canvas.background": "#21252B", "Canvas.background": "#21252B",
"highStroke.foreground": "#979FAD", "highStroke.foreground": "#979FAD",
"Label.foreground": "#979FAD", "Label.foreground": "#979FAD",
"List.selectionBackground": "#3A3F4B80", "List.selectionBackground": "#3A3F4B70",
"Panel.borderColor": "#282C34", "motion": {
"Panel.background": "#282C34", "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", "percent.foreground": "#979FAD",
"Placeholder.background": "#282C34", "Placeholder": {
"Placeholder.borderColor": "#282C34", "background": "#282C34",
"Placeholder.foreground": "#979FAD", "borderColor": "#282C34",
"Placeholder.selectedForeground": "#FFFFFF", "foreground": "#979FAD",
"selectedForeground": "#FFFFFF"
},
"Preview.background": "#282C34", "Preview.background": "#282C34",
"stroke.acceleratorForeground": "#979FAD" "stroke.acceleratorForeground": "#979FAD"
}, },
@@ -828,7 +914,8 @@
}, },
"Log": { "Log": {
"Commit.unmatchedForeground": "#979FAD", "Commit.unmatchedForeground": "#979FAD",
"Commit.currentBranchBackground": "#2F333D" "Commit.currentBranchBackground": "#2F333D",
"Commit.hoveredBackground": "#3A3F4B70"
}, },
"RefLabel": { "RefLabel": {
"foreground": "#FFFFFF", "foreground": "#FFFFFF",
@@ -840,18 +927,24 @@
"foreground": "#979FAD" "foreground": "#979FAD"
}, },
"WelcomeScreen": { "WelcomeScreen": {
"AssociatedComponent.background": "#282C34",
"background": "#282C34", "background": "#282C34",
"borderColor": "#282C34", "borderColor": "#282C34",
"captionBackground": "#21252B", "captionBackground": "#21252B",
"captionForeground": "#979FAD", "captionForeground": "#979FAD",
"Details.background": "#282C34",
"footerBackground": "#21252B", "footerBackground": "#21252B",
"footerForeground": "#979FAD", "footerForeground": "#979FAD",
"headerBackground": "#282C34", "headerBackground": "#282C34",
"headerForeground": "#979FAD", "headerForeground": "#979FAD",
"List.background": "#21252B",
"separatorColor": "#282C34", "separatorColor": "#282C34",
"SidePanel.background": "#2F333D",
"Projects": { "Projects": {
"actions.background": "#21252B",
"actions.selectionBackground": "#383D48",
"background": "#2F333D", "background": "#2F333D",
"selectionBackground": "#4D515D", "selectionBackground": "#3A3F4B",
"selectionInactiveBackground": "#2F333D" "selectionInactiveBackground": "#2F333D"
} }
}, },

View File

@@ -3,34 +3,40 @@
"dark": true, "dark": true,
"author": "Mallowigi", "author": "Mallowigi",
"editorScheme": "/colors/Dracula.xml", "editorScheme": "/colors/Dracula.xml",
"emptyFrameBackground": {
"anchor": "center",
"image": "/walls/dracula.svg",
"fill": "scale",
"transparency": 50
},
"ui": { "ui": {
"*": { "*": {
"acceleratorSelectionForeground": "#6272A4", "acceleratorSelectionForeground": "#6272A4",
"background": "#282A36", "background": "#282A36",
"borderColor": "#21222C", "borderColor": "#21222C",
"disabledBackground": "#313341", "disabledBackground": "#34353D",
"disabledForeground": "#6272A4", "disabledForeground": "#6272A4",
"disabledText": "#6272A4", "disabledText": "#6272A4",
"focusColor": "#6272A4", "focusColor": "#44475a",
"focusedBorderColor": "#FF79C5", "focusedBorderColor": "#9580ff",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"inactiveBackground": "#313341", "inactiveBackground": "#34353D",
"inactiveForeground": "#6272A4", "inactiveForeground": "#6272A4",
"infoForeground": "#6272A4", "infoForeground": "#6272A4",
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
"selectionBackgroundInactive": "#282A36", "selectionBackgroundInactive": "#282A36",
"selectionForeground": "#8BE9FD", "selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#282A36", "selectionInactiveBackground": "#282A36",
"separatorColor": "#21222C" "separatorColor": "#21222C"
}, },
"activeCaption": "#282A36", "activeCaption": "#282A36",
"ActionButton": { "ActionButton": {
"hoverBackground": "#FF79C550", "hoverBackground": "#9580ff50",
"hoverBorderColor": "#FF79C550", "hoverBorderColor": "#9580ff50",
"hoverSeparatorColor": "#393C4B", "hoverSeparatorColor": "#393C4B",
"focusedBorderColor": "#FF79C550", "focusedBorderColor": "#9580ff50",
"pressedBackground": "#FF79C550", "pressedBackground": "#9580ff50",
"pressedBorderColor": "#FF79C550" "pressedBorderColor": "#9580ff50"
}, },
"Autocomplete": { "Autocomplete": {
"selectionBackground": "#44475A" "selectionBackground": "#44475A"
@@ -44,8 +50,8 @@
"endBackground": "#44475A", "endBackground": "#44475A",
"endBorderColor": "#44475A", "endBorderColor": "#44475A",
"foreground": "#8BE9FD", "foreground": "#8BE9FD",
"focusColor": "#FF79C5", "focusColor": "#9580ff",
"focusedBorderColor": "#FF79C5", "focusedBorderColor": "#9580ff",
"shadowColor": "#44475A", "shadowColor": "#44475A",
"startBackground": "#44475A", "startBackground": "#44475A",
"startBorderColor": "#44475A" "startBorderColor": "#44475A"
@@ -54,13 +60,13 @@
"disabledText": "#6272A4", "disabledText": "#6272A4",
"endBackground": "#393C4B", "endBackground": "#393C4B",
"endBorderColor": "#393C4B", "endBorderColor": "#393C4B",
"focus": "#6272A4", "focus": "#44475a",
"focusedBorderColor": "#FF79C5", "focusedBorderColor": "#9580ff",
"foreground": "#6272A4", "foreground": "#6272A4",
"highlight": "#8BE9FD", "highlight": "#FFFFFF",
"mt.background": "#393C4B", "mt.background": "#393C4B",
"mt.foreground": "#6272A4", "mt.foreground": "#6272A4",
"mt.selectedForeground": "#8BE9FD", "mt.selectedForeground": "#FFFFFF",
"mt.selection.color1": "#44475A", "mt.selection.color1": "#44475A",
"mt.selection.color2": "#44475A", "mt.selection.color2": "#44475A",
"startBackground": "#393C4B", "startBackground": "#393C4B",
@@ -72,12 +78,15 @@
"Tooltip.borderColor": "#21222C", "Tooltip.borderColor": "#21222C",
"Tooltip.background": "#1D2228" "Tooltip.background": "#1D2228"
}, },
"Content.background": "#191A21", "Content": {
"background": "#191A21",
"selectionBackground": "#44475A"
},
"CheckBox": { "CheckBox": {
"background": "#282A36", "background": "#282A36",
"disabledText": "#6272A4", "disabledText": "#6272A4",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"select": "#FF79C5" "select": "#9580ff"
}, },
"CheckBoxMenuItem": { "CheckBoxMenuItem": {
"acceleratorForeground": "#6272A4", "acceleratorForeground": "#6272A4",
@@ -89,6 +98,14 @@
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD" "selectionForeground": "#8BE9FD"
}, },
"CodeWithMe": {
"Avatar.foreground": "#F8F8F2",
"AccessEnabled": {
"accessDot": "#9580ff",
"dropdownBorder": "#282A36",
"pillBackground": "$second"
}
},
"ColorChooser": { "ColorChooser": {
"background": "#282A36", "background": "#282A36",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
@@ -104,9 +121,10 @@
}, },
"background": "#191A21", "background": "#191A21",
"buttonBackground": "#393C4B", "buttonBackground": "#393C4B",
"darcula.hoveredArrowButtonForeground": "#9580ff",
"disabledForeground": "#6272A4", "disabledForeground": "#6272A4",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"modifiedItemForeground": "#FF79C5", "modifiedItemForeground": "#9580ff",
"nonEditableBackground": "#282A36", "nonEditableBackground": "#282A36",
"padding": "5,5,5,5", "padding": "5,5,5,5",
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
@@ -117,62 +135,64 @@
"background": "#282A36", "background": "#282A36",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"infoForeground": "#6272A4", "infoForeground": "#6272A4",
"matchForeground": "#FF79C5", "matchForeground": "#9580ff",
"matchSelectionForeground": "#FF79C5", "matchSelectionForeground": "#9580ff",
"nonFocusedState": "false", "nonFocusedState": "false",
"selectedGrayedForeground": "#8BE9FD", "selectedGrayedForeground": "#FFFFFF",
"selectionGrayForeground": "#8BE9FD", "selectionGrayForeground": "#FFFFFF",
"selectionInactiveInfoForeground": "#6272A4", "selectionInactiveInfoForeground": "#6272A4",
"selectionInactiveBackground": "#44475A50", "selectionInactiveBackground": "#44475A50",
"selectionBackground": "#44475A80", "selectionBackground": "#44475A80",
"selectionForeground": "#8BE9FD", "selectionForeground": "#FFFFFF",
"selectionInfoForeground": "#8BE9FD" "selectionInfoForeground": "#FFFFFF"
}, },
"Component": { "Component": {
"arc": 4, "arc": 4,
"borderColor": "#6272A4", "borderColor": "#44475a",
"disabledBorderColor": "#393C4B", "disabledBorderColor": "#393C4B",
"focusColor": "#FF79C5", "focusColor": "#9580ff",
"focusedBorderColor": "#FF79C5", "focusedBorderColor": "#9580ff",
"hoverIconColor": "#FF79C5", "hoverIconColor": "#9580ff",
"infoForeground": "#6272A4", "infoForeground": "#6272A4",
"iconColor": "#F8F8F2" "iconColor": "#F8F8F2"
}, },
"control": "#282A36", "control": "#282A36",
"controlText": "#6272A4", "controlText": "#6272A4",
"Counter": { "Counter": {
"background": "#FF79C5", "background": "#9580ff",
"foreground": "#8BE9FD" "foreground": "#FFFFFF"
}, },
"Debugger": { "Debugger": {
"Variables": { "Variables": {
"collectingDataForeground": "#6272A4", "collectingDataForeground": "#6272A4",
"changedValueForeground": "#FF79C5", "changedValueForeground": "#9580ff",
"errorMessageForeground": "#FF79C6", "errorMessageForeground": "#8BE9FD",
"evaluatingExpressionForeground": "#6272A4", "evaluatingExpressionForeground": "#6272A4",
"exceptionForeground": "#50FA7B", "exceptionForeground": "#50FA7B",
"modifyingValueForeground": "#FF79C5", "modifyingValueForeground": "#9580ff",
"valueForeground": "#FF79C5" "valueForeground": "#9580ff"
} }
}, },
"DebuggerTabs": { "DebuggerTabs": {
"selectedBackground": "#6272A4", "selectedBackground": "#44475a",
"underlinedTabBackground": "#6272A4" "underlinedTabBackground": "#44475a"
}, },
"DebuggerPopup": { "DebuggerPopup": {
"borderColor": "#6272A4" "borderColor": "#44475a"
}, },
"DefaultTabs": { "DefaultTabs": {
"background": "#282A36", "background": "#282A36",
"borderColor": "#282A36", "borderColor": "#282A36",
"hoverBackground": "#44475A", "hoverBackground": "#44475A",
"hoverColor": "#191A21", "hoverColor": "#191A21",
"hoverMaskColor": "#6272A4", "hoverMaskColor": "#44475a",
"inactiveColoredTabBackground": "#282A36",
"inactiveColoredFileBackground": "#393C4B", "inactiveColoredFileBackground": "#393C4B",
"inactiveUnderlineColor": "#6272A4", "inactiveUnderlineColor": "#9580ff",
"inactiveMaskColor": "#191A21", "inactiveMaskColor": "#191A21",
"underlineColor": "#FF79C5", "underlineColor": "#9580ff",
"underlinedTabBackground": "#44475A" "underlinedTabBackground": "#44475A",
"underlinedTabForeground": "#FFFFFF"
}, },
"Desktop.background": "#282A36", "Desktop.background": "#282A36",
"DialogWrapper.southPanelBackground": "#282A36", "DialogWrapper.southPanelBackground": "#282A36",
@@ -189,7 +209,7 @@
}, },
"EditorPane": { "EditorPane": {
"background": "#191A21", "background": "#191A21",
"caretForeground": "#FF79C5", "caretForeground": "#9580ff",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"inactiveBackground": "#282A36", "inactiveBackground": "#282A36",
"inactiveForeground": "#6272A4", "inactiveForeground": "#6272A4",
@@ -198,30 +218,32 @@
}, },
"EditorTabs": { "EditorTabs": {
"borderColor": "#282A36", "borderColor": "#282A36",
"hoverColor": "#6272A4", "hoverBackground": "#44475a",
"hoverMaskColor": "#6272A4", "hoverColor": "#44475a",
"hoverMaskColor": "#44475a",
"inactiveMaskColor": "#282A36", "inactiveMaskColor": "#282A36",
"inactiveColoredFileBackground": "#282A362", "inactiveColoredFileBackground": "#282A36",
"inactiveUnderlineColor": "#6272A4", "inactiveUnderlineColor": "#6272A4",
"selectedForeground": "#F8F8F2", "selectedForeground": "#F8F8F2",
"selectedBackground": "#44475A", "selectedBackground": "#44475A",
"underlineColor": "#FF79C5", "underlineColor": "#9580ff",
"underlinedTabBackground": "#44475A" "underlinedTabBackground": "#44475A",
"underlinedTabForeground": "#FFFFFF"
}, },
"EditorGroupsTabs": { "EditorGroupsTabs": {
"background": "#282A36", "background": "#282A36",
"borderColor": "#282A36", "borderColor": "#282A36",
"hoverBackground": "#6272A4", "hoverBackground": "#44475a",
"hoverColor": "#6272A4", "hoverColor": "#44475a",
"inactiveUnderlineColor": "#FF79C5", "inactiveUnderlineColor": "#9580ff",
"underlineColor": "#FF79C5", "underlineColor": "#9580ff",
"underlinedTabBackground": "#44475A", "underlinedTabBackground": "#44475A",
"underlinedTabForeground": "#F8F8F2" "underlinedTabForeground": "#F8F8F2"
}, },
"FileColor": { "FileColor": {
"Green": "#387002", "Green": "#387002",
"Blue": "#004BA0", "Blue": "#004BA0",
"Yellow": "#313341", "Yellow": "#34353D",
"Orange": "#B53D00", "Orange": "#B53D00",
"Violet": "#4D2C91", "Violet": "#4D2C91",
"Rose": "#A00037" "Rose": "#A00037"
@@ -239,19 +261,20 @@
"Focus.color": "#21222C", "Focus.color": "#21222C",
"FormattedTextField": { "FormattedTextField": {
"background": "#191A21", "background": "#191A21",
"caretForeground": "#FF79C5", "caretForeground": "#9580ff",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"inactiveBackground": "#393C4B", "inactiveBackground": "#393C4B",
"inactiveForeground": "#6272A4", "inactiveForeground": "#6272A4",
"selectionForeground": "#8BE9FD", "selectionForeground": "#8BE9FD",
"selectionBackground": "#44475A" "selectionBackground": "#44475A"
}, },
"GotItTooltip.borderColor": "#1D2228",
"Group": { "Group": {
"disabledSeparatorColor": "#21222C", "disabledSeparatorColor": "#21222C",
"separatorColor": "#21222C" "separatorColor": "#21222C"
}, },
"GutterTooltip": { "GutterTooltip": {
"infoForeground": "#F8F8F2", "infoForeground": "#6272A4",
"lineSeparatorColor": "#282A36" "lineSeparatorColor": "#282A36"
}, },
"HeaderColor": { "HeaderColor": {
@@ -265,7 +288,7 @@
"infoForeground": "#6272A4", "infoForeground": "#6272A4",
"shortcutForeground": "#6272A4" "shortcutForeground": "#6272A4"
}, },
"Hyperlink.linkColor": "#FF79C5", "Hyperlink.linkColor": "#9580ff",
"inactiveCaption": "#282A36", "inactiveCaption": "#282A36",
"inactiveCaptionBorder": "#282A36", "inactiveCaptionBorder": "#282A36",
"inactiveCaptionText": "#6272A4", "inactiveCaptionText": "#6272A4",
@@ -288,23 +311,26 @@
"disabledText": "#6272A4", "disabledText": "#6272A4",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"infoForeground": "#6272A4", "infoForeground": "#6272A4",
"selectedForeground": "#8BE9FD" "selectedForeground": "#8BE9FD",
"selectedDisabledForeground": "#F8F8F2"
}, },
"Link": { "Link": {
"activeForeground": "#FF79C5", "activeForeground": "#9580ff",
"hoverForeground": "#FF79C5", "hoverForeground": "#9580ff",
"pressedForeground": "#FF79C5", "pressedForeground": "#9580ff",
"secondaryForeground": "#6272A4", "secondaryForeground": "#6272A4",
"visitedForeground": "#FF79C5" "visitedForeground": "#9580ff"
}, },
"link.foreground": "#FF79C5", "link.foreground": "#9580ff",
"List": { "List": {
"background": "#282A36", "background": "#282A36",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"hoverBackground": "#44475A70",
"hoverInactiveBackground": "#44475A",
"selectionBackground": "#44475A50", "selectionBackground": "#44475A50",
"selectionForeground": "#8BE9FD", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#8BE9FD", "selectionInactiveForeground": "#8BE9FD",
"selectionInactiveBackground": "#44475A50" "selectionInactiveBackground": "#44475A70"
}, },
"material": { "material": {
"background": "#282A36", "background": "#282A36",
@@ -313,19 +339,19 @@
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"mergeCommits": "#393C4B", "mergeCommits": "#393C4B",
"primaryColor": "#6272A4", "primaryColor": "#6272A4",
"selectionForeground": "#8BE9FD", "selectionForeground": "#FFFFFF",
"tab.backgroundColor": "#282A36", "tab.backgroundColor": "#282A36",
"tab.borderColor": "#FF79C5", "tab.borderColor": "#9580ff",
"tagColor": "#6272A4" "tagColor": "#6272A4"
}, },
"MemoryIndicator": { "MemoryIndicator": {
"allocatedBackground": "#282A36", "allocatedBackground": "#282A36",
"usedColor": "#6272A4", "usedColor": "#44475a",
"usedBackground": "#6272A4" "usedBackground": "#44475a"
}, },
"Menu": { "Menu": {
"acceleratorForeground": "#6272A4", "acceleratorForeground": "#6272A4",
"acceleratorSelectionForeground": "#8BE9FD", "acceleratorSelectionForeground": "#FFFFFF",
"background": "#282A36", "background": "#282A36",
"border": "4,2,4,2", "border": "4,2,4,2",
"borderColor": "#282A36", "borderColor": "#282A36",
@@ -333,7 +359,7 @@
"disabledForeground": "#6272A4", "disabledForeground": "#6272A4",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD", "selectionForeground": "#FFFFFF",
"separatorColor": "#21222C" "separatorColor": "#21222C"
}, },
"MenuBar": { "MenuBar": {
@@ -344,19 +370,19 @@
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"highlight": "#282A36", "highlight": "#282A36",
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD", "selectionForeground": "#FFFFFF",
"shadow": "#191A21" "shadow": "#191A21"
}, },
"MenuItem": { "MenuItem": {
"acceleratorForeground": "#6272A4", "acceleratorForeground": "#6272A4",
"acceleratorSelectionForeground": "#8BE9FD", "acceleratorSelectionForeground": "#FFFFFF",
"border": "4,2,4,2", "border": "4,2,4,2",
"background": "#282A36", "background": "#282A36",
"disabledBackground": "#282A36", "disabledBackground": "#282A36",
"disabledForeground": "#6272A4", "disabledForeground": "#6272A4",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD" "selectionForeground": "#FFFFFF"
}, },
"NavBar": { "NavBar": {
"arrowColor": "#F8F8F2", "arrowColor": "#F8F8F2",
@@ -370,7 +396,7 @@
"background": "#191A21" "background": "#191A21"
} }
}, },
"NewPSD.warning": "#FF79C5", "NewPSD.warning": "#9580ff",
"Notification": { "Notification": {
"background": "#1D2228", "background": "#1D2228",
"borderColor": "#1D2228", "borderColor": "#1D2228",
@@ -399,7 +425,7 @@
}, },
"Outline": { "Outline": {
"color": "#393C4B", "color": "#393C4B",
"focusedColor": "#FF79C5", "focusedColor": "#9580ff",
"disabledColor": "#6272A4" "disabledColor": "#6272A4"
}, },
"Panel": { "Panel": {
@@ -409,8 +435,8 @@
"ParameterInfo": { "ParameterInfo": {
"background": "#282A36", "background": "#282A36",
"borderColor": "#44475A", "borderColor": "#44475A",
"currentOverloadBackground": "#44475A", "currentOverloadBackground": "#44475a",
"currentParameterForeground": "#FF79C5", "currentParameterForeground": "#9580ff",
"disabledForeground": "#6272A4", "disabledForeground": "#6272A4",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"infoForeground": "#6272A4", "infoForeground": "#6272A4",
@@ -418,8 +444,8 @@
}, },
"PasswordField": { "PasswordField": {
"background": "#191A21", "background": "#191A21",
"capsLockIconColor": "#FF79C5", "capsLockIconColor": "#9580ff",
"caretForeground": "#FF79C5", "caretForeground": "#9580ff",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"inactiveForeground": "#6272A4", "inactiveForeground": "#6272A4",
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
@@ -428,21 +454,22 @@
"Plugins": { "Plugins": {
"background": "#282A36", "background": "#282A36",
"disabledForeground": "#6272A4", "disabledForeground": "#6272A4",
"eapTagBackground": "#6272A4", "eapTagBackground": "#44475a",
"hoverBackground": "#44475A70",
"lightSelectionBackground": "#44475A", "lightSelectionBackground": "#44475A",
"paidTagBackground": "#6272A4", "paidTagBackground": "#44475a",
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
"tagForeground": "#FF79C5", "tagForeground": "#9580ff",
"tagBackground": "#6272A4", "tagBackground": "#44475a",
"trialTagBackground": "#6272A4", "trialTagBackground": "#44475a",
"Button": { "Button": {
"installBackground": "#393C4B", "installBackground": "#393C4B",
"installBorderColor": "#393C4B", "installBorderColor": "#393C4B",
"installForeground": "#F8F8F2", "installForeground": "#F8F8F2",
"installFocusedBackground": "#6272A4", "installFocusedBackground": "#44475a",
"installFillForeground": "#6272A4", "installFillForeground": "#6272A4",
"installFillBackground": "#393C4B", "installFillBackground": "#393C4B",
"updateBackground": "#393C4B", "updateBackground": "#9580ff",
"updateBorderColor": "#393C4B", "updateBorderColor": "#393C4B",
"updateForeground": "#F8F8F2" "updateForeground": "#F8F8F2"
}, },
@@ -456,7 +483,7 @@
}, },
"Tab": { "Tab": {
"hoverBackground": "#44475A", "hoverBackground": "#44475A",
"selectedForeground": "#8BE9FD", "selectedForeground": "#FFFFFF",
"selectedBackground": "#44475A" "selectedBackground": "#44475A"
} }
}, },
@@ -464,7 +491,7 @@
"Advertiser": { "Advertiser": {
"background": "#282A36", "background": "#282A36",
"borderColor": "#282A36", "borderColor": "#282A36",
"foreground": "#FF79C5" "foreground": "#9580ff"
}, },
"borderColor": "#191A21", "borderColor": "#191A21",
"inactiveBorderColor": "#282A36", "inactiveBorderColor": "#282A36",
@@ -492,15 +519,15 @@
"PopupMenuSeparator.stripeIndent": 5, "PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": { "ProgressBar": {
"background": "#282A36", "background": "#282A36",
"foreground": "#FF79C5", "foreground": "#9580ff",
"indeterminateEndColor": "#FF79C5", "indeterminateEndColor": "#9580ff",
"indeterminateStartColor": "#FF79C5", "indeterminateStartColor": "#9580ff",
"progressColor": "#FF79C5", "progressColor": "#9580ff",
"selectionBackground": "#6272A4", "selectionBackground": "#44475a",
"trackColor": "#6272A4" "trackColor": "#44475a"
}, },
"PsiViewer": { "PsiViewer": {
"referenceHighlightColor": "#FF79C5" "referenceHighlightColor": "#9580ff"
}, },
"RadioButton": { "RadioButton": {
"background": "#282A36", "background": "#282A36",
@@ -515,39 +542,40 @@
"disabledForeground": "#6272A4", "disabledForeground": "#6272A4",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD" "selectionForeground": "#FFFFFF"
}, },
"ScreenView.borderColor": "#21222C",
"ScrollBar": { "ScrollBar": {
"background": "#282A36", "background": "#282A36",
"hoverThumbBorderColor": "#FF79C5", "hoverThumbBorderColor": "#9580ff",
"hoverThumbColor": "#FF79C5", "hoverThumbColor": "#9580ff",
"hoverTrackColor": "#282A3630", "hoverTrackColor": "#282A3630",
"Mac": { "Mac": {
"hoverThumbBorderColor": "#FF79C5", "hoverThumbBorderColor": "#9580ff",
"hoverThumbColor": "#FF79C5", "hoverThumbColor": "#9580ff",
"hoverTrackColor": "#282A3630", "hoverTrackColor": "#282A3630",
"thumbBorderColor": "#FF79C570", "thumbBorderColor": "#9580ff70",
"thumbColor": "#FF79C570", "thumbColor": "#9580ff70",
"trackColor": "#282A3630", "trackColor": "#282A3630",
"Transparent": { "Transparent": {
"hoverThumbBorderColor": "#FF79C5", "hoverThumbBorderColor": "#9580ff",
"hoverThumbColor": "#FF79C5", "hoverThumbColor": "#9580ff",
"hoverTrackColor": "#282A3630", "hoverTrackColor": "#282A3630",
"thumbBorderColor": "#FF79C570", "thumbBorderColor": "#9580ff70",
"thumbColor": "#FF79C570", "thumbColor": "#9580ff70",
"trackColor": "#282A3630" "trackColor": "#282A3630"
} }
}, },
"thumb": "#6272A4", "thumb": "#44475a",
"thumbBorderColor": "#FF79C570", "thumbBorderColor": "#9580ff70",
"thumbColor": "#FF79C570", "thumbColor": "#9580ff70",
"trackColor": "#282A3630", "trackColor": "#282A3630",
"Transparent": { "Transparent": {
"hoverThumbBorderColor": "#FF79C5", "hoverThumbBorderColor": "#9580ff",
"hoverThumbColor": "#FF79C5", "hoverThumbColor": "#9580ff",
"hoverTrackColor": "#282A3630", "hoverTrackColor": "#282A3630",
"thumbBorderColor": "#FF79C570", "thumbBorderColor": "#9580ff70",
"thumbColor": "#FF79C570", "thumbColor": "#9580ff70",
"trackColor": "#282A3630" "trackColor": "#282A3630"
} }
}, },
@@ -571,14 +599,23 @@
"Tab": { "Tab": {
"active.foreground": "#8BE9FD", "active.foreground": "#8BE9FD",
"selectedForeground": "#8BE9FD", "selectedForeground": "#8BE9FD",
"selectedBackground": "#6272A4" "selectedBackground": "#44475a"
} }
}, },
"SearchMatch": { "SearchMatch": {
"endBackground": "#FF79C5", "endBackground": "#9580ff",
"startBackground": "#FF79C5" "startBackground": "#9580ff",
"endColor": "#9580ff",
"startColor": "#9580ff"
}, },
"SearchField.errorBackground": "#1D2228", "SearchField.errorBackground": "#1D2228",
"SearchOption": {
"selectedBackground": "#44475A"
},
"SearchResults": {
"Ordinal.File.Foreground": "#6272A4",
"Repeated.File.Foreground": "#F8F8F2"
},
"Separator": { "Separator": {
"background": "#282A36", "background": "#282A36",
"foreground": "#282A36", "foreground": "#282A36",
@@ -589,17 +626,17 @@
}, },
"Slider": { "Slider": {
"background": "#282A36", "background": "#282A36",
"buttonBorderColor": "#FF79C5", "buttonBorderColor": "#9580ff",
"buttonColor": "#FF79C5", "buttonColor": "#9580ff",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"majorTickLength": 6, "majorTickLength": 6,
"tickColor": "#282A36", "tickColor": "#282A36",
"trackColor": "#44475A", "trackColor": "#44475A",
"trackWidth": 7, "trackWidth": 7,
"thumb": "#FF79C5" "thumb": "#9580ff"
}, },
"SpeedSearch": { "SpeedSearch": {
"background": "#6272A4", "background": "#44475a",
"borderColor": "#21222C", "borderColor": "#21222C",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"errorForeground": "#F8F8F2" "errorForeground": "#F8F8F2"
@@ -616,11 +653,13 @@
}, },
"SplitPaneDivider.draggingColor": "#282A36", "SplitPaneDivider.draggingColor": "#282A36",
"StatusBar": { "StatusBar": {
"borderColor": "#282A36" "borderColor": "#282A36",
"hoverBackground": "#44475a",
"LightEditBackground": "#44475A"
}, },
"TabbedPane": { "TabbedPane": {
"background": "#282A36", "background": "#282A36",
"contentAreaColor": "#6272A4", "contentAreaColor": "#44475a",
"contentBorderInsets": "3,1,1,1", "contentBorderInsets": "3,1,1,1",
"darkShadow": "#21222C", "darkShadow": "#21222C",
"disabledForeground": "#6272A4", "disabledForeground": "#6272A4",
@@ -630,7 +669,7 @@
"fontSizeOffset": 0, "fontSizeOffset": 0,
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"highlight": "#21222C", "highlight": "#21222C",
"hoverColor": "#6272A4", "hoverColor": "#44475a",
"labelShift": 0, "labelShift": 0,
"selectedForeground": "#8BE9FD", "selectedForeground": "#8BE9FD",
"selectedLabelShift": 0, "selectedLabelShift": 0,
@@ -639,27 +678,31 @@
"tabHeight": 32, "tabHeight": 32,
"tabInsets": "5,10,5,10", "tabInsets": "5,10,5,10",
"tabSelectionHeight": 2, "tabSelectionHeight": 2,
"underlineColor": "#FF79C5" "underlineColor": "#9580ff"
}, },
"TabbedPane.mt.tab.background": "#191A21", "TabbedPane.mt.tab.background": "#191A21",
"Table": { "Table": {
"alternativeRowBackground": "#191A21",
"background": "#282A36", "background": "#282A36",
"cellNoFocusBorder": "10,5,10,5", "cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#FF79C5", "disabledForeground": "#6272A4",
"dropLineShortColor": "#FF79C5", "dropLineColor": "#9580ff",
"dropLineShortColor": "#9580ff",
"focusCellBackground": "#44475A", "focusCellBackground": "#44475A",
"focusCellForeground": "#8BE9FD", "focusCellForeground": "#8BE9FD",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"gridColor": "#282A36", "gridColor": "#282A36",
"highlightOuter": "#44475A", "highlightOuter": "#44475A",
"hoverBackground": "#44475A70",
"hoverInactiveBackground": "#44475A",
"lightSelectionForeground": "#8BE9FD", "lightSelectionForeground": "#8BE9FD",
"lightSelectionInactiveForeground": "#6272A4", "lightSelectionInactiveForeground": "#6272A4",
"lightSelectionInactiveBackground": "#282A36", "lightSelectionInactiveBackground": "#282A36",
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD", "selectionForeground": "#8BE9FD",
"selectionInactiveBackground": "#44475A", "selectionInactiveBackground": "#44475A",
"selectionInactiveForeground": "#8BE9FD", "selectionInactiveForeground": "#FFFFFF",
"sortIconColor": "#F8F8F2", "sortIconColor": "#F8F8F2",
"stripeColor": "#191A21" "stripeColor": "#191A21"
}, },
@@ -680,7 +723,7 @@
"textText": "#6272A4", "textText": "#6272A4",
"TextArea": { "TextArea": {
"background": "#191A21", "background": "#191A21",
"caretForeground": "#FF79C5", "caretForeground": "#9580ff",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"inactiveForeground": "#6272A4", "inactiveForeground": "#6272A4",
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
@@ -688,7 +731,7 @@
}, },
"TextField": { "TextField": {
"background": "#191A21", "background": "#191A21",
"caretForeground": "#FF79C5", "caretForeground": "#9580ff",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"inactiveForeground": "#6272A4", "inactiveForeground": "#6272A4",
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
@@ -696,7 +739,7 @@
}, },
"TextPane": { "TextPane": {
"background": "#191A21", "background": "#191A21",
"caretForeground": "#FF79C5", "caretForeground": "#9580ff",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"inactiveForeground": "#6272A4", "inactiveForeground": "#6272A4",
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
@@ -704,7 +747,7 @@
}, },
"TitlePane": { "TitlePane": {
"background": "#191A21", "background": "#191A21",
"Button.hoverBackground": "#6272A4", "Button.hoverBackground": "#44475a",
"inactiveBackground": "#282A36", "inactiveBackground": "#282A36",
"infoForeground": "#6272A4", "infoForeground": "#6272A4",
"inactiveInfoForeground": "#6272A4" "inactiveInfoForeground": "#6272A4"
@@ -717,8 +760,8 @@
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"offForeground": "#282A36", "offForeground": "#282A36",
"offBackground": "#282A36", "offBackground": "#282A36",
"onBackground": "#FF79C5", "onBackground": "#9580ff",
"onForeground": "#FF79C5" "onForeground": "#9580ff"
}, },
"ToolBar": { "ToolBar": {
"background": "#191A21", "background": "#191A21",
@@ -729,8 +772,8 @@
"ToolTip": { "ToolTip": {
"Actions.background": "#282A36", "Actions.background": "#282A36",
"Actions.infoForeground": "#6272A4", "Actions.infoForeground": "#6272A4",
"background": "#282A36", "background": "#1D2228",
"borderColor": "#6272A4", "borderColor": "#21222C",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"infoForeground": "#6272A4", "infoForeground": "#6272A4",
"separatorColor": "#21222C", "separatorColor": "#21222C",
@@ -751,50 +794,93 @@
"background": "#282A36" "background": "#282A36"
}, },
"HeaderTab": { "HeaderTab": {
"hoverBackground": "#6272A4", "borderColor": "#44475a",
"hoverInactiveBackground": "#282A36", "hoverBackground": "#44475a",
"inactiveUnderlineColor": "#FF79C5", "hoverInactiveBackground": "#44475a",
"inactiveUnderlineColor": "#9580ff",
"selectedBackground": "#191A21", "selectedBackground": "#191A21",
"selectedInactiveBackground": "#191A21", "selectedInactiveBackground": "#191A21",
"underlineColor": "#FF79C5", "underlineColor": "#9580ff",
"underlinedTabBackground": "#6272A4", "underlinedTabBackground": "#44475A",
"underlinedTabInactiveBackground": "#282A36" "underlinedTabInactiveBackground": "#282A36",
"underlinedTabForeground": "#FFFFFF",
"underlinedTabInactiveForeground": "#F8F8F2"
} }
}, },
"Tree": { "Tree": {
"background": "#191A21", "background": "#191A21",
"foreground": "#6272A4", "foreground": "#6272A4",
"hash": "#21222C", "hash": "#21222C",
"modifiedItemForeground": "#FF79C5", "hoverBackground": "#44475A70",
"hoverInactiveBackground": "#44475A",
"modifiedItemForeground": "#9580ff",
"rowHeight": 28, "rowHeight": 28,
"selectionBackground": "#44475A50", "selectionBackground": "#44475A70",
"selectionForeground": "#8BE9FD", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#8BE9FD", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#44475A50", "selectionInactiveBackground": "#44475A70",
"textBackground": "#191A21" "textBackground": "#191A21"
}, },
"Tree.leftChildIndent": 10, "Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5, "Tree.rightChildIndent": 5,
"UiDesigner": { "UIDesigner": {
"Activity.borderColor": "#21222C", "Activity.borderColor": "#21222C",
"ColorPicker.background": "#282A36", "Canvas.background": "#191A21",
"ColorPicker.foreground": "#F8F8F2", "ColorPicker": {
"Component.borderColor": "#21222C", "background": "#282A36",
"Component.background": "#282A36", "foreground": "#F8F8F2"
"Component.foreground": "#F8F8F2", },
"Connector.borderColor": "#21222C", "Component": {
"Connector.hoverBorderColor": "#6272A4", "borderColor": "#21222C",
"background": "#282A36",
"foreground": "#F8F8F2",
"hoverBorderColor": "#44475a"
},
"Connector": {
"borderColor": "#21222C",
"hoverBorderColor": "#44475a"
},
"Canvas.background": "#191A21", "Canvas.background": "#191A21",
"highStroke.foreground": "#F8F8F2", "highStroke.foreground": "#F8F8F2",
"Label.foreground": "#6272A4", "Label.foreground": "#6272A4",
"List.selectionBackground": "#44475A50", "List.selectionBackground": "#44475A70",
"Panel.borderColor": "#21222C", "motion": {
"Panel.background": "#282A36", "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", "percent.foreground": "#F8F8F2",
"Placeholder.background": "#282A36", "Placeholder": {
"Placeholder.borderColor": "#21222C", "background": "#282A36",
"Placeholder.foreground": "#F8F8F2", "borderColor": "#21222C",
"Placeholder.selectedForeground": "#8BE9FD", "foreground": "#F8F8F2",
"selectedForeground": "#FFFFFF"
},
"Preview.background": "#282A36", "Preview.background": "#282A36",
"stroke.acceleratorForeground": "#6272A4" "stroke.acceleratorForeground": "#6272A4"
}, },
@@ -809,16 +895,16 @@
"selectedBranchBackground": "#282A36" "selectedBranchBackground": "#282A36"
}, },
"GitCommits": { "GitCommits": {
"graphColor": "#6272A4" "graphColor": "#44475a"
}, },
"GitLog": { "GitLog": {
"localBranchIconColor": "#FF79C5", "localBranchIconColor": "#9580ff",
"otherIconColor": "#6272A4", "otherIconColor": "#6272A4",
"remoteBranchIconColor": "#F8F8F2", "remoteBranchIconColor": "#F8F8F2",
"tagIconColor": "#6272A4" "tagIconColor": "#6272A4"
}, },
"HgLog": { "HgLog": {
"branchIconColor": "#FF79C5", "branchIconColor": "#9580ff",
"bookmarkIconColor": "#8BE9FD", "bookmarkIconColor": "#8BE9FD",
"closedBranchIconColor": "#6272A4", "closedBranchIconColor": "#6272A4",
"localTagIconColor": "#6272A4", "localTagIconColor": "#6272A4",
@@ -828,11 +914,12 @@
}, },
"Log": { "Log": {
"Commit.unmatchedForeground": "#6272A4", "Commit.unmatchedForeground": "#6272A4",
"Commit.currentBranchBackground": "#282A36" "Commit.currentBranchBackground": "#282A36",
"Commit.hoveredBackground": "#44475A70"
}, },
"RefLabel": { "RefLabel": {
"foreground": "#8BE9FD", "foreground": "#8BE9FD",
"backgroundBase": "#6272A4" "backgroundBase": "#44475a"
} }
}, },
"Viewport": { "Viewport": {
@@ -840,16 +927,22 @@
"foreground": "#F8F8F2" "foreground": "#F8F8F2"
}, },
"WelcomeScreen": { "WelcomeScreen": {
"AssociatedComponent.background": "#282A36",
"background": "#282A36", "background": "#282A36",
"borderColor": "#282A36", "borderColor": "#282A36",
"captionBackground": "#191A21", "captionBackground": "#191A21",
"captionForeground": "#F8F8F2", "captionForeground": "#F8F8F2",
"Details.background": "#282A36",
"footerBackground": "#191A21", "footerBackground": "#191A21",
"footerForeground": "#F8F8F2", "footerForeground": "#F8F8F2",
"headerBackground": "#282A36", "headerBackground": "#282A36",
"headerForeground": "#F8F8F2", "headerForeground": "#F8F8F2",
"List.background": "#191A21",
"separatorColor": "#21222C", "separatorColor": "#21222C",
"SidePanel.background": "#282A36",
"Projects": { "Projects": {
"actions.background": "#191A21",
"actions.selectionBackground": "#44475a",
"background": "#282A36", "background": "#282A36",
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
"selectionInactiveBackground": "#282A36" "selectionInactiveBackground": "#282A36"
@@ -865,46 +958,46 @@
"#43494A": "#191A21", "#43494A": "#191A21",
"#6B6B6B": "#6272A4", "#6B6B6B": "#6272A4",
"#A7A7A7": "#282A36", "#A7A7A7": "#282A36",
"#3D6185": "#FF79C5", "#3D6185": "#9580ff",
"#466D94": "#FF79C5", "#466D94": "#9580ff",
"#3C3F41": "#282A36", "#3C3F41": "#282A36",
"#545556": "#6272A4", "#545556": "#6272A4",
"#606060": "#6272A4", "#606060": "#6272A4",
"#9AA7B0": "#F8F8F2", "#9AA7B0": "#F8F8F2",
"#675133": "#FF79C5", "#675133": "#9580ff",
"Actions.Blue": "#50FA78", "Actions.Blue": "#50FA78",
"Actions.Green": "#F1FA8C", "Actions.Green": "#F1FA8C",
"Actions.Grey": "#6272A4", "Actions.Grey": "#6272A4",
"Actions.GreyInline": "#6272A4", "Actions.GreyInline": "#6272A4",
"Actions.GreyInline.Dark": "#F8F8F2", "Actions.GreyInline.Dark": "#F8F8F2",
"Actions.Red": "#FF79C6", "Actions.Red": "#8BE9FD",
"Actions.Yellow": "#50FA7B", "Actions.Yellow": "#50FA7B",
"Checkbox.Background.Default": "#191A21", "Checkbox.Background.Default": "#191A21",
"Checkbox.Background.Default.Dark": "#191A21", "Checkbox.Background.Default.Dark": "#191A21",
"Checkbox.Background.Disabled": "#313341", "Checkbox.Background.Disabled": "#34353D",
"Checkbox.Background.Disabled.Dark": "#313341", "Checkbox.Background.Disabled.Dark": "#34353D",
"Checkbox.Border.Default": "#21222C", "Checkbox.Border.Default": "#21222C",
"Checkbox.Border.Default.Dark": "#21222C", "Checkbox.Border.Default.Dark": "#21222C",
"Checkbox.Border.Disabled": "#6272A4", "Checkbox.Border.Disabled": "#6272A4",
"Checkbox.Border.Disabled.Dark": "#6272A4", "Checkbox.Border.Disabled.Dark": "#6272A4",
"Checkbox.Focus.Thin.Default": "#FF79C5", "Checkbox.Focus.Thin.Default": "#9580ff",
"Checkbox.Focus.Thin.Default.Dark": "#FF79C5", "Checkbox.Focus.Thin.Default.Dark": "#9580ff",
"Checkbox.Focus.Wide": "#FF79C5", "Checkbox.Focus.Wide": "#9580ff",
"Checkbox.Focus.Wide.Dark": "#FF79C5", "Checkbox.Focus.Wide.Dark": "#9580ff",
"Checkbox.Foreground.Disabled": "#6272A4", "Checkbox.Foreground.Disabled": "#6272A4",
"Checkbox.Foreground.Disabled.Dark": "#6272A4", "Checkbox.Foreground.Disabled.Dark": "#6272A4",
"Checkbox.Background.Selected": "#FF79C5", "Checkbox.Background.Selected": "#9580ff",
"Checkbox.Background.Selected.Dark": "#282A36", "Checkbox.Background.Selected.Dark": "#282A36",
"Checkbox.Border.Selected": "#FF79C5", "Checkbox.Border.Selected": "#9580ff",
"Checkbox.Border.Selected.Dark": "#FF79C5", "Checkbox.Border.Selected.Dark": "#9580ff",
"Checkbox.Foreground.Selected": "#FF79C5", "Checkbox.Foreground.Selected": "#9580ff",
"Checkbox.Foreground.Selected.Dark": "#FF79C5", "Checkbox.Foreground.Selected.Dark": "#9580ff",
"Checkbox.Focus.Thin.Selected": "#F8F8F2", "Checkbox.Focus.Thin.Selected": "#F8F8F2",
"Checkbox.Focus.Thin.Selected.Dark": "#F8F8F2", "Checkbox.Focus.Thin.Selected.Dark": "#F8F8F2",
"Objects.Grey": "#6272A4", "Objects.Grey": "#6272A4",
"Objects.Blue": "#50FA78", "Objects.Blue": "#50FA78",
"Objects.RedStatus": "#FF79C6", "Objects.RedStatus": "#8BE9FD",
"Objects.Red": "#FF79C6", "Objects.Red": "#8BE9FD",
"Objects.Pink": "#FF79C6", "Objects.Pink": "#FF79C6",
"Objects.Yellow": "#50FA7B", "Objects.Yellow": "#50FA7B",
"Objects.Green": "#F1FA8C", "Objects.Green": "#F1FA8C",

View File

@@ -3,34 +3,40 @@
"dark": true, "dark": true,
"author": "Mallowigi", "author": "Mallowigi",
"editorScheme": "/colors/Dracula.xml", "editorScheme": "/colors/Dracula.xml",
"emptyFrameBackground": {
"anchor": "center",
"image": "/walls/dracula.svg",
"fill": "scale",
"transparency": 50
},
"ui": { "ui": {
"*": { "*": {
"acceleratorSelectionForeground": "#6272A4", "acceleratorSelectionForeground": "#6272A4",
"background": "#282A36", "background": "#282A36",
"borderColor": "#21222C", "borderColor": "#21222C",
"disabledBackground": "#313341", "disabledBackground": "#34353D",
"disabledForeground": "#6272A4", "disabledForeground": "#6272A4",
"disabledText": "#6272A4", "disabledText": "#6272A4",
"focusColor": "#6272A4", "focusColor": "#44475a",
"focusedBorderColor": "#FF79C5", "focusedBorderColor": "#9580ff",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"inactiveBackground": "#313341", "inactiveBackground": "#34353D",
"inactiveForeground": "#6272A4", "inactiveForeground": "#6272A4",
"infoForeground": "#6272A4", "infoForeground": "#6272A4",
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
"selectionBackgroundInactive": "#282A36", "selectionBackgroundInactive": "#282A36",
"selectionForeground": "#8BE9FD", "selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#282A36", "selectionInactiveBackground": "#282A36",
"separatorColor": "#21222C" "separatorColor": "#21222C"
}, },
"activeCaption": "#282A36", "activeCaption": "#282A36",
"ActionButton": { "ActionButton": {
"hoverBackground": "#FF79C550", "hoverBackground": "#9580ff50",
"hoverBorderColor": "#FF79C550", "hoverBorderColor": "#9580ff50",
"hoverSeparatorColor": "#393C4B", "hoverSeparatorColor": "#393C4B",
"focusedBorderColor": "#FF79C550", "focusedBorderColor": "#9580ff50",
"pressedBackground": "#FF79C550", "pressedBackground": "#9580ff50",
"pressedBorderColor": "#FF79C550" "pressedBorderColor": "#9580ff50"
}, },
"Autocomplete": { "Autocomplete": {
"selectionBackground": "#44475A" "selectionBackground": "#44475A"
@@ -44,8 +50,8 @@
"endBackground": "#44475A", "endBackground": "#44475A",
"endBorderColor": "#44475A", "endBorderColor": "#44475A",
"foreground": "#8BE9FD", "foreground": "#8BE9FD",
"focusColor": "#FF79C5", "focusColor": "#9580ff",
"focusedBorderColor": "#FF79C5", "focusedBorderColor": "#9580ff",
"shadowColor": "#44475A", "shadowColor": "#44475A",
"startBackground": "#44475A", "startBackground": "#44475A",
"startBorderColor": "#44475A" "startBorderColor": "#44475A"
@@ -54,13 +60,13 @@
"disabledText": "#6272A4", "disabledText": "#6272A4",
"endBackground": "#393C4B", "endBackground": "#393C4B",
"endBorderColor": "#393C4B", "endBorderColor": "#393C4B",
"focus": "#6272A4", "focus": "#44475a",
"focusedBorderColor": "#FF79C5", "focusedBorderColor": "#9580ff",
"foreground": "#6272A4", "foreground": "#6272A4",
"highlight": "#8BE9FD", "highlight": "#FFFFFF",
"mt.background": "#393C4B", "mt.background": "#393C4B",
"mt.foreground": "#6272A4", "mt.foreground": "#6272A4",
"mt.selectedForeground": "#8BE9FD", "mt.selectedForeground": "#FFFFFF",
"mt.selection.color1": "#44475A", "mt.selection.color1": "#44475A",
"mt.selection.color2": "#44475A", "mt.selection.color2": "#44475A",
"startBackground": "#393C4B", "startBackground": "#393C4B",
@@ -72,12 +78,15 @@
"Tooltip.borderColor": "#21222C", "Tooltip.borderColor": "#21222C",
"Tooltip.background": "#1D2228" "Tooltip.background": "#1D2228"
}, },
"Content.background": "#191A21", "Content": {
"background": "#191A21",
"selectionBackground": "#44475A"
},
"CheckBox": { "CheckBox": {
"background": "#282A36", "background": "#282A36",
"disabledText": "#6272A4", "disabledText": "#6272A4",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"select": "#FF79C5" "select": "#9580ff"
}, },
"CheckBoxMenuItem": { "CheckBoxMenuItem": {
"acceleratorForeground": "#6272A4", "acceleratorForeground": "#6272A4",
@@ -89,6 +98,14 @@
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD" "selectionForeground": "#8BE9FD"
}, },
"CodeWithMe": {
"Avatar.foreground": "#F8F8F2",
"AccessEnabled": {
"accessDot": "#9580ff",
"dropdownBorder": "#282A36",
"pillBackground": "$second"
}
},
"ColorChooser": { "ColorChooser": {
"background": "#282A36", "background": "#282A36",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
@@ -104,9 +121,10 @@
}, },
"background": "#282A36", "background": "#282A36",
"buttonBackground": "#393C4B", "buttonBackground": "#393C4B",
"darcula.hoveredArrowButtonForeground": "#9580ff",
"disabledForeground": "#6272A4", "disabledForeground": "#6272A4",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"modifiedItemForeground": "#FF79C5", "modifiedItemForeground": "#9580ff",
"nonEditableBackground": "#282A36", "nonEditableBackground": "#282A36",
"padding": "5,5,5,5", "padding": "5,5,5,5",
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
@@ -117,62 +135,64 @@
"background": "#282A36", "background": "#282A36",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"infoForeground": "#6272A4", "infoForeground": "#6272A4",
"matchForeground": "#FF79C5", "matchForeground": "#9580ff",
"matchSelectionForeground": "#FF79C5", "matchSelectionForeground": "#9580ff",
"nonFocusedState": "false", "nonFocusedState": "false",
"selectedGrayedForeground": "#8BE9FD", "selectedGrayedForeground": "#FFFFFF",
"selectionGrayForeground": "#8BE9FD", "selectionGrayForeground": "#FFFFFF",
"selectionInactiveInfoForeground": "#6272A4", "selectionInactiveInfoForeground": "#6272A4",
"selectionInactiveBackground": "#44475A50", "selectionInactiveBackground": "#44475A50",
"selectionBackground": "#44475A80", "selectionBackground": "#44475A80",
"selectionForeground": "#8BE9FD", "selectionForeground": "#FFFFFF",
"selectionInfoForeground": "#8BE9FD" "selectionInfoForeground": "#FFFFFF"
}, },
"Component": { "Component": {
"arc": 4, "arc": 4,
"borderColor": "#6272A4", "borderColor": "#44475a",
"disabledBorderColor": "#393C4B", "disabledBorderColor": "#393C4B",
"focusColor": "#FF79C5", "focusColor": "#9580ff",
"focusedBorderColor": "#FF79C5", "focusedBorderColor": "#9580ff",
"hoverIconColor": "#FF79C5", "hoverIconColor": "#9580ff",
"infoForeground": "#6272A4", "infoForeground": "#6272A4",
"iconColor": "#F8F8F2" "iconColor": "#F8F8F2"
}, },
"control": "#282A36", "control": "#282A36",
"controlText": "#6272A4", "controlText": "#6272A4",
"Counter": { "Counter": {
"background": "#FF79C5", "background": "#9580ff",
"foreground": "#8BE9FD" "foreground": "#FFFFFF"
}, },
"Debugger": { "Debugger": {
"Variables": { "Variables": {
"collectingDataForeground": "#6272A4", "collectingDataForeground": "#6272A4",
"changedValueForeground": "#FF79C5", "changedValueForeground": "#9580ff",
"errorMessageForeground": "#FF79C6", "errorMessageForeground": "#8BE9FD",
"evaluatingExpressionForeground": "#6272A4", "evaluatingExpressionForeground": "#6272A4",
"exceptionForeground": "#50FA7B", "exceptionForeground": "#50FA7B",
"modifyingValueForeground": "#FF79C5", "modifyingValueForeground": "#9580ff",
"valueForeground": "#FF79C5" "valueForeground": "#9580ff"
} }
}, },
"DebuggerTabs": { "DebuggerTabs": {
"selectedBackground": "#6272A4", "selectedBackground": "#44475a",
"underlinedTabBackground": "#6272A4" "underlinedTabBackground": "#44475a"
}, },
"DebuggerPopup": { "DebuggerPopup": {
"borderColor": "#6272A4" "borderColor": "#44475a"
}, },
"DefaultTabs": { "DefaultTabs": {
"background": "#282A36", "background": "#282A36",
"borderColor": "#282A36", "borderColor": "#282A36",
"hoverBackground": "#44475A", "hoverBackground": "#44475A",
"hoverColor": "#282A36", "hoverColor": "#282A36",
"hoverMaskColor": "#6272A4", "hoverMaskColor": "#44475a",
"inactiveColoredTabBackground": "#282A36",
"inactiveColoredFileBackground": "#393C4B", "inactiveColoredFileBackground": "#393C4B",
"inactiveUnderlineColor": "#6272A4", "inactiveUnderlineColor": "#9580ff",
"inactiveMaskColor": "#282A36", "inactiveMaskColor": "#282A36",
"underlineColor": "#FF79C5", "underlineColor": "#9580ff",
"underlinedTabBackground": "#44475A" "underlinedTabBackground": "#44475A",
"underlinedTabForeground": "#FFFFFF"
}, },
"Desktop.background": "#282A36", "Desktop.background": "#282A36",
"DialogWrapper.southPanelBackground": "#282A36", "DialogWrapper.southPanelBackground": "#282A36",
@@ -189,7 +209,7 @@
}, },
"EditorPane": { "EditorPane": {
"background": "#282A36", "background": "#282A36",
"caretForeground": "#FF79C5", "caretForeground": "#9580ff",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"inactiveBackground": "#282A36", "inactiveBackground": "#282A36",
"inactiveForeground": "#6272A4", "inactiveForeground": "#6272A4",
@@ -198,30 +218,32 @@
}, },
"EditorTabs": { "EditorTabs": {
"borderColor": "#282A36", "borderColor": "#282A36",
"hoverColor": "#6272A4", "hoverBackground": "#44475a",
"hoverMaskColor": "#6272A4", "hoverColor": "#44475a",
"hoverMaskColor": "#44475a",
"inactiveMaskColor": "#282A36", "inactiveMaskColor": "#282A36",
"inactiveColoredFileBackground": "#282A362", "inactiveColoredFileBackground": "#282A36",
"inactiveUnderlineColor": "#6272A4", "inactiveUnderlineColor": "#6272A4",
"selectedForeground": "#F8F8F2", "selectedForeground": "#F8F8F2",
"selectedBackground": "#44475A", "selectedBackground": "#44475A",
"underlineColor": "#FF79C5", "underlineColor": "#9580ff",
"underlinedTabBackground": "#44475A" "underlinedTabBackground": "#44475A",
"underlinedTabForeground": "#FFFFFF"
}, },
"EditorGroupsTabs": { "EditorGroupsTabs": {
"background": "#282A36", "background": "#282A36",
"borderColor": "#282A36", "borderColor": "#282A36",
"hoverBackground": "#6272A4", "hoverBackground": "#44475a",
"hoverColor": "#6272A4", "hoverColor": "#44475a",
"inactiveUnderlineColor": "#FF79C5", "inactiveUnderlineColor": "#9580ff",
"underlineColor": "#FF79C5", "underlineColor": "#9580ff",
"underlinedTabBackground": "#44475A", "underlinedTabBackground": "#44475A",
"underlinedTabForeground": "#F8F8F2" "underlinedTabForeground": "#F8F8F2"
}, },
"FileColor": { "FileColor": {
"Green": "#387002", "Green": "#387002",
"Blue": "#004BA0", "Blue": "#004BA0",
"Yellow": "#313341", "Yellow": "#34353D",
"Orange": "#B53D00", "Orange": "#B53D00",
"Violet": "#4D2C91", "Violet": "#4D2C91",
"Rose": "#A00037" "Rose": "#A00037"
@@ -239,19 +261,20 @@
"Focus.color": "#21222C", "Focus.color": "#21222C",
"FormattedTextField": { "FormattedTextField": {
"background": "#282A36", "background": "#282A36",
"caretForeground": "#FF79C5", "caretForeground": "#9580ff",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"inactiveBackground": "#393C4B", "inactiveBackground": "#393C4B",
"inactiveForeground": "#6272A4", "inactiveForeground": "#6272A4",
"selectionForeground": "#8BE9FD", "selectionForeground": "#8BE9FD",
"selectionBackground": "#44475A" "selectionBackground": "#44475A"
}, },
"GotItTooltip.borderColor": "#1D2228",
"Group": { "Group": {
"disabledSeparatorColor": "#21222C", "disabledSeparatorColor": "#21222C",
"separatorColor": "#21222C" "separatorColor": "#21222C"
}, },
"GutterTooltip": { "GutterTooltip": {
"infoForeground": "#F8F8F2", "infoForeground": "#6272A4",
"lineSeparatorColor": "#282A36" "lineSeparatorColor": "#282A36"
}, },
"HeaderColor": { "HeaderColor": {
@@ -265,7 +288,7 @@
"infoForeground": "#6272A4", "infoForeground": "#6272A4",
"shortcutForeground": "#6272A4" "shortcutForeground": "#6272A4"
}, },
"Hyperlink.linkColor": "#FF79C5", "Hyperlink.linkColor": "#9580ff",
"inactiveCaption": "#282A36", "inactiveCaption": "#282A36",
"inactiveCaptionBorder": "#282A36", "inactiveCaptionBorder": "#282A36",
"inactiveCaptionText": "#6272A4", "inactiveCaptionText": "#6272A4",
@@ -288,23 +311,26 @@
"disabledText": "#6272A4", "disabledText": "#6272A4",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"infoForeground": "#6272A4", "infoForeground": "#6272A4",
"selectedForeground": "#8BE9FD" "selectedForeground": "#8BE9FD",
"selectedDisabledForeground": "#F8F8F2"
}, },
"Link": { "Link": {
"activeForeground": "#FF79C5", "activeForeground": "#9580ff",
"hoverForeground": "#FF79C5", "hoverForeground": "#9580ff",
"pressedForeground": "#FF79C5", "pressedForeground": "#9580ff",
"secondaryForeground": "#6272A4", "secondaryForeground": "#6272A4",
"visitedForeground": "#FF79C5" "visitedForeground": "#9580ff"
}, },
"link.foreground": "#FF79C5", "link.foreground": "#9580ff",
"List": { "List": {
"background": "#282A36", "background": "#282A36",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"hoverBackground": "#44475A70",
"hoverInactiveBackground": "#44475A",
"selectionBackground": "#44475A50", "selectionBackground": "#44475A50",
"selectionForeground": "#8BE9FD", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#8BE9FD", "selectionInactiveForeground": "#8BE9FD",
"selectionInactiveBackground": "#44475A50" "selectionInactiveBackground": "#44475A70"
}, },
"material": { "material": {
"background": "#282A36", "background": "#282A36",
@@ -313,19 +339,19 @@
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"mergeCommits": "#393C4B", "mergeCommits": "#393C4B",
"primaryColor": "#6272A4", "primaryColor": "#6272A4",
"selectionForeground": "#8BE9FD", "selectionForeground": "#FFFFFF",
"tab.backgroundColor": "#282A36", "tab.backgroundColor": "#282A36",
"tab.borderColor": "#FF79C5", "tab.borderColor": "#9580ff",
"tagColor": "#6272A4" "tagColor": "#6272A4"
}, },
"MemoryIndicator": { "MemoryIndicator": {
"allocatedBackground": "#282A36", "allocatedBackground": "#282A36",
"usedColor": "#6272A4", "usedColor": "#44475a",
"usedBackground": "#6272A4" "usedBackground": "#44475a"
}, },
"Menu": { "Menu": {
"acceleratorForeground": "#6272A4", "acceleratorForeground": "#6272A4",
"acceleratorSelectionForeground": "#8BE9FD", "acceleratorSelectionForeground": "#FFFFFF",
"background": "#282A36", "background": "#282A36",
"border": "4,2,4,2", "border": "4,2,4,2",
"borderColor": "#282A36", "borderColor": "#282A36",
@@ -333,7 +359,7 @@
"disabledForeground": "#6272A4", "disabledForeground": "#6272A4",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD", "selectionForeground": "#FFFFFF",
"separatorColor": "#21222C" "separatorColor": "#21222C"
}, },
"MenuBar": { "MenuBar": {
@@ -344,19 +370,19 @@
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"highlight": "#282A36", "highlight": "#282A36",
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD", "selectionForeground": "#FFFFFF",
"shadow": "#282A36" "shadow": "#282A36"
}, },
"MenuItem": { "MenuItem": {
"acceleratorForeground": "#6272A4", "acceleratorForeground": "#6272A4",
"acceleratorSelectionForeground": "#8BE9FD", "acceleratorSelectionForeground": "#FFFFFF",
"border": "4,2,4,2", "border": "4,2,4,2",
"background": "#282A36", "background": "#282A36",
"disabledBackground": "#282A36", "disabledBackground": "#282A36",
"disabledForeground": "#6272A4", "disabledForeground": "#6272A4",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD" "selectionForeground": "#FFFFFF"
}, },
"NavBar": { "NavBar": {
"arrowColor": "#F8F8F2", "arrowColor": "#F8F8F2",
@@ -370,7 +396,7 @@
"background": "#282A36" "background": "#282A36"
} }
}, },
"NewPSD.warning": "#FF79C5", "NewPSD.warning": "#9580ff",
"Notification": { "Notification": {
"background": "#1D2228", "background": "#1D2228",
"borderColor": "#1D2228", "borderColor": "#1D2228",
@@ -399,7 +425,7 @@
}, },
"Outline": { "Outline": {
"color": "#393C4B", "color": "#393C4B",
"focusedColor": "#FF79C5", "focusedColor": "#9580ff",
"disabledColor": "#6272A4" "disabledColor": "#6272A4"
}, },
"Panel": { "Panel": {
@@ -409,8 +435,8 @@
"ParameterInfo": { "ParameterInfo": {
"background": "#282A36", "background": "#282A36",
"borderColor": "#44475A", "borderColor": "#44475A",
"currentOverloadBackground": "#44475A", "currentOverloadBackground": "#44475a",
"currentParameterForeground": "#FF79C5", "currentParameterForeground": "#9580ff",
"disabledForeground": "#6272A4", "disabledForeground": "#6272A4",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"infoForeground": "#6272A4", "infoForeground": "#6272A4",
@@ -418,8 +444,8 @@
}, },
"PasswordField": { "PasswordField": {
"background": "#282A36", "background": "#282A36",
"capsLockIconColor": "#FF79C5", "capsLockIconColor": "#9580ff",
"caretForeground": "#FF79C5", "caretForeground": "#9580ff",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"inactiveForeground": "#6272A4", "inactiveForeground": "#6272A4",
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
@@ -428,21 +454,22 @@
"Plugins": { "Plugins": {
"background": "#282A36", "background": "#282A36",
"disabledForeground": "#6272A4", "disabledForeground": "#6272A4",
"eapTagBackground": "#6272A4", "eapTagBackground": "#44475a",
"hoverBackground": "#44475A70",
"lightSelectionBackground": "#44475A", "lightSelectionBackground": "#44475A",
"paidTagBackground": "#6272A4", "paidTagBackground": "#44475a",
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
"tagForeground": "#FF79C5", "tagForeground": "#9580ff",
"tagBackground": "#6272A4", "tagBackground": "#44475a",
"trialTagBackground": "#6272A4", "trialTagBackground": "#44475a",
"Button": { "Button": {
"installBackground": "#393C4B", "installBackground": "#393C4B",
"installBorderColor": "#393C4B", "installBorderColor": "#393C4B",
"installForeground": "#F8F8F2", "installForeground": "#F8F8F2",
"installFocusedBackground": "#6272A4", "installFocusedBackground": "#44475a",
"installFillForeground": "#6272A4", "installFillForeground": "#6272A4",
"installFillBackground": "#393C4B", "installFillBackground": "#393C4B",
"updateBackground": "#393C4B", "updateBackground": "#9580ff",
"updateBorderColor": "#393C4B", "updateBorderColor": "#393C4B",
"updateForeground": "#F8F8F2" "updateForeground": "#F8F8F2"
}, },
@@ -456,7 +483,7 @@
}, },
"Tab": { "Tab": {
"hoverBackground": "#44475A", "hoverBackground": "#44475A",
"selectedForeground": "#8BE9FD", "selectedForeground": "#FFFFFF",
"selectedBackground": "#44475A" "selectedBackground": "#44475A"
} }
}, },
@@ -464,7 +491,7 @@
"Advertiser": { "Advertiser": {
"background": "#282A36", "background": "#282A36",
"borderColor": "#282A36", "borderColor": "#282A36",
"foreground": "#FF79C5" "foreground": "#9580ff"
}, },
"borderColor": "#191A21", "borderColor": "#191A21",
"inactiveBorderColor": "#282A36", "inactiveBorderColor": "#282A36",
@@ -492,15 +519,15 @@
"PopupMenuSeparator.stripeIndent": 5, "PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": { "ProgressBar": {
"background": "#282A36", "background": "#282A36",
"foreground": "#FF79C5", "foreground": "#9580ff",
"indeterminateEndColor": "#FF79C5", "indeterminateEndColor": "#9580ff",
"indeterminateStartColor": "#FF79C5", "indeterminateStartColor": "#9580ff",
"progressColor": "#FF79C5", "progressColor": "#9580ff",
"selectionBackground": "#6272A4", "selectionBackground": "#44475a",
"trackColor": "#6272A4" "trackColor": "#44475a"
}, },
"PsiViewer": { "PsiViewer": {
"referenceHighlightColor": "#FF79C5" "referenceHighlightColor": "#9580ff"
}, },
"RadioButton": { "RadioButton": {
"background": "#282A36", "background": "#282A36",
@@ -515,39 +542,40 @@
"disabledForeground": "#6272A4", "disabledForeground": "#6272A4",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD" "selectionForeground": "#FFFFFF"
}, },
"ScreenView.borderColor": "#21222C",
"ScrollBar": { "ScrollBar": {
"background": "#282A36", "background": "#282A36",
"hoverThumbBorderColor": "#FF79C5", "hoverThumbBorderColor": "#9580ff",
"hoverThumbColor": "#FF79C5", "hoverThumbColor": "#9580ff",
"hoverTrackColor": "#282A3630", "hoverTrackColor": "#282A3630",
"Mac": { "Mac": {
"hoverThumbBorderColor": "#FF79C5", "hoverThumbBorderColor": "#9580ff",
"hoverThumbColor": "#FF79C5", "hoverThumbColor": "#9580ff",
"hoverTrackColor": "#282A3630", "hoverTrackColor": "#282A3630",
"thumbBorderColor": "#FF79C570", "thumbBorderColor": "#9580ff70",
"thumbColor": "#FF79C570", "thumbColor": "#9580ff70",
"trackColor": "#282A3630", "trackColor": "#282A3630",
"Transparent": { "Transparent": {
"hoverThumbBorderColor": "#FF79C5", "hoverThumbBorderColor": "#9580ff",
"hoverThumbColor": "#FF79C5", "hoverThumbColor": "#9580ff",
"hoverTrackColor": "#282A3630", "hoverTrackColor": "#282A3630",
"thumbBorderColor": "#FF79C570", "thumbBorderColor": "#9580ff70",
"thumbColor": "#FF79C570", "thumbColor": "#9580ff70",
"trackColor": "#282A3630" "trackColor": "#282A3630"
} }
}, },
"thumb": "#6272A4", "thumb": "#44475a",
"thumbBorderColor": "#FF79C570", "thumbBorderColor": "#9580ff70",
"thumbColor": "#FF79C570", "thumbColor": "#9580ff70",
"trackColor": "#282A3630", "trackColor": "#282A3630",
"Transparent": { "Transparent": {
"hoverThumbBorderColor": "#FF79C5", "hoverThumbBorderColor": "#9580ff",
"hoverThumbColor": "#FF79C5", "hoverThumbColor": "#9580ff",
"hoverTrackColor": "#282A3630", "hoverTrackColor": "#282A3630",
"thumbBorderColor": "#FF79C570", "thumbBorderColor": "#9580ff70",
"thumbColor": "#FF79C570", "thumbColor": "#9580ff70",
"trackColor": "#282A3630" "trackColor": "#282A3630"
} }
}, },
@@ -571,14 +599,23 @@
"Tab": { "Tab": {
"active.foreground": "#8BE9FD", "active.foreground": "#8BE9FD",
"selectedForeground": "#8BE9FD", "selectedForeground": "#8BE9FD",
"selectedBackground": "#6272A4" "selectedBackground": "#44475a"
} }
}, },
"SearchMatch": { "SearchMatch": {
"endBackground": "#FF79C5", "endBackground": "#9580ff",
"startBackground": "#FF79C5" "startBackground": "#9580ff",
"endColor": "#9580ff",
"startColor": "#9580ff"
}, },
"SearchField.errorBackground": "#1D2228", "SearchField.errorBackground": "#1D2228",
"SearchOption": {
"selectedBackground": "#44475A"
},
"SearchResults": {
"Ordinal.File.Foreground": "#6272A4",
"Repeated.File.Foreground": "#F8F8F2"
},
"Separator": { "Separator": {
"background": "#282A36", "background": "#282A36",
"foreground": "#282A36", "foreground": "#282A36",
@@ -589,17 +626,17 @@
}, },
"Slider": { "Slider": {
"background": "#282A36", "background": "#282A36",
"buttonBorderColor": "#FF79C5", "buttonBorderColor": "#9580ff",
"buttonColor": "#FF79C5", "buttonColor": "#9580ff",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"majorTickLength": 6, "majorTickLength": 6,
"tickColor": "#282A36", "tickColor": "#282A36",
"trackColor": "#44475A", "trackColor": "#44475A",
"trackWidth": 7, "trackWidth": 7,
"thumb": "#FF79C5" "thumb": "#9580ff"
}, },
"SpeedSearch": { "SpeedSearch": {
"background": "#6272A4", "background": "#44475a",
"borderColor": "#21222C", "borderColor": "#21222C",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"errorForeground": "#F8F8F2" "errorForeground": "#F8F8F2"
@@ -616,11 +653,13 @@
}, },
"SplitPaneDivider.draggingColor": "#282A36", "SplitPaneDivider.draggingColor": "#282A36",
"StatusBar": { "StatusBar": {
"borderColor": "#282A36" "borderColor": "#282A36",
"hoverBackground": "#44475a",
"LightEditBackground": "#44475A"
}, },
"TabbedPane": { "TabbedPane": {
"background": "#282A36", "background": "#282A36",
"contentAreaColor": "#6272A4", "contentAreaColor": "#44475a",
"contentBorderInsets": "3,1,1,1", "contentBorderInsets": "3,1,1,1",
"darkShadow": "#21222C", "darkShadow": "#21222C",
"disabledForeground": "#6272A4", "disabledForeground": "#6272A4",
@@ -630,7 +669,7 @@
"fontSizeOffset": 0, "fontSizeOffset": 0,
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"highlight": "#21222C", "highlight": "#21222C",
"hoverColor": "#6272A4", "hoverColor": "#44475a",
"labelShift": 0, "labelShift": 0,
"selectedForeground": "#8BE9FD", "selectedForeground": "#8BE9FD",
"selectedLabelShift": 0, "selectedLabelShift": 0,
@@ -639,27 +678,31 @@
"tabHeight": 32, "tabHeight": 32,
"tabInsets": "5,10,5,10", "tabInsets": "5,10,5,10",
"tabSelectionHeight": 2, "tabSelectionHeight": 2,
"underlineColor": "#FF79C5" "underlineColor": "#9580ff"
}, },
"TabbedPane.mt.tab.background": "#282A36", "TabbedPane.mt.tab.background": "#282A36",
"Table": { "Table": {
"alternativeRowBackground": "#191A21",
"background": "#282A36", "background": "#282A36",
"cellNoFocusBorder": "10,5,10,5", "cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#FF79C5", "disabledForeground": "#6272A4",
"dropLineShortColor": "#FF79C5", "dropLineColor": "#9580ff",
"dropLineShortColor": "#9580ff",
"focusCellBackground": "#44475A", "focusCellBackground": "#44475A",
"focusCellForeground": "#8BE9FD", "focusCellForeground": "#8BE9FD",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"gridColor": "#282A36", "gridColor": "#282A36",
"highlightOuter": "#44475A", "highlightOuter": "#44475A",
"hoverBackground": "#44475A70",
"hoverInactiveBackground": "#44475A",
"lightSelectionForeground": "#8BE9FD", "lightSelectionForeground": "#8BE9FD",
"lightSelectionInactiveForeground": "#6272A4", "lightSelectionInactiveForeground": "#6272A4",
"lightSelectionInactiveBackground": "#282A36", "lightSelectionInactiveBackground": "#282A36",
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD", "selectionForeground": "#8BE9FD",
"selectionInactiveBackground": "#44475A", "selectionInactiveBackground": "#44475A",
"selectionInactiveForeground": "#8BE9FD", "selectionInactiveForeground": "#FFFFFF",
"sortIconColor": "#F8F8F2", "sortIconColor": "#F8F8F2",
"stripeColor": "#191A21" "stripeColor": "#191A21"
}, },
@@ -680,7 +723,7 @@
"textText": "#6272A4", "textText": "#6272A4",
"TextArea": { "TextArea": {
"background": "#282A36", "background": "#282A36",
"caretForeground": "#FF79C5", "caretForeground": "#9580ff",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"inactiveForeground": "#6272A4", "inactiveForeground": "#6272A4",
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
@@ -688,7 +731,7 @@
}, },
"TextField": { "TextField": {
"background": "#282A36", "background": "#282A36",
"caretForeground": "#FF79C5", "caretForeground": "#9580ff",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"inactiveForeground": "#6272A4", "inactiveForeground": "#6272A4",
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
@@ -696,7 +739,7 @@
}, },
"TextPane": { "TextPane": {
"background": "#282A36", "background": "#282A36",
"caretForeground": "#FF79C5", "caretForeground": "#9580ff",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"inactiveForeground": "#6272A4", "inactiveForeground": "#6272A4",
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
@@ -704,7 +747,7 @@
}, },
"TitlePane": { "TitlePane": {
"background": "#191A21", "background": "#191A21",
"Button.hoverBackground": "#6272A4", "Button.hoverBackground": "#44475a",
"inactiveBackground": "#282A36", "inactiveBackground": "#282A36",
"infoForeground": "#6272A4", "infoForeground": "#6272A4",
"inactiveInfoForeground": "#6272A4" "inactiveInfoForeground": "#6272A4"
@@ -717,8 +760,8 @@
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"offForeground": "#282A36", "offForeground": "#282A36",
"offBackground": "#282A36", "offBackground": "#282A36",
"onBackground": "#FF79C5", "onBackground": "#9580ff",
"onForeground": "#FF79C5" "onForeground": "#9580ff"
}, },
"ToolBar": { "ToolBar": {
"background": "#282A36", "background": "#282A36",
@@ -729,8 +772,8 @@
"ToolTip": { "ToolTip": {
"Actions.background": "#282A36", "Actions.background": "#282A36",
"Actions.infoForeground": "#6272A4", "Actions.infoForeground": "#6272A4",
"background": "#282A36", "background": "#1D2228",
"borderColor": "#6272A4", "borderColor": "#21222C",
"foreground": "#F8F8F2", "foreground": "#F8F8F2",
"infoForeground": "#6272A4", "infoForeground": "#6272A4",
"separatorColor": "#21222C", "separatorColor": "#21222C",
@@ -751,50 +794,93 @@
"background": "#282A36" "background": "#282A36"
}, },
"HeaderTab": { "HeaderTab": {
"hoverBackground": "#6272A4", "borderColor": "#44475a",
"hoverInactiveBackground": "#282A36", "hoverBackground": "#44475a",
"inactiveUnderlineColor": "#FF79C5", "hoverInactiveBackground": "#44475a",
"inactiveUnderlineColor": "#9580ff",
"selectedBackground": "#191A21", "selectedBackground": "#191A21",
"selectedInactiveBackground": "#191A21", "selectedInactiveBackground": "#191A21",
"underlineColor": "#FF79C5", "underlineColor": "#9580ff",
"underlinedTabBackground": "#6272A4", "underlinedTabBackground": "#44475A",
"underlinedTabInactiveBackground": "#282A36" "underlinedTabInactiveBackground": "#282A36",
"underlinedTabForeground": "#FFFFFF",
"underlinedTabInactiveForeground": "#F8F8F2"
} }
}, },
"Tree": { "Tree": {
"background": "#282A36", "background": "#282A36",
"foreground": "#6272A4", "foreground": "#6272A4",
"hash": "#21222C", "hash": "#21222C",
"modifiedItemForeground": "#FF79C5", "hoverBackground": "#44475A70",
"hoverInactiveBackground": "#44475A",
"modifiedItemForeground": "#9580ff",
"rowHeight": 28, "rowHeight": 28,
"selectionBackground": "#44475A50", "selectionBackground": "#44475A70",
"selectionForeground": "#8BE9FD", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#8BE9FD", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#44475A50", "selectionInactiveBackground": "#44475A70",
"textBackground": "#282A36" "textBackground": "#282A36"
}, },
"Tree.leftChildIndent": 10, "Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5, "Tree.rightChildIndent": 5,
"UiDesigner": { "UIDesigner": {
"Activity.borderColor": "#21222C", "Activity.borderColor": "#21222C",
"ColorPicker.background": "#282A36", "Canvas.background": "#191A21",
"ColorPicker.foreground": "#F8F8F2", "ColorPicker": {
"Component.borderColor": "#21222C", "background": "#282A36",
"Component.background": "#282A36", "foreground": "#F8F8F2"
"Component.foreground": "#F8F8F2", },
"Connector.borderColor": "#21222C", "Component": {
"Connector.hoverBorderColor": "#6272A4", "borderColor": "#21222C",
"background": "#282A36",
"foreground": "#F8F8F2",
"hoverBorderColor": "#44475a"
},
"Connector": {
"borderColor": "#21222C",
"hoverBorderColor": "#44475a"
},
"Canvas.background": "#191A21", "Canvas.background": "#191A21",
"highStroke.foreground": "#F8F8F2", "highStroke.foreground": "#F8F8F2",
"Label.foreground": "#6272A4", "Label.foreground": "#6272A4",
"List.selectionBackground": "#44475A50", "List.selectionBackground": "#44475A70",
"Panel.borderColor": "#21222C", "motion": {
"Panel.background": "#282A36", "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", "percent.foreground": "#F8F8F2",
"Placeholder.background": "#282A36", "Placeholder": {
"Placeholder.borderColor": "#21222C", "background": "#282A36",
"Placeholder.foreground": "#F8F8F2", "borderColor": "#21222C",
"Placeholder.selectedForeground": "#8BE9FD", "foreground": "#F8F8F2",
"selectedForeground": "#FFFFFF"
},
"Preview.background": "#282A36", "Preview.background": "#282A36",
"stroke.acceleratorForeground": "#6272A4" "stroke.acceleratorForeground": "#6272A4"
}, },
@@ -809,16 +895,16 @@
"selectedBranchBackground": "#282A36" "selectedBranchBackground": "#282A36"
}, },
"GitCommits": { "GitCommits": {
"graphColor": "#6272A4" "graphColor": "#44475a"
}, },
"GitLog": { "GitLog": {
"localBranchIconColor": "#FF79C5", "localBranchIconColor": "#9580ff",
"otherIconColor": "#6272A4", "otherIconColor": "#6272A4",
"remoteBranchIconColor": "#F8F8F2", "remoteBranchIconColor": "#F8F8F2",
"tagIconColor": "#6272A4" "tagIconColor": "#6272A4"
}, },
"HgLog": { "HgLog": {
"branchIconColor": "#FF79C5", "branchIconColor": "#9580ff",
"bookmarkIconColor": "#8BE9FD", "bookmarkIconColor": "#8BE9FD",
"closedBranchIconColor": "#6272A4", "closedBranchIconColor": "#6272A4",
"localTagIconColor": "#6272A4", "localTagIconColor": "#6272A4",
@@ -828,11 +914,12 @@
}, },
"Log": { "Log": {
"Commit.unmatchedForeground": "#6272A4", "Commit.unmatchedForeground": "#6272A4",
"Commit.currentBranchBackground": "#282A36" "Commit.currentBranchBackground": "#282A36",
"Commit.hoveredBackground": "#44475A70"
}, },
"RefLabel": { "RefLabel": {
"foreground": "#8BE9FD", "foreground": "#8BE9FD",
"backgroundBase": "#6272A4" "backgroundBase": "#44475a"
} }
}, },
"Viewport": { "Viewport": {
@@ -840,16 +927,22 @@
"foreground": "#F8F8F2" "foreground": "#F8F8F2"
}, },
"WelcomeScreen": { "WelcomeScreen": {
"AssociatedComponent.background": "#282A36",
"background": "#282A36", "background": "#282A36",
"borderColor": "#282A36", "borderColor": "#282A36",
"captionBackground": "#191A21", "captionBackground": "#191A21",
"captionForeground": "#F8F8F2", "captionForeground": "#F8F8F2",
"Details.background": "#282A36",
"footerBackground": "#191A21", "footerBackground": "#191A21",
"footerForeground": "#F8F8F2", "footerForeground": "#F8F8F2",
"headerBackground": "#282A36", "headerBackground": "#282A36",
"headerForeground": "#F8F8F2", "headerForeground": "#F8F8F2",
"List.background": "#191A21",
"separatorColor": "#21222C", "separatorColor": "#21222C",
"SidePanel.background": "#282A36",
"Projects": { "Projects": {
"actions.background": "#191A21",
"actions.selectionBackground": "#44475a",
"background": "#282A36", "background": "#282A36",
"selectionBackground": "#44475A", "selectionBackground": "#44475A",
"selectionInactiveBackground": "#282A36" "selectionInactiveBackground": "#282A36"
@@ -865,46 +958,46 @@
"#43494A": "#191A21", "#43494A": "#191A21",
"#6B6B6B": "#6272A4", "#6B6B6B": "#6272A4",
"#A7A7A7": "#282A36", "#A7A7A7": "#282A36",
"#3D6185": "#FF79C5", "#3D6185": "#9580ff",
"#466D94": "#FF79C5", "#466D94": "#9580ff",
"#3C3F41": "#282A36", "#3C3F41": "#282A36",
"#545556": "#6272A4", "#545556": "#6272A4",
"#606060": "#6272A4", "#606060": "#6272A4",
"#9AA7B0": "#F8F8F2", "#9AA7B0": "#F8F8F2",
"#675133": "#FF79C5", "#675133": "#9580ff",
"Actions.Blue": "#50FA78", "Actions.Blue": "#50FA78",
"Actions.Green": "#F1FA8C", "Actions.Green": "#F1FA8C",
"Actions.Grey": "#6272A4", "Actions.Grey": "#6272A4",
"Actions.GreyInline": "#6272A4", "Actions.GreyInline": "#6272A4",
"Actions.GreyInline.Dark": "#F8F8F2", "Actions.GreyInline.Dark": "#F8F8F2",
"Actions.Red": "#FF79C6", "Actions.Red": "#8BE9FD",
"Actions.Yellow": "#50FA7B", "Actions.Yellow": "#50FA7B",
"Checkbox.Background.Default": "#191A21", "Checkbox.Background.Default": "#191A21",
"Checkbox.Background.Default.Dark": "#191A21", "Checkbox.Background.Default.Dark": "#191A21",
"Checkbox.Background.Disabled": "#313341", "Checkbox.Background.Disabled": "#34353D",
"Checkbox.Background.Disabled.Dark": "#313341", "Checkbox.Background.Disabled.Dark": "#34353D",
"Checkbox.Border.Default": "#21222C", "Checkbox.Border.Default": "#21222C",
"Checkbox.Border.Default.Dark": "#21222C", "Checkbox.Border.Default.Dark": "#21222C",
"Checkbox.Border.Disabled": "#6272A4", "Checkbox.Border.Disabled": "#6272A4",
"Checkbox.Border.Disabled.Dark": "#6272A4", "Checkbox.Border.Disabled.Dark": "#6272A4",
"Checkbox.Focus.Thin.Default": "#FF79C5", "Checkbox.Focus.Thin.Default": "#9580ff",
"Checkbox.Focus.Thin.Default.Dark": "#FF79C5", "Checkbox.Focus.Thin.Default.Dark": "#9580ff",
"Checkbox.Focus.Wide": "#FF79C5", "Checkbox.Focus.Wide": "#9580ff",
"Checkbox.Focus.Wide.Dark": "#FF79C5", "Checkbox.Focus.Wide.Dark": "#9580ff",
"Checkbox.Foreground.Disabled": "#6272A4", "Checkbox.Foreground.Disabled": "#6272A4",
"Checkbox.Foreground.Disabled.Dark": "#6272A4", "Checkbox.Foreground.Disabled.Dark": "#6272A4",
"Checkbox.Background.Selected": "#FF79C5", "Checkbox.Background.Selected": "#9580ff",
"Checkbox.Background.Selected.Dark": "#282A36", "Checkbox.Background.Selected.Dark": "#282A36",
"Checkbox.Border.Selected": "#FF79C5", "Checkbox.Border.Selected": "#9580ff",
"Checkbox.Border.Selected.Dark": "#FF79C5", "Checkbox.Border.Selected.Dark": "#9580ff",
"Checkbox.Foreground.Selected": "#FF79C5", "Checkbox.Foreground.Selected": "#9580ff",
"Checkbox.Foreground.Selected.Dark": "#FF79C5", "Checkbox.Foreground.Selected.Dark": "#9580ff",
"Checkbox.Focus.Thin.Selected": "#F8F8F2", "Checkbox.Focus.Thin.Selected": "#F8F8F2",
"Checkbox.Focus.Thin.Selected.Dark": "#F8F8F2", "Checkbox.Focus.Thin.Selected.Dark": "#F8F8F2",
"Objects.Grey": "#6272A4", "Objects.Grey": "#6272A4",
"Objects.Blue": "#50FA78", "Objects.Blue": "#50FA78",
"Objects.RedStatus": "#FF79C6", "Objects.RedStatus": "#8BE9FD",
"Objects.Red": "#FF79C6", "Objects.Red": "#8BE9FD",
"Objects.Pink": "#FF79C6", "Objects.Pink": "#FF79C6",
"Objects.Yellow": "#50FA7B", "Objects.Yellow": "#50FA7B",
"Objects.Green": "#F1FA8C", "Objects.Green": "#F1FA8C",

View File

@@ -2,32 +2,38 @@
"name": "GitHub Contrast", "name": "GitHub Contrast",
"dark": false, "dark": false,
"author": "Mallowigi", "author": "Mallowigi",
"editorScheme": "/colors/Github.xml", "editorScheme": "/colors/GitHub (Material).xml",
"emptyFrameBackground": {
"anchor": "center",
"image": "/walls/github.svg",
"fill": "scale",
"transparency": 50
},
"ui": { "ui": {
"*": { "*": {
"acceleratorSelectionForeground": "#292D31", "acceleratorSelectionForeground": "#292D31",
"background": "#F7F8FA", "background": "#F7F8FA",
"borderColor": "#DFE1E4", "borderColor": "#DFE1E4",
"disabledBackground": "#dcdcdc", "disabledBackground": "#FDFDFD",
"disabledForeground": "#9ba0a3", "disabledForeground": "#6C737C",
"disabledText": "#9ba0a3", "disabledText": "#6C737C",
"focusColor": "#CCE5FF", "focusColor": "#CCE5FF",
"focusedBorderColor": "#79CB60", "focusedBorderColor": "#79CB60",
"foreground": "#5B6168", "foreground": "#5B6168",
"inactiveBackground": "#dcdcdc", "inactiveBackground": "#FDFDFD",
"inactiveForeground": "#292D31", "inactiveForeground": "#292D31",
"infoForeground": "#292D31", "infoForeground": "#292D31",
"selectionBackground": "#3A66D1", "selectionBackground": "#3A66D1",
"selectionBackgroundInactive": "#f3f3f3", "selectionBackgroundInactive": "#F7F8FA",
"selectionForeground": "#FFFFFF", "selectionForeground": "#111111",
"selectionInactiveBackground": "#f3f3f3", "selectionInactiveBackground": "#F7F8FA",
"separatorColor": "#DFE1E4" "separatorColor": "#DFE1E4"
}, },
"activeCaption": "#F7F8FA", "activeCaption": "#F7F8FA",
"ActionButton": { "ActionButton": {
"hoverBackground": "#79CB6050", "hoverBackground": "#79CB6050",
"hoverBorderColor": "#79CB6050", "hoverBorderColor": "#79CB6050",
"hoverSeparatorColor": "#edf1f5", "hoverSeparatorColor": "#F1F3F6",
"focusedBorderColor": "#79CB6050", "focusedBorderColor": "#79CB6050",
"pressedBackground": "#79CB6050", "pressedBackground": "#79CB6050",
"pressedBorderColor": "#79CB6050" "pressedBorderColor": "#79CB6050"
@@ -50,32 +56,35 @@
"startBackground": "#cce5ff", "startBackground": "#cce5ff",
"startBorderColor": "#cce5ff" "startBorderColor": "#cce5ff"
}, },
"disabledBorderColor": "#edf1f5", "disabledBorderColor": "#F1F3F6",
"disabledText": "#9ba0a3", "disabledText": "#6C737C",
"endBackground": "#edf1f5", "endBackground": "#F1F3F6",
"endBorderColor": "#edf1f5", "endBorderColor": "#F1F3F6",
"focus": "#CCE5FF", "focus": "#CCE5FF",
"focusedBorderColor": "#79CB60", "focusedBorderColor": "#79CB60",
"foreground": "#292D31", "foreground": "#292D31",
"highlight": "#FFFFFF", "highlight": "#111111",
"mt.background": "#edf1f5", "mt.background": "#F1F3F6",
"mt.foreground": "#292D31", "mt.foreground": "#292D31",
"mt.selectedForeground": "#FFFFFF", "mt.selectedForeground": "#111111",
"mt.selection.color1": "#cce5ff", "mt.selection.color1": "#cce5ff",
"mt.selection.color2": "#cce5ff", "mt.selection.color2": "#cce5ff",
"startBackground": "#edf1f5", "startBackground": "#F1F3F6",
"startBorderColor": "#edf1f5", "startBorderColor": "#F1F3F6",
"shadowColor": "#edf1f5", "shadowColor": "#F1F3F6",
"shadowWidth": 0 "shadowWidth": 0
}, },
"Canvas": { "Canvas": {
"Tooltip.borderColor": "#DFE1E4", "Tooltip.borderColor": "#DFE1E4",
"Tooltip.background": "#DFECFE" "Tooltip.background": "#DFECFE"
}, },
"Content.background": "#fafbfc", "Content": {
"background": "#FFFFFF",
"selectionBackground": "#3A66D1"
},
"CheckBox": { "CheckBox": {
"background": "#F7F8FA", "background": "#F7F8FA",
"disabledText": "#9ba0a3", "disabledText": "#6C737C",
"foreground": "#5B6168", "foreground": "#5B6168",
"select": "#79CB60" "select": "#79CB60"
}, },
@@ -84,54 +93,63 @@
"acceleratorSelectionForeground": "#292D31", "acceleratorSelectionForeground": "#292D31",
"background": "#F7F8FA", "background": "#F7F8FA",
"disabledBackground": "#F7F8FA", "disabledBackground": "#F7F8FA",
"disabledForeground": "#9ba0a3", "disabledForeground": "#6C737C",
"foreground": "#5B6168", "foreground": "#5B6168",
"selectionBackground": "#3A66D1", "selectionBackground": "#3A66D1",
"selectionForeground": "#111111" "selectionForeground": "#111111"
}, },
"CodeWithMe": {
"Avatar.foreground": "#5B6168",
"AccessEnabled": {
"accessDot": "#79CB60",
"dropdownBorder": "#F7F8FA",
"pillBackground": "$second"
}
},
"ColorChooser": { "ColorChooser": {
"background": "#F7F8FA", "background": "#F7F8FA",
"foreground": "#5B6168", "foreground": "#5B6168",
"swatchesDefaultRecentColor": "#5B6168" "swatchesDefaultRecentColor": "#5B6168"
}, },
"ComboBoxButton.background": "#edf1f5", "ComboBoxButton.background": "#F1F3F6",
"ComboBox": { "ComboBox": {
"ArrowButton": { "ArrowButton": {
"background": "#edf1f5", "background": "#F1F3F6",
"disabledIconColor": "#9ba0a3", "disabledIconColor": "#6C737C",
"iconColor": "#5B6168", "iconColor": "#5B6168",
"nonEditableBackground": "#F7F8FA" "nonEditableBackground": "#F7F8FA"
}, },
"background": "#fafbfc", "background": "#FFFFFF",
"buttonBackground": "#edf1f5", "buttonBackground": "#F1F3F6",
"disabledForeground": "#9ba0a3", "darcula.hoveredArrowButtonForeground": "#79CB60",
"disabledForeground": "#6C737C",
"foreground": "#5B6168", "foreground": "#5B6168",
"modifiedItemForeground": "#79CB60", "modifiedItemForeground": "#79CB60",
"nonEditableBackground": "#f3f3f3", "nonEditableBackground": "#F7F8FA",
"padding": "5,5,5,5", "padding": "5,5,5,5",
"selectionBackground": "#cce5ff", "selectionBackground": "#cce5ff",
"selectionForeground": "#111111" "selectionForeground": "#111111"
}, },
"ComboPopup.border": "#DFE1E4", "ComboPopup.border": "#DFE1E4",
"CompletionPopup": { "CompletionPopup": {
"background": "#f3f3f3", "background": "#F7F8FA",
"foreground": "#5B6168", "foreground": "#5B6168",
"infoForeground": "#292D31", "infoForeground": "#292D31",
"matchForeground": "#79CB60", "matchForeground": "#79CB60",
"matchSelectionForeground": "#79CB60", "matchSelectionForeground": "#79CB60",
"nonFocusedState": "false", "nonFocusedState": "false",
"selectedGrayedForeground": "#FFFFFF", "selectedGrayedForeground": "#111111",
"selectionGrayForeground": "#FFFFFF", "selectionGrayForeground": "#111111",
"selectionInactiveInfoForeground": "#292D31", "selectionInactiveInfoForeground": "#292D31",
"selectionInactiveBackground": "#3A66D150", "selectionInactiveBackground": "#3A66D150",
"selectionBackground": "#3A66D180", "selectionBackground": "#3A66D180",
"selectionForeground": "#FFFFFF", "selectionForeground": "#111111",
"selectionInfoForeground": "#FFFFFF" "selectionInfoForeground": "#111111"
}, },
"Component": { "Component": {
"arc": 4, "arc": 4,
"borderColor": "#CCE5FF", "borderColor": "#CCE5FF",
"disabledBorderColor": "#edf1f5", "disabledBorderColor": "#F1F3F6",
"focusColor": "#79CB60", "focusColor": "#79CB60",
"focusedBorderColor": "#79CB60", "focusedBorderColor": "#79CB60",
"hoverIconColor": "#79CB60", "hoverIconColor": "#79CB60",
@@ -142,7 +160,7 @@
"controlText": "#292D31", "controlText": "#292D31",
"Counter": { "Counter": {
"background": "#79CB60", "background": "#79CB60",
"foreground": "#FFFFFF" "foreground": "#111111"
}, },
"Debugger": { "Debugger": {
"Variables": { "Variables": {
@@ -166,13 +184,15 @@
"background": "#F7F8FA", "background": "#F7F8FA",
"borderColor": "#F7F8FA", "borderColor": "#F7F8FA",
"hoverBackground": "#cce5ff", "hoverBackground": "#cce5ff",
"hoverColor": "#fafbfc", "hoverColor": "#FFFFFF",
"hoverMaskColor": "#CCE5FF", "hoverMaskColor": "#CCE5FF",
"inactiveColoredFileBackground": "#edf1f5", "inactiveColoredTabBackground": "#F7F8FA",
"inactiveUnderlineColor": "#9ba0a3", "inactiveColoredFileBackground": "#F1F3F6",
"inactiveMaskColor": "#fafbfc", "inactiveUnderlineColor": "#79CB60",
"inactiveMaskColor": "#FFFFFF",
"underlineColor": "#79CB60", "underlineColor": "#79CB60",
"underlinedTabBackground": "#cce5ff" "underlinedTabBackground": "#cce5ff",
"underlinedTabForeground": "#111111"
}, },
"Desktop.background": "#F7F8FA", "Desktop.background": "#F7F8FA",
"DialogWrapper.southPanelBackground": "#F7F8FA", "DialogWrapper.southPanelBackground": "#F7F8FA",
@@ -183,34 +203,36 @@
"areaForeground": "#5B6168" "areaForeground": "#5B6168"
}, },
"Editor": { "Editor": {
"background": "#fafbfc", "background": "#FFFFFF",
"foreground": "#5B6168", "foreground": "#5B6168",
"shortcutForeground": "#292D31" "shortcutForeground": "#292D31"
}, },
"EditorPane": { "EditorPane": {
"background": "#fafbfc", "background": "#FFFFFF",
"caretForeground": "#79CB60", "caretForeground": "#79CB60",
"foreground": "#5B6168", "foreground": "#5B6168",
"inactiveBackground": "#F7F8FA", "inactiveBackground": "#F7F8FA",
"inactiveForeground": "#9ba0a3", "inactiveForeground": "#6C737C",
"selectionBackground": "#3A66D1", "selectionBackground": "#3A66D1",
"selectionForeground": "#111111" "selectionForeground": "#111111"
}, },
"EditorTabs": { "EditorTabs": {
"borderColor": "#f3f3f3", "borderColor": "#F7F8FA",
"hoverBackground": "#CCE5FF",
"hoverColor": "#CCE5FF", "hoverColor": "#CCE5FF",
"hoverMaskColor": "#CCE5FF", "hoverMaskColor": "#CCE5FF",
"inactiveMaskColor": "#F7F8FA", "inactiveMaskColor": "#F7F8FA",
"inactiveColoredFileBackground": "#F7F8FA2", "inactiveColoredFileBackground": "#F7F8FA",
"inactiveUnderlineColor": "#9ba0a3", "inactiveUnderlineColor": "#6C737C",
"selectedForeground": "#5B6168", "selectedForeground": "#5B6168",
"selectedBackground": "#cce5ff", "selectedBackground": "#cce5ff",
"underlineColor": "#79CB60", "underlineColor": "#79CB60",
"underlinedTabBackground": "#cce5ff" "underlinedTabBackground": "#cce5ff",
"underlinedTabForeground": "#111111"
}, },
"EditorGroupsTabs": { "EditorGroupsTabs": {
"background": "#F7F8FA", "background": "#F7F8FA",
"borderColor": "#f3f3f3", "borderColor": "#F7F8FA",
"hoverBackground": "#CCE5FF", "hoverBackground": "#CCE5FF",
"hoverColor": "#CCE5FF", "hoverColor": "#CCE5FF",
"inactiveUnderlineColor": "#79CB60", "inactiveUnderlineColor": "#79CB60",
@@ -221,7 +243,7 @@
"FileColor": { "FileColor": {
"Green": "#387002", "Green": "#387002",
"Blue": "#004BA0", "Blue": "#004BA0",
"Yellow": "#dcdcdc", "Yellow": "#FDFDFD",
"Orange": "#B53D00", "Orange": "#B53D00",
"Violet": "#4D2C91", "Violet": "#4D2C91",
"Rose": "#A00037" "Rose": "#A00037"
@@ -238,25 +260,26 @@
}, },
"Focus.color": "#DFE1E4", "Focus.color": "#DFE1E4",
"FormattedTextField": { "FormattedTextField": {
"background": "#fafbfc", "background": "#FFFFFF",
"caretForeground": "#79CB60", "caretForeground": "#79CB60",
"foreground": "#5B6168", "foreground": "#5B6168",
"inactiveBackground": "#edf1f5", "inactiveBackground": "#F1F3F6",
"inactiveForeground": "#9ba0a3", "inactiveForeground": "#6C737C",
"selectionForeground": "#111111", "selectionForeground": "#111111",
"selectionBackground": "#cce5ff" "selectionBackground": "#cce5ff"
}, },
"GotItTooltip.borderColor": "#DFECFE",
"Group": { "Group": {
"disabledSeparatorColor": "#DFE1E4", "disabledSeparatorColor": "#DFE1E4",
"separatorColor": "#DFE1E4" "separatorColor": "#DFE1E4"
}, },
"GutterTooltip": { "GutterTooltip": {
"infoForeground": "#5B6168", "infoForeground": "#292D31",
"lineSeparatorColor": "#F7F8FA" "lineSeparatorColor": "#F7F8FA"
}, },
"HeaderColor": { "HeaderColor": {
"active": "#F7F8FA", "active": "#F7F8FA",
"inactive": "#fafbfc" "inactive": "#FFFFFF"
}, },
"HelpTooltip": { "HelpTooltip": {
"background": "#F7F8FA", "background": "#F7F8FA",
@@ -266,7 +289,7 @@
"shortcutForeground": "#292D31" "shortcutForeground": "#292D31"
}, },
"Hyperlink.linkColor": "#79CB60", "Hyperlink.linkColor": "#79CB60",
"inactiveCaption": "#f3f3f3", "inactiveCaption": "#F7F8FA",
"inactiveCaptionBorder": "#F7F8FA", "inactiveCaptionBorder": "#F7F8FA",
"inactiveCaptionText": "#292D31", "inactiveCaptionText": "#292D31",
"info": "#292D31", "info": "#292D31",
@@ -283,12 +306,13 @@
}, },
"Label": { "Label": {
"background": "#F7F8FA", "background": "#F7F8FA",
"disabledForeground": "#9ba0a3", "disabledForeground": "#6C737C",
"disabledShadow": "#F7F8FA", "disabledShadow": "#F7F8FA",
"disabledText": "#9ba0a3", "disabledText": "#6C737C",
"foreground": "#5B6168", "foreground": "#5B6168",
"infoForeground": "#292D31", "infoForeground": "#292D31",
"selectedForeground": "#111111" "selectedForeground": "#111111",
"selectedDisabledForeground": "#5B6168"
}, },
"Link": { "Link": {
"activeForeground": "#79CB60", "activeForeground": "#79CB60",
@@ -299,64 +323,66 @@
}, },
"link.foreground": "#79CB60", "link.foreground": "#79CB60",
"List": { "List": {
"background": "#f3f3f3", "background": "#F7F8FA",
"foreground": "#5B6168", "foreground": "#5B6168",
"hoverBackground": "#3A66D170",
"hoverInactiveBackground": "#cce5ff",
"selectionBackground": "#3A66D150", "selectionBackground": "#3A66D150",
"selectionForeground": "#FFFFFF", "selectionForeground": "#111111",
"selectionInactiveForeground": "#111111", "selectionInactiveForeground": "#111111",
"selectionInactiveBackground": "#3A66D1" "selectionInactiveBackground": "#3A66D170"
}, },
"material": { "material": {
"background": "#F7F8FA", "background": "#F7F8FA",
"branchColor": "#5B6168", "branchColor": "#5B6168",
"contrast": "#fafbfc", "contrast": "#FFFFFF",
"foreground": "#5B6168", "foreground": "#5B6168",
"mergeCommits": "#edf1f5", "mergeCommits": "#F1F3F6",
"primaryColor": "#292D31", "primaryColor": "#292D31",
"selectionForeground": "#FFFFFF", "selectionForeground": "#111111",
"tab.backgroundColor": "#F7F8FA", "tab.backgroundColor": "#F7F8FA",
"tab.borderColor": "#79CB60", "tab.borderColor": "#79CB60",
"tagColor": "#292D31" "tagColor": "#292D31"
}, },
"MemoryIndicator": { "MemoryIndicator": {
"allocatedBackground": "#f3f3f3", "allocatedBackground": "#F7F8FA",
"usedColor": "#CCE5FF", "usedColor": "#CCE5FF",
"usedBackground": "#CCE5FF" "usedBackground": "#CCE5FF"
}, },
"Menu": { "Menu": {
"acceleratorForeground": "#292D31", "acceleratorForeground": "#292D31",
"acceleratorSelectionForeground": "#FFFFFF", "acceleratorSelectionForeground": "#111111",
"background": "#F7F8FA", "background": "#F7F8FA",
"border": "4,2,4,2", "border": "4,2,4,2",
"borderColor": "#f3f3f3", "borderColor": "#F7F8FA",
"disabledBackground": "#f3f3f3", "disabledBackground": "#F7F8FA",
"disabledForeground": "#9ba0a3", "disabledForeground": "#6C737C",
"foreground": "#5B6168", "foreground": "#5B6168",
"selectionBackground": "#3A66D1", "selectionBackground": "#3A66D1",
"selectionForeground": "#FFFFFF", "selectionForeground": "#111111",
"separatorColor": "#DFE1E4" "separatorColor": "#DFE1E4"
}, },
"MenuBar": { "MenuBar": {
"background": "#fafbfc", "background": "#FFFFFF",
"borderColor": "#F7F8FA", "borderColor": "#F7F8FA",
"disabledBackground": "#F7F8FA", "disabledBackground": "#F7F8FA",
"disabledForeground": "#9ba0a3", "disabledForeground": "#6C737C",
"foreground": "#5B6168", "foreground": "#5B6168",
"highlight": "#F7F8FA", "highlight": "#F7F8FA",
"selectionBackground": "#3A66D1", "selectionBackground": "#3A66D1",
"selectionForeground": "#FFFFFF", "selectionForeground": "#111111",
"shadow": "#fafbfc" "shadow": "#FFFFFF"
}, },
"MenuItem": { "MenuItem": {
"acceleratorForeground": "#292D31", "acceleratorForeground": "#292D31",
"acceleratorSelectionForeground": "#FFFFFF", "acceleratorSelectionForeground": "#111111",
"border": "4,2,4,2", "border": "4,2,4,2",
"background": "#F7F8FA", "background": "#F7F8FA",
"disabledBackground": "#F7F8FA", "disabledBackground": "#F7F8FA",
"disabledForeground": "#9ba0a3", "disabledForeground": "#6C737C",
"foreground": "#5B6168", "foreground": "#5B6168",
"selectionBackground": "#3A66D1", "selectionBackground": "#3A66D1",
"selectionForeground": "#FFFFFF" "selectionForeground": "#111111"
}, },
"NavBar": { "NavBar": {
"arrowColor": "#5B6168", "arrowColor": "#5B6168",
@@ -367,7 +393,7 @@
"background": "#F7F8FA" "background": "#F7F8FA"
}, },
"SearchField": { "SearchField": {
"background": "#fafbfc" "background": "#FFFFFF"
} }
}, },
"NewPSD.warning": "#79CB60", "NewPSD.warning": "#79CB60",
@@ -378,9 +404,9 @@
"errorBorderColor": "#DFECFE", "errorBorderColor": "#DFECFE",
"foreground": "#5B6168", "foreground": "#5B6168",
"MoreButton": { "MoreButton": {
"background": "#edf1f5", "background": "#F1F3F6",
"foreground": "#5B6168", "foreground": "#5B6168",
"innerBorderColor": "#edf1f5" "innerBorderColor": "#F1F3F6"
}, },
"ToolWindow": { "ToolWindow": {
"errorBackground": "#DFECFE", "errorBackground": "#DFECFE",
@@ -398,65 +424,66 @@
"messageForeground": "#5B6168" "messageForeground": "#5B6168"
}, },
"Outline": { "Outline": {
"color": "#edf1f5", "color": "#F1F3F6",
"focusedColor": "#79CB60", "focusedColor": "#79CB60",
"disabledColor": "#9ba0a3" "disabledColor": "#6C737C"
}, },
"Panel": { "Panel": {
"background": "#F7F8FA", "background": "#F7F8FA",
"foreground": "#5B6168" "foreground": "#5B6168"
}, },
"ParameterInfo": { "ParameterInfo": {
"background": "#f3f3f3", "background": "#F7F8FA",
"borderColor": "#cce5ff", "borderColor": "#cce5ff",
"currentOverloadBackground": "#cce5ff", "currentOverloadBackground": "#CCE5FF",
"currentParameterForeground": "#79CB60", "currentParameterForeground": "#79CB60",
"disabledForeground": "#9ba0a3", "disabledForeground": "#6C737C",
"foreground": "#5B6168", "foreground": "#5B6168",
"infoForeground": "#292D31", "infoForeground": "#292D31",
"lineSeparatorColor": "#cce5ff" "lineSeparatorColor": "#cce5ff"
}, },
"PasswordField": { "PasswordField": {
"background": "#fafbfc", "background": "#FFFFFF",
"capsLockIconColor": "#79CB60", "capsLockIconColor": "#79CB60",
"caretForeground": "#79CB60", "caretForeground": "#79CB60",
"foreground": "#5B6168", "foreground": "#5B6168",
"inactiveForeground": "#9ba0a3", "inactiveForeground": "#6C737C",
"selectionBackground": "#cce5ff", "selectionBackground": "#cce5ff",
"selectionForeground": "#111111" "selectionForeground": "#111111"
}, },
"Plugins": { "Plugins": {
"background": "#F7F8FA", "background": "#F7F8FA",
"disabledForeground": "#9ba0a3", "disabledForeground": "#6C737C",
"eapTagBackground": "#CCE5FF", "eapTagBackground": "#CCE5FF",
"lightSelectionBackground": "#3A66D1", "hoverBackground": "#3A66D170",
"lightSelectionBackground": "#cce5ff",
"paidTagBackground": "#CCE5FF", "paidTagBackground": "#CCE5FF",
"selectionBackground": "#3A66D1", "selectionBackground": "#3A66D1",
"tagForeground": "#79CB60", "tagForeground": "#79CB60",
"tagBackground": "#CCE5FF", "tagBackground": "#CCE5FF",
"trialTagBackground": "#CCE5FF", "trialTagBackground": "#CCE5FF",
"Button": { "Button": {
"installBackground": "#edf1f5", "installBackground": "#F1F3F6",
"installBorderColor": "#edf1f5", "installBorderColor": "#F1F3F6",
"installForeground": "#5B6168", "installForeground": "#5B6168",
"installFocusedBackground": "#CCE5FF", "installFocusedBackground": "#CCE5FF",
"installFillForeground": "#9ba0a3", "installFillForeground": "#6C737C",
"installFillBackground": "#edf1f5", "installFillBackground": "#F1F3F6",
"updateBackground": "#edf1f5", "updateBackground": "#79CB60",
"updateBorderColor": "#edf1f5", "updateBorderColor": "#F1F3F6",
"updateForeground": "#5B6168" "updateForeground": "#5B6168"
}, },
"SearchField": { "SearchField": {
"background": "#fafbfc", "background": "#FFFFFF",
"borderColor": "#DFE1E4" "borderColor": "#DFE1E4"
}, },
"SectionHeader": { "SectionHeader": {
"background": "#f3f3f3", "background": "#F7F8FA",
"foreground": "#5B6168" "foreground": "#5B6168"
}, },
"Tab": { "Tab": {
"hoverBackground": "#cce5ff", "hoverBackground": "#cce5ff",
"selectedForeground": "#FFFFFF", "selectedForeground": "#111111",
"selectedBackground": "#cce5ff" "selectedBackground": "#cce5ff"
} }
}, },
@@ -466,20 +493,20 @@
"borderColor": "#F7F8FA", "borderColor": "#F7F8FA",
"foreground": "#79CB60" "foreground": "#79CB60"
}, },
"borderColor": "#fafbfc", "borderColor": "#FFFFFF",
"inactiveBorderColor": "#F7F8FA", "inactiveBorderColor": "#F7F8FA",
"innerBorderColor": "#f3f3f3", "innerBorderColor": "#F7F8FA",
"Header": { "Header": {
"activeBackground": "#F7F8FA", "activeBackground": "#F7F8FA",
"inactiveBackground": "#fafbfc" "inactiveBackground": "#FFFFFF"
}, },
"paintBorder": true, "paintBorder": true,
"separatorForeground": "#5B6168", "separatorForeground": "#5B6168",
"separatorColor": "#f3f3f3", "separatorColor": "#F7F8FA",
"Toolbar": { "Toolbar": {
"Floating.background": "#fafbfc", "Floating.background": "#FFFFFF",
"background": "#fafbfc", "background": "#FFFFFF",
"borderColor": "#fafbfc" "borderColor": "#FFFFFF"
} }
}, },
"PopupMenu": { "PopupMenu": {
@@ -504,7 +531,7 @@
}, },
"RadioButton": { "RadioButton": {
"background": "#F7F8FA", "background": "#F7F8FA",
"disabledText": "#9ba0a3", "disabledText": "#6C737C",
"foreground": "#5B6168" "foreground": "#5B6168"
}, },
"RadioButtonMenuItem": { "RadioButtonMenuItem": {
@@ -512,11 +539,12 @@
"acceleratorSelectionForeground": "#292D31", "acceleratorSelectionForeground": "#292D31",
"background": "#F7F8FA", "background": "#F7F8FA",
"disabledBackground": "#F7F8FA", "disabledBackground": "#F7F8FA",
"disabledForeground": "#9ba0a3", "disabledForeground": "#6C737C",
"foreground": "#5B6168", "foreground": "#5B6168",
"selectionBackground": "#3A66D1", "selectionBackground": "#3A66D1",
"selectionForeground": "#FFFFFF" "selectionForeground": "#111111"
}, },
"ScreenView.borderColor": "#DFE1E4",
"ScrollBar": { "ScrollBar": {
"background": "#F7F8FA", "background": "#F7F8FA",
"hoverThumbBorderColor": "#79CB60", "hoverThumbBorderColor": "#79CB60",
@@ -553,7 +581,7 @@
}, },
"SearchEverywhere": { "SearchEverywhere": {
"Advertiser": { "Advertiser": {
"background": "#fafbfc", "background": "#FFFFFF",
"foreground": "#292D31" "foreground": "#292D31"
}, },
"Header": { "Header": {
@@ -565,7 +593,7 @@
}, },
"SearchField": { "SearchField": {
"background": "#F7F8FA", "background": "#F7F8FA",
"borderColor": "#fafbfc", "borderColor": "#FFFFFF",
"infoForeground": "#292D31" "infoForeground": "#292D31"
}, },
"Tab": { "Tab": {
@@ -576,16 +604,25 @@
}, },
"SearchMatch": { "SearchMatch": {
"endBackground": "#79CB60", "endBackground": "#79CB60",
"startBackground": "#79CB60" "startBackground": "#79CB60",
"endColor": "#79CB60",
"startColor": "#79CB60"
}, },
"SearchField.errorBackground": "#DFECFE", "SearchField.errorBackground": "#DFECFE",
"SearchOption": {
"selectedBackground": "#cce5ff"
},
"SearchResults": {
"Ordinal.File.Foreground": "#292D31",
"Repeated.File.Foreground": "#5B6168"
},
"Separator": { "Separator": {
"background": "#f3f3f3", "background": "#F7F8FA",
"foreground": "#f3f3f3", "foreground": "#F7F8FA",
"separatorColor": "#f3f3f3" "separatorColor": "#F7F8FA"
}, },
"SidePanel": { "SidePanel": {
"background": "#fafbfc" "background": "#FFFFFF"
}, },
"Slider": { "Slider": {
"background": "#F7F8FA", "background": "#F7F8FA",
@@ -593,7 +630,7 @@
"buttonColor": "#79CB60", "buttonColor": "#79CB60",
"foreground": "#5B6168", "foreground": "#5B6168",
"majorTickLength": 6, "majorTickLength": 6,
"tickColor": "#f3f3f3", "tickColor": "#F7F8FA",
"trackColor": "#cce5ff", "trackColor": "#cce5ff",
"trackWidth": 7, "trackWidth": 7,
"thumb": "#79CB60" "thumb": "#79CB60"
@@ -612,19 +649,21 @@
}, },
"SplitPane": { "SplitPane": {
"background": "#F7F8FA", "background": "#F7F8FA",
"highlight": "#fafbfc" "highlight": "#FFFFFF"
}, },
"SplitPaneDivider.draggingColor": "#f3f3f3", "SplitPaneDivider.draggingColor": "#F7F8FA",
"StatusBar": { "StatusBar": {
"borderColor": "#F7F8FA" "borderColor": "#F7F8FA",
"hoverBackground": "#CCE5FF",
"LightEditBackground": "#cce5ff"
}, },
"TabbedPane": { "TabbedPane": {
"background": "#F7F8FA", "background": "#F7F8FA",
"contentAreaColor": "#CCE5FF", "contentAreaColor": "#CCE5FF",
"contentBorderInsets": "3,1,1,1", "contentBorderInsets": "3,1,1,1",
"darkShadow": "#DFE1E4", "darkShadow": "#DFE1E4",
"disabledForeground": "#9ba0a3", "disabledForeground": "#6C737C",
"disabledUnderlineColor": "#9ba0a3", "disabledUnderlineColor": "#6C737C",
"focus": "#cce5ff", "focus": "#cce5ff",
"focusColor": "#cce5ff", "focusColor": "#cce5ff",
"fontSizeOffset": 0, "fontSizeOffset": 0,
@@ -641,11 +680,13 @@
"tabSelectionHeight": 2, "tabSelectionHeight": 2,
"underlineColor": "#79CB60" "underlineColor": "#79CB60"
}, },
"TabbedPane.mt.tab.background": "#fafbfc", "TabbedPane.mt.tab.background": "#FFFFFF",
"Table": { "Table": {
"alternativeRowBackground": "#FFFFFF",
"background": "#F7F8FA", "background": "#F7F8FA",
"cellNoFocusBorder": "10,5,10,5", "cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5",
"disabledForeground": "#6C737C",
"dropLineColor": "#79CB60", "dropLineColor": "#79CB60",
"dropLineShortColor": "#79CB60", "dropLineShortColor": "#79CB60",
"focusCellBackground": "#cce5ff", "focusCellBackground": "#cce5ff",
@@ -653,57 +694,59 @@
"foreground": "#5B6168", "foreground": "#5B6168",
"gridColor": "#F7F8FA", "gridColor": "#F7F8FA",
"highlightOuter": "#cce5ff", "highlightOuter": "#cce5ff",
"hoverBackground": "#3A66D170",
"hoverInactiveBackground": "#cce5ff",
"lightSelectionForeground": "#111111", "lightSelectionForeground": "#111111",
"lightSelectionInactiveForeground": "#292D31", "lightSelectionInactiveForeground": "#292D31",
"lightSelectionInactiveBackground": "#f3f3f3", "lightSelectionInactiveBackground": "#F7F8FA",
"selectionBackground": "#cce5ff", "selectionBackground": "#cce5ff",
"selectionForeground": "#111111", "selectionForeground": "#111111",
"selectionInactiveBackground": "#cce5ff", "selectionInactiveBackground": "#cce5ff",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#111111",
"sortIconColor": "#5B6168", "sortIconColor": "#5B6168",
"stripeColor": "#fafbfc" "stripeColor": "#FFFFFF"
}, },
"TableHeader": { "TableHeader": {
"background": "#F7F8FA", "background": "#F7F8FA",
"borderColor": "#F7F8FA", "borderColor": "#F7F8FA",
"bottomSeparatorColor": "#f3f3f3", "bottomSeparatorColor": "#F7F8FA",
"cellBorder": "4,0,4,0", "cellBorder": "4,0,4,0",
"disabledForeground": "#9ba0a3", "disabledForeground": "#6C737C",
"foreground": "#5B6168", "foreground": "#5B6168",
"focusCellBackground": "#cce5ff", "focusCellBackground": "#cce5ff",
"focusCellForeground": "#111111", "focusCellForeground": "#111111",
"height": 25, "height": 25,
"separatorColor": "#f3f3f3" "separatorColor": "#F7F8FA"
}, },
"text": "#292D31", "text": "#292D31",
"textInactiveText": "#292D31", "textInactiveText": "#292D31",
"textText": "#292D31", "textText": "#292D31",
"TextArea": { "TextArea": {
"background": "#fafbfc", "background": "#FFFFFF",
"caretForeground": "#79CB60", "caretForeground": "#79CB60",
"foreground": "#5B6168", "foreground": "#5B6168",
"inactiveForeground": "#9ba0a3", "inactiveForeground": "#6C737C",
"selectionBackground": "#cce5ff", "selectionBackground": "#cce5ff",
"selectionForeground": "#111111" "selectionForeground": "#111111"
}, },
"TextField": { "TextField": {
"background": "#fafbfc", "background": "#FFFFFF",
"caretForeground": "#79CB60", "caretForeground": "#79CB60",
"foreground": "#5B6168", "foreground": "#5B6168",
"inactiveForeground": "#9ba0a3", "inactiveForeground": "#6C737C",
"selectionBackground": "#cce5ff", "selectionBackground": "#cce5ff",
"selectionForeground": "#111111" "selectionForeground": "#111111"
}, },
"TextPane": { "TextPane": {
"background": "#fafbfc", "background": "#FFFFFF",
"caretForeground": "#79CB60", "caretForeground": "#79CB60",
"foreground": "#5B6168", "foreground": "#5B6168",
"inactiveForeground": "#9ba0a3", "inactiveForeground": "#6C737C",
"selectionBackground": "#cce5ff", "selectionBackground": "#cce5ff",
"selectionForeground": "#111111" "selectionForeground": "#111111"
}, },
"TitlePane": { "TitlePane": {
"background": "#fafbfc", "background": "#FFFFFF",
"Button.hoverBackground": "#CCE5FF", "Button.hoverBackground": "#CCE5FF",
"inactiveBackground": "#F7F8FA", "inactiveBackground": "#F7F8FA",
"infoForeground": "#292D31", "infoForeground": "#292D31",
@@ -711,9 +754,9 @@
}, },
"TitledBorder.titleColor": "#5B6168", "TitledBorder.titleColor": "#5B6168",
"ToggleButton": { "ToggleButton": {
"borderColor": "#edf1f5", "borderColor": "#F1F3F6",
"buttonColor": "#5B6168", "buttonColor": "#5B6168",
"disabledText": "#9ba0a3", "disabledText": "#6C737C",
"foreground": "#5B6168", "foreground": "#5B6168",
"offForeground": "#F7F8FA", "offForeground": "#F7F8FA",
"offBackground": "#F7F8FA", "offBackground": "#F7F8FA",
@@ -721,7 +764,7 @@
"onForeground": "#79CB60" "onForeground": "#79CB60"
}, },
"ToolBar": { "ToolBar": {
"background": "#fafbfc", "background": "#FFFFFF",
"borderHandleColor": "#292D31", "borderHandleColor": "#292D31",
"floatingForeground": "#292D31", "floatingForeground": "#292D31",
"foreground": "#5B6168" "foreground": "#5B6168"
@@ -729,8 +772,8 @@
"ToolTip": { "ToolTip": {
"Actions.background": "#F7F8FA", "Actions.background": "#F7F8FA",
"Actions.infoForeground": "#292D31", "Actions.infoForeground": "#292D31",
"background": "#F7F8FA", "background": "#DFECFE",
"borderColor": "#CCE5FF", "borderColor": "#DFE1E4",
"foreground": "#5B6168", "foreground": "#5B6168",
"infoForeground": "#292D31", "infoForeground": "#292D31",
"separatorColor": "#DFE1E4", "separatorColor": "#DFE1E4",
@@ -740,61 +783,104 @@
"Button": { "Button": {
"hoverBackground": "#cce5ff", "hoverBackground": "#cce5ff",
"selectedForeground": "#111111", "selectedForeground": "#111111",
"selectedBackground": "#fafbfc" "selectedBackground": "#FFFFFF"
}, },
"Header": { "Header": {
"background": "#F7F8FA", "background": "#F7F8FA",
"borderColor": "#f3f3f3", "borderColor": "#F7F8FA",
"inactiveBackground": "#F7F8FA" "inactiveBackground": "#F7F8FA"
}, },
"HeaderCloseButton": { "HeaderCloseButton": {
"background": "#F7F8FA" "background": "#F7F8FA"
}, },
"HeaderTab": { "HeaderTab": {
"borderColor": "#CCE5FF",
"hoverBackground": "#CCE5FF", "hoverBackground": "#CCE5FF",
"hoverInactiveBackground": "#f3f3f3", "hoverInactiveBackground": "#CCE5FF",
"inactiveUnderlineColor": "#79CB60", "inactiveUnderlineColor": "#79CB60",
"selectedBackground": "#fafbfc", "selectedBackground": "#FFFFFF",
"selectedInactiveBackground": "#fafbfc", "selectedInactiveBackground": "#FFFFFF",
"underlineColor": "#79CB60", "underlineColor": "#79CB60",
"underlinedTabBackground": "#CCE5FF", "underlinedTabBackground": "#cce5ff",
"underlinedTabInactiveBackground": "#f3f3f3" "underlinedTabInactiveBackground": "#F7F8FA",
"underlinedTabForeground": "#111111",
"underlinedTabInactiveForeground": "#5B6168"
} }
}, },
"Tree": { "Tree": {
"background": "#fafbfc", "background": "#FFFFFF",
"foreground": "#292D31", "foreground": "#292D31",
"hash": "#DFE1E4", "hash": "#DFE1E4",
"hoverBackground": "#3A66D170",
"hoverInactiveBackground": "#cce5ff",
"modifiedItemForeground": "#79CB60", "modifiedItemForeground": "#79CB60",
"rowHeight": 28, "rowHeight": 28,
"selectionBackground": "#3A66D1", "selectionBackground": "#3A66D170",
"selectionForeground": "#FFFFFF", "selectionForeground": "#111111",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#111111",
"selectionInactiveBackground": "#3A66D1", "selectionInactiveBackground": "#3A66D170",
"textBackground": "#fafbfc" "textBackground": "#FFFFFF"
}, },
"Tree.leftChildIndent": 10, "Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5, "Tree.rightChildIndent": 5,
"UiDesigner": { "UIDesigner": {
"Activity.borderColor": "#DFE1E4", "Activity.borderColor": "#DFE1E4",
"ColorPicker.background": "#F7F8FA", "Canvas.background": "#FFFFFF",
"ColorPicker.foreground": "#5B6168", "ColorPicker": {
"Component.borderColor": "#DFE1E4", "background": "#F7F8FA",
"Component.background": "#F7F8FA", "foreground": "#5B6168"
"Component.foreground": "#5B6168", },
"Connector.borderColor": "#DFE1E4", "Component": {
"Connector.hoverBorderColor": "#CCE5FF", "borderColor": "#DFE1E4",
"Canvas.background": "#fafbfc", "background": "#F7F8FA",
"foreground": "#5B6168",
"hoverBorderColor": "#CCE5FF"
},
"Connector": {
"borderColor": "#DFE1E4",
"hoverBorderColor": "#CCE5FF"
},
"Canvas.background": "#FFFFFF",
"highStroke.foreground": "#5B6168", "highStroke.foreground": "#5B6168",
"Label.foreground": "#292D31", "Label.foreground": "#292D31",
"List.selectionBackground": "#3A66D1", "List.selectionBackground": "#3A66D170",
"Panel.borderColor": "#DFE1E4", "motion": {
"Panel.background": "#F7F8FA", "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", "percent.foreground": "#5B6168",
"Placeholder.background": "#F7F8FA", "Placeholder": {
"Placeholder.borderColor": "#DFE1E4", "background": "#F7F8FA",
"Placeholder.foreground": "#5B6168", "borderColor": "#DFE1E4",
"Placeholder.selectedForeground": "#FFFFFF", "foreground": "#5B6168",
"selectedForeground": "#111111"
},
"Preview.background": "#F7F8FA", "Preview.background": "#F7F8FA",
"stroke.acceleratorForeground": "#292D31" "stroke.acceleratorForeground": "#292D31"
}, },
@@ -820,7 +906,7 @@
"HgLog": { "HgLog": {
"branchIconColor": "#79CB60", "branchIconColor": "#79CB60",
"bookmarkIconColor": "#111111", "bookmarkIconColor": "#111111",
"closedBranchIconColor": "#9ba0a3", "closedBranchIconColor": "#6C737C",
"localTagIconColor": "#292D31", "localTagIconColor": "#292D31",
"mqTagIconColor": "#292D31", "mqTagIconColor": "#292D31",
"tagIconColor": "#292D31", "tagIconColor": "#292D31",
@@ -828,7 +914,8 @@
}, },
"Log": { "Log": {
"Commit.unmatchedForeground": "#292D31", "Commit.unmatchedForeground": "#292D31",
"Commit.currentBranchBackground": "#f3f3f3" "Commit.currentBranchBackground": "#F7F8FA",
"Commit.hoveredBackground": "#3A66D170"
}, },
"RefLabel": { "RefLabel": {
"foreground": "#111111", "foreground": "#111111",
@@ -836,40 +923,46 @@
} }
}, },
"Viewport": { "Viewport": {
"background": "#fafbfc", "background": "#FFFFFF",
"foreground": "#5B6168" "foreground": "#5B6168"
}, },
"WelcomeScreen": { "WelcomeScreen": {
"AssociatedComponent.background": "#F7F8FA",
"background": "#F7F8FA", "background": "#F7F8FA",
"borderColor": "#F7F8FA", "borderColor": "#F7F8FA",
"captionBackground": "#fafbfc", "captionBackground": "#FFFFFF",
"captionForeground": "#5B6168", "captionForeground": "#5B6168",
"footerBackground": "#fafbfc", "Details.background": "#F7F8FA",
"footerBackground": "#FFFFFF",
"footerForeground": "#5B6168", "footerForeground": "#5B6168",
"headerBackground": "#F7F8FA", "headerBackground": "#F7F8FA",
"headerForeground": "#5B6168", "headerForeground": "#5B6168",
"List.background": "#FFFFFF",
"separatorColor": "#DFE1E4", "separatorColor": "#DFE1E4",
"SidePanel.background": "#F7F8FA",
"Projects": { "Projects": {
"background": "#f3f3f3", "actions.background": "#FFFFFF",
"actions.selectionBackground": "#CCE5FF",
"background": "#F7F8FA",
"selectionBackground": "#3A66D1", "selectionBackground": "#3A66D1",
"selectionInactiveBackground": "#f3f3f3" "selectionInactiveBackground": "#F7F8FA"
} }
}, },
"window": "#fafbfc", "window": "#FFFFFF",
"windowBorder": "#DFE1E4", "windowBorder": "#DFE1E4",
"windowText": "#292D31", "windowText": "#292D31",
"Window.border": "#DFE1E4" "Window.border": "#DFE1E4"
}, },
"icons": { "icons": {
"ColorPalette": { "ColorPalette": {
"#43494A": "#fafbfc", "#43494A": "#FFFFFF",
"#6B6B6B": "#292D31", "#6B6B6B": "#292D31",
"#A7A7A7": "#F7F8FA", "#A7A7A7": "#F7F8FA",
"#3D6185": "#79CB60", "#3D6185": "#79CB60",
"#466D94": "#79CB60", "#466D94": "#79CB60",
"#3C3F41": "#F7F8FA", "#3C3F41": "#F7F8FA",
"#545556": "#9ba0a3", "#545556": "#6C737C",
"#606060": "#9ba0a3", "#606060": "#6C737C",
"#9AA7B0": "#5B6168", "#9AA7B0": "#5B6168",
"#675133": "#79CB60", "#675133": "#79CB60",
"Actions.Blue": "#6F42C1", "Actions.Blue": "#6F42C1",
@@ -879,20 +972,20 @@
"Actions.GreyInline.Dark": "#5B6168", "Actions.GreyInline.Dark": "#5B6168",
"Actions.Red": "#22863A", "Actions.Red": "#22863A",
"Actions.Yellow": "#6F42C1", "Actions.Yellow": "#6F42C1",
"Checkbox.Background.Default": "#fafbfc", "Checkbox.Background.Default": "#FFFFFF",
"Checkbox.Background.Default.Dark": "#fafbfc", "Checkbox.Background.Default.Dark": "#FFFFFF",
"Checkbox.Background.Disabled": "#dcdcdc", "Checkbox.Background.Disabled": "#FDFDFD",
"Checkbox.Background.Disabled.Dark": "#dcdcdc", "Checkbox.Background.Disabled.Dark": "#FDFDFD",
"Checkbox.Border.Default": "#DFE1E4", "Checkbox.Border.Default": "#DFE1E4",
"Checkbox.Border.Default.Dark": "#DFE1E4", "Checkbox.Border.Default.Dark": "#DFE1E4",
"Checkbox.Border.Disabled": "#9ba0a3", "Checkbox.Border.Disabled": "#6C737C",
"Checkbox.Border.Disabled.Dark": "#9ba0a3", "Checkbox.Border.Disabled.Dark": "#6C737C",
"Checkbox.Focus.Thin.Default": "#79CB60", "Checkbox.Focus.Thin.Default": "#79CB60",
"Checkbox.Focus.Thin.Default.Dark": "#79CB60", "Checkbox.Focus.Thin.Default.Dark": "#79CB60",
"Checkbox.Focus.Wide": "#79CB60", "Checkbox.Focus.Wide": "#79CB60",
"Checkbox.Focus.Wide.Dark": "#79CB60", "Checkbox.Focus.Wide.Dark": "#79CB60",
"Checkbox.Foreground.Disabled": "#9ba0a3", "Checkbox.Foreground.Disabled": "#6C737C",
"Checkbox.Foreground.Disabled.Dark": "#9ba0a3", "Checkbox.Foreground.Disabled.Dark": "#6C737C",
"Checkbox.Background.Selected": "#79CB60", "Checkbox.Background.Selected": "#79CB60",
"Checkbox.Background.Selected.Dark": "#F7F8FA", "Checkbox.Background.Selected.Dark": "#F7F8FA",
"Checkbox.Border.Selected": "#79CB60", "Checkbox.Border.Selected": "#79CB60",

View File

@@ -2,32 +2,38 @@
"name": "GitHub", "name": "GitHub",
"dark": false, "dark": false,
"author": "Mallowigi", "author": "Mallowigi",
"editorScheme": "/colors/Github.xml", "editorScheme": "/colors/GitHub (Material).xml",
"emptyFrameBackground": {
"anchor": "center",
"image": "/walls/github.svg",
"fill": "scale",
"transparency": 50
},
"ui": { "ui": {
"*": { "*": {
"acceleratorSelectionForeground": "#292D31", "acceleratorSelectionForeground": "#292D31",
"background": "#F7F8FA", "background": "#F7F8FA",
"borderColor": "#DFE1E4", "borderColor": "#DFE1E4",
"disabledBackground": "#dcdcdc", "disabledBackground": "#FDFDFD",
"disabledForeground": "#9ba0a3", "disabledForeground": "#6C737C",
"disabledText": "#9ba0a3", "disabledText": "#6C737C",
"focusColor": "#CCE5FF", "focusColor": "#CCE5FF",
"focusedBorderColor": "#79CB60", "focusedBorderColor": "#79CB60",
"foreground": "#5B6168", "foreground": "#5B6168",
"inactiveBackground": "#dcdcdc", "inactiveBackground": "#FDFDFD",
"inactiveForeground": "#292D31", "inactiveForeground": "#292D31",
"infoForeground": "#292D31", "infoForeground": "#292D31",
"selectionBackground": "#3A66D1", "selectionBackground": "#3A66D1",
"selectionBackgroundInactive": "#f3f3f3", "selectionBackgroundInactive": "#F7F8FA",
"selectionForeground": "#FFFFFF", "selectionForeground": "#111111",
"selectionInactiveBackground": "#f3f3f3", "selectionInactiveBackground": "#F7F8FA",
"separatorColor": "#DFE1E4" "separatorColor": "#DFE1E4"
}, },
"activeCaption": "#F7F8FA", "activeCaption": "#F7F8FA",
"ActionButton": { "ActionButton": {
"hoverBackground": "#79CB6050", "hoverBackground": "#79CB6050",
"hoverBorderColor": "#79CB6050", "hoverBorderColor": "#79CB6050",
"hoverSeparatorColor": "#edf1f5", "hoverSeparatorColor": "#F1F3F6",
"focusedBorderColor": "#79CB6050", "focusedBorderColor": "#79CB6050",
"pressedBackground": "#79CB6050", "pressedBackground": "#79CB6050",
"pressedBorderColor": "#79CB6050" "pressedBorderColor": "#79CB6050"
@@ -50,32 +56,35 @@
"startBackground": "#cce5ff", "startBackground": "#cce5ff",
"startBorderColor": "#cce5ff" "startBorderColor": "#cce5ff"
}, },
"disabledBorderColor": "#edf1f5", "disabledBorderColor": "#F1F3F6",
"disabledText": "#9ba0a3", "disabledText": "#6C737C",
"endBackground": "#edf1f5", "endBackground": "#F1F3F6",
"endBorderColor": "#edf1f5", "endBorderColor": "#F1F3F6",
"focus": "#CCE5FF", "focus": "#CCE5FF",
"focusedBorderColor": "#79CB60", "focusedBorderColor": "#79CB60",
"foreground": "#292D31", "foreground": "#292D31",
"highlight": "#FFFFFF", "highlight": "#111111",
"mt.background": "#edf1f5", "mt.background": "#F1F3F6",
"mt.foreground": "#292D31", "mt.foreground": "#292D31",
"mt.selectedForeground": "#FFFFFF", "mt.selectedForeground": "#111111",
"mt.selection.color1": "#cce5ff", "mt.selection.color1": "#cce5ff",
"mt.selection.color2": "#cce5ff", "mt.selection.color2": "#cce5ff",
"startBackground": "#edf1f5", "startBackground": "#F1F3F6",
"startBorderColor": "#edf1f5", "startBorderColor": "#F1F3F6",
"shadowColor": "#edf1f5", "shadowColor": "#F1F3F6",
"shadowWidth": 0 "shadowWidth": 0
}, },
"Canvas": { "Canvas": {
"Tooltip.borderColor": "#DFE1E4", "Tooltip.borderColor": "#DFE1E4",
"Tooltip.background": "#DFECFE" "Tooltip.background": "#DFECFE"
}, },
"Content.background": "#fafbfc", "Content": {
"background": "#FFFFFF",
"selectionBackground": "#3A66D1"
},
"CheckBox": { "CheckBox": {
"background": "#F7F8FA", "background": "#F7F8FA",
"disabledText": "#9ba0a3", "disabledText": "#6C737C",
"foreground": "#5B6168", "foreground": "#5B6168",
"select": "#79CB60" "select": "#79CB60"
}, },
@@ -84,54 +93,63 @@
"acceleratorSelectionForeground": "#292D31", "acceleratorSelectionForeground": "#292D31",
"background": "#F7F8FA", "background": "#F7F8FA",
"disabledBackground": "#F7F8FA", "disabledBackground": "#F7F8FA",
"disabledForeground": "#9ba0a3", "disabledForeground": "#6C737C",
"foreground": "#5B6168", "foreground": "#5B6168",
"selectionBackground": "#3A66D1", "selectionBackground": "#3A66D1",
"selectionForeground": "#111111" "selectionForeground": "#111111"
}, },
"CodeWithMe": {
"Avatar.foreground": "#5B6168",
"AccessEnabled": {
"accessDot": "#79CB60",
"dropdownBorder": "#F7F8FA",
"pillBackground": "$second"
}
},
"ColorChooser": { "ColorChooser": {
"background": "#F7F8FA", "background": "#F7F8FA",
"foreground": "#5B6168", "foreground": "#5B6168",
"swatchesDefaultRecentColor": "#5B6168" "swatchesDefaultRecentColor": "#5B6168"
}, },
"ComboBoxButton.background": "#edf1f5", "ComboBoxButton.background": "#F1F3F6",
"ComboBox": { "ComboBox": {
"ArrowButton": { "ArrowButton": {
"background": "#edf1f5", "background": "#F1F3F6",
"disabledIconColor": "#9ba0a3", "disabledIconColor": "#6C737C",
"iconColor": "#5B6168", "iconColor": "#5B6168",
"nonEditableBackground": "#F7F8FA" "nonEditableBackground": "#F7F8FA"
}, },
"background": "#F7F8FA", "background": "#F7F8FA",
"buttonBackground": "#edf1f5", "buttonBackground": "#F1F3F6",
"disabledForeground": "#9ba0a3", "darcula.hoveredArrowButtonForeground": "#79CB60",
"disabledForeground": "#6C737C",
"foreground": "#5B6168", "foreground": "#5B6168",
"modifiedItemForeground": "#79CB60", "modifiedItemForeground": "#79CB60",
"nonEditableBackground": "#f3f3f3", "nonEditableBackground": "#F7F8FA",
"padding": "5,5,5,5", "padding": "5,5,5,5",
"selectionBackground": "#cce5ff", "selectionBackground": "#cce5ff",
"selectionForeground": "#111111" "selectionForeground": "#111111"
}, },
"ComboPopup.border": "#DFE1E4", "ComboPopup.border": "#DFE1E4",
"CompletionPopup": { "CompletionPopup": {
"background": "#f3f3f3", "background": "#F7F8FA",
"foreground": "#5B6168", "foreground": "#5B6168",
"infoForeground": "#292D31", "infoForeground": "#292D31",
"matchForeground": "#79CB60", "matchForeground": "#79CB60",
"matchSelectionForeground": "#79CB60", "matchSelectionForeground": "#79CB60",
"nonFocusedState": "false", "nonFocusedState": "false",
"selectedGrayedForeground": "#FFFFFF", "selectedGrayedForeground": "#111111",
"selectionGrayForeground": "#FFFFFF", "selectionGrayForeground": "#111111",
"selectionInactiveInfoForeground": "#292D31", "selectionInactiveInfoForeground": "#292D31",
"selectionInactiveBackground": "#3A66D150", "selectionInactiveBackground": "#3A66D150",
"selectionBackground": "#3A66D180", "selectionBackground": "#3A66D180",
"selectionForeground": "#FFFFFF", "selectionForeground": "#111111",
"selectionInfoForeground": "#FFFFFF" "selectionInfoForeground": "#111111"
}, },
"Component": { "Component": {
"arc": 4, "arc": 4,
"borderColor": "#CCE5FF", "borderColor": "#CCE5FF",
"disabledBorderColor": "#edf1f5", "disabledBorderColor": "#F1F3F6",
"focusColor": "#79CB60", "focusColor": "#79CB60",
"focusedBorderColor": "#79CB60", "focusedBorderColor": "#79CB60",
"hoverIconColor": "#79CB60", "hoverIconColor": "#79CB60",
@@ -142,7 +160,7 @@
"controlText": "#292D31", "controlText": "#292D31",
"Counter": { "Counter": {
"background": "#79CB60", "background": "#79CB60",
"foreground": "#FFFFFF" "foreground": "#111111"
}, },
"Debugger": { "Debugger": {
"Variables": { "Variables": {
@@ -168,11 +186,13 @@
"hoverBackground": "#cce5ff", "hoverBackground": "#cce5ff",
"hoverColor": "#F7F8FA", "hoverColor": "#F7F8FA",
"hoverMaskColor": "#CCE5FF", "hoverMaskColor": "#CCE5FF",
"inactiveColoredFileBackground": "#edf1f5", "inactiveColoredTabBackground": "#F7F8FA",
"inactiveUnderlineColor": "#9ba0a3", "inactiveColoredFileBackground": "#F1F3F6",
"inactiveUnderlineColor": "#79CB60",
"inactiveMaskColor": "#F7F8FA", "inactiveMaskColor": "#F7F8FA",
"underlineColor": "#79CB60", "underlineColor": "#79CB60",
"underlinedTabBackground": "#cce5ff" "underlinedTabBackground": "#cce5ff",
"underlinedTabForeground": "#111111"
}, },
"Desktop.background": "#F7F8FA", "Desktop.background": "#F7F8FA",
"DialogWrapper.southPanelBackground": "#F7F8FA", "DialogWrapper.southPanelBackground": "#F7F8FA",
@@ -192,25 +212,27 @@
"caretForeground": "#79CB60", "caretForeground": "#79CB60",
"foreground": "#5B6168", "foreground": "#5B6168",
"inactiveBackground": "#F7F8FA", "inactiveBackground": "#F7F8FA",
"inactiveForeground": "#9ba0a3", "inactiveForeground": "#6C737C",
"selectionBackground": "#3A66D1", "selectionBackground": "#3A66D1",
"selectionForeground": "#111111" "selectionForeground": "#111111"
}, },
"EditorTabs": { "EditorTabs": {
"borderColor": "#f3f3f3", "borderColor": "#F7F8FA",
"hoverBackground": "#CCE5FF",
"hoverColor": "#CCE5FF", "hoverColor": "#CCE5FF",
"hoverMaskColor": "#CCE5FF", "hoverMaskColor": "#CCE5FF",
"inactiveMaskColor": "#F7F8FA", "inactiveMaskColor": "#F7F8FA",
"inactiveColoredFileBackground": "#F7F8FA2", "inactiveColoredFileBackground": "#F7F8FA",
"inactiveUnderlineColor": "#9ba0a3", "inactiveUnderlineColor": "#6C737C",
"selectedForeground": "#5B6168", "selectedForeground": "#5B6168",
"selectedBackground": "#cce5ff", "selectedBackground": "#cce5ff",
"underlineColor": "#79CB60", "underlineColor": "#79CB60",
"underlinedTabBackground": "#cce5ff" "underlinedTabBackground": "#cce5ff",
"underlinedTabForeground": "#111111"
}, },
"EditorGroupsTabs": { "EditorGroupsTabs": {
"background": "#F7F8FA", "background": "#F7F8FA",
"borderColor": "#f3f3f3", "borderColor": "#F7F8FA",
"hoverBackground": "#CCE5FF", "hoverBackground": "#CCE5FF",
"hoverColor": "#CCE5FF", "hoverColor": "#CCE5FF",
"inactiveUnderlineColor": "#79CB60", "inactiveUnderlineColor": "#79CB60",
@@ -221,7 +243,7 @@
"FileColor": { "FileColor": {
"Green": "#387002", "Green": "#387002",
"Blue": "#004BA0", "Blue": "#004BA0",
"Yellow": "#dcdcdc", "Yellow": "#FDFDFD",
"Orange": "#B53D00", "Orange": "#B53D00",
"Violet": "#4D2C91", "Violet": "#4D2C91",
"Rose": "#A00037" "Rose": "#A00037"
@@ -241,22 +263,23 @@
"background": "#F7F8FA", "background": "#F7F8FA",
"caretForeground": "#79CB60", "caretForeground": "#79CB60",
"foreground": "#5B6168", "foreground": "#5B6168",
"inactiveBackground": "#edf1f5", "inactiveBackground": "#F1F3F6",
"inactiveForeground": "#9ba0a3", "inactiveForeground": "#6C737C",
"selectionForeground": "#111111", "selectionForeground": "#111111",
"selectionBackground": "#cce5ff" "selectionBackground": "#cce5ff"
}, },
"GotItTooltip.borderColor": "#DFECFE",
"Group": { "Group": {
"disabledSeparatorColor": "#DFE1E4", "disabledSeparatorColor": "#DFE1E4",
"separatorColor": "#DFE1E4" "separatorColor": "#DFE1E4"
}, },
"GutterTooltip": { "GutterTooltip": {
"infoForeground": "#5B6168", "infoForeground": "#292D31",
"lineSeparatorColor": "#F7F8FA" "lineSeparatorColor": "#F7F8FA"
}, },
"HeaderColor": { "HeaderColor": {
"active": "#F7F8FA", "active": "#F7F8FA",
"inactive": "#fafbfc" "inactive": "#FFFFFF"
}, },
"HelpTooltip": { "HelpTooltip": {
"background": "#F7F8FA", "background": "#F7F8FA",
@@ -266,7 +289,7 @@
"shortcutForeground": "#292D31" "shortcutForeground": "#292D31"
}, },
"Hyperlink.linkColor": "#79CB60", "Hyperlink.linkColor": "#79CB60",
"inactiveCaption": "#f3f3f3", "inactiveCaption": "#F7F8FA",
"inactiveCaptionBorder": "#F7F8FA", "inactiveCaptionBorder": "#F7F8FA",
"inactiveCaptionText": "#292D31", "inactiveCaptionText": "#292D31",
"info": "#292D31", "info": "#292D31",
@@ -283,12 +306,13 @@
}, },
"Label": { "Label": {
"background": "#F7F8FA", "background": "#F7F8FA",
"disabledForeground": "#9ba0a3", "disabledForeground": "#6C737C",
"disabledShadow": "#F7F8FA", "disabledShadow": "#F7F8FA",
"disabledText": "#9ba0a3", "disabledText": "#6C737C",
"foreground": "#5B6168", "foreground": "#5B6168",
"infoForeground": "#292D31", "infoForeground": "#292D31",
"selectedForeground": "#111111" "selectedForeground": "#111111",
"selectedDisabledForeground": "#5B6168"
}, },
"Link": { "Link": {
"activeForeground": "#79CB60", "activeForeground": "#79CB60",
@@ -299,64 +323,66 @@
}, },
"link.foreground": "#79CB60", "link.foreground": "#79CB60",
"List": { "List": {
"background": "#f3f3f3", "background": "#F7F8FA",
"foreground": "#5B6168", "foreground": "#5B6168",
"hoverBackground": "#3A66D170",
"hoverInactiveBackground": "#cce5ff",
"selectionBackground": "#3A66D150", "selectionBackground": "#3A66D150",
"selectionForeground": "#FFFFFF", "selectionForeground": "#111111",
"selectionInactiveForeground": "#111111", "selectionInactiveForeground": "#111111",
"selectionInactiveBackground": "#3A66D1" "selectionInactiveBackground": "#3A66D170"
}, },
"material": { "material": {
"background": "#F7F8FA", "background": "#F7F8FA",
"branchColor": "#5B6168", "branchColor": "#5B6168",
"contrast": "#fafbfc", "contrast": "#FFFFFF",
"foreground": "#5B6168", "foreground": "#5B6168",
"mergeCommits": "#edf1f5", "mergeCommits": "#F1F3F6",
"primaryColor": "#292D31", "primaryColor": "#292D31",
"selectionForeground": "#FFFFFF", "selectionForeground": "#111111",
"tab.backgroundColor": "#F7F8FA", "tab.backgroundColor": "#F7F8FA",
"tab.borderColor": "#79CB60", "tab.borderColor": "#79CB60",
"tagColor": "#292D31" "tagColor": "#292D31"
}, },
"MemoryIndicator": { "MemoryIndicator": {
"allocatedBackground": "#f3f3f3", "allocatedBackground": "#F7F8FA",
"usedColor": "#CCE5FF", "usedColor": "#CCE5FF",
"usedBackground": "#CCE5FF" "usedBackground": "#CCE5FF"
}, },
"Menu": { "Menu": {
"acceleratorForeground": "#292D31", "acceleratorForeground": "#292D31",
"acceleratorSelectionForeground": "#FFFFFF", "acceleratorSelectionForeground": "#111111",
"background": "#F7F8FA", "background": "#F7F8FA",
"border": "4,2,4,2", "border": "4,2,4,2",
"borderColor": "#f3f3f3", "borderColor": "#F7F8FA",
"disabledBackground": "#f3f3f3", "disabledBackground": "#F7F8FA",
"disabledForeground": "#9ba0a3", "disabledForeground": "#6C737C",
"foreground": "#5B6168", "foreground": "#5B6168",
"selectionBackground": "#3A66D1", "selectionBackground": "#3A66D1",
"selectionForeground": "#FFFFFF", "selectionForeground": "#111111",
"separatorColor": "#DFE1E4" "separatorColor": "#DFE1E4"
}, },
"MenuBar": { "MenuBar": {
"background": "#F7F8FA", "background": "#F7F8FA",
"borderColor": "#F7F8FA", "borderColor": "#F7F8FA",
"disabledBackground": "#F7F8FA", "disabledBackground": "#F7F8FA",
"disabledForeground": "#9ba0a3", "disabledForeground": "#6C737C",
"foreground": "#5B6168", "foreground": "#5B6168",
"highlight": "#F7F8FA", "highlight": "#F7F8FA",
"selectionBackground": "#3A66D1", "selectionBackground": "#3A66D1",
"selectionForeground": "#FFFFFF", "selectionForeground": "#111111",
"shadow": "#F7F8FA" "shadow": "#F7F8FA"
}, },
"MenuItem": { "MenuItem": {
"acceleratorForeground": "#292D31", "acceleratorForeground": "#292D31",
"acceleratorSelectionForeground": "#FFFFFF", "acceleratorSelectionForeground": "#111111",
"border": "4,2,4,2", "border": "4,2,4,2",
"background": "#F7F8FA", "background": "#F7F8FA",
"disabledBackground": "#F7F8FA", "disabledBackground": "#F7F8FA",
"disabledForeground": "#9ba0a3", "disabledForeground": "#6C737C",
"foreground": "#5B6168", "foreground": "#5B6168",
"selectionBackground": "#3A66D1", "selectionBackground": "#3A66D1",
"selectionForeground": "#FFFFFF" "selectionForeground": "#111111"
}, },
"NavBar": { "NavBar": {
"arrowColor": "#5B6168", "arrowColor": "#5B6168",
@@ -378,9 +404,9 @@
"errorBorderColor": "#DFECFE", "errorBorderColor": "#DFECFE",
"foreground": "#5B6168", "foreground": "#5B6168",
"MoreButton": { "MoreButton": {
"background": "#edf1f5", "background": "#F1F3F6",
"foreground": "#5B6168", "foreground": "#5B6168",
"innerBorderColor": "#edf1f5" "innerBorderColor": "#F1F3F6"
}, },
"ToolWindow": { "ToolWindow": {
"errorBackground": "#DFECFE", "errorBackground": "#DFECFE",
@@ -398,20 +424,20 @@
"messageForeground": "#5B6168" "messageForeground": "#5B6168"
}, },
"Outline": { "Outline": {
"color": "#edf1f5", "color": "#F1F3F6",
"focusedColor": "#79CB60", "focusedColor": "#79CB60",
"disabledColor": "#9ba0a3" "disabledColor": "#6C737C"
}, },
"Panel": { "Panel": {
"background": "#F7F8FA", "background": "#F7F8FA",
"foreground": "#5B6168" "foreground": "#5B6168"
}, },
"ParameterInfo": { "ParameterInfo": {
"background": "#f3f3f3", "background": "#F7F8FA",
"borderColor": "#cce5ff", "borderColor": "#cce5ff",
"currentOverloadBackground": "#cce5ff", "currentOverloadBackground": "#CCE5FF",
"currentParameterForeground": "#79CB60", "currentParameterForeground": "#79CB60",
"disabledForeground": "#9ba0a3", "disabledForeground": "#6C737C",
"foreground": "#5B6168", "foreground": "#5B6168",
"infoForeground": "#292D31", "infoForeground": "#292D31",
"lineSeparatorColor": "#cce5ff" "lineSeparatorColor": "#cce5ff"
@@ -421,29 +447,30 @@
"capsLockIconColor": "#79CB60", "capsLockIconColor": "#79CB60",
"caretForeground": "#79CB60", "caretForeground": "#79CB60",
"foreground": "#5B6168", "foreground": "#5B6168",
"inactiveForeground": "#9ba0a3", "inactiveForeground": "#6C737C",
"selectionBackground": "#cce5ff", "selectionBackground": "#cce5ff",
"selectionForeground": "#111111" "selectionForeground": "#111111"
}, },
"Plugins": { "Plugins": {
"background": "#F7F8FA", "background": "#F7F8FA",
"disabledForeground": "#9ba0a3", "disabledForeground": "#6C737C",
"eapTagBackground": "#CCE5FF", "eapTagBackground": "#CCE5FF",
"lightSelectionBackground": "#3A66D1", "hoverBackground": "#3A66D170",
"lightSelectionBackground": "#cce5ff",
"paidTagBackground": "#CCE5FF", "paidTagBackground": "#CCE5FF",
"selectionBackground": "#3A66D1", "selectionBackground": "#3A66D1",
"tagForeground": "#79CB60", "tagForeground": "#79CB60",
"tagBackground": "#CCE5FF", "tagBackground": "#CCE5FF",
"trialTagBackground": "#CCE5FF", "trialTagBackground": "#CCE5FF",
"Button": { "Button": {
"installBackground": "#edf1f5", "installBackground": "#F1F3F6",
"installBorderColor": "#edf1f5", "installBorderColor": "#F1F3F6",
"installForeground": "#5B6168", "installForeground": "#5B6168",
"installFocusedBackground": "#CCE5FF", "installFocusedBackground": "#CCE5FF",
"installFillForeground": "#9ba0a3", "installFillForeground": "#6C737C",
"installFillBackground": "#edf1f5", "installFillBackground": "#F1F3F6",
"updateBackground": "#edf1f5", "updateBackground": "#79CB60",
"updateBorderColor": "#edf1f5", "updateBorderColor": "#F1F3F6",
"updateForeground": "#5B6168" "updateForeground": "#5B6168"
}, },
"SearchField": { "SearchField": {
@@ -451,12 +478,12 @@
"borderColor": "#DFE1E4" "borderColor": "#DFE1E4"
}, },
"SectionHeader": { "SectionHeader": {
"background": "#f3f3f3", "background": "#F7F8FA",
"foreground": "#5B6168" "foreground": "#5B6168"
}, },
"Tab": { "Tab": {
"hoverBackground": "#cce5ff", "hoverBackground": "#cce5ff",
"selectedForeground": "#FFFFFF", "selectedForeground": "#111111",
"selectedBackground": "#cce5ff" "selectedBackground": "#cce5ff"
} }
}, },
@@ -466,20 +493,20 @@
"borderColor": "#F7F8FA", "borderColor": "#F7F8FA",
"foreground": "#79CB60" "foreground": "#79CB60"
}, },
"borderColor": "#fafbfc", "borderColor": "#FFFFFF",
"inactiveBorderColor": "#F7F8FA", "inactiveBorderColor": "#F7F8FA",
"innerBorderColor": "#f3f3f3", "innerBorderColor": "#F7F8FA",
"Header": { "Header": {
"activeBackground": "#F7F8FA", "activeBackground": "#F7F8FA",
"inactiveBackground": "#fafbfc" "inactiveBackground": "#FFFFFF"
}, },
"paintBorder": true, "paintBorder": true,
"separatorForeground": "#5B6168", "separatorForeground": "#5B6168",
"separatorColor": "#f3f3f3", "separatorColor": "#F7F8FA",
"Toolbar": { "Toolbar": {
"Floating.background": "#fafbfc", "Floating.background": "#FFFFFF",
"background": "#fafbfc", "background": "#FFFFFF",
"borderColor": "#fafbfc" "borderColor": "#FFFFFF"
} }
}, },
"PopupMenu": { "PopupMenu": {
@@ -504,7 +531,7 @@
}, },
"RadioButton": { "RadioButton": {
"background": "#F7F8FA", "background": "#F7F8FA",
"disabledText": "#9ba0a3", "disabledText": "#6C737C",
"foreground": "#5B6168" "foreground": "#5B6168"
}, },
"RadioButtonMenuItem": { "RadioButtonMenuItem": {
@@ -512,11 +539,12 @@
"acceleratorSelectionForeground": "#292D31", "acceleratorSelectionForeground": "#292D31",
"background": "#F7F8FA", "background": "#F7F8FA",
"disabledBackground": "#F7F8FA", "disabledBackground": "#F7F8FA",
"disabledForeground": "#9ba0a3", "disabledForeground": "#6C737C",
"foreground": "#5B6168", "foreground": "#5B6168",
"selectionBackground": "#3A66D1", "selectionBackground": "#3A66D1",
"selectionForeground": "#FFFFFF" "selectionForeground": "#111111"
}, },
"ScreenView.borderColor": "#DFE1E4",
"ScrollBar": { "ScrollBar": {
"background": "#F7F8FA", "background": "#F7F8FA",
"hoverThumbBorderColor": "#79CB60", "hoverThumbBorderColor": "#79CB60",
@@ -553,7 +581,7 @@
}, },
"SearchEverywhere": { "SearchEverywhere": {
"Advertiser": { "Advertiser": {
"background": "#fafbfc", "background": "#FFFFFF",
"foreground": "#292D31" "foreground": "#292D31"
}, },
"Header": { "Header": {
@@ -565,7 +593,7 @@
}, },
"SearchField": { "SearchField": {
"background": "#F7F8FA", "background": "#F7F8FA",
"borderColor": "#fafbfc", "borderColor": "#FFFFFF",
"infoForeground": "#292D31" "infoForeground": "#292D31"
}, },
"Tab": { "Tab": {
@@ -576,13 +604,22 @@
}, },
"SearchMatch": { "SearchMatch": {
"endBackground": "#79CB60", "endBackground": "#79CB60",
"startBackground": "#79CB60" "startBackground": "#79CB60",
"endColor": "#79CB60",
"startColor": "#79CB60"
}, },
"SearchField.errorBackground": "#DFECFE", "SearchField.errorBackground": "#DFECFE",
"SearchOption": {
"selectedBackground": "#cce5ff"
},
"SearchResults": {
"Ordinal.File.Foreground": "#292D31",
"Repeated.File.Foreground": "#5B6168"
},
"Separator": { "Separator": {
"background": "#f3f3f3", "background": "#F7F8FA",
"foreground": "#f3f3f3", "foreground": "#F7F8FA",
"separatorColor": "#f3f3f3" "separatorColor": "#F7F8FA"
}, },
"SidePanel": { "SidePanel": {
"background": "#F7F8FA" "background": "#F7F8FA"
@@ -593,7 +630,7 @@
"buttonColor": "#79CB60", "buttonColor": "#79CB60",
"foreground": "#5B6168", "foreground": "#5B6168",
"majorTickLength": 6, "majorTickLength": 6,
"tickColor": "#f3f3f3", "tickColor": "#F7F8FA",
"trackColor": "#cce5ff", "trackColor": "#cce5ff",
"trackWidth": 7, "trackWidth": 7,
"thumb": "#79CB60" "thumb": "#79CB60"
@@ -614,17 +651,19 @@
"background": "#F7F8FA", "background": "#F7F8FA",
"highlight": "#F7F8FA" "highlight": "#F7F8FA"
}, },
"SplitPaneDivider.draggingColor": "#f3f3f3", "SplitPaneDivider.draggingColor": "#F7F8FA",
"StatusBar": { "StatusBar": {
"borderColor": "#F7F8FA" "borderColor": "#F7F8FA",
"hoverBackground": "#CCE5FF",
"LightEditBackground": "#cce5ff"
}, },
"TabbedPane": { "TabbedPane": {
"background": "#F7F8FA", "background": "#F7F8FA",
"contentAreaColor": "#CCE5FF", "contentAreaColor": "#CCE5FF",
"contentBorderInsets": "3,1,1,1", "contentBorderInsets": "3,1,1,1",
"darkShadow": "#DFE1E4", "darkShadow": "#DFE1E4",
"disabledForeground": "#9ba0a3", "disabledForeground": "#6C737C",
"disabledUnderlineColor": "#9ba0a3", "disabledUnderlineColor": "#6C737C",
"focus": "#cce5ff", "focus": "#cce5ff",
"focusColor": "#cce5ff", "focusColor": "#cce5ff",
"fontSizeOffset": 0, "fontSizeOffset": 0,
@@ -643,9 +682,11 @@
}, },
"TabbedPane.mt.tab.background": "#F7F8FA", "TabbedPane.mt.tab.background": "#F7F8FA",
"Table": { "Table": {
"alternativeRowBackground": "#FFFFFF",
"background": "#F7F8FA", "background": "#F7F8FA",
"cellNoFocusBorder": "10,5,10,5", "cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5",
"disabledForeground": "#6C737C",
"dropLineColor": "#79CB60", "dropLineColor": "#79CB60",
"dropLineShortColor": "#79CB60", "dropLineShortColor": "#79CB60",
"focusCellBackground": "#cce5ff", "focusCellBackground": "#cce5ff",
@@ -653,27 +694,29 @@
"foreground": "#5B6168", "foreground": "#5B6168",
"gridColor": "#F7F8FA", "gridColor": "#F7F8FA",
"highlightOuter": "#cce5ff", "highlightOuter": "#cce5ff",
"hoverBackground": "#3A66D170",
"hoverInactiveBackground": "#cce5ff",
"lightSelectionForeground": "#111111", "lightSelectionForeground": "#111111",
"lightSelectionInactiveForeground": "#292D31", "lightSelectionInactiveForeground": "#292D31",
"lightSelectionInactiveBackground": "#f3f3f3", "lightSelectionInactiveBackground": "#F7F8FA",
"selectionBackground": "#cce5ff", "selectionBackground": "#cce5ff",
"selectionForeground": "#111111", "selectionForeground": "#111111",
"selectionInactiveBackground": "#cce5ff", "selectionInactiveBackground": "#cce5ff",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#111111",
"sortIconColor": "#5B6168", "sortIconColor": "#5B6168",
"stripeColor": "#fafbfc" "stripeColor": "#FFFFFF"
}, },
"TableHeader": { "TableHeader": {
"background": "#F7F8FA", "background": "#F7F8FA",
"borderColor": "#F7F8FA", "borderColor": "#F7F8FA",
"bottomSeparatorColor": "#f3f3f3", "bottomSeparatorColor": "#F7F8FA",
"cellBorder": "4,0,4,0", "cellBorder": "4,0,4,0",
"disabledForeground": "#9ba0a3", "disabledForeground": "#6C737C",
"foreground": "#5B6168", "foreground": "#5B6168",
"focusCellBackground": "#cce5ff", "focusCellBackground": "#cce5ff",
"focusCellForeground": "#111111", "focusCellForeground": "#111111",
"height": 25, "height": 25,
"separatorColor": "#f3f3f3" "separatorColor": "#F7F8FA"
}, },
"text": "#292D31", "text": "#292D31",
"textInactiveText": "#292D31", "textInactiveText": "#292D31",
@@ -682,7 +725,7 @@
"background": "#F7F8FA", "background": "#F7F8FA",
"caretForeground": "#79CB60", "caretForeground": "#79CB60",
"foreground": "#5B6168", "foreground": "#5B6168",
"inactiveForeground": "#9ba0a3", "inactiveForeground": "#6C737C",
"selectionBackground": "#cce5ff", "selectionBackground": "#cce5ff",
"selectionForeground": "#111111" "selectionForeground": "#111111"
}, },
@@ -690,7 +733,7 @@
"background": "#F7F8FA", "background": "#F7F8FA",
"caretForeground": "#79CB60", "caretForeground": "#79CB60",
"foreground": "#5B6168", "foreground": "#5B6168",
"inactiveForeground": "#9ba0a3", "inactiveForeground": "#6C737C",
"selectionBackground": "#cce5ff", "selectionBackground": "#cce5ff",
"selectionForeground": "#111111" "selectionForeground": "#111111"
}, },
@@ -698,12 +741,12 @@
"background": "#F7F8FA", "background": "#F7F8FA",
"caretForeground": "#79CB60", "caretForeground": "#79CB60",
"foreground": "#5B6168", "foreground": "#5B6168",
"inactiveForeground": "#9ba0a3", "inactiveForeground": "#6C737C",
"selectionBackground": "#cce5ff", "selectionBackground": "#cce5ff",
"selectionForeground": "#111111" "selectionForeground": "#111111"
}, },
"TitlePane": { "TitlePane": {
"background": "#fafbfc", "background": "#FFFFFF",
"Button.hoverBackground": "#CCE5FF", "Button.hoverBackground": "#CCE5FF",
"inactiveBackground": "#F7F8FA", "inactiveBackground": "#F7F8FA",
"infoForeground": "#292D31", "infoForeground": "#292D31",
@@ -711,9 +754,9 @@
}, },
"TitledBorder.titleColor": "#5B6168", "TitledBorder.titleColor": "#5B6168",
"ToggleButton": { "ToggleButton": {
"borderColor": "#edf1f5", "borderColor": "#F1F3F6",
"buttonColor": "#5B6168", "buttonColor": "#5B6168",
"disabledText": "#9ba0a3", "disabledText": "#6C737C",
"foreground": "#5B6168", "foreground": "#5B6168",
"offForeground": "#F7F8FA", "offForeground": "#F7F8FA",
"offBackground": "#F7F8FA", "offBackground": "#F7F8FA",
@@ -729,8 +772,8 @@
"ToolTip": { "ToolTip": {
"Actions.background": "#F7F8FA", "Actions.background": "#F7F8FA",
"Actions.infoForeground": "#292D31", "Actions.infoForeground": "#292D31",
"background": "#F7F8FA", "background": "#DFECFE",
"borderColor": "#CCE5FF", "borderColor": "#DFE1E4",
"foreground": "#5B6168", "foreground": "#5B6168",
"infoForeground": "#292D31", "infoForeground": "#292D31",
"separatorColor": "#DFE1E4", "separatorColor": "#DFE1E4",
@@ -740,61 +783,104 @@
"Button": { "Button": {
"hoverBackground": "#cce5ff", "hoverBackground": "#cce5ff",
"selectedForeground": "#111111", "selectedForeground": "#111111",
"selectedBackground": "#fafbfc" "selectedBackground": "#FFFFFF"
}, },
"Header": { "Header": {
"background": "#F7F8FA", "background": "#F7F8FA",
"borderColor": "#f3f3f3", "borderColor": "#F7F8FA",
"inactiveBackground": "#F7F8FA" "inactiveBackground": "#F7F8FA"
}, },
"HeaderCloseButton": { "HeaderCloseButton": {
"background": "#F7F8FA" "background": "#F7F8FA"
}, },
"HeaderTab": { "HeaderTab": {
"borderColor": "#CCE5FF",
"hoverBackground": "#CCE5FF", "hoverBackground": "#CCE5FF",
"hoverInactiveBackground": "#f3f3f3", "hoverInactiveBackground": "#CCE5FF",
"inactiveUnderlineColor": "#79CB60", "inactiveUnderlineColor": "#79CB60",
"selectedBackground": "#fafbfc", "selectedBackground": "#FFFFFF",
"selectedInactiveBackground": "#fafbfc", "selectedInactiveBackground": "#FFFFFF",
"underlineColor": "#79CB60", "underlineColor": "#79CB60",
"underlinedTabBackground": "#CCE5FF", "underlinedTabBackground": "#cce5ff",
"underlinedTabInactiveBackground": "#f3f3f3" "underlinedTabInactiveBackground": "#F7F8FA",
"underlinedTabForeground": "#111111",
"underlinedTabInactiveForeground": "#5B6168"
} }
}, },
"Tree": { "Tree": {
"background": "#F7F8FA", "background": "#F7F8FA",
"foreground": "#292D31", "foreground": "#292D31",
"hash": "#DFE1E4", "hash": "#DFE1E4",
"hoverBackground": "#3A66D170",
"hoverInactiveBackground": "#cce5ff",
"modifiedItemForeground": "#79CB60", "modifiedItemForeground": "#79CB60",
"rowHeight": 28, "rowHeight": 28,
"selectionBackground": "#3A66D1", "selectionBackground": "#3A66D170",
"selectionForeground": "#FFFFFF", "selectionForeground": "#111111",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#111111",
"selectionInactiveBackground": "#3A66D1", "selectionInactiveBackground": "#3A66D170",
"textBackground": "#F7F8FA" "textBackground": "#F7F8FA"
}, },
"Tree.leftChildIndent": 10, "Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5, "Tree.rightChildIndent": 5,
"UiDesigner": { "UIDesigner": {
"Activity.borderColor": "#DFE1E4", "Activity.borderColor": "#DFE1E4",
"ColorPicker.background": "#F7F8FA", "Canvas.background": "#FFFFFF",
"ColorPicker.foreground": "#5B6168", "ColorPicker": {
"Component.borderColor": "#DFE1E4", "background": "#F7F8FA",
"Component.background": "#F7F8FA", "foreground": "#5B6168"
"Component.foreground": "#5B6168", },
"Connector.borderColor": "#DFE1E4", "Component": {
"Connector.hoverBorderColor": "#CCE5FF", "borderColor": "#DFE1E4",
"Canvas.background": "#fafbfc", "background": "#F7F8FA",
"foreground": "#5B6168",
"hoverBorderColor": "#CCE5FF"
},
"Connector": {
"borderColor": "#DFE1E4",
"hoverBorderColor": "#CCE5FF"
},
"Canvas.background": "#FFFFFF",
"highStroke.foreground": "#5B6168", "highStroke.foreground": "#5B6168",
"Label.foreground": "#292D31", "Label.foreground": "#292D31",
"List.selectionBackground": "#3A66D1", "List.selectionBackground": "#3A66D170",
"Panel.borderColor": "#DFE1E4", "motion": {
"Panel.background": "#F7F8FA", "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", "percent.foreground": "#5B6168",
"Placeholder.background": "#F7F8FA", "Placeholder": {
"Placeholder.borderColor": "#DFE1E4", "background": "#F7F8FA",
"Placeholder.foreground": "#5B6168", "borderColor": "#DFE1E4",
"Placeholder.selectedForeground": "#FFFFFF", "foreground": "#5B6168",
"selectedForeground": "#111111"
},
"Preview.background": "#F7F8FA", "Preview.background": "#F7F8FA",
"stroke.acceleratorForeground": "#292D31" "stroke.acceleratorForeground": "#292D31"
}, },
@@ -820,7 +906,7 @@
"HgLog": { "HgLog": {
"branchIconColor": "#79CB60", "branchIconColor": "#79CB60",
"bookmarkIconColor": "#111111", "bookmarkIconColor": "#111111",
"closedBranchIconColor": "#9ba0a3", "closedBranchIconColor": "#6C737C",
"localTagIconColor": "#292D31", "localTagIconColor": "#292D31",
"mqTagIconColor": "#292D31", "mqTagIconColor": "#292D31",
"tagIconColor": "#292D31", "tagIconColor": "#292D31",
@@ -828,7 +914,8 @@
}, },
"Log": { "Log": {
"Commit.unmatchedForeground": "#292D31", "Commit.unmatchedForeground": "#292D31",
"Commit.currentBranchBackground": "#f3f3f3" "Commit.currentBranchBackground": "#F7F8FA",
"Commit.hoveredBackground": "#3A66D170"
}, },
"RefLabel": { "RefLabel": {
"foreground": "#111111", "foreground": "#111111",
@@ -840,19 +927,25 @@
"foreground": "#5B6168" "foreground": "#5B6168"
}, },
"WelcomeScreen": { "WelcomeScreen": {
"AssociatedComponent.background": "#F7F8FA",
"background": "#F7F8FA", "background": "#F7F8FA",
"borderColor": "#F7F8FA", "borderColor": "#F7F8FA",
"captionBackground": "#fafbfc", "captionBackground": "#FFFFFF",
"captionForeground": "#5B6168", "captionForeground": "#5B6168",
"footerBackground": "#fafbfc", "Details.background": "#F7F8FA",
"footerBackground": "#FFFFFF",
"footerForeground": "#5B6168", "footerForeground": "#5B6168",
"headerBackground": "#F7F8FA", "headerBackground": "#F7F8FA",
"headerForeground": "#5B6168", "headerForeground": "#5B6168",
"List.background": "#FFFFFF",
"separatorColor": "#DFE1E4", "separatorColor": "#DFE1E4",
"SidePanel.background": "#F7F8FA",
"Projects": { "Projects": {
"background": "#f3f3f3", "actions.background": "#FFFFFF",
"actions.selectionBackground": "#CCE5FF",
"background": "#F7F8FA",
"selectionBackground": "#3A66D1", "selectionBackground": "#3A66D1",
"selectionInactiveBackground": "#f3f3f3" "selectionInactiveBackground": "#F7F8FA"
} }
}, },
"window": "#F7F8FA", "window": "#F7F8FA",
@@ -862,14 +955,14 @@
}, },
"icons": { "icons": {
"ColorPalette": { "ColorPalette": {
"#43494A": "#fafbfc", "#43494A": "#FFFFFF",
"#6B6B6B": "#292D31", "#6B6B6B": "#292D31",
"#A7A7A7": "#F7F8FA", "#A7A7A7": "#F7F8FA",
"#3D6185": "#79CB60", "#3D6185": "#79CB60",
"#466D94": "#79CB60", "#466D94": "#79CB60",
"#3C3F41": "#F7F8FA", "#3C3F41": "#F7F8FA",
"#545556": "#9ba0a3", "#545556": "#6C737C",
"#606060": "#9ba0a3", "#606060": "#6C737C",
"#9AA7B0": "#5B6168", "#9AA7B0": "#5B6168",
"#675133": "#79CB60", "#675133": "#79CB60",
"Actions.Blue": "#6F42C1", "Actions.Blue": "#6F42C1",
@@ -879,20 +972,20 @@
"Actions.GreyInline.Dark": "#5B6168", "Actions.GreyInline.Dark": "#5B6168",
"Actions.Red": "#22863A", "Actions.Red": "#22863A",
"Actions.Yellow": "#6F42C1", "Actions.Yellow": "#6F42C1",
"Checkbox.Background.Default": "#fafbfc", "Checkbox.Background.Default": "#FFFFFF",
"Checkbox.Background.Default.Dark": "#fafbfc", "Checkbox.Background.Default.Dark": "#FFFFFF",
"Checkbox.Background.Disabled": "#dcdcdc", "Checkbox.Background.Disabled": "#FDFDFD",
"Checkbox.Background.Disabled.Dark": "#dcdcdc", "Checkbox.Background.Disabled.Dark": "#FDFDFD",
"Checkbox.Border.Default": "#DFE1E4", "Checkbox.Border.Default": "#DFE1E4",
"Checkbox.Border.Default.Dark": "#DFE1E4", "Checkbox.Border.Default.Dark": "#DFE1E4",
"Checkbox.Border.Disabled": "#9ba0a3", "Checkbox.Border.Disabled": "#6C737C",
"Checkbox.Border.Disabled.Dark": "#9ba0a3", "Checkbox.Border.Disabled.Dark": "#6C737C",
"Checkbox.Focus.Thin.Default": "#79CB60", "Checkbox.Focus.Thin.Default": "#79CB60",
"Checkbox.Focus.Thin.Default.Dark": "#79CB60", "Checkbox.Focus.Thin.Default.Dark": "#79CB60",
"Checkbox.Focus.Wide": "#79CB60", "Checkbox.Focus.Wide": "#79CB60",
"Checkbox.Focus.Wide.Dark": "#79CB60", "Checkbox.Focus.Wide.Dark": "#79CB60",
"Checkbox.Foreground.Disabled": "#9ba0a3", "Checkbox.Foreground.Disabled": "#6C737C",
"Checkbox.Foreground.Disabled.Dark": "#9ba0a3", "Checkbox.Foreground.Disabled.Dark": "#6C737C",
"Checkbox.Background.Selected": "#79CB60", "Checkbox.Background.Selected": "#79CB60",
"Checkbox.Background.Selected.Dark": "#F7F8FA", "Checkbox.Background.Selected.Dark": "#F7F8FA",
"Checkbox.Border.Selected": "#79CB60", "Checkbox.Border.Selected": "#79CB60",

View File

@@ -3,6 +3,12 @@
"dark": true, "dark": true,
"author": "Mallowigi", "author": "Mallowigi",
"editorScheme": "/colors/Material Darker.xml", "editorScheme": "/colors/Material Darker.xml",
"emptyFrameBackground": {
"anchor": "center",
"image": "/walls/darker.svg",
"fill": "scale",
"transparency": 50
},
"ui": { "ui": {
"*": { "*": {
"acceleratorSelectionForeground": "#727272", "acceleratorSelectionForeground": "#727272",
@@ -17,7 +23,7 @@
"inactiveBackground": "#323232", "inactiveBackground": "#323232",
"inactiveForeground": "#727272", "inactiveForeground": "#727272",
"infoForeground": "#727272", "infoForeground": "#727272",
"selectionBackground": "#404040", "selectionBackground": "#353535",
"selectionBackgroundInactive": "#292929", "selectionBackgroundInactive": "#292929",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#292929", "selectionInactiveBackground": "#292929",
@@ -33,7 +39,7 @@
"pressedBorderColor": "#FF980050" "pressedBorderColor": "#FF980050"
}, },
"Autocomplete": { "Autocomplete": {
"selectionBackground": "#404040" "selectionBackground": "#353535"
}, },
"Borders.ContrastBorderColor": "#212121", "Borders.ContrastBorderColor": "#212121",
"Borders.color": "#292929", "Borders.color": "#292929",
@@ -72,7 +78,10 @@
"Tooltip.borderColor": "#292929", "Tooltip.borderColor": "#292929",
"Tooltip.background": "#1A1A1A" "Tooltip.background": "#1A1A1A"
}, },
"Content.background": "#1A1A1A", "Content": {
"background": "#1A1A1A",
"selectionBackground": "#353535"
},
"CheckBox": { "CheckBox": {
"background": "#212121", "background": "#212121",
"disabledText": "#474747", "disabledText": "#474747",
@@ -86,9 +95,17 @@
"disabledBackground": "#212121", "disabledBackground": "#212121",
"disabledForeground": "#474747", "disabledForeground": "#474747",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"selectionBackground": "#404040", "selectionBackground": "#353535",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"CodeWithMe": {
"Avatar.foreground": "#B0BEC5",
"AccessEnabled": {
"accessDot": "#FF9800",
"dropdownBorder": "#292929",
"pillBackground": "$second"
}
},
"ColorChooser": { "ColorChooser": {
"background": "#212121", "background": "#212121",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
@@ -104,6 +121,7 @@
}, },
"background": "#1A1A1A", "background": "#1A1A1A",
"buttonBackground": "#2A2A2A", "buttonBackground": "#2A2A2A",
"darcula.hoveredArrowButtonForeground": "#FF9800",
"disabledForeground": "#474747", "disabledForeground": "#474747",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"modifiedItemForeground": "#FF9800", "modifiedItemForeground": "#FF9800",
@@ -123,8 +141,8 @@
"selectedGrayedForeground": "#FFFFFF", "selectedGrayedForeground": "#FFFFFF",
"selectionGrayForeground": "#FFFFFF", "selectionGrayForeground": "#FFFFFF",
"selectionInactiveInfoForeground": "#727272", "selectionInactiveInfoForeground": "#727272",
"selectionInactiveBackground": "#40404050", "selectionInactiveBackground": "#35353550",
"selectionBackground": "#40404080", "selectionBackground": "#35353580",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInfoForeground": "#FFFFFF" "selectionInfoForeground": "#FFFFFF"
}, },
@@ -168,11 +186,13 @@
"hoverBackground": "#323232", "hoverBackground": "#323232",
"hoverColor": "#1A1A1A", "hoverColor": "#1A1A1A",
"hoverMaskColor": "#3F3F3F", "hoverMaskColor": "#3F3F3F",
"inactiveColoredTabBackground": "#212121",
"inactiveColoredFileBackground": "#2A2A2A", "inactiveColoredFileBackground": "#2A2A2A",
"inactiveUnderlineColor": "#474747", "inactiveUnderlineColor": "#FF9800",
"inactiveMaskColor": "#1A1A1A", "inactiveMaskColor": "#1A1A1A",
"underlineColor": "#FF9800", "underlineColor": "#FF9800",
"underlinedTabBackground": "#323232" "underlinedTabBackground": "#323232",
"underlinedTabForeground": "#FFFFFF"
}, },
"Desktop.background": "#212121", "Desktop.background": "#212121",
"DialogWrapper.southPanelBackground": "#212121", "DialogWrapper.southPanelBackground": "#212121",
@@ -193,20 +213,22 @@
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"inactiveBackground": "#212121", "inactiveBackground": "#212121",
"inactiveForeground": "#474747", "inactiveForeground": "#474747",
"selectionBackground": "#404040", "selectionBackground": "#353535",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"EditorTabs": { "EditorTabs": {
"borderColor": "#292929", "borderColor": "#292929",
"hoverBackground": "#3F3F3F",
"hoverColor": "#3F3F3F", "hoverColor": "#3F3F3F",
"hoverMaskColor": "#3F3F3F", "hoverMaskColor": "#3F3F3F",
"inactiveMaskColor": "#212121", "inactiveMaskColor": "#212121",
"inactiveColoredFileBackground": "#2121212", "inactiveColoredFileBackground": "#212121",
"inactiveUnderlineColor": "#474747", "inactiveUnderlineColor": "#474747",
"selectedForeground": "#B0BEC5", "selectedForeground": "#B0BEC5",
"selectedBackground": "#323232", "selectedBackground": "#323232",
"underlineColor": "#FF9800", "underlineColor": "#FF9800",
"underlinedTabBackground": "#323232" "underlinedTabBackground": "#323232",
"underlinedTabForeground": "#FFFFFF"
}, },
"EditorGroupsTabs": { "EditorGroupsTabs": {
"background": "#212121", "background": "#212121",
@@ -246,12 +268,13 @@
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionBackground": "#323232" "selectionBackground": "#323232"
}, },
"GotItTooltip.borderColor": "#1A1A1A",
"Group": { "Group": {
"disabledSeparatorColor": "#292929", "disabledSeparatorColor": "#292929",
"separatorColor": "#292929" "separatorColor": "#292929"
}, },
"GutterTooltip": { "GutterTooltip": {
"infoForeground": "#B0BEC5", "infoForeground": "#727272",
"lineSeparatorColor": "#212121" "lineSeparatorColor": "#212121"
}, },
"HeaderColor": { "HeaderColor": {
@@ -288,7 +311,8 @@
"disabledText": "#474747", "disabledText": "#474747",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"infoForeground": "#727272", "infoForeground": "#727272",
"selectedForeground": "#FFFFFF" "selectedForeground": "#FFFFFF",
"selectedDisabledForeground": "#B0BEC5"
}, },
"Link": { "Link": {
"activeForeground": "#FF9800", "activeForeground": "#FF9800",
@@ -301,10 +325,12 @@
"List": { "List": {
"background": "#292929", "background": "#292929",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"selectionBackground": "#40404050", "hoverBackground": "#32323270",
"hoverInactiveBackground": "#323232",
"selectionBackground": "#35353550",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#323232c0" "selectionInactiveBackground": "#32323270"
}, },
"material": { "material": {
"background": "#212121", "background": "#212121",
@@ -332,7 +358,7 @@
"disabledBackground": "#292929", "disabledBackground": "#292929",
"disabledForeground": "#474747", "disabledForeground": "#474747",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"selectionBackground": "#404040", "selectionBackground": "#353535",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"separatorColor": "#292929" "separatorColor": "#292929"
}, },
@@ -343,7 +369,7 @@
"disabledForeground": "#474747", "disabledForeground": "#474747",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"highlight": "#212121", "highlight": "#212121",
"selectionBackground": "#404040", "selectionBackground": "#353535",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"shadow": "#1A1A1A" "shadow": "#1A1A1A"
}, },
@@ -355,7 +381,7 @@
"disabledBackground": "#212121", "disabledBackground": "#212121",
"disabledForeground": "#474747", "disabledForeground": "#474747",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"selectionBackground": "#404040", "selectionBackground": "#353535",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"NavBar": { "NavBar": {
@@ -409,7 +435,7 @@
"ParameterInfo": { "ParameterInfo": {
"background": "#292929", "background": "#292929",
"borderColor": "#323232", "borderColor": "#323232",
"currentOverloadBackground": "#323232", "currentOverloadBackground": "#3F3F3F",
"currentParameterForeground": "#FF9800", "currentParameterForeground": "#FF9800",
"disabledForeground": "#474747", "disabledForeground": "#474747",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
@@ -429,9 +455,10 @@
"background": "#212121", "background": "#212121",
"disabledForeground": "#474747", "disabledForeground": "#474747",
"eapTagBackground": "#3F3F3F", "eapTagBackground": "#3F3F3F",
"lightSelectionBackground": "#404040", "hoverBackground": "#32323270",
"lightSelectionBackground": "#323232",
"paidTagBackground": "#3F3F3F", "paidTagBackground": "#3F3F3F",
"selectionBackground": "#404040", "selectionBackground": "#353535",
"tagForeground": "#FF9800", "tagForeground": "#FF9800",
"tagBackground": "#3F3F3F", "tagBackground": "#3F3F3F",
"trialTagBackground": "#3F3F3F", "trialTagBackground": "#3F3F3F",
@@ -442,7 +469,7 @@
"installFocusedBackground": "#3F3F3F", "installFocusedBackground": "#3F3F3F",
"installFillForeground": "#474747", "installFillForeground": "#474747",
"installFillBackground": "#2A2A2A", "installFillBackground": "#2A2A2A",
"updateBackground": "#2A2A2A", "updateBackground": "#FF9800",
"updateBorderColor": "#2A2A2A", "updateBorderColor": "#2A2A2A",
"updateForeground": "#B0BEC5" "updateForeground": "#B0BEC5"
}, },
@@ -514,9 +541,10 @@
"disabledBackground": "#212121", "disabledBackground": "#212121",
"disabledForeground": "#474747", "disabledForeground": "#474747",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"selectionBackground": "#404040", "selectionBackground": "#353535",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"ScreenView.borderColor": "#292929",
"ScrollBar": { "ScrollBar": {
"background": "#212121", "background": "#212121",
"hoverThumbBorderColor": "#FF9800", "hoverThumbBorderColor": "#FF9800",
@@ -576,9 +604,18 @@
}, },
"SearchMatch": { "SearchMatch": {
"endBackground": "#FF9800", "endBackground": "#FF9800",
"startBackground": "#FF9800" "startBackground": "#FF9800",
"endColor": "#FF9800",
"startColor": "#FF9800"
}, },
"SearchField.errorBackground": "#1A1A1A", "SearchField.errorBackground": "#1A1A1A",
"SearchOption": {
"selectedBackground": "#323232"
},
"SearchResults": {
"Ordinal.File.Foreground": "#727272",
"Repeated.File.Foreground": "#B0BEC5"
},
"Separator": { "Separator": {
"background": "#292929", "background": "#292929",
"foreground": "#292929", "foreground": "#292929",
@@ -616,7 +653,9 @@
}, },
"SplitPaneDivider.draggingColor": "#292929", "SplitPaneDivider.draggingColor": "#292929",
"StatusBar": { "StatusBar": {
"borderColor": "#212121" "borderColor": "#212121",
"hoverBackground": "#3F3F3F",
"LightEditBackground": "#323232"
}, },
"TabbedPane": { "TabbedPane": {
"background": "#212121", "background": "#212121",
@@ -643,9 +682,11 @@
}, },
"TabbedPane.mt.tab.background": "#1A1A1A", "TabbedPane.mt.tab.background": "#1A1A1A",
"Table": { "Table": {
"alternativeRowBackground": "#1A1A1A",
"background": "#212121", "background": "#212121",
"cellNoFocusBorder": "10,5,10,5", "cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5",
"disabledForeground": "#474747",
"dropLineColor": "#FF9800", "dropLineColor": "#FF9800",
"dropLineShortColor": "#FF9800", "dropLineShortColor": "#FF9800",
"focusCellBackground": "#323232", "focusCellBackground": "#323232",
@@ -653,6 +694,8 @@
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"gridColor": "#212121", "gridColor": "#212121",
"highlightOuter": "#323232", "highlightOuter": "#323232",
"hoverBackground": "#32323270",
"hoverInactiveBackground": "#323232",
"lightSelectionForeground": "#FFFFFF", "lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#727272", "lightSelectionInactiveForeground": "#727272",
"lightSelectionInactiveBackground": "#292929", "lightSelectionInactiveBackground": "#292929",
@@ -729,8 +772,8 @@
"ToolTip": { "ToolTip": {
"Actions.background": "#212121", "Actions.background": "#212121",
"Actions.infoForeground": "#727272", "Actions.infoForeground": "#727272",
"background": "#212121", "background": "#1A1A1A",
"borderColor": "#3F3F3F", "borderColor": "#292929",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"infoForeground": "#727272", "infoForeground": "#727272",
"separatorColor": "#292929", "separatorColor": "#292929",
@@ -751,50 +794,93 @@
"background": "#212121" "background": "#212121"
}, },
"HeaderTab": { "HeaderTab": {
"borderColor": "#3F3F3F",
"hoverBackground": "#3F3F3F", "hoverBackground": "#3F3F3F",
"hoverInactiveBackground": "#292929", "hoverInactiveBackground": "#3F3F3F",
"inactiveUnderlineColor": "#FF9800", "inactiveUnderlineColor": "#FF9800",
"selectedBackground": "#1A1A1A", "selectedBackground": "#1A1A1A",
"selectedInactiveBackground": "#1A1A1A", "selectedInactiveBackground": "#1A1A1A",
"underlineColor": "#FF9800", "underlineColor": "#FF9800",
"underlinedTabBackground": "#3F3F3F", "underlinedTabBackground": "#323232",
"underlinedTabInactiveBackground": "#292929" "underlinedTabInactiveBackground": "#292929",
"underlinedTabForeground": "#FFFFFF",
"underlinedTabInactiveForeground": "#B0BEC5"
} }
}, },
"Tree": { "Tree": {
"background": "#1A1A1A", "background": "#1A1A1A",
"foreground": "#727272", "foreground": "#727272",
"hash": "#292929", "hash": "#292929",
"hoverBackground": "#32323270",
"hoverInactiveBackground": "#323232",
"modifiedItemForeground": "#FF9800", "modifiedItemForeground": "#FF9800",
"rowHeight": 28, "rowHeight": 28,
"selectionBackground": "#323232c0", "selectionBackground": "#32323270",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#323232c0", "selectionInactiveBackground": "#32323270",
"textBackground": "#1A1A1A" "textBackground": "#1A1A1A"
}, },
"Tree.leftChildIndent": 10, "Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5, "Tree.rightChildIndent": 5,
"UiDesigner": { "UIDesigner": {
"Activity.borderColor": "#292929", "Activity.borderColor": "#292929",
"ColorPicker.background": "#212121", "Canvas.background": "#1A1A1A",
"ColorPicker.foreground": "#B0BEC5", "ColorPicker": {
"Component.borderColor": "#292929", "background": "#212121",
"Component.background": "#212121", "foreground": "#B0BEC5"
"Component.foreground": "#B0BEC5", },
"Connector.borderColor": "#292929", "Component": {
"Connector.hoverBorderColor": "#3F3F3F", "borderColor": "#292929",
"background": "#212121",
"foreground": "#B0BEC5",
"hoverBorderColor": "#3F3F3F"
},
"Connector": {
"borderColor": "#292929",
"hoverBorderColor": "#3F3F3F"
},
"Canvas.background": "#1A1A1A", "Canvas.background": "#1A1A1A",
"highStroke.foreground": "#B0BEC5", "highStroke.foreground": "#B0BEC5",
"Label.foreground": "#727272", "Label.foreground": "#727272",
"List.selectionBackground": "#323232c0", "List.selectionBackground": "#32323270",
"Panel.borderColor": "#292929", "motion": {
"Panel.background": "#212121", "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", "percent.foreground": "#B0BEC5",
"Placeholder.background": "#212121", "Placeholder": {
"Placeholder.borderColor": "#292929", "background": "#212121",
"Placeholder.foreground": "#B0BEC5", "borderColor": "#292929",
"Placeholder.selectedForeground": "#FFFFFF", "foreground": "#B0BEC5",
"selectedForeground": "#FFFFFF"
},
"Preview.background": "#212121", "Preview.background": "#212121",
"stroke.acceleratorForeground": "#727272" "stroke.acceleratorForeground": "#727272"
}, },
@@ -828,7 +914,8 @@
}, },
"Log": { "Log": {
"Commit.unmatchedForeground": "#727272", "Commit.unmatchedForeground": "#727272",
"Commit.currentBranchBackground": "#292929" "Commit.currentBranchBackground": "#292929",
"Commit.hoveredBackground": "#32323270"
}, },
"RefLabel": { "RefLabel": {
"foreground": "#FFFFFF", "foreground": "#FFFFFF",
@@ -840,18 +927,24 @@
"foreground": "#B0BEC5" "foreground": "#B0BEC5"
}, },
"WelcomeScreen": { "WelcomeScreen": {
"AssociatedComponent.background": "#212121",
"background": "#212121", "background": "#212121",
"borderColor": "#212121", "borderColor": "#212121",
"captionBackground": "#1A1A1A", "captionBackground": "#1A1A1A",
"captionForeground": "#B0BEC5", "captionForeground": "#B0BEC5",
"Details.background": "#212121",
"footerBackground": "#1A1A1A", "footerBackground": "#1A1A1A",
"footerForeground": "#B0BEC5", "footerForeground": "#B0BEC5",
"headerBackground": "#212121", "headerBackground": "#212121",
"headerForeground": "#B0BEC5", "headerForeground": "#B0BEC5",
"List.background": "#1A1A1A",
"separatorColor": "#292929", "separatorColor": "#292929",
"SidePanel.background": "#292929",
"Projects": { "Projects": {
"actions.background": "#1A1A1A",
"actions.selectionBackground": "#3F3F3F",
"background": "#292929", "background": "#292929",
"selectionBackground": "#404040", "selectionBackground": "#353535",
"selectionInactiveBackground": "#292929" "selectionInactiveBackground": "#292929"
} }
}, },

View File

@@ -3,6 +3,12 @@
"dark": true, "dark": true,
"author": "Mallowigi", "author": "Mallowigi",
"editorScheme": "/colors/Material Darker.xml", "editorScheme": "/colors/Material Darker.xml",
"emptyFrameBackground": {
"anchor": "center",
"image": "/walls/darker.svg",
"fill": "scale",
"transparency": 50
},
"ui": { "ui": {
"*": { "*": {
"acceleratorSelectionForeground": "#727272", "acceleratorSelectionForeground": "#727272",
@@ -17,7 +23,7 @@
"inactiveBackground": "#323232", "inactiveBackground": "#323232",
"inactiveForeground": "#727272", "inactiveForeground": "#727272",
"infoForeground": "#727272", "infoForeground": "#727272",
"selectionBackground": "#404040", "selectionBackground": "#353535",
"selectionBackgroundInactive": "#292929", "selectionBackgroundInactive": "#292929",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#292929", "selectionInactiveBackground": "#292929",
@@ -33,7 +39,7 @@
"pressedBorderColor": "#FF980050" "pressedBorderColor": "#FF980050"
}, },
"Autocomplete": { "Autocomplete": {
"selectionBackground": "#404040" "selectionBackground": "#353535"
}, },
"Borders.ContrastBorderColor": "#212121", "Borders.ContrastBorderColor": "#212121",
"Borders.color": "#292929", "Borders.color": "#292929",
@@ -72,7 +78,10 @@
"Tooltip.borderColor": "#292929", "Tooltip.borderColor": "#292929",
"Tooltip.background": "#1A1A1A" "Tooltip.background": "#1A1A1A"
}, },
"Content.background": "#1A1A1A", "Content": {
"background": "#1A1A1A",
"selectionBackground": "#353535"
},
"CheckBox": { "CheckBox": {
"background": "#212121", "background": "#212121",
"disabledText": "#474747", "disabledText": "#474747",
@@ -86,9 +95,17 @@
"disabledBackground": "#212121", "disabledBackground": "#212121",
"disabledForeground": "#474747", "disabledForeground": "#474747",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"selectionBackground": "#404040", "selectionBackground": "#353535",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"CodeWithMe": {
"Avatar.foreground": "#B0BEC5",
"AccessEnabled": {
"accessDot": "#FF9800",
"dropdownBorder": "#292929",
"pillBackground": "$second"
}
},
"ColorChooser": { "ColorChooser": {
"background": "#212121", "background": "#212121",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
@@ -104,6 +121,7 @@
}, },
"background": "#212121", "background": "#212121",
"buttonBackground": "#2A2A2A", "buttonBackground": "#2A2A2A",
"darcula.hoveredArrowButtonForeground": "#FF9800",
"disabledForeground": "#474747", "disabledForeground": "#474747",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"modifiedItemForeground": "#FF9800", "modifiedItemForeground": "#FF9800",
@@ -123,8 +141,8 @@
"selectedGrayedForeground": "#FFFFFF", "selectedGrayedForeground": "#FFFFFF",
"selectionGrayForeground": "#FFFFFF", "selectionGrayForeground": "#FFFFFF",
"selectionInactiveInfoForeground": "#727272", "selectionInactiveInfoForeground": "#727272",
"selectionInactiveBackground": "#40404050", "selectionInactiveBackground": "#35353550",
"selectionBackground": "#40404080", "selectionBackground": "#35353580",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInfoForeground": "#FFFFFF" "selectionInfoForeground": "#FFFFFF"
}, },
@@ -168,11 +186,13 @@
"hoverBackground": "#323232", "hoverBackground": "#323232",
"hoverColor": "#212121", "hoverColor": "#212121",
"hoverMaskColor": "#3F3F3F", "hoverMaskColor": "#3F3F3F",
"inactiveColoredTabBackground": "#212121",
"inactiveColoredFileBackground": "#2A2A2A", "inactiveColoredFileBackground": "#2A2A2A",
"inactiveUnderlineColor": "#474747", "inactiveUnderlineColor": "#FF9800",
"inactiveMaskColor": "#212121", "inactiveMaskColor": "#212121",
"underlineColor": "#FF9800", "underlineColor": "#FF9800",
"underlinedTabBackground": "#323232" "underlinedTabBackground": "#323232",
"underlinedTabForeground": "#FFFFFF"
}, },
"Desktop.background": "#212121", "Desktop.background": "#212121",
"DialogWrapper.southPanelBackground": "#212121", "DialogWrapper.southPanelBackground": "#212121",
@@ -193,20 +213,22 @@
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"inactiveBackground": "#212121", "inactiveBackground": "#212121",
"inactiveForeground": "#474747", "inactiveForeground": "#474747",
"selectionBackground": "#404040", "selectionBackground": "#353535",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"EditorTabs": { "EditorTabs": {
"borderColor": "#292929", "borderColor": "#292929",
"hoverBackground": "#3F3F3F",
"hoverColor": "#3F3F3F", "hoverColor": "#3F3F3F",
"hoverMaskColor": "#3F3F3F", "hoverMaskColor": "#3F3F3F",
"inactiveMaskColor": "#212121", "inactiveMaskColor": "#212121",
"inactiveColoredFileBackground": "#2121212", "inactiveColoredFileBackground": "#212121",
"inactiveUnderlineColor": "#474747", "inactiveUnderlineColor": "#474747",
"selectedForeground": "#B0BEC5", "selectedForeground": "#B0BEC5",
"selectedBackground": "#323232", "selectedBackground": "#323232",
"underlineColor": "#FF9800", "underlineColor": "#FF9800",
"underlinedTabBackground": "#323232" "underlinedTabBackground": "#323232",
"underlinedTabForeground": "#FFFFFF"
}, },
"EditorGroupsTabs": { "EditorGroupsTabs": {
"background": "#212121", "background": "#212121",
@@ -246,12 +268,13 @@
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionBackground": "#323232" "selectionBackground": "#323232"
}, },
"GotItTooltip.borderColor": "#1A1A1A",
"Group": { "Group": {
"disabledSeparatorColor": "#292929", "disabledSeparatorColor": "#292929",
"separatorColor": "#292929" "separatorColor": "#292929"
}, },
"GutterTooltip": { "GutterTooltip": {
"infoForeground": "#B0BEC5", "infoForeground": "#727272",
"lineSeparatorColor": "#212121" "lineSeparatorColor": "#212121"
}, },
"HeaderColor": { "HeaderColor": {
@@ -288,7 +311,8 @@
"disabledText": "#474747", "disabledText": "#474747",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"infoForeground": "#727272", "infoForeground": "#727272",
"selectedForeground": "#FFFFFF" "selectedForeground": "#FFFFFF",
"selectedDisabledForeground": "#B0BEC5"
}, },
"Link": { "Link": {
"activeForeground": "#FF9800", "activeForeground": "#FF9800",
@@ -301,10 +325,12 @@
"List": { "List": {
"background": "#292929", "background": "#292929",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"selectionBackground": "#40404050", "hoverBackground": "#32323270",
"hoverInactiveBackground": "#323232",
"selectionBackground": "#35353550",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#323232c0" "selectionInactiveBackground": "#32323270"
}, },
"material": { "material": {
"background": "#212121", "background": "#212121",
@@ -332,7 +358,7 @@
"disabledBackground": "#292929", "disabledBackground": "#292929",
"disabledForeground": "#474747", "disabledForeground": "#474747",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"selectionBackground": "#404040", "selectionBackground": "#353535",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"separatorColor": "#292929" "separatorColor": "#292929"
}, },
@@ -343,7 +369,7 @@
"disabledForeground": "#474747", "disabledForeground": "#474747",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"highlight": "#212121", "highlight": "#212121",
"selectionBackground": "#404040", "selectionBackground": "#353535",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"shadow": "#212121" "shadow": "#212121"
}, },
@@ -355,7 +381,7 @@
"disabledBackground": "#212121", "disabledBackground": "#212121",
"disabledForeground": "#474747", "disabledForeground": "#474747",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"selectionBackground": "#404040", "selectionBackground": "#353535",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"NavBar": { "NavBar": {
@@ -409,7 +435,7 @@
"ParameterInfo": { "ParameterInfo": {
"background": "#292929", "background": "#292929",
"borderColor": "#323232", "borderColor": "#323232",
"currentOverloadBackground": "#323232", "currentOverloadBackground": "#3F3F3F",
"currentParameterForeground": "#FF9800", "currentParameterForeground": "#FF9800",
"disabledForeground": "#474747", "disabledForeground": "#474747",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
@@ -429,9 +455,10 @@
"background": "#212121", "background": "#212121",
"disabledForeground": "#474747", "disabledForeground": "#474747",
"eapTagBackground": "#3F3F3F", "eapTagBackground": "#3F3F3F",
"lightSelectionBackground": "#404040", "hoverBackground": "#32323270",
"lightSelectionBackground": "#323232",
"paidTagBackground": "#3F3F3F", "paidTagBackground": "#3F3F3F",
"selectionBackground": "#404040", "selectionBackground": "#353535",
"tagForeground": "#FF9800", "tagForeground": "#FF9800",
"tagBackground": "#3F3F3F", "tagBackground": "#3F3F3F",
"trialTagBackground": "#3F3F3F", "trialTagBackground": "#3F3F3F",
@@ -442,7 +469,7 @@
"installFocusedBackground": "#3F3F3F", "installFocusedBackground": "#3F3F3F",
"installFillForeground": "#474747", "installFillForeground": "#474747",
"installFillBackground": "#2A2A2A", "installFillBackground": "#2A2A2A",
"updateBackground": "#2A2A2A", "updateBackground": "#FF9800",
"updateBorderColor": "#2A2A2A", "updateBorderColor": "#2A2A2A",
"updateForeground": "#B0BEC5" "updateForeground": "#B0BEC5"
}, },
@@ -514,9 +541,10 @@
"disabledBackground": "#212121", "disabledBackground": "#212121",
"disabledForeground": "#474747", "disabledForeground": "#474747",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"selectionBackground": "#404040", "selectionBackground": "#353535",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"ScreenView.borderColor": "#292929",
"ScrollBar": { "ScrollBar": {
"background": "#212121", "background": "#212121",
"hoverThumbBorderColor": "#FF9800", "hoverThumbBorderColor": "#FF9800",
@@ -576,9 +604,18 @@
}, },
"SearchMatch": { "SearchMatch": {
"endBackground": "#FF9800", "endBackground": "#FF9800",
"startBackground": "#FF9800" "startBackground": "#FF9800",
"endColor": "#FF9800",
"startColor": "#FF9800"
}, },
"SearchField.errorBackground": "#1A1A1A", "SearchField.errorBackground": "#1A1A1A",
"SearchOption": {
"selectedBackground": "#323232"
},
"SearchResults": {
"Ordinal.File.Foreground": "#727272",
"Repeated.File.Foreground": "#B0BEC5"
},
"Separator": { "Separator": {
"background": "#292929", "background": "#292929",
"foreground": "#292929", "foreground": "#292929",
@@ -616,7 +653,9 @@
}, },
"SplitPaneDivider.draggingColor": "#292929", "SplitPaneDivider.draggingColor": "#292929",
"StatusBar": { "StatusBar": {
"borderColor": "#212121" "borderColor": "#212121",
"hoverBackground": "#3F3F3F",
"LightEditBackground": "#323232"
}, },
"TabbedPane": { "TabbedPane": {
"background": "#212121", "background": "#212121",
@@ -643,9 +682,11 @@
}, },
"TabbedPane.mt.tab.background": "#212121", "TabbedPane.mt.tab.background": "#212121",
"Table": { "Table": {
"alternativeRowBackground": "#1A1A1A",
"background": "#212121", "background": "#212121",
"cellNoFocusBorder": "10,5,10,5", "cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5",
"disabledForeground": "#474747",
"dropLineColor": "#FF9800", "dropLineColor": "#FF9800",
"dropLineShortColor": "#FF9800", "dropLineShortColor": "#FF9800",
"focusCellBackground": "#323232", "focusCellBackground": "#323232",
@@ -653,6 +694,8 @@
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"gridColor": "#212121", "gridColor": "#212121",
"highlightOuter": "#323232", "highlightOuter": "#323232",
"hoverBackground": "#32323270",
"hoverInactiveBackground": "#323232",
"lightSelectionForeground": "#FFFFFF", "lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#727272", "lightSelectionInactiveForeground": "#727272",
"lightSelectionInactiveBackground": "#292929", "lightSelectionInactiveBackground": "#292929",
@@ -729,8 +772,8 @@
"ToolTip": { "ToolTip": {
"Actions.background": "#212121", "Actions.background": "#212121",
"Actions.infoForeground": "#727272", "Actions.infoForeground": "#727272",
"background": "#212121", "background": "#1A1A1A",
"borderColor": "#3F3F3F", "borderColor": "#292929",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"infoForeground": "#727272", "infoForeground": "#727272",
"separatorColor": "#292929", "separatorColor": "#292929",
@@ -751,50 +794,93 @@
"background": "#212121" "background": "#212121"
}, },
"HeaderTab": { "HeaderTab": {
"borderColor": "#3F3F3F",
"hoverBackground": "#3F3F3F", "hoverBackground": "#3F3F3F",
"hoverInactiveBackground": "#292929", "hoverInactiveBackground": "#3F3F3F",
"inactiveUnderlineColor": "#FF9800", "inactiveUnderlineColor": "#FF9800",
"selectedBackground": "#1A1A1A", "selectedBackground": "#1A1A1A",
"selectedInactiveBackground": "#1A1A1A", "selectedInactiveBackground": "#1A1A1A",
"underlineColor": "#FF9800", "underlineColor": "#FF9800",
"underlinedTabBackground": "#3F3F3F", "underlinedTabBackground": "#323232",
"underlinedTabInactiveBackground": "#292929" "underlinedTabInactiveBackground": "#292929",
"underlinedTabForeground": "#FFFFFF",
"underlinedTabInactiveForeground": "#B0BEC5"
} }
}, },
"Tree": { "Tree": {
"background": "#212121", "background": "#212121",
"foreground": "#727272", "foreground": "#727272",
"hash": "#292929", "hash": "#292929",
"hoverBackground": "#32323270",
"hoverInactiveBackground": "#323232",
"modifiedItemForeground": "#FF9800", "modifiedItemForeground": "#FF9800",
"rowHeight": 28, "rowHeight": 28,
"selectionBackground": "#323232c0", "selectionBackground": "#32323270",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#323232c0", "selectionInactiveBackground": "#32323270",
"textBackground": "#212121" "textBackground": "#212121"
}, },
"Tree.leftChildIndent": 10, "Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5, "Tree.rightChildIndent": 5,
"UiDesigner": { "UIDesigner": {
"Activity.borderColor": "#292929", "Activity.borderColor": "#292929",
"ColorPicker.background": "#212121", "Canvas.background": "#1A1A1A",
"ColorPicker.foreground": "#B0BEC5", "ColorPicker": {
"Component.borderColor": "#292929", "background": "#212121",
"Component.background": "#212121", "foreground": "#B0BEC5"
"Component.foreground": "#B0BEC5", },
"Connector.borderColor": "#292929", "Component": {
"Connector.hoverBorderColor": "#3F3F3F", "borderColor": "#292929",
"background": "#212121",
"foreground": "#B0BEC5",
"hoverBorderColor": "#3F3F3F"
},
"Connector": {
"borderColor": "#292929",
"hoverBorderColor": "#3F3F3F"
},
"Canvas.background": "#1A1A1A", "Canvas.background": "#1A1A1A",
"highStroke.foreground": "#B0BEC5", "highStroke.foreground": "#B0BEC5",
"Label.foreground": "#727272", "Label.foreground": "#727272",
"List.selectionBackground": "#323232c0", "List.selectionBackground": "#32323270",
"Panel.borderColor": "#292929", "motion": {
"Panel.background": "#212121", "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", "percent.foreground": "#B0BEC5",
"Placeholder.background": "#212121", "Placeholder": {
"Placeholder.borderColor": "#292929", "background": "#212121",
"Placeholder.foreground": "#B0BEC5", "borderColor": "#292929",
"Placeholder.selectedForeground": "#FFFFFF", "foreground": "#B0BEC5",
"selectedForeground": "#FFFFFF"
},
"Preview.background": "#212121", "Preview.background": "#212121",
"stroke.acceleratorForeground": "#727272" "stroke.acceleratorForeground": "#727272"
}, },
@@ -828,7 +914,8 @@
}, },
"Log": { "Log": {
"Commit.unmatchedForeground": "#727272", "Commit.unmatchedForeground": "#727272",
"Commit.currentBranchBackground": "#292929" "Commit.currentBranchBackground": "#292929",
"Commit.hoveredBackground": "#32323270"
}, },
"RefLabel": { "RefLabel": {
"foreground": "#FFFFFF", "foreground": "#FFFFFF",
@@ -840,18 +927,24 @@
"foreground": "#B0BEC5" "foreground": "#B0BEC5"
}, },
"WelcomeScreen": { "WelcomeScreen": {
"AssociatedComponent.background": "#212121",
"background": "#212121", "background": "#212121",
"borderColor": "#212121", "borderColor": "#212121",
"captionBackground": "#1A1A1A", "captionBackground": "#1A1A1A",
"captionForeground": "#B0BEC5", "captionForeground": "#B0BEC5",
"Details.background": "#212121",
"footerBackground": "#1A1A1A", "footerBackground": "#1A1A1A",
"footerForeground": "#B0BEC5", "footerForeground": "#B0BEC5",
"headerBackground": "#212121", "headerBackground": "#212121",
"headerForeground": "#B0BEC5", "headerForeground": "#B0BEC5",
"List.background": "#1A1A1A",
"separatorColor": "#292929", "separatorColor": "#292929",
"SidePanel.background": "#292929",
"Projects": { "Projects": {
"actions.background": "#1A1A1A",
"actions.selectionBackground": "#3F3F3F",
"background": "#292929", "background": "#292929",
"selectionBackground": "#404040", "selectionBackground": "#353535",
"selectionInactiveBackground": "#292929" "selectionInactiveBackground": "#292929"
} }
}, },

View File

@@ -3,6 +3,12 @@
"dark": true, "dark": true,
"author": "Mallowigi", "author": "Mallowigi",
"editorScheme": "/colors/Material Deep Ocean.xml", "editorScheme": "/colors/Material Deep Ocean.xml",
"emptyFrameBackground": {
"anchor": "center",
"image": "/walls/deepocean.svg",
"fill": "scale",
"transparency": 50
},
"ui": { "ui": {
"*": { "*": {
"acceleratorSelectionForeground": "#4B526D", "acceleratorSelectionForeground": "#4B526D",
@@ -72,7 +78,10 @@
"Tooltip.borderColor": "#0F111A", "Tooltip.borderColor": "#0F111A",
"Tooltip.background": "#090B10" "Tooltip.background": "#090B10"
}, },
"Content.background": "#090B10", "Content": {
"background": "#090B10",
"selectionBackground": "#232632"
},
"CheckBox": { "CheckBox": {
"background": "#0F111A", "background": "#0F111A",
"disabledText": "#464B5D", "disabledText": "#464B5D",
@@ -89,6 +98,14 @@
"selectionBackground": "#232632", "selectionBackground": "#232632",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"CodeWithMe": {
"Avatar.foreground": "#8F93A2",
"AccessEnabled": {
"accessDot": "#84ffff",
"dropdownBorder": "#181A1F",
"pillBackground": "$second"
}
},
"ColorChooser": { "ColorChooser": {
"background": "#0F111A", "background": "#0F111A",
"foreground": "#8F93A2", "foreground": "#8F93A2",
@@ -104,6 +121,7 @@
}, },
"background": "#090B10", "background": "#090B10",
"buttonBackground": "#191A21", "buttonBackground": "#191A21",
"darcula.hoveredArrowButtonForeground": "#84ffff",
"disabledForeground": "#464B5D", "disabledForeground": "#464B5D",
"foreground": "#8F93A2", "foreground": "#8F93A2",
"modifiedItemForeground": "#84ffff", "modifiedItemForeground": "#84ffff",
@@ -168,11 +186,13 @@
"hoverBackground": "#1A1C25", "hoverBackground": "#1A1C25",
"hoverColor": "#090B10", "hoverColor": "#090B10",
"hoverMaskColor": "#1F2233", "hoverMaskColor": "#1F2233",
"inactiveColoredTabBackground": "#0F111A",
"inactiveColoredFileBackground": "#191A21", "inactiveColoredFileBackground": "#191A21",
"inactiveUnderlineColor": "#464B5D", "inactiveUnderlineColor": "#84ffff",
"inactiveMaskColor": "#090B10", "inactiveMaskColor": "#090B10",
"underlineColor": "#84ffff", "underlineColor": "#84ffff",
"underlinedTabBackground": "#1A1C25" "underlinedTabBackground": "#1A1C25",
"underlinedTabForeground": "#FFFFFF"
}, },
"Desktop.background": "#0F111A", "Desktop.background": "#0F111A",
"DialogWrapper.southPanelBackground": "#0F111A", "DialogWrapper.southPanelBackground": "#0F111A",
@@ -198,15 +218,17 @@
}, },
"EditorTabs": { "EditorTabs": {
"borderColor": "#181A1F", "borderColor": "#181A1F",
"hoverBackground": "#1F2233",
"hoverColor": "#1F2233", "hoverColor": "#1F2233",
"hoverMaskColor": "#1F2233", "hoverMaskColor": "#1F2233",
"inactiveMaskColor": "#0F111A", "inactiveMaskColor": "#0F111A",
"inactiveColoredFileBackground": "#0F111A2", "inactiveColoredFileBackground": "#0F111A",
"inactiveUnderlineColor": "#464B5D", "inactiveUnderlineColor": "#464B5D",
"selectedForeground": "#8F93A2", "selectedForeground": "#8F93A2",
"selectedBackground": "#1A1C25", "selectedBackground": "#1A1C25",
"underlineColor": "#84ffff", "underlineColor": "#84ffff",
"underlinedTabBackground": "#1A1C25" "underlinedTabBackground": "#1A1C25",
"underlinedTabForeground": "#FFFFFF"
}, },
"EditorGroupsTabs": { "EditorGroupsTabs": {
"background": "#0F111A", "background": "#0F111A",
@@ -246,12 +268,13 @@
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionBackground": "#1A1C25" "selectionBackground": "#1A1C25"
}, },
"GotItTooltip.borderColor": "#090B10",
"Group": { "Group": {
"disabledSeparatorColor": "#0F111A", "disabledSeparatorColor": "#0F111A",
"separatorColor": "#0F111A" "separatorColor": "#0F111A"
}, },
"GutterTooltip": { "GutterTooltip": {
"infoForeground": "#8F93A2", "infoForeground": "#4B526D",
"lineSeparatorColor": "#0F111A" "lineSeparatorColor": "#0F111A"
}, },
"HeaderColor": { "HeaderColor": {
@@ -288,7 +311,8 @@
"disabledText": "#464B5D", "disabledText": "#464B5D",
"foreground": "#8F93A2", "foreground": "#8F93A2",
"infoForeground": "#4B526D", "infoForeground": "#4B526D",
"selectedForeground": "#FFFFFF" "selectedForeground": "#FFFFFF",
"selectedDisabledForeground": "#8F93A2"
}, },
"Link": { "Link": {
"activeForeground": "#84ffff", "activeForeground": "#84ffff",
@@ -301,10 +325,12 @@
"List": { "List": {
"background": "#181A1F", "background": "#181A1F",
"foreground": "#8F93A2", "foreground": "#8F93A2",
"hoverBackground": "#717CB416",
"hoverInactiveBackground": "#1A1C25",
"selectionBackground": "#23263250", "selectionBackground": "#23263250",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#717CB430" "selectionInactiveBackground": "#717CB416"
}, },
"material": { "material": {
"background": "#0F111A", "background": "#0F111A",
@@ -409,7 +435,7 @@
"ParameterInfo": { "ParameterInfo": {
"background": "#181A1F", "background": "#181A1F",
"borderColor": "#1A1C25", "borderColor": "#1A1C25",
"currentOverloadBackground": "#1A1C25", "currentOverloadBackground": "#1F2233",
"currentParameterForeground": "#84ffff", "currentParameterForeground": "#84ffff",
"disabledForeground": "#464B5D", "disabledForeground": "#464B5D",
"foreground": "#8F93A2", "foreground": "#8F93A2",
@@ -429,7 +455,8 @@
"background": "#0F111A", "background": "#0F111A",
"disabledForeground": "#464B5D", "disabledForeground": "#464B5D",
"eapTagBackground": "#1F2233", "eapTagBackground": "#1F2233",
"lightSelectionBackground": "#232632", "hoverBackground": "#717CB416",
"lightSelectionBackground": "#1A1C25",
"paidTagBackground": "#1F2233", "paidTagBackground": "#1F2233",
"selectionBackground": "#232632", "selectionBackground": "#232632",
"tagForeground": "#84ffff", "tagForeground": "#84ffff",
@@ -442,7 +469,7 @@
"installFocusedBackground": "#1F2233", "installFocusedBackground": "#1F2233",
"installFillForeground": "#464B5D", "installFillForeground": "#464B5D",
"installFillBackground": "#191A21", "installFillBackground": "#191A21",
"updateBackground": "#191A21", "updateBackground": "#84ffff",
"updateBorderColor": "#191A21", "updateBorderColor": "#191A21",
"updateForeground": "#8F93A2" "updateForeground": "#8F93A2"
}, },
@@ -517,6 +544,7 @@
"selectionBackground": "#232632", "selectionBackground": "#232632",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"ScreenView.borderColor": "#0F111A",
"ScrollBar": { "ScrollBar": {
"background": "#0F111A", "background": "#0F111A",
"hoverThumbBorderColor": "#84ffff", "hoverThumbBorderColor": "#84ffff",
@@ -576,9 +604,18 @@
}, },
"SearchMatch": { "SearchMatch": {
"endBackground": "#84ffff", "endBackground": "#84ffff",
"startBackground": "#84ffff" "startBackground": "#84ffff",
"endColor": "#84ffff",
"startColor": "#84ffff"
}, },
"SearchField.errorBackground": "#090B10", "SearchField.errorBackground": "#090B10",
"SearchOption": {
"selectedBackground": "#1A1C25"
},
"SearchResults": {
"Ordinal.File.Foreground": "#4B526D",
"Repeated.File.Foreground": "#8F93A2"
},
"Separator": { "Separator": {
"background": "#181A1F", "background": "#181A1F",
"foreground": "#181A1F", "foreground": "#181A1F",
@@ -616,7 +653,9 @@
}, },
"SplitPaneDivider.draggingColor": "#181A1F", "SplitPaneDivider.draggingColor": "#181A1F",
"StatusBar": { "StatusBar": {
"borderColor": "#0F111A" "borderColor": "#0F111A",
"hoverBackground": "#1F2233",
"LightEditBackground": "#1A1C25"
}, },
"TabbedPane": { "TabbedPane": {
"background": "#0F111A", "background": "#0F111A",
@@ -643,9 +682,11 @@
}, },
"TabbedPane.mt.tab.background": "#090B10", "TabbedPane.mt.tab.background": "#090B10",
"Table": { "Table": {
"alternativeRowBackground": "#090B10",
"background": "#0F111A", "background": "#0F111A",
"cellNoFocusBorder": "10,5,10,5", "cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5",
"disabledForeground": "#464B5D",
"dropLineColor": "#84ffff", "dropLineColor": "#84ffff",
"dropLineShortColor": "#84ffff", "dropLineShortColor": "#84ffff",
"focusCellBackground": "#1A1C25", "focusCellBackground": "#1A1C25",
@@ -653,6 +694,8 @@
"foreground": "#8F93A2", "foreground": "#8F93A2",
"gridColor": "#0F111A", "gridColor": "#0F111A",
"highlightOuter": "#1A1C25", "highlightOuter": "#1A1C25",
"hoverBackground": "#717CB416",
"hoverInactiveBackground": "#1A1C25",
"lightSelectionForeground": "#FFFFFF", "lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#4B526D", "lightSelectionInactiveForeground": "#4B526D",
"lightSelectionInactiveBackground": "#181A1F", "lightSelectionInactiveBackground": "#181A1F",
@@ -729,8 +772,8 @@
"ToolTip": { "ToolTip": {
"Actions.background": "#0F111A", "Actions.background": "#0F111A",
"Actions.infoForeground": "#4B526D", "Actions.infoForeground": "#4B526D",
"background": "#0F111A", "background": "#090B10",
"borderColor": "#1F2233", "borderColor": "#0F111A",
"foreground": "#8F93A2", "foreground": "#8F93A2",
"infoForeground": "#4B526D", "infoForeground": "#4B526D",
"separatorColor": "#0F111A", "separatorColor": "#0F111A",
@@ -751,50 +794,93 @@
"background": "#0F111A" "background": "#0F111A"
}, },
"HeaderTab": { "HeaderTab": {
"borderColor": "#1F2233",
"hoverBackground": "#1F2233", "hoverBackground": "#1F2233",
"hoverInactiveBackground": "#181A1F", "hoverInactiveBackground": "#1F2233",
"inactiveUnderlineColor": "#84ffff", "inactiveUnderlineColor": "#84ffff",
"selectedBackground": "#090B10", "selectedBackground": "#090B10",
"selectedInactiveBackground": "#090B10", "selectedInactiveBackground": "#090B10",
"underlineColor": "#84ffff", "underlineColor": "#84ffff",
"underlinedTabBackground": "#1F2233", "underlinedTabBackground": "#1A1C25",
"underlinedTabInactiveBackground": "#181A1F" "underlinedTabInactiveBackground": "#181A1F",
"underlinedTabForeground": "#FFFFFF",
"underlinedTabInactiveForeground": "#8F93A2"
} }
}, },
"Tree": { "Tree": {
"background": "#090B10", "background": "#090B10",
"foreground": "#4B526D", "foreground": "#4B526D",
"hash": "#0F111A", "hash": "#0F111A",
"hoverBackground": "#717CB416",
"hoverInactiveBackground": "#1A1C25",
"modifiedItemForeground": "#84ffff", "modifiedItemForeground": "#84ffff",
"rowHeight": 28, "rowHeight": 28,
"selectionBackground": "#717CB430", "selectionBackground": "#717CB416",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#717CB430", "selectionInactiveBackground": "#717CB416",
"textBackground": "#090B10" "textBackground": "#090B10"
}, },
"Tree.leftChildIndent": 10, "Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5, "Tree.rightChildIndent": 5,
"UiDesigner": { "UIDesigner": {
"Activity.borderColor": "#0F111A", "Activity.borderColor": "#0F111A",
"ColorPicker.background": "#0F111A", "Canvas.background": "#090B10",
"ColorPicker.foreground": "#8F93A2", "ColorPicker": {
"Component.borderColor": "#0F111A", "background": "#0F111A",
"Component.background": "#0F111A", "foreground": "#8F93A2"
"Component.foreground": "#8F93A2", },
"Connector.borderColor": "#0F111A", "Component": {
"Connector.hoverBorderColor": "#1F2233", "borderColor": "#0F111A",
"background": "#0F111A",
"foreground": "#8F93A2",
"hoverBorderColor": "#1F2233"
},
"Connector": {
"borderColor": "#0F111A",
"hoverBorderColor": "#1F2233"
},
"Canvas.background": "#090B10", "Canvas.background": "#090B10",
"highStroke.foreground": "#8F93A2", "highStroke.foreground": "#8F93A2",
"Label.foreground": "#4B526D", "Label.foreground": "#4B526D",
"List.selectionBackground": "#717CB430", "List.selectionBackground": "#717CB416",
"Panel.borderColor": "#0F111A", "motion": {
"Panel.background": "#0F111A", "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", "percent.foreground": "#8F93A2",
"Placeholder.background": "#0F111A", "Placeholder": {
"Placeholder.borderColor": "#0F111A", "background": "#0F111A",
"Placeholder.foreground": "#8F93A2", "borderColor": "#0F111A",
"Placeholder.selectedForeground": "#FFFFFF", "foreground": "#8F93A2",
"selectedForeground": "#FFFFFF"
},
"Preview.background": "#0F111A", "Preview.background": "#0F111A",
"stroke.acceleratorForeground": "#4B526D" "stroke.acceleratorForeground": "#4B526D"
}, },
@@ -828,7 +914,8 @@
}, },
"Log": { "Log": {
"Commit.unmatchedForeground": "#4B526D", "Commit.unmatchedForeground": "#4B526D",
"Commit.currentBranchBackground": "#181A1F" "Commit.currentBranchBackground": "#181A1F",
"Commit.hoveredBackground": "#717CB416"
}, },
"RefLabel": { "RefLabel": {
"foreground": "#FFFFFF", "foreground": "#FFFFFF",
@@ -840,16 +927,22 @@
"foreground": "#8F93A2" "foreground": "#8F93A2"
}, },
"WelcomeScreen": { "WelcomeScreen": {
"AssociatedComponent.background": "#0F111A",
"background": "#0F111A", "background": "#0F111A",
"borderColor": "#0F111A", "borderColor": "#0F111A",
"captionBackground": "#090B10", "captionBackground": "#090B10",
"captionForeground": "#8F93A2", "captionForeground": "#8F93A2",
"Details.background": "#0F111A",
"footerBackground": "#090B10", "footerBackground": "#090B10",
"footerForeground": "#8F93A2", "footerForeground": "#8F93A2",
"headerBackground": "#0F111A", "headerBackground": "#0F111A",
"headerForeground": "#8F93A2", "headerForeground": "#8F93A2",
"List.background": "#090B10",
"separatorColor": "#0F111A", "separatorColor": "#0F111A",
"SidePanel.background": "#181A1F",
"Projects": { "Projects": {
"actions.background": "#090B10",
"actions.selectionBackground": "#1F2233",
"background": "#181A1F", "background": "#181A1F",
"selectionBackground": "#232632", "selectionBackground": "#232632",
"selectionInactiveBackground": "#181A1F" "selectionInactiveBackground": "#181A1F"

View File

@@ -3,6 +3,12 @@
"dark": true, "dark": true,
"author": "Mallowigi", "author": "Mallowigi",
"editorScheme": "/colors/Material Deep Ocean.xml", "editorScheme": "/colors/Material Deep Ocean.xml",
"emptyFrameBackground": {
"anchor": "center",
"image": "/walls/deepocean.svg",
"fill": "scale",
"transparency": 50
},
"ui": { "ui": {
"*": { "*": {
"acceleratorSelectionForeground": "#4B526D", "acceleratorSelectionForeground": "#4B526D",
@@ -72,7 +78,10 @@
"Tooltip.borderColor": "#0F111A", "Tooltip.borderColor": "#0F111A",
"Tooltip.background": "#090B10" "Tooltip.background": "#090B10"
}, },
"Content.background": "#090B10", "Content": {
"background": "#090B10",
"selectionBackground": "#232632"
},
"CheckBox": { "CheckBox": {
"background": "#0F111A", "background": "#0F111A",
"disabledText": "#464B5D", "disabledText": "#464B5D",
@@ -89,6 +98,14 @@
"selectionBackground": "#232632", "selectionBackground": "#232632",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"CodeWithMe": {
"Avatar.foreground": "#8F93A2",
"AccessEnabled": {
"accessDot": "#84ffff",
"dropdownBorder": "#181A1F",
"pillBackground": "$second"
}
},
"ColorChooser": { "ColorChooser": {
"background": "#0F111A", "background": "#0F111A",
"foreground": "#8F93A2", "foreground": "#8F93A2",
@@ -104,6 +121,7 @@
}, },
"background": "#0F111A", "background": "#0F111A",
"buttonBackground": "#191A21", "buttonBackground": "#191A21",
"darcula.hoveredArrowButtonForeground": "#84ffff",
"disabledForeground": "#464B5D", "disabledForeground": "#464B5D",
"foreground": "#8F93A2", "foreground": "#8F93A2",
"modifiedItemForeground": "#84ffff", "modifiedItemForeground": "#84ffff",
@@ -168,11 +186,13 @@
"hoverBackground": "#1A1C25", "hoverBackground": "#1A1C25",
"hoverColor": "#0F111A", "hoverColor": "#0F111A",
"hoverMaskColor": "#1F2233", "hoverMaskColor": "#1F2233",
"inactiveColoredTabBackground": "#0F111A",
"inactiveColoredFileBackground": "#191A21", "inactiveColoredFileBackground": "#191A21",
"inactiveUnderlineColor": "#464B5D", "inactiveUnderlineColor": "#84ffff",
"inactiveMaskColor": "#0F111A", "inactiveMaskColor": "#0F111A",
"underlineColor": "#84ffff", "underlineColor": "#84ffff",
"underlinedTabBackground": "#1A1C25" "underlinedTabBackground": "#1A1C25",
"underlinedTabForeground": "#FFFFFF"
}, },
"Desktop.background": "#0F111A", "Desktop.background": "#0F111A",
"DialogWrapper.southPanelBackground": "#0F111A", "DialogWrapper.southPanelBackground": "#0F111A",
@@ -198,15 +218,17 @@
}, },
"EditorTabs": { "EditorTabs": {
"borderColor": "#181A1F", "borderColor": "#181A1F",
"hoverBackground": "#1F2233",
"hoverColor": "#1F2233", "hoverColor": "#1F2233",
"hoverMaskColor": "#1F2233", "hoverMaskColor": "#1F2233",
"inactiveMaskColor": "#0F111A", "inactiveMaskColor": "#0F111A",
"inactiveColoredFileBackground": "#0F111A2", "inactiveColoredFileBackground": "#0F111A",
"inactiveUnderlineColor": "#464B5D", "inactiveUnderlineColor": "#464B5D",
"selectedForeground": "#8F93A2", "selectedForeground": "#8F93A2",
"selectedBackground": "#1A1C25", "selectedBackground": "#1A1C25",
"underlineColor": "#84ffff", "underlineColor": "#84ffff",
"underlinedTabBackground": "#1A1C25" "underlinedTabBackground": "#1A1C25",
"underlinedTabForeground": "#FFFFFF"
}, },
"EditorGroupsTabs": { "EditorGroupsTabs": {
"background": "#0F111A", "background": "#0F111A",
@@ -246,12 +268,13 @@
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionBackground": "#1A1C25" "selectionBackground": "#1A1C25"
}, },
"GotItTooltip.borderColor": "#090B10",
"Group": { "Group": {
"disabledSeparatorColor": "#0F111A", "disabledSeparatorColor": "#0F111A",
"separatorColor": "#0F111A" "separatorColor": "#0F111A"
}, },
"GutterTooltip": { "GutterTooltip": {
"infoForeground": "#8F93A2", "infoForeground": "#4B526D",
"lineSeparatorColor": "#0F111A" "lineSeparatorColor": "#0F111A"
}, },
"HeaderColor": { "HeaderColor": {
@@ -288,7 +311,8 @@
"disabledText": "#464B5D", "disabledText": "#464B5D",
"foreground": "#8F93A2", "foreground": "#8F93A2",
"infoForeground": "#4B526D", "infoForeground": "#4B526D",
"selectedForeground": "#FFFFFF" "selectedForeground": "#FFFFFF",
"selectedDisabledForeground": "#8F93A2"
}, },
"Link": { "Link": {
"activeForeground": "#84ffff", "activeForeground": "#84ffff",
@@ -301,10 +325,12 @@
"List": { "List": {
"background": "#181A1F", "background": "#181A1F",
"foreground": "#8F93A2", "foreground": "#8F93A2",
"hoverBackground": "#717CB416",
"hoverInactiveBackground": "#1A1C25",
"selectionBackground": "#23263250", "selectionBackground": "#23263250",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#717CB430" "selectionInactiveBackground": "#717CB416"
}, },
"material": { "material": {
"background": "#0F111A", "background": "#0F111A",
@@ -409,7 +435,7 @@
"ParameterInfo": { "ParameterInfo": {
"background": "#181A1F", "background": "#181A1F",
"borderColor": "#1A1C25", "borderColor": "#1A1C25",
"currentOverloadBackground": "#1A1C25", "currentOverloadBackground": "#1F2233",
"currentParameterForeground": "#84ffff", "currentParameterForeground": "#84ffff",
"disabledForeground": "#464B5D", "disabledForeground": "#464B5D",
"foreground": "#8F93A2", "foreground": "#8F93A2",
@@ -429,7 +455,8 @@
"background": "#0F111A", "background": "#0F111A",
"disabledForeground": "#464B5D", "disabledForeground": "#464B5D",
"eapTagBackground": "#1F2233", "eapTagBackground": "#1F2233",
"lightSelectionBackground": "#232632", "hoverBackground": "#717CB416",
"lightSelectionBackground": "#1A1C25",
"paidTagBackground": "#1F2233", "paidTagBackground": "#1F2233",
"selectionBackground": "#232632", "selectionBackground": "#232632",
"tagForeground": "#84ffff", "tagForeground": "#84ffff",
@@ -442,7 +469,7 @@
"installFocusedBackground": "#1F2233", "installFocusedBackground": "#1F2233",
"installFillForeground": "#464B5D", "installFillForeground": "#464B5D",
"installFillBackground": "#191A21", "installFillBackground": "#191A21",
"updateBackground": "#191A21", "updateBackground": "#84ffff",
"updateBorderColor": "#191A21", "updateBorderColor": "#191A21",
"updateForeground": "#8F93A2" "updateForeground": "#8F93A2"
}, },
@@ -517,6 +544,7 @@
"selectionBackground": "#232632", "selectionBackground": "#232632",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"ScreenView.borderColor": "#0F111A",
"ScrollBar": { "ScrollBar": {
"background": "#0F111A", "background": "#0F111A",
"hoverThumbBorderColor": "#84ffff", "hoverThumbBorderColor": "#84ffff",
@@ -576,9 +604,18 @@
}, },
"SearchMatch": { "SearchMatch": {
"endBackground": "#84ffff", "endBackground": "#84ffff",
"startBackground": "#84ffff" "startBackground": "#84ffff",
"endColor": "#84ffff",
"startColor": "#84ffff"
}, },
"SearchField.errorBackground": "#090B10", "SearchField.errorBackground": "#090B10",
"SearchOption": {
"selectedBackground": "#1A1C25"
},
"SearchResults": {
"Ordinal.File.Foreground": "#4B526D",
"Repeated.File.Foreground": "#8F93A2"
},
"Separator": { "Separator": {
"background": "#181A1F", "background": "#181A1F",
"foreground": "#181A1F", "foreground": "#181A1F",
@@ -616,7 +653,9 @@
}, },
"SplitPaneDivider.draggingColor": "#181A1F", "SplitPaneDivider.draggingColor": "#181A1F",
"StatusBar": { "StatusBar": {
"borderColor": "#0F111A" "borderColor": "#0F111A",
"hoverBackground": "#1F2233",
"LightEditBackground": "#1A1C25"
}, },
"TabbedPane": { "TabbedPane": {
"background": "#0F111A", "background": "#0F111A",
@@ -643,9 +682,11 @@
}, },
"TabbedPane.mt.tab.background": "#0F111A", "TabbedPane.mt.tab.background": "#0F111A",
"Table": { "Table": {
"alternativeRowBackground": "#090B10",
"background": "#0F111A", "background": "#0F111A",
"cellNoFocusBorder": "10,5,10,5", "cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5",
"disabledForeground": "#464B5D",
"dropLineColor": "#84ffff", "dropLineColor": "#84ffff",
"dropLineShortColor": "#84ffff", "dropLineShortColor": "#84ffff",
"focusCellBackground": "#1A1C25", "focusCellBackground": "#1A1C25",
@@ -653,6 +694,8 @@
"foreground": "#8F93A2", "foreground": "#8F93A2",
"gridColor": "#0F111A", "gridColor": "#0F111A",
"highlightOuter": "#1A1C25", "highlightOuter": "#1A1C25",
"hoverBackground": "#717CB416",
"hoverInactiveBackground": "#1A1C25",
"lightSelectionForeground": "#FFFFFF", "lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#4B526D", "lightSelectionInactiveForeground": "#4B526D",
"lightSelectionInactiveBackground": "#181A1F", "lightSelectionInactiveBackground": "#181A1F",
@@ -729,8 +772,8 @@
"ToolTip": { "ToolTip": {
"Actions.background": "#0F111A", "Actions.background": "#0F111A",
"Actions.infoForeground": "#4B526D", "Actions.infoForeground": "#4B526D",
"background": "#0F111A", "background": "#090B10",
"borderColor": "#1F2233", "borderColor": "#0F111A",
"foreground": "#8F93A2", "foreground": "#8F93A2",
"infoForeground": "#4B526D", "infoForeground": "#4B526D",
"separatorColor": "#0F111A", "separatorColor": "#0F111A",
@@ -751,50 +794,93 @@
"background": "#0F111A" "background": "#0F111A"
}, },
"HeaderTab": { "HeaderTab": {
"borderColor": "#1F2233",
"hoverBackground": "#1F2233", "hoverBackground": "#1F2233",
"hoverInactiveBackground": "#181A1F", "hoverInactiveBackground": "#1F2233",
"inactiveUnderlineColor": "#84ffff", "inactiveUnderlineColor": "#84ffff",
"selectedBackground": "#090B10", "selectedBackground": "#090B10",
"selectedInactiveBackground": "#090B10", "selectedInactiveBackground": "#090B10",
"underlineColor": "#84ffff", "underlineColor": "#84ffff",
"underlinedTabBackground": "#1F2233", "underlinedTabBackground": "#1A1C25",
"underlinedTabInactiveBackground": "#181A1F" "underlinedTabInactiveBackground": "#181A1F",
"underlinedTabForeground": "#FFFFFF",
"underlinedTabInactiveForeground": "#8F93A2"
} }
}, },
"Tree": { "Tree": {
"background": "#0F111A", "background": "#0F111A",
"foreground": "#4B526D", "foreground": "#4B526D",
"hash": "#0F111A", "hash": "#0F111A",
"hoverBackground": "#717CB416",
"hoverInactiveBackground": "#1A1C25",
"modifiedItemForeground": "#84ffff", "modifiedItemForeground": "#84ffff",
"rowHeight": 28, "rowHeight": 28,
"selectionBackground": "#717CB430", "selectionBackground": "#717CB416",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#717CB430", "selectionInactiveBackground": "#717CB416",
"textBackground": "#0F111A" "textBackground": "#0F111A"
}, },
"Tree.leftChildIndent": 10, "Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5, "Tree.rightChildIndent": 5,
"UiDesigner": { "UIDesigner": {
"Activity.borderColor": "#0F111A", "Activity.borderColor": "#0F111A",
"ColorPicker.background": "#0F111A", "Canvas.background": "#090B10",
"ColorPicker.foreground": "#8F93A2", "ColorPicker": {
"Component.borderColor": "#0F111A", "background": "#0F111A",
"Component.background": "#0F111A", "foreground": "#8F93A2"
"Component.foreground": "#8F93A2", },
"Connector.borderColor": "#0F111A", "Component": {
"Connector.hoverBorderColor": "#1F2233", "borderColor": "#0F111A",
"background": "#0F111A",
"foreground": "#8F93A2",
"hoverBorderColor": "#1F2233"
},
"Connector": {
"borderColor": "#0F111A",
"hoverBorderColor": "#1F2233"
},
"Canvas.background": "#090B10", "Canvas.background": "#090B10",
"highStroke.foreground": "#8F93A2", "highStroke.foreground": "#8F93A2",
"Label.foreground": "#4B526D", "Label.foreground": "#4B526D",
"List.selectionBackground": "#717CB430", "List.selectionBackground": "#717CB416",
"Panel.borderColor": "#0F111A", "motion": {
"Panel.background": "#0F111A", "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", "percent.foreground": "#8F93A2",
"Placeholder.background": "#0F111A", "Placeholder": {
"Placeholder.borderColor": "#0F111A", "background": "#0F111A",
"Placeholder.foreground": "#8F93A2", "borderColor": "#0F111A",
"Placeholder.selectedForeground": "#FFFFFF", "foreground": "#8F93A2",
"selectedForeground": "#FFFFFF"
},
"Preview.background": "#0F111A", "Preview.background": "#0F111A",
"stroke.acceleratorForeground": "#4B526D" "stroke.acceleratorForeground": "#4B526D"
}, },
@@ -828,7 +914,8 @@
}, },
"Log": { "Log": {
"Commit.unmatchedForeground": "#4B526D", "Commit.unmatchedForeground": "#4B526D",
"Commit.currentBranchBackground": "#181A1F" "Commit.currentBranchBackground": "#181A1F",
"Commit.hoveredBackground": "#717CB416"
}, },
"RefLabel": { "RefLabel": {
"foreground": "#FFFFFF", "foreground": "#FFFFFF",
@@ -840,16 +927,22 @@
"foreground": "#8F93A2" "foreground": "#8F93A2"
}, },
"WelcomeScreen": { "WelcomeScreen": {
"AssociatedComponent.background": "#0F111A",
"background": "#0F111A", "background": "#0F111A",
"borderColor": "#0F111A", "borderColor": "#0F111A",
"captionBackground": "#090B10", "captionBackground": "#090B10",
"captionForeground": "#8F93A2", "captionForeground": "#8F93A2",
"Details.background": "#0F111A",
"footerBackground": "#090B10", "footerBackground": "#090B10",
"footerForeground": "#8F93A2", "footerForeground": "#8F93A2",
"headerBackground": "#0F111A", "headerBackground": "#0F111A",
"headerForeground": "#8F93A2", "headerForeground": "#8F93A2",
"List.background": "#090B10",
"separatorColor": "#0F111A", "separatorColor": "#0F111A",
"SidePanel.background": "#181A1F",
"Projects": { "Projects": {
"actions.background": "#090B10",
"actions.selectionBackground": "#1F2233",
"background": "#181A1F", "background": "#181A1F",
"selectionBackground": "#232632", "selectionBackground": "#232632",
"selectionInactiveBackground": "#181A1F" "selectionInactiveBackground": "#181A1F"

View File

@@ -3,24 +3,30 @@
"dark": false, "dark": false,
"author": "Mallowigi", "author": "Mallowigi",
"editorScheme": "/colors/Material Lighter.xml", "editorScheme": "/colors/Material Lighter.xml",
"emptyFrameBackground": {
"anchor": "center",
"image": "/walls/lighter.svg",
"fill": "scale",
"transparency": 50
},
"ui": { "ui": {
"*": { "*": {
"acceleratorSelectionForeground": "#94A7B0", "acceleratorSelectionForeground": "#94A7B0",
"background": "#FAFAFA", "background": "#FAFAFA",
"borderColor": "#d3e1e8", "borderColor": "#d3e1e8",
"disabledBackground": "#CCD7DA", "disabledBackground": "#eae8e8",
"disabledForeground": "#D2D4D5", "disabledForeground": "#D2D4D5",
"disabledText": "#D2D4D5", "disabledText": "#D2D4D5",
"focusColor": "#E7E7E8", "focusColor": "#E7E7E8",
"focusedBorderColor": "#00BCD4", "focusedBorderColor": "#00BCD4",
"foreground": "#546E7A", "foreground": "#546E7A",
"inactiveBackground": "#CCD7DA", "inactiveBackground": "#eae8e8",
"inactiveForeground": "#94A7B0", "inactiveForeground": "#94A7B0",
"infoForeground": "#94A7B0", "infoForeground": "#94A7B0",
"selectionBackground": "#80CBC4", "selectionBackground": "#80CBC4",
"selectionBackgroundInactive": "#FFFFFF", "selectionBackgroundInactive": "#eae8e8",
"selectionForeground": "#546e7a", "selectionForeground": "#546e7a",
"selectionInactiveBackground": "#FFFFFF", "selectionInactiveBackground": "#eae8e8",
"separatorColor": "#d3e1e8" "separatorColor": "#d3e1e8"
}, },
"activeCaption": "#FAFAFA", "activeCaption": "#FAFAFA",
@@ -72,7 +78,10 @@
"Tooltip.borderColor": "#d3e1e8", "Tooltip.borderColor": "#d3e1e8",
"Tooltip.background": "#eae8e8" "Tooltip.background": "#eae8e8"
}, },
"Content.background": "#EEEEEE", "Content": {
"background": "#F4F4F4",
"selectionBackground": "#80CBC4"
},
"CheckBox": { "CheckBox": {
"background": "#FAFAFA", "background": "#FAFAFA",
"disabledText": "#D2D4D5", "disabledText": "#D2D4D5",
@@ -89,6 +98,14 @@
"selectionBackground": "#80CBC4", "selectionBackground": "#80CBC4",
"selectionForeground": "#546e7a" "selectionForeground": "#546e7a"
}, },
"CodeWithMe": {
"Avatar.foreground": "#546E7A",
"AccessEnabled": {
"accessDot": "#00BCD4",
"dropdownBorder": "#eae8e8",
"pillBackground": "$second"
}
},
"ColorChooser": { "ColorChooser": {
"background": "#FAFAFA", "background": "#FAFAFA",
"foreground": "#546E7A", "foreground": "#546E7A",
@@ -102,19 +119,20 @@
"iconColor": "#546E7A", "iconColor": "#546E7A",
"nonEditableBackground": "#FAFAFA" "nonEditableBackground": "#FAFAFA"
}, },
"background": "#EEEEEE", "background": "#F4F4F4",
"buttonBackground": "#F3F4F5", "buttonBackground": "#F3F4F5",
"darcula.hoveredArrowButtonForeground": "#00BCD4",
"disabledForeground": "#D2D4D5", "disabledForeground": "#D2D4D5",
"foreground": "#546E7A", "foreground": "#546E7A",
"modifiedItemForeground": "#00BCD4", "modifiedItemForeground": "#00BCD4",
"nonEditableBackground": "#FFFFFF", "nonEditableBackground": "#eae8e8",
"padding": "5,5,5,5", "padding": "5,5,5,5",
"selectionBackground": "#E7E7E8", "selectionBackground": "#E7E7E8",
"selectionForeground": "#546e7a" "selectionForeground": "#546e7a"
}, },
"ComboPopup.border": "#d3e1e8", "ComboPopup.border": "#d3e1e8",
"CompletionPopup": { "CompletionPopup": {
"background": "#FFFFFF", "background": "#eae8e8",
"foreground": "#546E7A", "foreground": "#546E7A",
"infoForeground": "#94A7B0", "infoForeground": "#94A7B0",
"matchForeground": "#00BCD4", "matchForeground": "#00BCD4",
@@ -166,13 +184,15 @@
"background": "#FAFAFA", "background": "#FAFAFA",
"borderColor": "#FAFAFA", "borderColor": "#FAFAFA",
"hoverBackground": "#E7E7E8", "hoverBackground": "#E7E7E8",
"hoverColor": "#EEEEEE", "hoverColor": "#F4F4F4",
"hoverMaskColor": "#E7E7E8", "hoverMaskColor": "#E7E7E8",
"inactiveColoredTabBackground": "#FAFAFA",
"inactiveColoredFileBackground": "#F3F4F5", "inactiveColoredFileBackground": "#F3F4F5",
"inactiveUnderlineColor": "#D2D4D5", "inactiveUnderlineColor": "#00BCD4",
"inactiveMaskColor": "#EEEEEE", "inactiveMaskColor": "#F4F4F4",
"underlineColor": "#00BCD4", "underlineColor": "#00BCD4",
"underlinedTabBackground": "#E7E7E8" "underlinedTabBackground": "#E7E7E8",
"underlinedTabForeground": "#546e7a"
}, },
"Desktop.background": "#FAFAFA", "Desktop.background": "#FAFAFA",
"DialogWrapper.southPanelBackground": "#FAFAFA", "DialogWrapper.southPanelBackground": "#FAFAFA",
@@ -183,12 +203,12 @@
"areaForeground": "#546E7A" "areaForeground": "#546E7A"
}, },
"Editor": { "Editor": {
"background": "#EEEEEE", "background": "#F4F4F4",
"foreground": "#546E7A", "foreground": "#546E7A",
"shortcutForeground": "#94A7B0" "shortcutForeground": "#94A7B0"
}, },
"EditorPane": { "EditorPane": {
"background": "#EEEEEE", "background": "#F4F4F4",
"caretForeground": "#00BCD4", "caretForeground": "#00BCD4",
"foreground": "#546E7A", "foreground": "#546E7A",
"inactiveBackground": "#FAFAFA", "inactiveBackground": "#FAFAFA",
@@ -197,20 +217,22 @@
"selectionForeground": "#546e7a" "selectionForeground": "#546e7a"
}, },
"EditorTabs": { "EditorTabs": {
"borderColor": "#FFFFFF", "borderColor": "#eae8e8",
"hoverBackground": "#E7E7E8",
"hoverColor": "#E7E7E8", "hoverColor": "#E7E7E8",
"hoverMaskColor": "#E7E7E8", "hoverMaskColor": "#E7E7E8",
"inactiveMaskColor": "#FAFAFA", "inactiveMaskColor": "#FAFAFA",
"inactiveColoredFileBackground": "#FAFAFA2", "inactiveColoredFileBackground": "#FAFAFA",
"inactiveUnderlineColor": "#D2D4D5", "inactiveUnderlineColor": "#D2D4D5",
"selectedForeground": "#546E7A", "selectedForeground": "#546E7A",
"selectedBackground": "#E7E7E8", "selectedBackground": "#E7E7E8",
"underlineColor": "#00BCD4", "underlineColor": "#00BCD4",
"underlinedTabBackground": "#E7E7E8" "underlinedTabBackground": "#E7E7E8",
"underlinedTabForeground": "#546e7a"
}, },
"EditorGroupsTabs": { "EditorGroupsTabs": {
"background": "#FAFAFA", "background": "#FAFAFA",
"borderColor": "#FFFFFF", "borderColor": "#eae8e8",
"hoverBackground": "#E7E7E8", "hoverBackground": "#E7E7E8",
"hoverColor": "#E7E7E8", "hoverColor": "#E7E7E8",
"inactiveUnderlineColor": "#00BCD4", "inactiveUnderlineColor": "#00BCD4",
@@ -221,7 +243,7 @@
"FileColor": { "FileColor": {
"Green": "#387002", "Green": "#387002",
"Blue": "#004BA0", "Blue": "#004BA0",
"Yellow": "#CCD7DA", "Yellow": "#eae8e8",
"Orange": "#B53D00", "Orange": "#B53D00",
"Violet": "#4D2C91", "Violet": "#4D2C91",
"Rose": "#A00037" "Rose": "#A00037"
@@ -238,7 +260,7 @@
}, },
"Focus.color": "#d3e1e8", "Focus.color": "#d3e1e8",
"FormattedTextField": { "FormattedTextField": {
"background": "#EEEEEE", "background": "#F4F4F4",
"caretForeground": "#00BCD4", "caretForeground": "#00BCD4",
"foreground": "#546E7A", "foreground": "#546E7A",
"inactiveBackground": "#F3F4F5", "inactiveBackground": "#F3F4F5",
@@ -246,17 +268,18 @@
"selectionForeground": "#546e7a", "selectionForeground": "#546e7a",
"selectionBackground": "#E7E7E8" "selectionBackground": "#E7E7E8"
}, },
"GotItTooltip.borderColor": "#eae8e8",
"Group": { "Group": {
"disabledSeparatorColor": "#d3e1e8", "disabledSeparatorColor": "#d3e1e8",
"separatorColor": "#d3e1e8" "separatorColor": "#d3e1e8"
}, },
"GutterTooltip": { "GutterTooltip": {
"infoForeground": "#546E7A", "infoForeground": "#94A7B0",
"lineSeparatorColor": "#FAFAFA" "lineSeparatorColor": "#FAFAFA"
}, },
"HeaderColor": { "HeaderColor": {
"active": "#FAFAFA", "active": "#FAFAFA",
"inactive": "#EEEEEE" "inactive": "#F4F4F4"
}, },
"HelpTooltip": { "HelpTooltip": {
"background": "#FAFAFA", "background": "#FAFAFA",
@@ -266,7 +289,7 @@
"shortcutForeground": "#94A7B0" "shortcutForeground": "#94A7B0"
}, },
"Hyperlink.linkColor": "#00BCD4", "Hyperlink.linkColor": "#00BCD4",
"inactiveCaption": "#FFFFFF", "inactiveCaption": "#eae8e8",
"inactiveCaptionBorder": "#FAFAFA", "inactiveCaptionBorder": "#FAFAFA",
"inactiveCaptionText": "#94A7B0", "inactiveCaptionText": "#94A7B0",
"info": "#94A7B0", "info": "#94A7B0",
@@ -288,7 +311,8 @@
"disabledText": "#D2D4D5", "disabledText": "#D2D4D5",
"foreground": "#546E7A", "foreground": "#546E7A",
"infoForeground": "#94A7B0", "infoForeground": "#94A7B0",
"selectedForeground": "#546e7a" "selectedForeground": "#546e7a",
"selectedDisabledForeground": "#546E7A"
}, },
"Link": { "Link": {
"activeForeground": "#00BCD4", "activeForeground": "#00BCD4",
@@ -299,17 +323,19 @@
}, },
"link.foreground": "#00BCD4", "link.foreground": "#00BCD4",
"List": { "List": {
"background": "#FFFFFF", "background": "#eae8e8",
"foreground": "#546E7A", "foreground": "#546E7A",
"hoverBackground": "#80CBC480",
"hoverInactiveBackground": "#E7E7E8",
"selectionBackground": "#80CBC450", "selectionBackground": "#80CBC450",
"selectionForeground": "#546e7a", "selectionForeground": "#546e7a",
"selectionInactiveForeground": "#546e7a", "selectionInactiveForeground": "#546e7a",
"selectionInactiveBackground": "#80CBC440" "selectionInactiveBackground": "#80CBC480"
}, },
"material": { "material": {
"background": "#FAFAFA", "background": "#FAFAFA",
"branchColor": "#546E7A", "branchColor": "#546E7A",
"contrast": "#EEEEEE", "contrast": "#F4F4F4",
"foreground": "#546E7A", "foreground": "#546E7A",
"mergeCommits": "#F3F4F5", "mergeCommits": "#F3F4F5",
"primaryColor": "#94A7B0", "primaryColor": "#94A7B0",
@@ -319,7 +345,7 @@
"tagColor": "#94A7B0" "tagColor": "#94A7B0"
}, },
"MemoryIndicator": { "MemoryIndicator": {
"allocatedBackground": "#FFFFFF", "allocatedBackground": "#eae8e8",
"usedColor": "#E7E7E8", "usedColor": "#E7E7E8",
"usedBackground": "#E7E7E8" "usedBackground": "#E7E7E8"
}, },
@@ -328,8 +354,8 @@
"acceleratorSelectionForeground": "#546e7a", "acceleratorSelectionForeground": "#546e7a",
"background": "#FAFAFA", "background": "#FAFAFA",
"border": "4,2,4,2", "border": "4,2,4,2",
"borderColor": "#FFFFFF", "borderColor": "#eae8e8",
"disabledBackground": "#FFFFFF", "disabledBackground": "#eae8e8",
"disabledForeground": "#D2D4D5", "disabledForeground": "#D2D4D5",
"foreground": "#546E7A", "foreground": "#546E7A",
"selectionBackground": "#80CBC4", "selectionBackground": "#80CBC4",
@@ -337,7 +363,7 @@
"separatorColor": "#d3e1e8" "separatorColor": "#d3e1e8"
}, },
"MenuBar": { "MenuBar": {
"background": "#EEEEEE", "background": "#F4F4F4",
"borderColor": "#FAFAFA", "borderColor": "#FAFAFA",
"disabledBackground": "#FAFAFA", "disabledBackground": "#FAFAFA",
"disabledForeground": "#D2D4D5", "disabledForeground": "#D2D4D5",
@@ -345,7 +371,7 @@
"highlight": "#FAFAFA", "highlight": "#FAFAFA",
"selectionBackground": "#80CBC4", "selectionBackground": "#80CBC4",
"selectionForeground": "#546e7a", "selectionForeground": "#546e7a",
"shadow": "#EEEEEE" "shadow": "#F4F4F4"
}, },
"MenuItem": { "MenuItem": {
"acceleratorForeground": "#94A7B0", "acceleratorForeground": "#94A7B0",
@@ -367,7 +393,7 @@
"background": "#FAFAFA" "background": "#FAFAFA"
}, },
"SearchField": { "SearchField": {
"background": "#EEEEEE" "background": "#F4F4F4"
} }
}, },
"NewPSD.warning": "#00BCD4", "NewPSD.warning": "#00BCD4",
@@ -407,7 +433,7 @@
"foreground": "#546E7A" "foreground": "#546E7A"
}, },
"ParameterInfo": { "ParameterInfo": {
"background": "#FFFFFF", "background": "#eae8e8",
"borderColor": "#E7E7E8", "borderColor": "#E7E7E8",
"currentOverloadBackground": "#E7E7E8", "currentOverloadBackground": "#E7E7E8",
"currentParameterForeground": "#00BCD4", "currentParameterForeground": "#00BCD4",
@@ -417,7 +443,7 @@
"lineSeparatorColor": "#E7E7E8" "lineSeparatorColor": "#E7E7E8"
}, },
"PasswordField": { "PasswordField": {
"background": "#EEEEEE", "background": "#F4F4F4",
"capsLockIconColor": "#00BCD4", "capsLockIconColor": "#00BCD4",
"caretForeground": "#00BCD4", "caretForeground": "#00BCD4",
"foreground": "#546E7A", "foreground": "#546E7A",
@@ -429,7 +455,8 @@
"background": "#FAFAFA", "background": "#FAFAFA",
"disabledForeground": "#D2D4D5", "disabledForeground": "#D2D4D5",
"eapTagBackground": "#E7E7E8", "eapTagBackground": "#E7E7E8",
"lightSelectionBackground": "#80CBC4", "hoverBackground": "#80CBC480",
"lightSelectionBackground": "#E7E7E8",
"paidTagBackground": "#E7E7E8", "paidTagBackground": "#E7E7E8",
"selectionBackground": "#80CBC4", "selectionBackground": "#80CBC4",
"tagForeground": "#00BCD4", "tagForeground": "#00BCD4",
@@ -442,16 +469,16 @@
"installFocusedBackground": "#E7E7E8", "installFocusedBackground": "#E7E7E8",
"installFillForeground": "#D2D4D5", "installFillForeground": "#D2D4D5",
"installFillBackground": "#F3F4F5", "installFillBackground": "#F3F4F5",
"updateBackground": "#F3F4F5", "updateBackground": "#00BCD4",
"updateBorderColor": "#F3F4F5", "updateBorderColor": "#F3F4F5",
"updateForeground": "#546E7A" "updateForeground": "#546E7A"
}, },
"SearchField": { "SearchField": {
"background": "#EEEEEE", "background": "#F4F4F4",
"borderColor": "#d3e1e8" "borderColor": "#d3e1e8"
}, },
"SectionHeader": { "SectionHeader": {
"background": "#FFFFFF", "background": "#eae8e8",
"foreground": "#546E7A" "foreground": "#546E7A"
}, },
"Tab": { "Tab": {
@@ -466,20 +493,20 @@
"borderColor": "#FAFAFA", "borderColor": "#FAFAFA",
"foreground": "#00BCD4" "foreground": "#00BCD4"
}, },
"borderColor": "#EEEEEE", "borderColor": "#F4F4F4",
"inactiveBorderColor": "#FAFAFA", "inactiveBorderColor": "#FAFAFA",
"innerBorderColor": "#FFFFFF", "innerBorderColor": "#eae8e8",
"Header": { "Header": {
"activeBackground": "#FAFAFA", "activeBackground": "#FAFAFA",
"inactiveBackground": "#EEEEEE" "inactiveBackground": "#F4F4F4"
}, },
"paintBorder": true, "paintBorder": true,
"separatorForeground": "#546E7A", "separatorForeground": "#546E7A",
"separatorColor": "#FFFFFF", "separatorColor": "#eae8e8",
"Toolbar": { "Toolbar": {
"Floating.background": "#EEEEEE", "Floating.background": "#F4F4F4",
"background": "#EEEEEE", "background": "#F4F4F4",
"borderColor": "#EEEEEE" "borderColor": "#F4F4F4"
} }
}, },
"PopupMenu": { "PopupMenu": {
@@ -517,6 +544,7 @@
"selectionBackground": "#80CBC4", "selectionBackground": "#80CBC4",
"selectionForeground": "#546e7a" "selectionForeground": "#546e7a"
}, },
"ScreenView.borderColor": "#d3e1e8",
"ScrollBar": { "ScrollBar": {
"background": "#FAFAFA", "background": "#FAFAFA",
"hoverThumbBorderColor": "#00BCD4", "hoverThumbBorderColor": "#00BCD4",
@@ -553,7 +581,7 @@
}, },
"SearchEverywhere": { "SearchEverywhere": {
"Advertiser": { "Advertiser": {
"background": "#EEEEEE", "background": "#F4F4F4",
"foreground": "#94A7B0" "foreground": "#94A7B0"
}, },
"Header": { "Header": {
@@ -565,7 +593,7 @@
}, },
"SearchField": { "SearchField": {
"background": "#FAFAFA", "background": "#FAFAFA",
"borderColor": "#EEEEEE", "borderColor": "#F4F4F4",
"infoForeground": "#94A7B0" "infoForeground": "#94A7B0"
}, },
"Tab": { "Tab": {
@@ -576,16 +604,25 @@
}, },
"SearchMatch": { "SearchMatch": {
"endBackground": "#00BCD4", "endBackground": "#00BCD4",
"startBackground": "#00BCD4" "startBackground": "#00BCD4",
"endColor": "#00BCD4",
"startColor": "#00BCD4"
}, },
"SearchField.errorBackground": "#eae8e8", "SearchField.errorBackground": "#eae8e8",
"SearchOption": {
"selectedBackground": "#E7E7E8"
},
"SearchResults": {
"Ordinal.File.Foreground": "#94A7B0",
"Repeated.File.Foreground": "#546E7A"
},
"Separator": { "Separator": {
"background": "#FFFFFF", "background": "#eae8e8",
"foreground": "#FFFFFF", "foreground": "#eae8e8",
"separatorColor": "#FFFFFF" "separatorColor": "#eae8e8"
}, },
"SidePanel": { "SidePanel": {
"background": "#EEEEEE" "background": "#F4F4F4"
}, },
"Slider": { "Slider": {
"background": "#FAFAFA", "background": "#FAFAFA",
@@ -593,7 +630,7 @@
"buttonColor": "#00BCD4", "buttonColor": "#00BCD4",
"foreground": "#546E7A", "foreground": "#546E7A",
"majorTickLength": 6, "majorTickLength": 6,
"tickColor": "#FFFFFF", "tickColor": "#eae8e8",
"trackColor": "#E7E7E8", "trackColor": "#E7E7E8",
"trackWidth": 7, "trackWidth": 7,
"thumb": "#00BCD4" "thumb": "#00BCD4"
@@ -612,11 +649,13 @@
}, },
"SplitPane": { "SplitPane": {
"background": "#FAFAFA", "background": "#FAFAFA",
"highlight": "#EEEEEE" "highlight": "#F4F4F4"
}, },
"SplitPaneDivider.draggingColor": "#FFFFFF", "SplitPaneDivider.draggingColor": "#eae8e8",
"StatusBar": { "StatusBar": {
"borderColor": "#FAFAFA" "borderColor": "#FAFAFA",
"hoverBackground": "#E7E7E8",
"LightEditBackground": "#E7E7E8"
}, },
"TabbedPane": { "TabbedPane": {
"background": "#FAFAFA", "background": "#FAFAFA",
@@ -641,11 +680,13 @@
"tabSelectionHeight": 2, "tabSelectionHeight": 2,
"underlineColor": "#00BCD4" "underlineColor": "#00BCD4"
}, },
"TabbedPane.mt.tab.background": "#EEEEEE", "TabbedPane.mt.tab.background": "#F4F4F4",
"Table": { "Table": {
"alternativeRowBackground": "#F4F4F4",
"background": "#FAFAFA", "background": "#FAFAFA",
"cellNoFocusBorder": "10,5,10,5", "cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5",
"disabledForeground": "#D2D4D5",
"dropLineColor": "#00BCD4", "dropLineColor": "#00BCD4",
"dropLineShortColor": "#00BCD4", "dropLineShortColor": "#00BCD4",
"focusCellBackground": "#E7E7E8", "focusCellBackground": "#E7E7E8",
@@ -653,33 +694,35 @@
"foreground": "#546E7A", "foreground": "#546E7A",
"gridColor": "#FAFAFA", "gridColor": "#FAFAFA",
"highlightOuter": "#E7E7E8", "highlightOuter": "#E7E7E8",
"hoverBackground": "#80CBC480",
"hoverInactiveBackground": "#E7E7E8",
"lightSelectionForeground": "#546e7a", "lightSelectionForeground": "#546e7a",
"lightSelectionInactiveForeground": "#94A7B0", "lightSelectionInactiveForeground": "#94A7B0",
"lightSelectionInactiveBackground": "#FFFFFF", "lightSelectionInactiveBackground": "#eae8e8",
"selectionBackground": "#E7E7E8", "selectionBackground": "#E7E7E8",
"selectionForeground": "#546e7a", "selectionForeground": "#546e7a",
"selectionInactiveBackground": "#E7E7E8", "selectionInactiveBackground": "#E7E7E8",
"selectionInactiveForeground": "#546e7a", "selectionInactiveForeground": "#546e7a",
"sortIconColor": "#546E7A", "sortIconColor": "#546E7A",
"stripeColor": "#EEEEEE" "stripeColor": "#F4F4F4"
}, },
"TableHeader": { "TableHeader": {
"background": "#FAFAFA", "background": "#FAFAFA",
"borderColor": "#FAFAFA", "borderColor": "#FAFAFA",
"bottomSeparatorColor": "#FFFFFF", "bottomSeparatorColor": "#eae8e8",
"cellBorder": "4,0,4,0", "cellBorder": "4,0,4,0",
"disabledForeground": "#D2D4D5", "disabledForeground": "#D2D4D5",
"foreground": "#546E7A", "foreground": "#546E7A",
"focusCellBackground": "#E7E7E8", "focusCellBackground": "#E7E7E8",
"focusCellForeground": "#546e7a", "focusCellForeground": "#546e7a",
"height": 25, "height": 25,
"separatorColor": "#FFFFFF" "separatorColor": "#eae8e8"
}, },
"text": "#94A7B0", "text": "#94A7B0",
"textInactiveText": "#94A7B0", "textInactiveText": "#94A7B0",
"textText": "#94A7B0", "textText": "#94A7B0",
"TextArea": { "TextArea": {
"background": "#EEEEEE", "background": "#F4F4F4",
"caretForeground": "#00BCD4", "caretForeground": "#00BCD4",
"foreground": "#546E7A", "foreground": "#546E7A",
"inactiveForeground": "#D2D4D5", "inactiveForeground": "#D2D4D5",
@@ -687,7 +730,7 @@
"selectionForeground": "#546e7a" "selectionForeground": "#546e7a"
}, },
"TextField": { "TextField": {
"background": "#EEEEEE", "background": "#F4F4F4",
"caretForeground": "#00BCD4", "caretForeground": "#00BCD4",
"foreground": "#546E7A", "foreground": "#546E7A",
"inactiveForeground": "#D2D4D5", "inactiveForeground": "#D2D4D5",
@@ -695,7 +738,7 @@
"selectionForeground": "#546e7a" "selectionForeground": "#546e7a"
}, },
"TextPane": { "TextPane": {
"background": "#EEEEEE", "background": "#F4F4F4",
"caretForeground": "#00BCD4", "caretForeground": "#00BCD4",
"foreground": "#546E7A", "foreground": "#546E7A",
"inactiveForeground": "#D2D4D5", "inactiveForeground": "#D2D4D5",
@@ -703,7 +746,7 @@
"selectionForeground": "#546e7a" "selectionForeground": "#546e7a"
}, },
"TitlePane": { "TitlePane": {
"background": "#EEEEEE", "background": "#F4F4F4",
"Button.hoverBackground": "#E7E7E8", "Button.hoverBackground": "#E7E7E8",
"inactiveBackground": "#FAFAFA", "inactiveBackground": "#FAFAFA",
"infoForeground": "#94A7B0", "infoForeground": "#94A7B0",
@@ -721,7 +764,7 @@
"onForeground": "#00BCD4" "onForeground": "#00BCD4"
}, },
"ToolBar": { "ToolBar": {
"background": "#EEEEEE", "background": "#F4F4F4",
"borderHandleColor": "#94A7B0", "borderHandleColor": "#94A7B0",
"floatingForeground": "#94A7B0", "floatingForeground": "#94A7B0",
"foreground": "#546E7A" "foreground": "#546E7A"
@@ -729,8 +772,8 @@
"ToolTip": { "ToolTip": {
"Actions.background": "#FAFAFA", "Actions.background": "#FAFAFA",
"Actions.infoForeground": "#94A7B0", "Actions.infoForeground": "#94A7B0",
"background": "#FAFAFA", "background": "#eae8e8",
"borderColor": "#E7E7E8", "borderColor": "#d3e1e8",
"foreground": "#546E7A", "foreground": "#546E7A",
"infoForeground": "#94A7B0", "infoForeground": "#94A7B0",
"separatorColor": "#d3e1e8", "separatorColor": "#d3e1e8",
@@ -740,61 +783,104 @@
"Button": { "Button": {
"hoverBackground": "#E7E7E8", "hoverBackground": "#E7E7E8",
"selectedForeground": "#546e7a", "selectedForeground": "#546e7a",
"selectedBackground": "#EEEEEE" "selectedBackground": "#F4F4F4"
}, },
"Header": { "Header": {
"background": "#FAFAFA", "background": "#FAFAFA",
"borderColor": "#FFFFFF", "borderColor": "#eae8e8",
"inactiveBackground": "#FAFAFA" "inactiveBackground": "#FAFAFA"
}, },
"HeaderCloseButton": { "HeaderCloseButton": {
"background": "#FAFAFA" "background": "#FAFAFA"
}, },
"HeaderTab": { "HeaderTab": {
"borderColor": "#E7E7E8",
"hoverBackground": "#E7E7E8", "hoverBackground": "#E7E7E8",
"hoverInactiveBackground": "#FFFFFF", "hoverInactiveBackground": "#E7E7E8",
"inactiveUnderlineColor": "#00BCD4", "inactiveUnderlineColor": "#00BCD4",
"selectedBackground": "#EEEEEE", "selectedBackground": "#F4F4F4",
"selectedInactiveBackground": "#EEEEEE", "selectedInactiveBackground": "#F4F4F4",
"underlineColor": "#00BCD4", "underlineColor": "#00BCD4",
"underlinedTabBackground": "#E7E7E8", "underlinedTabBackground": "#E7E7E8",
"underlinedTabInactiveBackground": "#FFFFFF" "underlinedTabInactiveBackground": "#eae8e8",
"underlinedTabForeground": "#546e7a",
"underlinedTabInactiveForeground": "#546E7A"
} }
}, },
"Tree": { "Tree": {
"background": "#EEEEEE", "background": "#F4F4F4",
"foreground": "#94A7B0", "foreground": "#94A7B0",
"hash": "#d3e1e8", "hash": "#d3e1e8",
"hoverBackground": "#80CBC480",
"hoverInactiveBackground": "#E7E7E8",
"modifiedItemForeground": "#00BCD4", "modifiedItemForeground": "#00BCD4",
"rowHeight": 28, "rowHeight": 28,
"selectionBackground": "#80CBC440", "selectionBackground": "#80CBC480",
"selectionForeground": "#546e7a", "selectionForeground": "#546e7a",
"selectionInactiveForeground": "#546e7a", "selectionInactiveForeground": "#546e7a",
"selectionInactiveBackground": "#80CBC440", "selectionInactiveBackground": "#80CBC480",
"textBackground": "#EEEEEE" "textBackground": "#F4F4F4"
}, },
"Tree.leftChildIndent": 10, "Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5, "Tree.rightChildIndent": 5,
"UiDesigner": { "UIDesigner": {
"Activity.borderColor": "#d3e1e8", "Activity.borderColor": "#d3e1e8",
"ColorPicker.background": "#FAFAFA", "Canvas.background": "#F4F4F4",
"ColorPicker.foreground": "#546E7A", "ColorPicker": {
"Component.borderColor": "#d3e1e8", "background": "#FAFAFA",
"Component.background": "#FAFAFA", "foreground": "#546E7A"
"Component.foreground": "#546E7A", },
"Connector.borderColor": "#d3e1e8", "Component": {
"Connector.hoverBorderColor": "#E7E7E8", "borderColor": "#d3e1e8",
"Canvas.background": "#EEEEEE", "background": "#FAFAFA",
"foreground": "#546E7A",
"hoverBorderColor": "#E7E7E8"
},
"Connector": {
"borderColor": "#d3e1e8",
"hoverBorderColor": "#E7E7E8"
},
"Canvas.background": "#F4F4F4",
"highStroke.foreground": "#546E7A", "highStroke.foreground": "#546E7A",
"Label.foreground": "#94A7B0", "Label.foreground": "#94A7B0",
"List.selectionBackground": "#80CBC440", "List.selectionBackground": "#80CBC480",
"Panel.borderColor": "#d3e1e8", "motion": {
"Panel.background": "#FAFAFA", "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", "percent.foreground": "#546E7A",
"Placeholder.background": "#FAFAFA", "Placeholder": {
"Placeholder.borderColor": "#d3e1e8", "background": "#FAFAFA",
"Placeholder.foreground": "#546E7A", "borderColor": "#d3e1e8",
"Placeholder.selectedForeground": "#546e7a", "foreground": "#546E7A",
"selectedForeground": "#546e7a"
},
"Preview.background": "#FAFAFA", "Preview.background": "#FAFAFA",
"stroke.acceleratorForeground": "#94A7B0" "stroke.acceleratorForeground": "#94A7B0"
}, },
@@ -828,7 +914,8 @@
}, },
"Log": { "Log": {
"Commit.unmatchedForeground": "#94A7B0", "Commit.unmatchedForeground": "#94A7B0",
"Commit.currentBranchBackground": "#FFFFFF" "Commit.currentBranchBackground": "#eae8e8",
"Commit.hoveredBackground": "#80CBC480"
}, },
"RefLabel": { "RefLabel": {
"foreground": "#546e7a", "foreground": "#546e7a",
@@ -836,33 +923,39 @@
} }
}, },
"Viewport": { "Viewport": {
"background": "#EEEEEE", "background": "#F4F4F4",
"foreground": "#546E7A" "foreground": "#546E7A"
}, },
"WelcomeScreen": { "WelcomeScreen": {
"AssociatedComponent.background": "#FAFAFA",
"background": "#FAFAFA", "background": "#FAFAFA",
"borderColor": "#FAFAFA", "borderColor": "#FAFAFA",
"captionBackground": "#EEEEEE", "captionBackground": "#F4F4F4",
"captionForeground": "#546E7A", "captionForeground": "#546E7A",
"footerBackground": "#EEEEEE", "Details.background": "#FAFAFA",
"footerBackground": "#F4F4F4",
"footerForeground": "#546E7A", "footerForeground": "#546E7A",
"headerBackground": "#FAFAFA", "headerBackground": "#FAFAFA",
"headerForeground": "#546E7A", "headerForeground": "#546E7A",
"List.background": "#F4F4F4",
"separatorColor": "#d3e1e8", "separatorColor": "#d3e1e8",
"SidePanel.background": "#eae8e8",
"Projects": { "Projects": {
"background": "#FFFFFF", "actions.background": "#F4F4F4",
"actions.selectionBackground": "#E7E7E8",
"background": "#eae8e8",
"selectionBackground": "#80CBC4", "selectionBackground": "#80CBC4",
"selectionInactiveBackground": "#FFFFFF" "selectionInactiveBackground": "#eae8e8"
} }
}, },
"window": "#EEEEEE", "window": "#F4F4F4",
"windowBorder": "#d3e1e8", "windowBorder": "#d3e1e8",
"windowText": "#94A7B0", "windowText": "#94A7B0",
"Window.border": "#d3e1e8" "Window.border": "#d3e1e8"
}, },
"icons": { "icons": {
"ColorPalette": { "ColorPalette": {
"#43494A": "#EEEEEE", "#43494A": "#F4F4F4",
"#6B6B6B": "#94A7B0", "#6B6B6B": "#94A7B0",
"#A7A7A7": "#FAFAFA", "#A7A7A7": "#FAFAFA",
"#3D6185": "#00BCD4", "#3D6185": "#00BCD4",
@@ -879,10 +972,10 @@
"Actions.GreyInline.Dark": "#546E7A", "Actions.GreyInline.Dark": "#546E7A",
"Actions.Red": "#E53935", "Actions.Red": "#E53935",
"Actions.Yellow": "#F6A434", "Actions.Yellow": "#F6A434",
"Checkbox.Background.Default": "#EEEEEE", "Checkbox.Background.Default": "#F4F4F4",
"Checkbox.Background.Default.Dark": "#EEEEEE", "Checkbox.Background.Default.Dark": "#F4F4F4",
"Checkbox.Background.Disabled": "#CCD7DA", "Checkbox.Background.Disabled": "#eae8e8",
"Checkbox.Background.Disabled.Dark": "#CCD7DA", "Checkbox.Background.Disabled.Dark": "#eae8e8",
"Checkbox.Border.Default": "#d3e1e8", "Checkbox.Border.Default": "#d3e1e8",
"Checkbox.Border.Default.Dark": "#d3e1e8", "Checkbox.Border.Default.Dark": "#d3e1e8",
"Checkbox.Border.Disabled": "#D2D4D5", "Checkbox.Border.Disabled": "#D2D4D5",

View File

@@ -3,24 +3,30 @@
"dark": false, "dark": false,
"author": "Mallowigi", "author": "Mallowigi",
"editorScheme": "/colors/Material Lighter.xml", "editorScheme": "/colors/Material Lighter.xml",
"emptyFrameBackground": {
"anchor": "center",
"image": "/walls/lighter.svg",
"fill": "scale",
"transparency": 50
},
"ui": { "ui": {
"*": { "*": {
"acceleratorSelectionForeground": "#94A7B0", "acceleratorSelectionForeground": "#94A7B0",
"background": "#FAFAFA", "background": "#FAFAFA",
"borderColor": "#d3e1e8", "borderColor": "#d3e1e8",
"disabledBackground": "#CCD7DA", "disabledBackground": "#eae8e8",
"disabledForeground": "#D2D4D5", "disabledForeground": "#D2D4D5",
"disabledText": "#D2D4D5", "disabledText": "#D2D4D5",
"focusColor": "#E7E7E8", "focusColor": "#E7E7E8",
"focusedBorderColor": "#00BCD4", "focusedBorderColor": "#00BCD4",
"foreground": "#546E7A", "foreground": "#546E7A",
"inactiveBackground": "#CCD7DA", "inactiveBackground": "#eae8e8",
"inactiveForeground": "#94A7B0", "inactiveForeground": "#94A7B0",
"infoForeground": "#94A7B0", "infoForeground": "#94A7B0",
"selectionBackground": "#80CBC4", "selectionBackground": "#80CBC4",
"selectionBackgroundInactive": "#FFFFFF", "selectionBackgroundInactive": "#eae8e8",
"selectionForeground": "#546e7a", "selectionForeground": "#546e7a",
"selectionInactiveBackground": "#FFFFFF", "selectionInactiveBackground": "#eae8e8",
"separatorColor": "#d3e1e8" "separatorColor": "#d3e1e8"
}, },
"activeCaption": "#FAFAFA", "activeCaption": "#FAFAFA",
@@ -72,7 +78,10 @@
"Tooltip.borderColor": "#d3e1e8", "Tooltip.borderColor": "#d3e1e8",
"Tooltip.background": "#eae8e8" "Tooltip.background": "#eae8e8"
}, },
"Content.background": "#EEEEEE", "Content": {
"background": "#F4F4F4",
"selectionBackground": "#80CBC4"
},
"CheckBox": { "CheckBox": {
"background": "#FAFAFA", "background": "#FAFAFA",
"disabledText": "#D2D4D5", "disabledText": "#D2D4D5",
@@ -89,6 +98,14 @@
"selectionBackground": "#80CBC4", "selectionBackground": "#80CBC4",
"selectionForeground": "#546e7a" "selectionForeground": "#546e7a"
}, },
"CodeWithMe": {
"Avatar.foreground": "#546E7A",
"AccessEnabled": {
"accessDot": "#00BCD4",
"dropdownBorder": "#eae8e8",
"pillBackground": "$second"
}
},
"ColorChooser": { "ColorChooser": {
"background": "#FAFAFA", "background": "#FAFAFA",
"foreground": "#546E7A", "foreground": "#546E7A",
@@ -104,17 +121,18 @@
}, },
"background": "#FAFAFA", "background": "#FAFAFA",
"buttonBackground": "#F3F4F5", "buttonBackground": "#F3F4F5",
"darcula.hoveredArrowButtonForeground": "#00BCD4",
"disabledForeground": "#D2D4D5", "disabledForeground": "#D2D4D5",
"foreground": "#546E7A", "foreground": "#546E7A",
"modifiedItemForeground": "#00BCD4", "modifiedItemForeground": "#00BCD4",
"nonEditableBackground": "#FFFFFF", "nonEditableBackground": "#eae8e8",
"padding": "5,5,5,5", "padding": "5,5,5,5",
"selectionBackground": "#E7E7E8", "selectionBackground": "#E7E7E8",
"selectionForeground": "#546e7a" "selectionForeground": "#546e7a"
}, },
"ComboPopup.border": "#d3e1e8", "ComboPopup.border": "#d3e1e8",
"CompletionPopup": { "CompletionPopup": {
"background": "#FFFFFF", "background": "#eae8e8",
"foreground": "#546E7A", "foreground": "#546E7A",
"infoForeground": "#94A7B0", "infoForeground": "#94A7B0",
"matchForeground": "#00BCD4", "matchForeground": "#00BCD4",
@@ -168,11 +186,13 @@
"hoverBackground": "#E7E7E8", "hoverBackground": "#E7E7E8",
"hoverColor": "#FAFAFA", "hoverColor": "#FAFAFA",
"hoverMaskColor": "#E7E7E8", "hoverMaskColor": "#E7E7E8",
"inactiveColoredTabBackground": "#FAFAFA",
"inactiveColoredFileBackground": "#F3F4F5", "inactiveColoredFileBackground": "#F3F4F5",
"inactiveUnderlineColor": "#D2D4D5", "inactiveUnderlineColor": "#00BCD4",
"inactiveMaskColor": "#FAFAFA", "inactiveMaskColor": "#FAFAFA",
"underlineColor": "#00BCD4", "underlineColor": "#00BCD4",
"underlinedTabBackground": "#E7E7E8" "underlinedTabBackground": "#E7E7E8",
"underlinedTabForeground": "#546e7a"
}, },
"Desktop.background": "#FAFAFA", "Desktop.background": "#FAFAFA",
"DialogWrapper.southPanelBackground": "#FAFAFA", "DialogWrapper.southPanelBackground": "#FAFAFA",
@@ -197,20 +217,22 @@
"selectionForeground": "#546e7a" "selectionForeground": "#546e7a"
}, },
"EditorTabs": { "EditorTabs": {
"borderColor": "#FFFFFF", "borderColor": "#eae8e8",
"hoverBackground": "#E7E7E8",
"hoverColor": "#E7E7E8", "hoverColor": "#E7E7E8",
"hoverMaskColor": "#E7E7E8", "hoverMaskColor": "#E7E7E8",
"inactiveMaskColor": "#FAFAFA", "inactiveMaskColor": "#FAFAFA",
"inactiveColoredFileBackground": "#FAFAFA2", "inactiveColoredFileBackground": "#FAFAFA",
"inactiveUnderlineColor": "#D2D4D5", "inactiveUnderlineColor": "#D2D4D5",
"selectedForeground": "#546E7A", "selectedForeground": "#546E7A",
"selectedBackground": "#E7E7E8", "selectedBackground": "#E7E7E8",
"underlineColor": "#00BCD4", "underlineColor": "#00BCD4",
"underlinedTabBackground": "#E7E7E8" "underlinedTabBackground": "#E7E7E8",
"underlinedTabForeground": "#546e7a"
}, },
"EditorGroupsTabs": { "EditorGroupsTabs": {
"background": "#FAFAFA", "background": "#FAFAFA",
"borderColor": "#FFFFFF", "borderColor": "#eae8e8",
"hoverBackground": "#E7E7E8", "hoverBackground": "#E7E7E8",
"hoverColor": "#E7E7E8", "hoverColor": "#E7E7E8",
"inactiveUnderlineColor": "#00BCD4", "inactiveUnderlineColor": "#00BCD4",
@@ -221,7 +243,7 @@
"FileColor": { "FileColor": {
"Green": "#387002", "Green": "#387002",
"Blue": "#004BA0", "Blue": "#004BA0",
"Yellow": "#CCD7DA", "Yellow": "#eae8e8",
"Orange": "#B53D00", "Orange": "#B53D00",
"Violet": "#4D2C91", "Violet": "#4D2C91",
"Rose": "#A00037" "Rose": "#A00037"
@@ -246,17 +268,18 @@
"selectionForeground": "#546e7a", "selectionForeground": "#546e7a",
"selectionBackground": "#E7E7E8" "selectionBackground": "#E7E7E8"
}, },
"GotItTooltip.borderColor": "#eae8e8",
"Group": { "Group": {
"disabledSeparatorColor": "#d3e1e8", "disabledSeparatorColor": "#d3e1e8",
"separatorColor": "#d3e1e8" "separatorColor": "#d3e1e8"
}, },
"GutterTooltip": { "GutterTooltip": {
"infoForeground": "#546E7A", "infoForeground": "#94A7B0",
"lineSeparatorColor": "#FAFAFA" "lineSeparatorColor": "#FAFAFA"
}, },
"HeaderColor": { "HeaderColor": {
"active": "#FAFAFA", "active": "#FAFAFA",
"inactive": "#EEEEEE" "inactive": "#F4F4F4"
}, },
"HelpTooltip": { "HelpTooltip": {
"background": "#FAFAFA", "background": "#FAFAFA",
@@ -266,7 +289,7 @@
"shortcutForeground": "#94A7B0" "shortcutForeground": "#94A7B0"
}, },
"Hyperlink.linkColor": "#00BCD4", "Hyperlink.linkColor": "#00BCD4",
"inactiveCaption": "#FFFFFF", "inactiveCaption": "#eae8e8",
"inactiveCaptionBorder": "#FAFAFA", "inactiveCaptionBorder": "#FAFAFA",
"inactiveCaptionText": "#94A7B0", "inactiveCaptionText": "#94A7B0",
"info": "#94A7B0", "info": "#94A7B0",
@@ -288,7 +311,8 @@
"disabledText": "#D2D4D5", "disabledText": "#D2D4D5",
"foreground": "#546E7A", "foreground": "#546E7A",
"infoForeground": "#94A7B0", "infoForeground": "#94A7B0",
"selectedForeground": "#546e7a" "selectedForeground": "#546e7a",
"selectedDisabledForeground": "#546E7A"
}, },
"Link": { "Link": {
"activeForeground": "#00BCD4", "activeForeground": "#00BCD4",
@@ -299,17 +323,19 @@
}, },
"link.foreground": "#00BCD4", "link.foreground": "#00BCD4",
"List": { "List": {
"background": "#FFFFFF", "background": "#eae8e8",
"foreground": "#546E7A", "foreground": "#546E7A",
"hoverBackground": "#80CBC480",
"hoverInactiveBackground": "#E7E7E8",
"selectionBackground": "#80CBC450", "selectionBackground": "#80CBC450",
"selectionForeground": "#546e7a", "selectionForeground": "#546e7a",
"selectionInactiveForeground": "#546e7a", "selectionInactiveForeground": "#546e7a",
"selectionInactiveBackground": "#80CBC440" "selectionInactiveBackground": "#80CBC480"
}, },
"material": { "material": {
"background": "#FAFAFA", "background": "#FAFAFA",
"branchColor": "#546E7A", "branchColor": "#546E7A",
"contrast": "#EEEEEE", "contrast": "#F4F4F4",
"foreground": "#546E7A", "foreground": "#546E7A",
"mergeCommits": "#F3F4F5", "mergeCommits": "#F3F4F5",
"primaryColor": "#94A7B0", "primaryColor": "#94A7B0",
@@ -319,7 +345,7 @@
"tagColor": "#94A7B0" "tagColor": "#94A7B0"
}, },
"MemoryIndicator": { "MemoryIndicator": {
"allocatedBackground": "#FFFFFF", "allocatedBackground": "#eae8e8",
"usedColor": "#E7E7E8", "usedColor": "#E7E7E8",
"usedBackground": "#E7E7E8" "usedBackground": "#E7E7E8"
}, },
@@ -328,8 +354,8 @@
"acceleratorSelectionForeground": "#546e7a", "acceleratorSelectionForeground": "#546e7a",
"background": "#FAFAFA", "background": "#FAFAFA",
"border": "4,2,4,2", "border": "4,2,4,2",
"borderColor": "#FFFFFF", "borderColor": "#eae8e8",
"disabledBackground": "#FFFFFF", "disabledBackground": "#eae8e8",
"disabledForeground": "#D2D4D5", "disabledForeground": "#D2D4D5",
"foreground": "#546E7A", "foreground": "#546E7A",
"selectionBackground": "#80CBC4", "selectionBackground": "#80CBC4",
@@ -407,7 +433,7 @@
"foreground": "#546E7A" "foreground": "#546E7A"
}, },
"ParameterInfo": { "ParameterInfo": {
"background": "#FFFFFF", "background": "#eae8e8",
"borderColor": "#E7E7E8", "borderColor": "#E7E7E8",
"currentOverloadBackground": "#E7E7E8", "currentOverloadBackground": "#E7E7E8",
"currentParameterForeground": "#00BCD4", "currentParameterForeground": "#00BCD4",
@@ -429,7 +455,8 @@
"background": "#FAFAFA", "background": "#FAFAFA",
"disabledForeground": "#D2D4D5", "disabledForeground": "#D2D4D5",
"eapTagBackground": "#E7E7E8", "eapTagBackground": "#E7E7E8",
"lightSelectionBackground": "#80CBC4", "hoverBackground": "#80CBC480",
"lightSelectionBackground": "#E7E7E8",
"paidTagBackground": "#E7E7E8", "paidTagBackground": "#E7E7E8",
"selectionBackground": "#80CBC4", "selectionBackground": "#80CBC4",
"tagForeground": "#00BCD4", "tagForeground": "#00BCD4",
@@ -442,7 +469,7 @@
"installFocusedBackground": "#E7E7E8", "installFocusedBackground": "#E7E7E8",
"installFillForeground": "#D2D4D5", "installFillForeground": "#D2D4D5",
"installFillBackground": "#F3F4F5", "installFillBackground": "#F3F4F5",
"updateBackground": "#F3F4F5", "updateBackground": "#00BCD4",
"updateBorderColor": "#F3F4F5", "updateBorderColor": "#F3F4F5",
"updateForeground": "#546E7A" "updateForeground": "#546E7A"
}, },
@@ -451,7 +478,7 @@
"borderColor": "#d3e1e8" "borderColor": "#d3e1e8"
}, },
"SectionHeader": { "SectionHeader": {
"background": "#FFFFFF", "background": "#eae8e8",
"foreground": "#546E7A" "foreground": "#546E7A"
}, },
"Tab": { "Tab": {
@@ -466,20 +493,20 @@
"borderColor": "#FAFAFA", "borderColor": "#FAFAFA",
"foreground": "#00BCD4" "foreground": "#00BCD4"
}, },
"borderColor": "#EEEEEE", "borderColor": "#F4F4F4",
"inactiveBorderColor": "#FAFAFA", "inactiveBorderColor": "#FAFAFA",
"innerBorderColor": "#FFFFFF", "innerBorderColor": "#eae8e8",
"Header": { "Header": {
"activeBackground": "#FAFAFA", "activeBackground": "#FAFAFA",
"inactiveBackground": "#EEEEEE" "inactiveBackground": "#F4F4F4"
}, },
"paintBorder": true, "paintBorder": true,
"separatorForeground": "#546E7A", "separatorForeground": "#546E7A",
"separatorColor": "#FFFFFF", "separatorColor": "#eae8e8",
"Toolbar": { "Toolbar": {
"Floating.background": "#EEEEEE", "Floating.background": "#F4F4F4",
"background": "#EEEEEE", "background": "#F4F4F4",
"borderColor": "#EEEEEE" "borderColor": "#F4F4F4"
} }
}, },
"PopupMenu": { "PopupMenu": {
@@ -517,6 +544,7 @@
"selectionBackground": "#80CBC4", "selectionBackground": "#80CBC4",
"selectionForeground": "#546e7a" "selectionForeground": "#546e7a"
}, },
"ScreenView.borderColor": "#d3e1e8",
"ScrollBar": { "ScrollBar": {
"background": "#FAFAFA", "background": "#FAFAFA",
"hoverThumbBorderColor": "#00BCD4", "hoverThumbBorderColor": "#00BCD4",
@@ -553,7 +581,7 @@
}, },
"SearchEverywhere": { "SearchEverywhere": {
"Advertiser": { "Advertiser": {
"background": "#EEEEEE", "background": "#F4F4F4",
"foreground": "#94A7B0" "foreground": "#94A7B0"
}, },
"Header": { "Header": {
@@ -565,7 +593,7 @@
}, },
"SearchField": { "SearchField": {
"background": "#FAFAFA", "background": "#FAFAFA",
"borderColor": "#EEEEEE", "borderColor": "#F4F4F4",
"infoForeground": "#94A7B0" "infoForeground": "#94A7B0"
}, },
"Tab": { "Tab": {
@@ -576,13 +604,22 @@
}, },
"SearchMatch": { "SearchMatch": {
"endBackground": "#00BCD4", "endBackground": "#00BCD4",
"startBackground": "#00BCD4" "startBackground": "#00BCD4",
"endColor": "#00BCD4",
"startColor": "#00BCD4"
}, },
"SearchField.errorBackground": "#eae8e8", "SearchField.errorBackground": "#eae8e8",
"SearchOption": {
"selectedBackground": "#E7E7E8"
},
"SearchResults": {
"Ordinal.File.Foreground": "#94A7B0",
"Repeated.File.Foreground": "#546E7A"
},
"Separator": { "Separator": {
"background": "#FFFFFF", "background": "#eae8e8",
"foreground": "#FFFFFF", "foreground": "#eae8e8",
"separatorColor": "#FFFFFF" "separatorColor": "#eae8e8"
}, },
"SidePanel": { "SidePanel": {
"background": "#FAFAFA" "background": "#FAFAFA"
@@ -593,7 +630,7 @@
"buttonColor": "#00BCD4", "buttonColor": "#00BCD4",
"foreground": "#546E7A", "foreground": "#546E7A",
"majorTickLength": 6, "majorTickLength": 6,
"tickColor": "#FFFFFF", "tickColor": "#eae8e8",
"trackColor": "#E7E7E8", "trackColor": "#E7E7E8",
"trackWidth": 7, "trackWidth": 7,
"thumb": "#00BCD4" "thumb": "#00BCD4"
@@ -614,9 +651,11 @@
"background": "#FAFAFA", "background": "#FAFAFA",
"highlight": "#FAFAFA" "highlight": "#FAFAFA"
}, },
"SplitPaneDivider.draggingColor": "#FFFFFF", "SplitPaneDivider.draggingColor": "#eae8e8",
"StatusBar": { "StatusBar": {
"borderColor": "#FAFAFA" "borderColor": "#FAFAFA",
"hoverBackground": "#E7E7E8",
"LightEditBackground": "#E7E7E8"
}, },
"TabbedPane": { "TabbedPane": {
"background": "#FAFAFA", "background": "#FAFAFA",
@@ -643,9 +682,11 @@
}, },
"TabbedPane.mt.tab.background": "#FAFAFA", "TabbedPane.mt.tab.background": "#FAFAFA",
"Table": { "Table": {
"alternativeRowBackground": "#F4F4F4",
"background": "#FAFAFA", "background": "#FAFAFA",
"cellNoFocusBorder": "10,5,10,5", "cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5",
"disabledForeground": "#D2D4D5",
"dropLineColor": "#00BCD4", "dropLineColor": "#00BCD4",
"dropLineShortColor": "#00BCD4", "dropLineShortColor": "#00BCD4",
"focusCellBackground": "#E7E7E8", "focusCellBackground": "#E7E7E8",
@@ -653,27 +694,29 @@
"foreground": "#546E7A", "foreground": "#546E7A",
"gridColor": "#FAFAFA", "gridColor": "#FAFAFA",
"highlightOuter": "#E7E7E8", "highlightOuter": "#E7E7E8",
"hoverBackground": "#80CBC480",
"hoverInactiveBackground": "#E7E7E8",
"lightSelectionForeground": "#546e7a", "lightSelectionForeground": "#546e7a",
"lightSelectionInactiveForeground": "#94A7B0", "lightSelectionInactiveForeground": "#94A7B0",
"lightSelectionInactiveBackground": "#FFFFFF", "lightSelectionInactiveBackground": "#eae8e8",
"selectionBackground": "#E7E7E8", "selectionBackground": "#E7E7E8",
"selectionForeground": "#546e7a", "selectionForeground": "#546e7a",
"selectionInactiveBackground": "#E7E7E8", "selectionInactiveBackground": "#E7E7E8",
"selectionInactiveForeground": "#546e7a", "selectionInactiveForeground": "#546e7a",
"sortIconColor": "#546E7A", "sortIconColor": "#546E7A",
"stripeColor": "#EEEEEE" "stripeColor": "#F4F4F4"
}, },
"TableHeader": { "TableHeader": {
"background": "#FAFAFA", "background": "#FAFAFA",
"borderColor": "#FAFAFA", "borderColor": "#FAFAFA",
"bottomSeparatorColor": "#FFFFFF", "bottomSeparatorColor": "#eae8e8",
"cellBorder": "4,0,4,0", "cellBorder": "4,0,4,0",
"disabledForeground": "#D2D4D5", "disabledForeground": "#D2D4D5",
"foreground": "#546E7A", "foreground": "#546E7A",
"focusCellBackground": "#E7E7E8", "focusCellBackground": "#E7E7E8",
"focusCellForeground": "#546e7a", "focusCellForeground": "#546e7a",
"height": 25, "height": 25,
"separatorColor": "#FFFFFF" "separatorColor": "#eae8e8"
}, },
"text": "#94A7B0", "text": "#94A7B0",
"textInactiveText": "#94A7B0", "textInactiveText": "#94A7B0",
@@ -703,7 +746,7 @@
"selectionForeground": "#546e7a" "selectionForeground": "#546e7a"
}, },
"TitlePane": { "TitlePane": {
"background": "#EEEEEE", "background": "#F4F4F4",
"Button.hoverBackground": "#E7E7E8", "Button.hoverBackground": "#E7E7E8",
"inactiveBackground": "#FAFAFA", "inactiveBackground": "#FAFAFA",
"infoForeground": "#94A7B0", "infoForeground": "#94A7B0",
@@ -729,8 +772,8 @@
"ToolTip": { "ToolTip": {
"Actions.background": "#FAFAFA", "Actions.background": "#FAFAFA",
"Actions.infoForeground": "#94A7B0", "Actions.infoForeground": "#94A7B0",
"background": "#FAFAFA", "background": "#eae8e8",
"borderColor": "#E7E7E8", "borderColor": "#d3e1e8",
"foreground": "#546E7A", "foreground": "#546E7A",
"infoForeground": "#94A7B0", "infoForeground": "#94A7B0",
"separatorColor": "#d3e1e8", "separatorColor": "#d3e1e8",
@@ -740,61 +783,104 @@
"Button": { "Button": {
"hoverBackground": "#E7E7E8", "hoverBackground": "#E7E7E8",
"selectedForeground": "#546e7a", "selectedForeground": "#546e7a",
"selectedBackground": "#EEEEEE" "selectedBackground": "#F4F4F4"
}, },
"Header": { "Header": {
"background": "#FAFAFA", "background": "#FAFAFA",
"borderColor": "#FFFFFF", "borderColor": "#eae8e8",
"inactiveBackground": "#FAFAFA" "inactiveBackground": "#FAFAFA"
}, },
"HeaderCloseButton": { "HeaderCloseButton": {
"background": "#FAFAFA" "background": "#FAFAFA"
}, },
"HeaderTab": { "HeaderTab": {
"borderColor": "#E7E7E8",
"hoverBackground": "#E7E7E8", "hoverBackground": "#E7E7E8",
"hoverInactiveBackground": "#FFFFFF", "hoverInactiveBackground": "#E7E7E8",
"inactiveUnderlineColor": "#00BCD4", "inactiveUnderlineColor": "#00BCD4",
"selectedBackground": "#EEEEEE", "selectedBackground": "#F4F4F4",
"selectedInactiveBackground": "#EEEEEE", "selectedInactiveBackground": "#F4F4F4",
"underlineColor": "#00BCD4", "underlineColor": "#00BCD4",
"underlinedTabBackground": "#E7E7E8", "underlinedTabBackground": "#E7E7E8",
"underlinedTabInactiveBackground": "#FFFFFF" "underlinedTabInactiveBackground": "#eae8e8",
"underlinedTabForeground": "#546e7a",
"underlinedTabInactiveForeground": "#546E7A"
} }
}, },
"Tree": { "Tree": {
"background": "#FAFAFA", "background": "#FAFAFA",
"foreground": "#94A7B0", "foreground": "#94A7B0",
"hash": "#d3e1e8", "hash": "#d3e1e8",
"hoverBackground": "#80CBC480",
"hoverInactiveBackground": "#E7E7E8",
"modifiedItemForeground": "#00BCD4", "modifiedItemForeground": "#00BCD4",
"rowHeight": 28, "rowHeight": 28,
"selectionBackground": "#80CBC440", "selectionBackground": "#80CBC480",
"selectionForeground": "#546e7a", "selectionForeground": "#546e7a",
"selectionInactiveForeground": "#546e7a", "selectionInactiveForeground": "#546e7a",
"selectionInactiveBackground": "#80CBC440", "selectionInactiveBackground": "#80CBC480",
"textBackground": "#FAFAFA" "textBackground": "#FAFAFA"
}, },
"Tree.leftChildIndent": 10, "Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5, "Tree.rightChildIndent": 5,
"UiDesigner": { "UIDesigner": {
"Activity.borderColor": "#d3e1e8", "Activity.borderColor": "#d3e1e8",
"ColorPicker.background": "#FAFAFA", "Canvas.background": "#F4F4F4",
"ColorPicker.foreground": "#546E7A", "ColorPicker": {
"Component.borderColor": "#d3e1e8", "background": "#FAFAFA",
"Component.background": "#FAFAFA", "foreground": "#546E7A"
"Component.foreground": "#546E7A", },
"Connector.borderColor": "#d3e1e8", "Component": {
"Connector.hoverBorderColor": "#E7E7E8", "borderColor": "#d3e1e8",
"Canvas.background": "#EEEEEE", "background": "#FAFAFA",
"foreground": "#546E7A",
"hoverBorderColor": "#E7E7E8"
},
"Connector": {
"borderColor": "#d3e1e8",
"hoverBorderColor": "#E7E7E8"
},
"Canvas.background": "#F4F4F4",
"highStroke.foreground": "#546E7A", "highStroke.foreground": "#546E7A",
"Label.foreground": "#94A7B0", "Label.foreground": "#94A7B0",
"List.selectionBackground": "#80CBC440", "List.selectionBackground": "#80CBC480",
"Panel.borderColor": "#d3e1e8", "motion": {
"Panel.background": "#FAFAFA", "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", "percent.foreground": "#546E7A",
"Placeholder.background": "#FAFAFA", "Placeholder": {
"Placeholder.borderColor": "#d3e1e8", "background": "#FAFAFA",
"Placeholder.foreground": "#546E7A", "borderColor": "#d3e1e8",
"Placeholder.selectedForeground": "#546e7a", "foreground": "#546E7A",
"selectedForeground": "#546e7a"
},
"Preview.background": "#FAFAFA", "Preview.background": "#FAFAFA",
"stroke.acceleratorForeground": "#94A7B0" "stroke.acceleratorForeground": "#94A7B0"
}, },
@@ -828,7 +914,8 @@
}, },
"Log": { "Log": {
"Commit.unmatchedForeground": "#94A7B0", "Commit.unmatchedForeground": "#94A7B0",
"Commit.currentBranchBackground": "#FFFFFF" "Commit.currentBranchBackground": "#eae8e8",
"Commit.hoveredBackground": "#80CBC480"
}, },
"RefLabel": { "RefLabel": {
"foreground": "#546e7a", "foreground": "#546e7a",
@@ -840,19 +927,25 @@
"foreground": "#546E7A" "foreground": "#546E7A"
}, },
"WelcomeScreen": { "WelcomeScreen": {
"AssociatedComponent.background": "#FAFAFA",
"background": "#FAFAFA", "background": "#FAFAFA",
"borderColor": "#FAFAFA", "borderColor": "#FAFAFA",
"captionBackground": "#EEEEEE", "captionBackground": "#F4F4F4",
"captionForeground": "#546E7A", "captionForeground": "#546E7A",
"footerBackground": "#EEEEEE", "Details.background": "#FAFAFA",
"footerBackground": "#F4F4F4",
"footerForeground": "#546E7A", "footerForeground": "#546E7A",
"headerBackground": "#FAFAFA", "headerBackground": "#FAFAFA",
"headerForeground": "#546E7A", "headerForeground": "#546E7A",
"List.background": "#F4F4F4",
"separatorColor": "#d3e1e8", "separatorColor": "#d3e1e8",
"SidePanel.background": "#eae8e8",
"Projects": { "Projects": {
"background": "#FFFFFF", "actions.background": "#F4F4F4",
"actions.selectionBackground": "#E7E7E8",
"background": "#eae8e8",
"selectionBackground": "#80CBC4", "selectionBackground": "#80CBC4",
"selectionInactiveBackground": "#FFFFFF" "selectionInactiveBackground": "#eae8e8"
} }
}, },
"window": "#FAFAFA", "window": "#FAFAFA",
@@ -862,7 +955,7 @@
}, },
"icons": { "icons": {
"ColorPalette": { "ColorPalette": {
"#43494A": "#EEEEEE", "#43494A": "#F4F4F4",
"#6B6B6B": "#94A7B0", "#6B6B6B": "#94A7B0",
"#A7A7A7": "#FAFAFA", "#A7A7A7": "#FAFAFA",
"#3D6185": "#00BCD4", "#3D6185": "#00BCD4",
@@ -879,10 +972,10 @@
"Actions.GreyInline.Dark": "#546E7A", "Actions.GreyInline.Dark": "#546E7A",
"Actions.Red": "#E53935", "Actions.Red": "#E53935",
"Actions.Yellow": "#F6A434", "Actions.Yellow": "#F6A434",
"Checkbox.Background.Default": "#EEEEEE", "Checkbox.Background.Default": "#F4F4F4",
"Checkbox.Background.Default.Dark": "#EEEEEE", "Checkbox.Background.Default.Dark": "#F4F4F4",
"Checkbox.Background.Disabled": "#CCD7DA", "Checkbox.Background.Disabled": "#eae8e8",
"Checkbox.Background.Disabled.Dark": "#CCD7DA", "Checkbox.Background.Disabled.Dark": "#eae8e8",
"Checkbox.Border.Default": "#d3e1e8", "Checkbox.Border.Default": "#d3e1e8",
"Checkbox.Border.Default.Dark": "#d3e1e8", "Checkbox.Border.Default.Dark": "#d3e1e8",
"Checkbox.Border.Disabled": "#D2D4D5", "Checkbox.Border.Disabled": "#D2D4D5",

View File

@@ -3,6 +3,12 @@
"dark": true, "dark": true,
"author": "Mallowigi", "author": "Mallowigi",
"editorScheme": "/colors/Material Oceanic.xml", "editorScheme": "/colors/Material Oceanic.xml",
"emptyFrameBackground": {
"anchor": "center",
"image": "/walls/oceanic.svg",
"fill": "scale",
"transparency": 50
},
"ui": { "ui": {
"*": { "*": {
"acceleratorSelectionForeground": "#607D8B", "acceleratorSelectionForeground": "#607D8B",
@@ -72,7 +78,10 @@
"Tooltip.borderColor": "#2A373E", "Tooltip.borderColor": "#2A373E",
"Tooltip.background": "#1E272C" "Tooltip.background": "#1E272C"
}, },
"Content.background": "#1E272C", "Content": {
"background": "#1E272C",
"selectionBackground": "#546E7A"
},
"CheckBox": { "CheckBox": {
"background": "#263238", "background": "#263238",
"disabledText": "#415967", "disabledText": "#415967",
@@ -89,6 +98,14 @@
"selectionBackground": "#546E7A", "selectionBackground": "#546E7A",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"CodeWithMe": {
"Avatar.foreground": "#B0BEC5",
"AccessEnabled": {
"accessDot": "#009688",
"dropdownBorder": "#32424A",
"pillBackground": "$second"
}
},
"ColorChooser": { "ColorChooser": {
"background": "#263238", "background": "#263238",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
@@ -104,6 +121,7 @@
}, },
"background": "#1E272C", "background": "#1E272C",
"buttonBackground": "#2E3C43", "buttonBackground": "#2E3C43",
"darcula.hoveredArrowButtonForeground": "#009688",
"disabledForeground": "#415967", "disabledForeground": "#415967",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"modifiedItemForeground": "#009688", "modifiedItemForeground": "#009688",
@@ -168,11 +186,13 @@
"hoverBackground": "#314549", "hoverBackground": "#314549",
"hoverColor": "#1E272C", "hoverColor": "#1E272C",
"hoverMaskColor": "#425B67", "hoverMaskColor": "#425B67",
"inactiveColoredTabBackground": "#263238",
"inactiveColoredFileBackground": "#2E3C43", "inactiveColoredFileBackground": "#2E3C43",
"inactiveUnderlineColor": "#415967", "inactiveUnderlineColor": "#009688",
"inactiveMaskColor": "#1E272C", "inactiveMaskColor": "#1E272C",
"underlineColor": "#009688", "underlineColor": "#009688",
"underlinedTabBackground": "#314549" "underlinedTabBackground": "#314549",
"underlinedTabForeground": "#FFFFFF"
}, },
"Desktop.background": "#263238", "Desktop.background": "#263238",
"DialogWrapper.southPanelBackground": "#263238", "DialogWrapper.southPanelBackground": "#263238",
@@ -198,15 +218,17 @@
}, },
"EditorTabs": { "EditorTabs": {
"borderColor": "#32424A", "borderColor": "#32424A",
"hoverBackground": "#425B67",
"hoverColor": "#425B67", "hoverColor": "#425B67",
"hoverMaskColor": "#425B67", "hoverMaskColor": "#425B67",
"inactiveMaskColor": "#263238", "inactiveMaskColor": "#263238",
"inactiveColoredFileBackground": "#2632382", "inactiveColoredFileBackground": "#263238",
"inactiveUnderlineColor": "#415967", "inactiveUnderlineColor": "#415967",
"selectedForeground": "#B0BEC5", "selectedForeground": "#B0BEC5",
"selectedBackground": "#314549", "selectedBackground": "#314549",
"underlineColor": "#009688", "underlineColor": "#009688",
"underlinedTabBackground": "#314549" "underlinedTabBackground": "#314549",
"underlinedTabForeground": "#FFFFFF"
}, },
"EditorGroupsTabs": { "EditorGroupsTabs": {
"background": "#263238", "background": "#263238",
@@ -246,12 +268,13 @@
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionBackground": "#314549" "selectionBackground": "#314549"
}, },
"GotItTooltip.borderColor": "#1E272C",
"Group": { "Group": {
"disabledSeparatorColor": "#2A373E", "disabledSeparatorColor": "#2A373E",
"separatorColor": "#2A373E" "separatorColor": "#2A373E"
}, },
"GutterTooltip": { "GutterTooltip": {
"infoForeground": "#B0BEC5", "infoForeground": "#607D8B",
"lineSeparatorColor": "#263238" "lineSeparatorColor": "#263238"
}, },
"HeaderColor": { "HeaderColor": {
@@ -288,7 +311,8 @@
"disabledText": "#415967", "disabledText": "#415967",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"infoForeground": "#607D8B", "infoForeground": "#607D8B",
"selectedForeground": "#FFFFFF" "selectedForeground": "#FFFFFF",
"selectedDisabledForeground": "#B0BEC5"
}, },
"Link": { "Link": {
"activeForeground": "#009688", "activeForeground": "#009688",
@@ -301,10 +325,12 @@
"List": { "List": {
"background": "#32424A", "background": "#32424A",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"hoverBackground": "#546E7A70",
"hoverInactiveBackground": "#314549",
"selectionBackground": "#546E7A50", "selectionBackground": "#546E7A50",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#546E7A50" "selectionInactiveBackground": "#546E7A70"
}, },
"material": { "material": {
"background": "#263238", "background": "#263238",
@@ -409,7 +435,7 @@
"ParameterInfo": { "ParameterInfo": {
"background": "#32424A", "background": "#32424A",
"borderColor": "#314549", "borderColor": "#314549",
"currentOverloadBackground": "#314549", "currentOverloadBackground": "#425B67",
"currentParameterForeground": "#009688", "currentParameterForeground": "#009688",
"disabledForeground": "#415967", "disabledForeground": "#415967",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
@@ -429,7 +455,8 @@
"background": "#263238", "background": "#263238",
"disabledForeground": "#415967", "disabledForeground": "#415967",
"eapTagBackground": "#425B67", "eapTagBackground": "#425B67",
"lightSelectionBackground": "#546E7A", "hoverBackground": "#546E7A70",
"lightSelectionBackground": "#314549",
"paidTagBackground": "#425B67", "paidTagBackground": "#425B67",
"selectionBackground": "#546E7A", "selectionBackground": "#546E7A",
"tagForeground": "#009688", "tagForeground": "#009688",
@@ -442,7 +469,7 @@
"installFocusedBackground": "#425B67", "installFocusedBackground": "#425B67",
"installFillForeground": "#415967", "installFillForeground": "#415967",
"installFillBackground": "#2E3C43", "installFillBackground": "#2E3C43",
"updateBackground": "#2E3C43", "updateBackground": "#009688",
"updateBorderColor": "#2E3C43", "updateBorderColor": "#2E3C43",
"updateForeground": "#B0BEC5" "updateForeground": "#B0BEC5"
}, },
@@ -517,6 +544,7 @@
"selectionBackground": "#546E7A", "selectionBackground": "#546E7A",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"ScreenView.borderColor": "#2A373E",
"ScrollBar": { "ScrollBar": {
"background": "#263238", "background": "#263238",
"hoverThumbBorderColor": "#009688", "hoverThumbBorderColor": "#009688",
@@ -576,9 +604,18 @@
}, },
"SearchMatch": { "SearchMatch": {
"endBackground": "#009688", "endBackground": "#009688",
"startBackground": "#009688" "startBackground": "#009688",
"endColor": "#009688",
"startColor": "#009688"
}, },
"SearchField.errorBackground": "#1E272C", "SearchField.errorBackground": "#1E272C",
"SearchOption": {
"selectedBackground": "#314549"
},
"SearchResults": {
"Ordinal.File.Foreground": "#607D8B",
"Repeated.File.Foreground": "#B0BEC5"
},
"Separator": { "Separator": {
"background": "#32424A", "background": "#32424A",
"foreground": "#32424A", "foreground": "#32424A",
@@ -616,7 +653,9 @@
}, },
"SplitPaneDivider.draggingColor": "#32424A", "SplitPaneDivider.draggingColor": "#32424A",
"StatusBar": { "StatusBar": {
"borderColor": "#263238" "borderColor": "#263238",
"hoverBackground": "#425B67",
"LightEditBackground": "#314549"
}, },
"TabbedPane": { "TabbedPane": {
"background": "#263238", "background": "#263238",
@@ -643,9 +682,11 @@
}, },
"TabbedPane.mt.tab.background": "#1E272C", "TabbedPane.mt.tab.background": "#1E272C",
"Table": { "Table": {
"alternativeRowBackground": "#1E272C",
"background": "#263238", "background": "#263238",
"cellNoFocusBorder": "10,5,10,5", "cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5",
"disabledForeground": "#415967",
"dropLineColor": "#009688", "dropLineColor": "#009688",
"dropLineShortColor": "#009688", "dropLineShortColor": "#009688",
"focusCellBackground": "#314549", "focusCellBackground": "#314549",
@@ -653,6 +694,8 @@
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"gridColor": "#263238", "gridColor": "#263238",
"highlightOuter": "#314549", "highlightOuter": "#314549",
"hoverBackground": "#546E7A70",
"hoverInactiveBackground": "#314549",
"lightSelectionForeground": "#FFFFFF", "lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#607D8B", "lightSelectionInactiveForeground": "#607D8B",
"lightSelectionInactiveBackground": "#32424A", "lightSelectionInactiveBackground": "#32424A",
@@ -729,8 +772,8 @@
"ToolTip": { "ToolTip": {
"Actions.background": "#263238", "Actions.background": "#263238",
"Actions.infoForeground": "#607D8B", "Actions.infoForeground": "#607D8B",
"background": "#263238", "background": "#1E272C",
"borderColor": "#425B67", "borderColor": "#2A373E",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"infoForeground": "#607D8B", "infoForeground": "#607D8B",
"separatorColor": "#2A373E", "separatorColor": "#2A373E",
@@ -751,50 +794,93 @@
"background": "#263238" "background": "#263238"
}, },
"HeaderTab": { "HeaderTab": {
"borderColor": "#425B67",
"hoverBackground": "#425B67", "hoverBackground": "#425B67",
"hoverInactiveBackground": "#32424A", "hoverInactiveBackground": "#425B67",
"inactiveUnderlineColor": "#009688", "inactiveUnderlineColor": "#009688",
"selectedBackground": "#1E272C", "selectedBackground": "#1E272C",
"selectedInactiveBackground": "#1E272C", "selectedInactiveBackground": "#1E272C",
"underlineColor": "#009688", "underlineColor": "#009688",
"underlinedTabBackground": "#425B67", "underlinedTabBackground": "#314549",
"underlinedTabInactiveBackground": "#32424A" "underlinedTabInactiveBackground": "#32424A",
"underlinedTabForeground": "#FFFFFF",
"underlinedTabInactiveForeground": "#B0BEC5"
} }
}, },
"Tree": { "Tree": {
"background": "#1E272C", "background": "#1E272C",
"foreground": "#607D8B", "foreground": "#607D8B",
"hash": "#2A373E", "hash": "#2A373E",
"hoverBackground": "#546E7A70",
"hoverInactiveBackground": "#314549",
"modifiedItemForeground": "#009688", "modifiedItemForeground": "#009688",
"rowHeight": 28, "rowHeight": 28,
"selectionBackground": "#546E7A50", "selectionBackground": "#546E7A70",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#546E7A50", "selectionInactiveBackground": "#546E7A70",
"textBackground": "#1E272C" "textBackground": "#1E272C"
}, },
"Tree.leftChildIndent": 10, "Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5, "Tree.rightChildIndent": 5,
"UiDesigner": { "UIDesigner": {
"Activity.borderColor": "#2A373E", "Activity.borderColor": "#2A373E",
"ColorPicker.background": "#263238", "Canvas.background": "#1E272C",
"ColorPicker.foreground": "#B0BEC5", "ColorPicker": {
"Component.borderColor": "#2A373E", "background": "#263238",
"Component.background": "#263238", "foreground": "#B0BEC5"
"Component.foreground": "#B0BEC5", },
"Connector.borderColor": "#2A373E", "Component": {
"Connector.hoverBorderColor": "#425B67", "borderColor": "#2A373E",
"background": "#263238",
"foreground": "#B0BEC5",
"hoverBorderColor": "#425B67"
},
"Connector": {
"borderColor": "#2A373E",
"hoverBorderColor": "#425B67"
},
"Canvas.background": "#1E272C", "Canvas.background": "#1E272C",
"highStroke.foreground": "#B0BEC5", "highStroke.foreground": "#B0BEC5",
"Label.foreground": "#607D8B", "Label.foreground": "#607D8B",
"List.selectionBackground": "#546E7A50", "List.selectionBackground": "#546E7A70",
"Panel.borderColor": "#2A373E", "motion": {
"Panel.background": "#263238", "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", "percent.foreground": "#B0BEC5",
"Placeholder.background": "#263238", "Placeholder": {
"Placeholder.borderColor": "#2A373E", "background": "#263238",
"Placeholder.foreground": "#B0BEC5", "borderColor": "#2A373E",
"Placeholder.selectedForeground": "#FFFFFF", "foreground": "#B0BEC5",
"selectedForeground": "#FFFFFF"
},
"Preview.background": "#263238", "Preview.background": "#263238",
"stroke.acceleratorForeground": "#607D8B" "stroke.acceleratorForeground": "#607D8B"
}, },
@@ -828,7 +914,8 @@
}, },
"Log": { "Log": {
"Commit.unmatchedForeground": "#607D8B", "Commit.unmatchedForeground": "#607D8B",
"Commit.currentBranchBackground": "#32424A" "Commit.currentBranchBackground": "#32424A",
"Commit.hoveredBackground": "#546E7A70"
}, },
"RefLabel": { "RefLabel": {
"foreground": "#FFFFFF", "foreground": "#FFFFFF",
@@ -840,16 +927,22 @@
"foreground": "#B0BEC5" "foreground": "#B0BEC5"
}, },
"WelcomeScreen": { "WelcomeScreen": {
"AssociatedComponent.background": "#263238",
"background": "#263238", "background": "#263238",
"borderColor": "#263238", "borderColor": "#263238",
"captionBackground": "#1E272C", "captionBackground": "#1E272C",
"captionForeground": "#B0BEC5", "captionForeground": "#B0BEC5",
"Details.background": "#263238",
"footerBackground": "#1E272C", "footerBackground": "#1E272C",
"footerForeground": "#B0BEC5", "footerForeground": "#B0BEC5",
"headerBackground": "#263238", "headerBackground": "#263238",
"headerForeground": "#B0BEC5", "headerForeground": "#B0BEC5",
"List.background": "#1E272C",
"separatorColor": "#2A373E", "separatorColor": "#2A373E",
"SidePanel.background": "#32424A",
"Projects": { "Projects": {
"actions.background": "#1E272C",
"actions.selectionBackground": "#425B67",
"background": "#32424A", "background": "#32424A",
"selectionBackground": "#546E7A", "selectionBackground": "#546E7A",
"selectionInactiveBackground": "#32424A" "selectionInactiveBackground": "#32424A"

View File

@@ -3,6 +3,12 @@
"dark": true, "dark": true,
"author": "Mallowigi", "author": "Mallowigi",
"editorScheme": "/colors/Material Oceanic.xml", "editorScheme": "/colors/Material Oceanic.xml",
"emptyFrameBackground": {
"anchor": "center",
"image": "/walls/oceanic.svg",
"fill": "scale",
"transparency": 50
},
"ui": { "ui": {
"*": { "*": {
"acceleratorSelectionForeground": "#607D8B", "acceleratorSelectionForeground": "#607D8B",
@@ -72,7 +78,10 @@
"Tooltip.borderColor": "#2A373E", "Tooltip.borderColor": "#2A373E",
"Tooltip.background": "#1E272C" "Tooltip.background": "#1E272C"
}, },
"Content.background": "#1E272C", "Content": {
"background": "#1E272C",
"selectionBackground": "#546E7A"
},
"CheckBox": { "CheckBox": {
"background": "#263238", "background": "#263238",
"disabledText": "#415967", "disabledText": "#415967",
@@ -89,6 +98,14 @@
"selectionBackground": "#546E7A", "selectionBackground": "#546E7A",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"CodeWithMe": {
"Avatar.foreground": "#B0BEC5",
"AccessEnabled": {
"accessDot": "#009688",
"dropdownBorder": "#32424A",
"pillBackground": "$second"
}
},
"ColorChooser": { "ColorChooser": {
"background": "#263238", "background": "#263238",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
@@ -104,6 +121,7 @@
}, },
"background": "#263238", "background": "#263238",
"buttonBackground": "#2E3C43", "buttonBackground": "#2E3C43",
"darcula.hoveredArrowButtonForeground": "#009688",
"disabledForeground": "#415967", "disabledForeground": "#415967",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"modifiedItemForeground": "#009688", "modifiedItemForeground": "#009688",
@@ -168,11 +186,13 @@
"hoverBackground": "#314549", "hoverBackground": "#314549",
"hoverColor": "#263238", "hoverColor": "#263238",
"hoverMaskColor": "#425B67", "hoverMaskColor": "#425B67",
"inactiveColoredTabBackground": "#263238",
"inactiveColoredFileBackground": "#2E3C43", "inactiveColoredFileBackground": "#2E3C43",
"inactiveUnderlineColor": "#415967", "inactiveUnderlineColor": "#009688",
"inactiveMaskColor": "#263238", "inactiveMaskColor": "#263238",
"underlineColor": "#009688", "underlineColor": "#009688",
"underlinedTabBackground": "#314549" "underlinedTabBackground": "#314549",
"underlinedTabForeground": "#FFFFFF"
}, },
"Desktop.background": "#263238", "Desktop.background": "#263238",
"DialogWrapper.southPanelBackground": "#263238", "DialogWrapper.southPanelBackground": "#263238",
@@ -198,15 +218,17 @@
}, },
"EditorTabs": { "EditorTabs": {
"borderColor": "#32424A", "borderColor": "#32424A",
"hoverBackground": "#425B67",
"hoverColor": "#425B67", "hoverColor": "#425B67",
"hoverMaskColor": "#425B67", "hoverMaskColor": "#425B67",
"inactiveMaskColor": "#263238", "inactiveMaskColor": "#263238",
"inactiveColoredFileBackground": "#2632382", "inactiveColoredFileBackground": "#263238",
"inactiveUnderlineColor": "#415967", "inactiveUnderlineColor": "#415967",
"selectedForeground": "#B0BEC5", "selectedForeground": "#B0BEC5",
"selectedBackground": "#314549", "selectedBackground": "#314549",
"underlineColor": "#009688", "underlineColor": "#009688",
"underlinedTabBackground": "#314549" "underlinedTabBackground": "#314549",
"underlinedTabForeground": "#FFFFFF"
}, },
"EditorGroupsTabs": { "EditorGroupsTabs": {
"background": "#263238", "background": "#263238",
@@ -246,12 +268,13 @@
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionBackground": "#314549" "selectionBackground": "#314549"
}, },
"GotItTooltip.borderColor": "#1E272C",
"Group": { "Group": {
"disabledSeparatorColor": "#2A373E", "disabledSeparatorColor": "#2A373E",
"separatorColor": "#2A373E" "separatorColor": "#2A373E"
}, },
"GutterTooltip": { "GutterTooltip": {
"infoForeground": "#B0BEC5", "infoForeground": "#607D8B",
"lineSeparatorColor": "#263238" "lineSeparatorColor": "#263238"
}, },
"HeaderColor": { "HeaderColor": {
@@ -288,7 +311,8 @@
"disabledText": "#415967", "disabledText": "#415967",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"infoForeground": "#607D8B", "infoForeground": "#607D8B",
"selectedForeground": "#FFFFFF" "selectedForeground": "#FFFFFF",
"selectedDisabledForeground": "#B0BEC5"
}, },
"Link": { "Link": {
"activeForeground": "#009688", "activeForeground": "#009688",
@@ -301,10 +325,12 @@
"List": { "List": {
"background": "#32424A", "background": "#32424A",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"hoverBackground": "#546E7A70",
"hoverInactiveBackground": "#314549",
"selectionBackground": "#546E7A50", "selectionBackground": "#546E7A50",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#546E7A50" "selectionInactiveBackground": "#546E7A70"
}, },
"material": { "material": {
"background": "#263238", "background": "#263238",
@@ -409,7 +435,7 @@
"ParameterInfo": { "ParameterInfo": {
"background": "#32424A", "background": "#32424A",
"borderColor": "#314549", "borderColor": "#314549",
"currentOverloadBackground": "#314549", "currentOverloadBackground": "#425B67",
"currentParameterForeground": "#009688", "currentParameterForeground": "#009688",
"disabledForeground": "#415967", "disabledForeground": "#415967",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
@@ -429,7 +455,8 @@
"background": "#263238", "background": "#263238",
"disabledForeground": "#415967", "disabledForeground": "#415967",
"eapTagBackground": "#425B67", "eapTagBackground": "#425B67",
"lightSelectionBackground": "#546E7A", "hoverBackground": "#546E7A70",
"lightSelectionBackground": "#314549",
"paidTagBackground": "#425B67", "paidTagBackground": "#425B67",
"selectionBackground": "#546E7A", "selectionBackground": "#546E7A",
"tagForeground": "#009688", "tagForeground": "#009688",
@@ -442,7 +469,7 @@
"installFocusedBackground": "#425B67", "installFocusedBackground": "#425B67",
"installFillForeground": "#415967", "installFillForeground": "#415967",
"installFillBackground": "#2E3C43", "installFillBackground": "#2E3C43",
"updateBackground": "#2E3C43", "updateBackground": "#009688",
"updateBorderColor": "#2E3C43", "updateBorderColor": "#2E3C43",
"updateForeground": "#B0BEC5" "updateForeground": "#B0BEC5"
}, },
@@ -517,6 +544,7 @@
"selectionBackground": "#546E7A", "selectionBackground": "#546E7A",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"ScreenView.borderColor": "#2A373E",
"ScrollBar": { "ScrollBar": {
"background": "#263238", "background": "#263238",
"hoverThumbBorderColor": "#009688", "hoverThumbBorderColor": "#009688",
@@ -576,9 +604,18 @@
}, },
"SearchMatch": { "SearchMatch": {
"endBackground": "#009688", "endBackground": "#009688",
"startBackground": "#009688" "startBackground": "#009688",
"endColor": "#009688",
"startColor": "#009688"
}, },
"SearchField.errorBackground": "#1E272C", "SearchField.errorBackground": "#1E272C",
"SearchOption": {
"selectedBackground": "#314549"
},
"SearchResults": {
"Ordinal.File.Foreground": "#607D8B",
"Repeated.File.Foreground": "#B0BEC5"
},
"Separator": { "Separator": {
"background": "#32424A", "background": "#32424A",
"foreground": "#32424A", "foreground": "#32424A",
@@ -616,7 +653,9 @@
}, },
"SplitPaneDivider.draggingColor": "#32424A", "SplitPaneDivider.draggingColor": "#32424A",
"StatusBar": { "StatusBar": {
"borderColor": "#263238" "borderColor": "#263238",
"hoverBackground": "#425B67",
"LightEditBackground": "#314549"
}, },
"TabbedPane": { "TabbedPane": {
"background": "#263238", "background": "#263238",
@@ -643,9 +682,11 @@
}, },
"TabbedPane.mt.tab.background": "#263238", "TabbedPane.mt.tab.background": "#263238",
"Table": { "Table": {
"alternativeRowBackground": "#1E272C",
"background": "#263238", "background": "#263238",
"cellNoFocusBorder": "10,5,10,5", "cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5",
"disabledForeground": "#415967",
"dropLineColor": "#009688", "dropLineColor": "#009688",
"dropLineShortColor": "#009688", "dropLineShortColor": "#009688",
"focusCellBackground": "#314549", "focusCellBackground": "#314549",
@@ -653,6 +694,8 @@
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"gridColor": "#263238", "gridColor": "#263238",
"highlightOuter": "#314549", "highlightOuter": "#314549",
"hoverBackground": "#546E7A70",
"hoverInactiveBackground": "#314549",
"lightSelectionForeground": "#FFFFFF", "lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#607D8B", "lightSelectionInactiveForeground": "#607D8B",
"lightSelectionInactiveBackground": "#32424A", "lightSelectionInactiveBackground": "#32424A",
@@ -729,8 +772,8 @@
"ToolTip": { "ToolTip": {
"Actions.background": "#263238", "Actions.background": "#263238",
"Actions.infoForeground": "#607D8B", "Actions.infoForeground": "#607D8B",
"background": "#263238", "background": "#1E272C",
"borderColor": "#425B67", "borderColor": "#2A373E",
"foreground": "#B0BEC5", "foreground": "#B0BEC5",
"infoForeground": "#607D8B", "infoForeground": "#607D8B",
"separatorColor": "#2A373E", "separatorColor": "#2A373E",
@@ -751,50 +794,93 @@
"background": "#263238" "background": "#263238"
}, },
"HeaderTab": { "HeaderTab": {
"borderColor": "#425B67",
"hoverBackground": "#425B67", "hoverBackground": "#425B67",
"hoverInactiveBackground": "#32424A", "hoverInactiveBackground": "#425B67",
"inactiveUnderlineColor": "#009688", "inactiveUnderlineColor": "#009688",
"selectedBackground": "#1E272C", "selectedBackground": "#1E272C",
"selectedInactiveBackground": "#1E272C", "selectedInactiveBackground": "#1E272C",
"underlineColor": "#009688", "underlineColor": "#009688",
"underlinedTabBackground": "#425B67", "underlinedTabBackground": "#314549",
"underlinedTabInactiveBackground": "#32424A" "underlinedTabInactiveBackground": "#32424A",
"underlinedTabForeground": "#FFFFFF",
"underlinedTabInactiveForeground": "#B0BEC5"
} }
}, },
"Tree": { "Tree": {
"background": "#263238", "background": "#263238",
"foreground": "#607D8B", "foreground": "#607D8B",
"hash": "#2A373E", "hash": "#2A373E",
"hoverBackground": "#546E7A70",
"hoverInactiveBackground": "#314549",
"modifiedItemForeground": "#009688", "modifiedItemForeground": "#009688",
"rowHeight": 28, "rowHeight": 28,
"selectionBackground": "#546E7A50", "selectionBackground": "#546E7A70",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#546E7A50", "selectionInactiveBackground": "#546E7A70",
"textBackground": "#263238" "textBackground": "#263238"
}, },
"Tree.leftChildIndent": 10, "Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5, "Tree.rightChildIndent": 5,
"UiDesigner": { "UIDesigner": {
"Activity.borderColor": "#2A373E", "Activity.borderColor": "#2A373E",
"ColorPicker.background": "#263238", "Canvas.background": "#1E272C",
"ColorPicker.foreground": "#B0BEC5", "ColorPicker": {
"Component.borderColor": "#2A373E", "background": "#263238",
"Component.background": "#263238", "foreground": "#B0BEC5"
"Component.foreground": "#B0BEC5", },
"Connector.borderColor": "#2A373E", "Component": {
"Connector.hoverBorderColor": "#425B67", "borderColor": "#2A373E",
"background": "#263238",
"foreground": "#B0BEC5",
"hoverBorderColor": "#425B67"
},
"Connector": {
"borderColor": "#2A373E",
"hoverBorderColor": "#425B67"
},
"Canvas.background": "#1E272C", "Canvas.background": "#1E272C",
"highStroke.foreground": "#B0BEC5", "highStroke.foreground": "#B0BEC5",
"Label.foreground": "#607D8B", "Label.foreground": "#607D8B",
"List.selectionBackground": "#546E7A50", "List.selectionBackground": "#546E7A70",
"Panel.borderColor": "#2A373E", "motion": {
"Panel.background": "#263238", "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", "percent.foreground": "#B0BEC5",
"Placeholder.background": "#263238", "Placeholder": {
"Placeholder.borderColor": "#2A373E", "background": "#263238",
"Placeholder.foreground": "#B0BEC5", "borderColor": "#2A373E",
"Placeholder.selectedForeground": "#FFFFFF", "foreground": "#B0BEC5",
"selectedForeground": "#FFFFFF"
},
"Preview.background": "#263238", "Preview.background": "#263238",
"stroke.acceleratorForeground": "#607D8B" "stroke.acceleratorForeground": "#607D8B"
}, },
@@ -828,7 +914,8 @@
}, },
"Log": { "Log": {
"Commit.unmatchedForeground": "#607D8B", "Commit.unmatchedForeground": "#607D8B",
"Commit.currentBranchBackground": "#32424A" "Commit.currentBranchBackground": "#32424A",
"Commit.hoveredBackground": "#546E7A70"
}, },
"RefLabel": { "RefLabel": {
"foreground": "#FFFFFF", "foreground": "#FFFFFF",
@@ -840,16 +927,22 @@
"foreground": "#B0BEC5" "foreground": "#B0BEC5"
}, },
"WelcomeScreen": { "WelcomeScreen": {
"AssociatedComponent.background": "#263238",
"background": "#263238", "background": "#263238",
"borderColor": "#263238", "borderColor": "#263238",
"captionBackground": "#1E272C", "captionBackground": "#1E272C",
"captionForeground": "#B0BEC5", "captionForeground": "#B0BEC5",
"Details.background": "#263238",
"footerBackground": "#1E272C", "footerBackground": "#1E272C",
"footerForeground": "#B0BEC5", "footerForeground": "#B0BEC5",
"headerBackground": "#263238", "headerBackground": "#263238",
"headerForeground": "#B0BEC5", "headerForeground": "#B0BEC5",
"List.background": "#1E272C",
"separatorColor": "#2A373E", "separatorColor": "#2A373E",
"SidePanel.background": "#32424A",
"Projects": { "Projects": {
"actions.background": "#1E272C",
"actions.selectionBackground": "#425B67",
"background": "#32424A", "background": "#32424A",
"selectionBackground": "#546E7A", "selectionBackground": "#546E7A",
"selectionInactiveBackground": "#32424A" "selectionInactiveBackground": "#32424A"

View File

@@ -3,6 +3,12 @@
"dark": true, "dark": true,
"author": "Mallowigi", "author": "Mallowigi",
"editorScheme": "/colors/Material Palenight.xml", "editorScheme": "/colors/Material Palenight.xml",
"emptyFrameBackground": {
"anchor": "center",
"image": "/walls/palenight.svg",
"fill": "scale",
"transparency": 50
},
"ui": { "ui": {
"*": { "*": {
"acceleratorSelectionForeground": "#676E95", "acceleratorSelectionForeground": "#676E95",
@@ -72,7 +78,10 @@
"Tooltip.borderColor": "#2b2a3e", "Tooltip.borderColor": "#2b2a3e",
"Tooltip.background": "#202331" "Tooltip.background": "#202331"
}, },
"Content.background": "#202331", "Content": {
"background": "#202331",
"selectionBackground": "#3C435E"
},
"CheckBox": { "CheckBox": {
"background": "#292D3E", "background": "#292D3E",
"disabledText": "#515772", "disabledText": "#515772",
@@ -89,6 +98,14 @@
"selectionBackground": "#3C435E", "selectionBackground": "#3C435E",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"CodeWithMe": {
"Avatar.foreground": "#A6ACCD",
"AccessEnabled": {
"accessDot": "#ab47bc",
"dropdownBorder": "#34324a",
"pillBackground": "$second"
}
},
"ColorChooser": { "ColorChooser": {
"background": "#292D3E", "background": "#292D3E",
"foreground": "#A6ACCD", "foreground": "#A6ACCD",
@@ -104,6 +121,7 @@
}, },
"background": "#202331", "background": "#202331",
"buttonBackground": "#303348", "buttonBackground": "#303348",
"darcula.hoveredArrowButtonForeground": "#ab47bc",
"disabledForeground": "#515772", "disabledForeground": "#515772",
"foreground": "#A6ACCD", "foreground": "#A6ACCD",
"modifiedItemForeground": "#ab47bc", "modifiedItemForeground": "#ab47bc",
@@ -168,11 +186,13 @@
"hoverBackground": "#414863", "hoverBackground": "#414863",
"hoverColor": "#202331", "hoverColor": "#202331",
"hoverMaskColor": "#444267", "hoverMaskColor": "#444267",
"inactiveColoredTabBackground": "#292D3E",
"inactiveColoredFileBackground": "#303348", "inactiveColoredFileBackground": "#303348",
"inactiveUnderlineColor": "#515772", "inactiveUnderlineColor": "#ab47bc",
"inactiveMaskColor": "#202331", "inactiveMaskColor": "#202331",
"underlineColor": "#ab47bc", "underlineColor": "#ab47bc",
"underlinedTabBackground": "#414863" "underlinedTabBackground": "#414863",
"underlinedTabForeground": "#FFFFFF"
}, },
"Desktop.background": "#292D3E", "Desktop.background": "#292D3E",
"DialogWrapper.southPanelBackground": "#292D3E", "DialogWrapper.southPanelBackground": "#292D3E",
@@ -198,15 +218,17 @@
}, },
"EditorTabs": { "EditorTabs": {
"borderColor": "#34324a", "borderColor": "#34324a",
"hoverBackground": "#444267",
"hoverColor": "#444267", "hoverColor": "#444267",
"hoverMaskColor": "#444267", "hoverMaskColor": "#444267",
"inactiveMaskColor": "#292D3E", "inactiveMaskColor": "#292D3E",
"inactiveColoredFileBackground": "#292D3E2", "inactiveColoredFileBackground": "#292D3E",
"inactiveUnderlineColor": "#515772", "inactiveUnderlineColor": "#515772",
"selectedForeground": "#A6ACCD", "selectedForeground": "#A6ACCD",
"selectedBackground": "#414863", "selectedBackground": "#414863",
"underlineColor": "#ab47bc", "underlineColor": "#ab47bc",
"underlinedTabBackground": "#414863" "underlinedTabBackground": "#414863",
"underlinedTabForeground": "#FFFFFF"
}, },
"EditorGroupsTabs": { "EditorGroupsTabs": {
"background": "#292D3E", "background": "#292D3E",
@@ -246,12 +268,13 @@
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionBackground": "#414863" "selectionBackground": "#414863"
}, },
"GotItTooltip.borderColor": "#202331",
"Group": { "Group": {
"disabledSeparatorColor": "#2b2a3e", "disabledSeparatorColor": "#2b2a3e",
"separatorColor": "#2b2a3e" "separatorColor": "#2b2a3e"
}, },
"GutterTooltip": { "GutterTooltip": {
"infoForeground": "#A6ACCD", "infoForeground": "#676E95",
"lineSeparatorColor": "#292D3E" "lineSeparatorColor": "#292D3E"
}, },
"HeaderColor": { "HeaderColor": {
@@ -288,7 +311,8 @@
"disabledText": "#515772", "disabledText": "#515772",
"foreground": "#A6ACCD", "foreground": "#A6ACCD",
"infoForeground": "#676E95", "infoForeground": "#676E95",
"selectedForeground": "#FFFFFF" "selectedForeground": "#FFFFFF",
"selectedDisabledForeground": "#A6ACCD"
}, },
"Link": { "Link": {
"activeForeground": "#ab47bc", "activeForeground": "#ab47bc",
@@ -301,10 +325,12 @@
"List": { "List": {
"background": "#34324a", "background": "#34324a",
"foreground": "#A6ACCD", "foreground": "#A6ACCD",
"hoverBackground": "#676E9570",
"hoverInactiveBackground": "#414863",
"selectionBackground": "#3C435E50", "selectionBackground": "#3C435E50",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#676E9550" "selectionInactiveBackground": "#676E9570"
}, },
"material": { "material": {
"background": "#292D3E", "background": "#292D3E",
@@ -409,7 +435,7 @@
"ParameterInfo": { "ParameterInfo": {
"background": "#34324a", "background": "#34324a",
"borderColor": "#414863", "borderColor": "#414863",
"currentOverloadBackground": "#414863", "currentOverloadBackground": "#444267",
"currentParameterForeground": "#ab47bc", "currentParameterForeground": "#ab47bc",
"disabledForeground": "#515772", "disabledForeground": "#515772",
"foreground": "#A6ACCD", "foreground": "#A6ACCD",
@@ -429,7 +455,8 @@
"background": "#292D3E", "background": "#292D3E",
"disabledForeground": "#515772", "disabledForeground": "#515772",
"eapTagBackground": "#444267", "eapTagBackground": "#444267",
"lightSelectionBackground": "#3C435E", "hoverBackground": "#676E9570",
"lightSelectionBackground": "#414863",
"paidTagBackground": "#444267", "paidTagBackground": "#444267",
"selectionBackground": "#3C435E", "selectionBackground": "#3C435E",
"tagForeground": "#ab47bc", "tagForeground": "#ab47bc",
@@ -442,7 +469,7 @@
"installFocusedBackground": "#444267", "installFocusedBackground": "#444267",
"installFillForeground": "#515772", "installFillForeground": "#515772",
"installFillBackground": "#303348", "installFillBackground": "#303348",
"updateBackground": "#303348", "updateBackground": "#ab47bc",
"updateBorderColor": "#303348", "updateBorderColor": "#303348",
"updateForeground": "#A6ACCD" "updateForeground": "#A6ACCD"
}, },
@@ -517,6 +544,7 @@
"selectionBackground": "#3C435E", "selectionBackground": "#3C435E",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"ScreenView.borderColor": "#2b2a3e",
"ScrollBar": { "ScrollBar": {
"background": "#292D3E", "background": "#292D3E",
"hoverThumbBorderColor": "#ab47bc", "hoverThumbBorderColor": "#ab47bc",
@@ -576,9 +604,18 @@
}, },
"SearchMatch": { "SearchMatch": {
"endBackground": "#ab47bc", "endBackground": "#ab47bc",
"startBackground": "#ab47bc" "startBackground": "#ab47bc",
"endColor": "#ab47bc",
"startColor": "#ab47bc"
}, },
"SearchField.errorBackground": "#202331", "SearchField.errorBackground": "#202331",
"SearchOption": {
"selectedBackground": "#414863"
},
"SearchResults": {
"Ordinal.File.Foreground": "#676E95",
"Repeated.File.Foreground": "#A6ACCD"
},
"Separator": { "Separator": {
"background": "#34324a", "background": "#34324a",
"foreground": "#34324a", "foreground": "#34324a",
@@ -616,7 +653,9 @@
}, },
"SplitPaneDivider.draggingColor": "#34324a", "SplitPaneDivider.draggingColor": "#34324a",
"StatusBar": { "StatusBar": {
"borderColor": "#292D3E" "borderColor": "#292D3E",
"hoverBackground": "#444267",
"LightEditBackground": "#414863"
}, },
"TabbedPane": { "TabbedPane": {
"background": "#292D3E", "background": "#292D3E",
@@ -643,9 +682,11 @@
}, },
"TabbedPane.mt.tab.background": "#202331", "TabbedPane.mt.tab.background": "#202331",
"Table": { "Table": {
"alternativeRowBackground": "#202331",
"background": "#292D3E", "background": "#292D3E",
"cellNoFocusBorder": "10,5,10,5", "cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5",
"disabledForeground": "#515772",
"dropLineColor": "#ab47bc", "dropLineColor": "#ab47bc",
"dropLineShortColor": "#ab47bc", "dropLineShortColor": "#ab47bc",
"focusCellBackground": "#414863", "focusCellBackground": "#414863",
@@ -653,6 +694,8 @@
"foreground": "#A6ACCD", "foreground": "#A6ACCD",
"gridColor": "#292D3E", "gridColor": "#292D3E",
"highlightOuter": "#414863", "highlightOuter": "#414863",
"hoverBackground": "#676E9570",
"hoverInactiveBackground": "#414863",
"lightSelectionForeground": "#FFFFFF", "lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#676E95", "lightSelectionInactiveForeground": "#676E95",
"lightSelectionInactiveBackground": "#34324a", "lightSelectionInactiveBackground": "#34324a",
@@ -729,8 +772,8 @@
"ToolTip": { "ToolTip": {
"Actions.background": "#292D3E", "Actions.background": "#292D3E",
"Actions.infoForeground": "#676E95", "Actions.infoForeground": "#676E95",
"background": "#292D3E", "background": "#202331",
"borderColor": "#444267", "borderColor": "#2b2a3e",
"foreground": "#A6ACCD", "foreground": "#A6ACCD",
"infoForeground": "#676E95", "infoForeground": "#676E95",
"separatorColor": "#2b2a3e", "separatorColor": "#2b2a3e",
@@ -751,50 +794,93 @@
"background": "#292D3E" "background": "#292D3E"
}, },
"HeaderTab": { "HeaderTab": {
"borderColor": "#444267",
"hoverBackground": "#444267", "hoverBackground": "#444267",
"hoverInactiveBackground": "#34324a", "hoverInactiveBackground": "#444267",
"inactiveUnderlineColor": "#ab47bc", "inactiveUnderlineColor": "#ab47bc",
"selectedBackground": "#202331", "selectedBackground": "#202331",
"selectedInactiveBackground": "#202331", "selectedInactiveBackground": "#202331",
"underlineColor": "#ab47bc", "underlineColor": "#ab47bc",
"underlinedTabBackground": "#444267", "underlinedTabBackground": "#414863",
"underlinedTabInactiveBackground": "#34324a" "underlinedTabInactiveBackground": "#34324a",
"underlinedTabForeground": "#FFFFFF",
"underlinedTabInactiveForeground": "#A6ACCD"
} }
}, },
"Tree": { "Tree": {
"background": "#202331", "background": "#202331",
"foreground": "#676E95", "foreground": "#676E95",
"hash": "#2b2a3e", "hash": "#2b2a3e",
"hoverBackground": "#676E9570",
"hoverInactiveBackground": "#414863",
"modifiedItemForeground": "#ab47bc", "modifiedItemForeground": "#ab47bc",
"rowHeight": 28, "rowHeight": 28,
"selectionBackground": "#676E9550", "selectionBackground": "#676E9570",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#676E9550", "selectionInactiveBackground": "#676E9570",
"textBackground": "#202331" "textBackground": "#202331"
}, },
"Tree.leftChildIndent": 10, "Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5, "Tree.rightChildIndent": 5,
"UiDesigner": { "UIDesigner": {
"Activity.borderColor": "#2b2a3e", "Activity.borderColor": "#2b2a3e",
"ColorPicker.background": "#292D3E", "Canvas.background": "#202331",
"ColorPicker.foreground": "#A6ACCD", "ColorPicker": {
"Component.borderColor": "#2b2a3e", "background": "#292D3E",
"Component.background": "#292D3E", "foreground": "#A6ACCD"
"Component.foreground": "#A6ACCD", },
"Connector.borderColor": "#2b2a3e", "Component": {
"Connector.hoverBorderColor": "#444267", "borderColor": "#2b2a3e",
"background": "#292D3E",
"foreground": "#A6ACCD",
"hoverBorderColor": "#444267"
},
"Connector": {
"borderColor": "#2b2a3e",
"hoverBorderColor": "#444267"
},
"Canvas.background": "#202331", "Canvas.background": "#202331",
"highStroke.foreground": "#A6ACCD", "highStroke.foreground": "#A6ACCD",
"Label.foreground": "#676E95", "Label.foreground": "#676E95",
"List.selectionBackground": "#676E9550", "List.selectionBackground": "#676E9570",
"Panel.borderColor": "#2b2a3e", "motion": {
"Panel.background": "#292D3E", "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", "percent.foreground": "#A6ACCD",
"Placeholder.background": "#292D3E", "Placeholder": {
"Placeholder.borderColor": "#2b2a3e", "background": "#292D3E",
"Placeholder.foreground": "#A6ACCD", "borderColor": "#2b2a3e",
"Placeholder.selectedForeground": "#FFFFFF", "foreground": "#A6ACCD",
"selectedForeground": "#FFFFFF"
},
"Preview.background": "#292D3E", "Preview.background": "#292D3E",
"stroke.acceleratorForeground": "#676E95" "stroke.acceleratorForeground": "#676E95"
}, },
@@ -828,7 +914,8 @@
}, },
"Log": { "Log": {
"Commit.unmatchedForeground": "#676E95", "Commit.unmatchedForeground": "#676E95",
"Commit.currentBranchBackground": "#34324a" "Commit.currentBranchBackground": "#34324a",
"Commit.hoveredBackground": "#676E9570"
}, },
"RefLabel": { "RefLabel": {
"foreground": "#FFFFFF", "foreground": "#FFFFFF",
@@ -840,16 +927,22 @@
"foreground": "#A6ACCD" "foreground": "#A6ACCD"
}, },
"WelcomeScreen": { "WelcomeScreen": {
"AssociatedComponent.background": "#292D3E",
"background": "#292D3E", "background": "#292D3E",
"borderColor": "#292D3E", "borderColor": "#292D3E",
"captionBackground": "#202331", "captionBackground": "#202331",
"captionForeground": "#A6ACCD", "captionForeground": "#A6ACCD",
"Details.background": "#292D3E",
"footerBackground": "#202331", "footerBackground": "#202331",
"footerForeground": "#A6ACCD", "footerForeground": "#A6ACCD",
"headerBackground": "#292D3E", "headerBackground": "#292D3E",
"headerForeground": "#A6ACCD", "headerForeground": "#A6ACCD",
"List.background": "#202331",
"separatorColor": "#2b2a3e", "separatorColor": "#2b2a3e",
"SidePanel.background": "#34324a",
"Projects": { "Projects": {
"actions.background": "#202331",
"actions.selectionBackground": "#444267",
"background": "#34324a", "background": "#34324a",
"selectionBackground": "#3C435E", "selectionBackground": "#3C435E",
"selectionInactiveBackground": "#34324a" "selectionInactiveBackground": "#34324a"

View File

@@ -3,6 +3,12 @@
"dark": true, "dark": true,
"author": "Mallowigi", "author": "Mallowigi",
"editorScheme": "/colors/Material Palenight.xml", "editorScheme": "/colors/Material Palenight.xml",
"emptyFrameBackground": {
"anchor": "center",
"image": "/walls/palenight.svg",
"fill": "scale",
"transparency": 50
},
"ui": { "ui": {
"*": { "*": {
"acceleratorSelectionForeground": "#676E95", "acceleratorSelectionForeground": "#676E95",
@@ -72,7 +78,10 @@
"Tooltip.borderColor": "#2b2a3e", "Tooltip.borderColor": "#2b2a3e",
"Tooltip.background": "#202331" "Tooltip.background": "#202331"
}, },
"Content.background": "#202331", "Content": {
"background": "#202331",
"selectionBackground": "#3C435E"
},
"CheckBox": { "CheckBox": {
"background": "#292D3E", "background": "#292D3E",
"disabledText": "#515772", "disabledText": "#515772",
@@ -89,6 +98,14 @@
"selectionBackground": "#3C435E", "selectionBackground": "#3C435E",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"CodeWithMe": {
"Avatar.foreground": "#A6ACCD",
"AccessEnabled": {
"accessDot": "#ab47bc",
"dropdownBorder": "#34324a",
"pillBackground": "$second"
}
},
"ColorChooser": { "ColorChooser": {
"background": "#292D3E", "background": "#292D3E",
"foreground": "#A6ACCD", "foreground": "#A6ACCD",
@@ -104,6 +121,7 @@
}, },
"background": "#292D3E", "background": "#292D3E",
"buttonBackground": "#303348", "buttonBackground": "#303348",
"darcula.hoveredArrowButtonForeground": "#ab47bc",
"disabledForeground": "#515772", "disabledForeground": "#515772",
"foreground": "#A6ACCD", "foreground": "#A6ACCD",
"modifiedItemForeground": "#ab47bc", "modifiedItemForeground": "#ab47bc",
@@ -168,11 +186,13 @@
"hoverBackground": "#414863", "hoverBackground": "#414863",
"hoverColor": "#292D3E", "hoverColor": "#292D3E",
"hoverMaskColor": "#444267", "hoverMaskColor": "#444267",
"inactiveColoredTabBackground": "#292D3E",
"inactiveColoredFileBackground": "#303348", "inactiveColoredFileBackground": "#303348",
"inactiveUnderlineColor": "#515772", "inactiveUnderlineColor": "#ab47bc",
"inactiveMaskColor": "#292D3E", "inactiveMaskColor": "#292D3E",
"underlineColor": "#ab47bc", "underlineColor": "#ab47bc",
"underlinedTabBackground": "#414863" "underlinedTabBackground": "#414863",
"underlinedTabForeground": "#FFFFFF"
}, },
"Desktop.background": "#292D3E", "Desktop.background": "#292D3E",
"DialogWrapper.southPanelBackground": "#292D3E", "DialogWrapper.southPanelBackground": "#292D3E",
@@ -198,15 +218,17 @@
}, },
"EditorTabs": { "EditorTabs": {
"borderColor": "#34324a", "borderColor": "#34324a",
"hoverBackground": "#444267",
"hoverColor": "#444267", "hoverColor": "#444267",
"hoverMaskColor": "#444267", "hoverMaskColor": "#444267",
"inactiveMaskColor": "#292D3E", "inactiveMaskColor": "#292D3E",
"inactiveColoredFileBackground": "#292D3E2", "inactiveColoredFileBackground": "#292D3E",
"inactiveUnderlineColor": "#515772", "inactiveUnderlineColor": "#515772",
"selectedForeground": "#A6ACCD", "selectedForeground": "#A6ACCD",
"selectedBackground": "#414863", "selectedBackground": "#414863",
"underlineColor": "#ab47bc", "underlineColor": "#ab47bc",
"underlinedTabBackground": "#414863" "underlinedTabBackground": "#414863",
"underlinedTabForeground": "#FFFFFF"
}, },
"EditorGroupsTabs": { "EditorGroupsTabs": {
"background": "#292D3E", "background": "#292D3E",
@@ -246,12 +268,13 @@
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionBackground": "#414863" "selectionBackground": "#414863"
}, },
"GotItTooltip.borderColor": "#202331",
"Group": { "Group": {
"disabledSeparatorColor": "#2b2a3e", "disabledSeparatorColor": "#2b2a3e",
"separatorColor": "#2b2a3e" "separatorColor": "#2b2a3e"
}, },
"GutterTooltip": { "GutterTooltip": {
"infoForeground": "#A6ACCD", "infoForeground": "#676E95",
"lineSeparatorColor": "#292D3E" "lineSeparatorColor": "#292D3E"
}, },
"HeaderColor": { "HeaderColor": {
@@ -288,7 +311,8 @@
"disabledText": "#515772", "disabledText": "#515772",
"foreground": "#A6ACCD", "foreground": "#A6ACCD",
"infoForeground": "#676E95", "infoForeground": "#676E95",
"selectedForeground": "#FFFFFF" "selectedForeground": "#FFFFFF",
"selectedDisabledForeground": "#A6ACCD"
}, },
"Link": { "Link": {
"activeForeground": "#ab47bc", "activeForeground": "#ab47bc",
@@ -301,10 +325,12 @@
"List": { "List": {
"background": "#34324a", "background": "#34324a",
"foreground": "#A6ACCD", "foreground": "#A6ACCD",
"hoverBackground": "#676E9570",
"hoverInactiveBackground": "#414863",
"selectionBackground": "#3C435E50", "selectionBackground": "#3C435E50",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#676E9550" "selectionInactiveBackground": "#676E9570"
}, },
"material": { "material": {
"background": "#292D3E", "background": "#292D3E",
@@ -409,7 +435,7 @@
"ParameterInfo": { "ParameterInfo": {
"background": "#34324a", "background": "#34324a",
"borderColor": "#414863", "borderColor": "#414863",
"currentOverloadBackground": "#414863", "currentOverloadBackground": "#444267",
"currentParameterForeground": "#ab47bc", "currentParameterForeground": "#ab47bc",
"disabledForeground": "#515772", "disabledForeground": "#515772",
"foreground": "#A6ACCD", "foreground": "#A6ACCD",
@@ -429,7 +455,8 @@
"background": "#292D3E", "background": "#292D3E",
"disabledForeground": "#515772", "disabledForeground": "#515772",
"eapTagBackground": "#444267", "eapTagBackground": "#444267",
"lightSelectionBackground": "#3C435E", "hoverBackground": "#676E9570",
"lightSelectionBackground": "#414863",
"paidTagBackground": "#444267", "paidTagBackground": "#444267",
"selectionBackground": "#3C435E", "selectionBackground": "#3C435E",
"tagForeground": "#ab47bc", "tagForeground": "#ab47bc",
@@ -442,7 +469,7 @@
"installFocusedBackground": "#444267", "installFocusedBackground": "#444267",
"installFillForeground": "#515772", "installFillForeground": "#515772",
"installFillBackground": "#303348", "installFillBackground": "#303348",
"updateBackground": "#303348", "updateBackground": "#ab47bc",
"updateBorderColor": "#303348", "updateBorderColor": "#303348",
"updateForeground": "#A6ACCD" "updateForeground": "#A6ACCD"
}, },
@@ -517,6 +544,7 @@
"selectionBackground": "#3C435E", "selectionBackground": "#3C435E",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"ScreenView.borderColor": "#2b2a3e",
"ScrollBar": { "ScrollBar": {
"background": "#292D3E", "background": "#292D3E",
"hoverThumbBorderColor": "#ab47bc", "hoverThumbBorderColor": "#ab47bc",
@@ -576,9 +604,18 @@
}, },
"SearchMatch": { "SearchMatch": {
"endBackground": "#ab47bc", "endBackground": "#ab47bc",
"startBackground": "#ab47bc" "startBackground": "#ab47bc",
"endColor": "#ab47bc",
"startColor": "#ab47bc"
}, },
"SearchField.errorBackground": "#202331", "SearchField.errorBackground": "#202331",
"SearchOption": {
"selectedBackground": "#414863"
},
"SearchResults": {
"Ordinal.File.Foreground": "#676E95",
"Repeated.File.Foreground": "#A6ACCD"
},
"Separator": { "Separator": {
"background": "#34324a", "background": "#34324a",
"foreground": "#34324a", "foreground": "#34324a",
@@ -616,7 +653,9 @@
}, },
"SplitPaneDivider.draggingColor": "#34324a", "SplitPaneDivider.draggingColor": "#34324a",
"StatusBar": { "StatusBar": {
"borderColor": "#292D3E" "borderColor": "#292D3E",
"hoverBackground": "#444267",
"LightEditBackground": "#414863"
}, },
"TabbedPane": { "TabbedPane": {
"background": "#292D3E", "background": "#292D3E",
@@ -643,9 +682,11 @@
}, },
"TabbedPane.mt.tab.background": "#292D3E", "TabbedPane.mt.tab.background": "#292D3E",
"Table": { "Table": {
"alternativeRowBackground": "#202331",
"background": "#292D3E", "background": "#292D3E",
"cellNoFocusBorder": "10,5,10,5", "cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5",
"disabledForeground": "#515772",
"dropLineColor": "#ab47bc", "dropLineColor": "#ab47bc",
"dropLineShortColor": "#ab47bc", "dropLineShortColor": "#ab47bc",
"focusCellBackground": "#414863", "focusCellBackground": "#414863",
@@ -653,6 +694,8 @@
"foreground": "#A6ACCD", "foreground": "#A6ACCD",
"gridColor": "#292D3E", "gridColor": "#292D3E",
"highlightOuter": "#414863", "highlightOuter": "#414863",
"hoverBackground": "#676E9570",
"hoverInactiveBackground": "#414863",
"lightSelectionForeground": "#FFFFFF", "lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#676E95", "lightSelectionInactiveForeground": "#676E95",
"lightSelectionInactiveBackground": "#34324a", "lightSelectionInactiveBackground": "#34324a",
@@ -729,8 +772,8 @@
"ToolTip": { "ToolTip": {
"Actions.background": "#292D3E", "Actions.background": "#292D3E",
"Actions.infoForeground": "#676E95", "Actions.infoForeground": "#676E95",
"background": "#292D3E", "background": "#202331",
"borderColor": "#444267", "borderColor": "#2b2a3e",
"foreground": "#A6ACCD", "foreground": "#A6ACCD",
"infoForeground": "#676E95", "infoForeground": "#676E95",
"separatorColor": "#2b2a3e", "separatorColor": "#2b2a3e",
@@ -751,50 +794,93 @@
"background": "#292D3E" "background": "#292D3E"
}, },
"HeaderTab": { "HeaderTab": {
"borderColor": "#444267",
"hoverBackground": "#444267", "hoverBackground": "#444267",
"hoverInactiveBackground": "#34324a", "hoverInactiveBackground": "#444267",
"inactiveUnderlineColor": "#ab47bc", "inactiveUnderlineColor": "#ab47bc",
"selectedBackground": "#202331", "selectedBackground": "#202331",
"selectedInactiveBackground": "#202331", "selectedInactiveBackground": "#202331",
"underlineColor": "#ab47bc", "underlineColor": "#ab47bc",
"underlinedTabBackground": "#444267", "underlinedTabBackground": "#414863",
"underlinedTabInactiveBackground": "#34324a" "underlinedTabInactiveBackground": "#34324a",
"underlinedTabForeground": "#FFFFFF",
"underlinedTabInactiveForeground": "#A6ACCD"
} }
}, },
"Tree": { "Tree": {
"background": "#292D3E", "background": "#292D3E",
"foreground": "#676E95", "foreground": "#676E95",
"hash": "#2b2a3e", "hash": "#2b2a3e",
"hoverBackground": "#676E9570",
"hoverInactiveBackground": "#414863",
"modifiedItemForeground": "#ab47bc", "modifiedItemForeground": "#ab47bc",
"rowHeight": 28, "rowHeight": 28,
"selectionBackground": "#676E9550", "selectionBackground": "#676E9570",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#676E9550", "selectionInactiveBackground": "#676E9570",
"textBackground": "#292D3E" "textBackground": "#292D3E"
}, },
"Tree.leftChildIndent": 10, "Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5, "Tree.rightChildIndent": 5,
"UiDesigner": { "UIDesigner": {
"Activity.borderColor": "#2b2a3e", "Activity.borderColor": "#2b2a3e",
"ColorPicker.background": "#292D3E", "Canvas.background": "#202331",
"ColorPicker.foreground": "#A6ACCD", "ColorPicker": {
"Component.borderColor": "#2b2a3e", "background": "#292D3E",
"Component.background": "#292D3E", "foreground": "#A6ACCD"
"Component.foreground": "#A6ACCD", },
"Connector.borderColor": "#2b2a3e", "Component": {
"Connector.hoverBorderColor": "#444267", "borderColor": "#2b2a3e",
"background": "#292D3E",
"foreground": "#A6ACCD",
"hoverBorderColor": "#444267"
},
"Connector": {
"borderColor": "#2b2a3e",
"hoverBorderColor": "#444267"
},
"Canvas.background": "#202331", "Canvas.background": "#202331",
"highStroke.foreground": "#A6ACCD", "highStroke.foreground": "#A6ACCD",
"Label.foreground": "#676E95", "Label.foreground": "#676E95",
"List.selectionBackground": "#676E9550", "List.selectionBackground": "#676E9570",
"Panel.borderColor": "#2b2a3e", "motion": {
"Panel.background": "#292D3E", "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", "percent.foreground": "#A6ACCD",
"Placeholder.background": "#292D3E", "Placeholder": {
"Placeholder.borderColor": "#2b2a3e", "background": "#292D3E",
"Placeholder.foreground": "#A6ACCD", "borderColor": "#2b2a3e",
"Placeholder.selectedForeground": "#FFFFFF", "foreground": "#A6ACCD",
"selectedForeground": "#FFFFFF"
},
"Preview.background": "#292D3E", "Preview.background": "#292D3E",
"stroke.acceleratorForeground": "#676E95" "stroke.acceleratorForeground": "#676E95"
}, },
@@ -828,7 +914,8 @@
}, },
"Log": { "Log": {
"Commit.unmatchedForeground": "#676E95", "Commit.unmatchedForeground": "#676E95",
"Commit.currentBranchBackground": "#34324a" "Commit.currentBranchBackground": "#34324a",
"Commit.hoveredBackground": "#676E9570"
}, },
"RefLabel": { "RefLabel": {
"foreground": "#FFFFFF", "foreground": "#FFFFFF",
@@ -840,16 +927,22 @@
"foreground": "#A6ACCD" "foreground": "#A6ACCD"
}, },
"WelcomeScreen": { "WelcomeScreen": {
"AssociatedComponent.background": "#292D3E",
"background": "#292D3E", "background": "#292D3E",
"borderColor": "#292D3E", "borderColor": "#292D3E",
"captionBackground": "#202331", "captionBackground": "#202331",
"captionForeground": "#A6ACCD", "captionForeground": "#A6ACCD",
"Details.background": "#292D3E",
"footerBackground": "#202331", "footerBackground": "#202331",
"footerForeground": "#A6ACCD", "footerForeground": "#A6ACCD",
"headerBackground": "#292D3E", "headerBackground": "#292D3E",
"headerForeground": "#A6ACCD", "headerForeground": "#A6ACCD",
"List.background": "#202331",
"separatorColor": "#2b2a3e", "separatorColor": "#2b2a3e",
"SidePanel.background": "#34324a",
"Projects": { "Projects": {
"actions.background": "#202331",
"actions.selectionBackground": "#444267",
"background": "#34324a", "background": "#34324a",
"selectionBackground": "#3C435E", "selectionBackground": "#3C435E",
"selectionInactiveBackground": "#34324a" "selectionInactiveBackground": "#34324a"

View File

@@ -3,21 +3,27 @@
"dark": true, "dark": true,
"author": "Mallowigi", "author": "Mallowigi",
"editorScheme": "/colors/Monokai Pro.xml", "editorScheme": "/colors/Monokai Pro.xml",
"emptyFrameBackground": {
"anchor": "center",
"image": "/walls/monokai.svg",
"fill": "scale",
"transparency": 50
},
"ui": { "ui": {
"*": { "*": {
"acceleratorSelectionForeground": "#939293", "acceleratorSelectionForeground": "#939293",
"background": "#2D2A2E", "background": "#2D2A2E",
"borderColor": "#2d2a2e", "borderColor": "#2d2a2e",
"disabledBackground": "#3a3a3c", "disabledBackground": "#3a3a3c",
"disabledForeground": "#5b595c", "disabledForeground": "#727072",
"disabledText": "#5b595c", "disabledText": "#727072",
"focusColor": "#5b595c", "focusColor": "#5b595c",
"focusedBorderColor": "#ffd866", "focusedBorderColor": "#ffd866",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"inactiveBackground": "#3a3a3c", "inactiveBackground": "#3a3a3c",
"inactiveForeground": "#939293", "inactiveForeground": "#939293",
"infoForeground": "#939293", "infoForeground": "#939293",
"selectionBackground": "#6E6C6F", "selectionBackground": "#5B595C",
"selectionBackgroundInactive": "#403E41", "selectionBackgroundInactive": "#403E41",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#403E41", "selectionInactiveBackground": "#403E41",
@@ -33,7 +39,7 @@
"pressedBorderColor": "#ffd86650" "pressedBorderColor": "#ffd86650"
}, },
"Autocomplete": { "Autocomplete": {
"selectionBackground": "#6E6C6F" "selectionBackground": "#5B595C"
}, },
"Borders.ContrastBorderColor": "#2D2A2E", "Borders.ContrastBorderColor": "#2D2A2E",
"Borders.color": "#2d2a2e", "Borders.color": "#2d2a2e",
@@ -43,7 +49,7 @@
"default": { "default": {
"endBackground": "#4A474B", "endBackground": "#4A474B",
"endBorderColor": "#4A474B", "endBorderColor": "#4A474B",
"foreground": "#ffd866", "foreground": "#FFFFFF",
"focusColor": "#ffd866", "focusColor": "#ffd866",
"focusedBorderColor": "#ffd866", "focusedBorderColor": "#ffd866",
"shadowColor": "#4A474B", "shadowColor": "#4A474B",
@@ -51,7 +57,7 @@
"startBorderColor": "#4A474B" "startBorderColor": "#4A474B"
}, },
"disabledBorderColor": "#403E41", "disabledBorderColor": "#403E41",
"disabledText": "#5b595c", "disabledText": "#727072",
"endBackground": "#403E41", "endBackground": "#403E41",
"endBorderColor": "#403E41", "endBorderColor": "#403E41",
"focus": "#5b595c", "focus": "#5b595c",
@@ -72,10 +78,13 @@
"Tooltip.borderColor": "#2d2a2e", "Tooltip.borderColor": "#2d2a2e",
"Tooltip.background": "#363437" "Tooltip.background": "#363437"
}, },
"Content.background": "#3a3a3c", "Content": {
"background": "#221F22",
"selectionBackground": "#5B595C"
},
"CheckBox": { "CheckBox": {
"background": "#2D2A2E", "background": "#2D2A2E",
"disabledText": "#5b595c", "disabledText": "#727072",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"select": "#ffd866" "select": "#ffd866"
}, },
@@ -84,10 +93,18 @@
"acceleratorSelectionForeground": "#939293", "acceleratorSelectionForeground": "#939293",
"background": "#2D2A2E", "background": "#2D2A2E",
"disabledBackground": "#2D2A2E", "disabledBackground": "#2D2A2E",
"disabledForeground": "#5b595c", "disabledForeground": "#727072",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"selectionBackground": "#6E6C6F", "selectionBackground": "#5B595C",
"selectionForeground": "#ffd866" "selectionForeground": "#FFFFFF"
},
"CodeWithMe": {
"Avatar.foreground": "#fcfcfa",
"AccessEnabled": {
"accessDot": "#ffd866",
"dropdownBorder": "#403E41",
"pillBackground": "$second"
}
}, },
"ColorChooser": { "ColorChooser": {
"background": "#2D2A2E", "background": "#2D2A2E",
@@ -98,19 +115,20 @@
"ComboBox": { "ComboBox": {
"ArrowButton": { "ArrowButton": {
"background": "#403E41", "background": "#403E41",
"disabledIconColor": "#5b595c", "disabledIconColor": "#727072",
"iconColor": "#fcfcfa", "iconColor": "#fcfcfa",
"nonEditableBackground": "#2D2A2E" "nonEditableBackground": "#2D2A2E"
}, },
"background": "#3a3a3c", "background": "#221F22",
"buttonBackground": "#403E41", "buttonBackground": "#403E41",
"disabledForeground": "#5b595c", "darcula.hoveredArrowButtonForeground": "#ffd866",
"disabledForeground": "#727072",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"modifiedItemForeground": "#ffd866", "modifiedItemForeground": "#ffd866",
"nonEditableBackground": "#403E41", "nonEditableBackground": "#403E41",
"padding": "5,5,5,5", "padding": "5,5,5,5",
"selectionBackground": "#4A474B", "selectionBackground": "#4A474B",
"selectionForeground": "#ffd866" "selectionForeground": "#FFFFFF"
}, },
"ComboPopup.border": "#2d2a2e", "ComboPopup.border": "#2d2a2e",
"CompletionPopup": { "CompletionPopup": {
@@ -123,8 +141,8 @@
"selectedGrayedForeground": "#FFFFFF", "selectedGrayedForeground": "#FFFFFF",
"selectionGrayForeground": "#FFFFFF", "selectionGrayForeground": "#FFFFFF",
"selectionInactiveInfoForeground": "#939293", "selectionInactiveInfoForeground": "#939293",
"selectionInactiveBackground": "#6E6C6F50", "selectionInactiveBackground": "#5B595C50",
"selectionBackground": "#6E6C6F80", "selectionBackground": "#5B595C80",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInfoForeground": "#FFFFFF" "selectionInfoForeground": "#FFFFFF"
}, },
@@ -166,13 +184,15 @@
"background": "#2D2A2E", "background": "#2D2A2E",
"borderColor": "#2D2A2E", "borderColor": "#2D2A2E",
"hoverBackground": "#4A474B", "hoverBackground": "#4A474B",
"hoverColor": "#3a3a3c", "hoverColor": "#221F22",
"hoverMaskColor": "#5b595c", "hoverMaskColor": "#5b595c",
"inactiveColoredTabBackground": "#2D2A2E",
"inactiveColoredFileBackground": "#403E41", "inactiveColoredFileBackground": "#403E41",
"inactiveUnderlineColor": "#5b595c", "inactiveUnderlineColor": "#ffd866",
"inactiveMaskColor": "#3a3a3c", "inactiveMaskColor": "#221F22",
"underlineColor": "#ffd866", "underlineColor": "#ffd866",
"underlinedTabBackground": "#4A474B" "underlinedTabBackground": "#4A474B",
"underlinedTabForeground": "#FFFFFF"
}, },
"Desktop.background": "#2D2A2E", "Desktop.background": "#2D2A2E",
"DialogWrapper.southPanelBackground": "#2D2A2E", "DialogWrapper.southPanelBackground": "#2D2A2E",
@@ -183,30 +203,32 @@
"areaForeground": "#fcfcfa" "areaForeground": "#fcfcfa"
}, },
"Editor": { "Editor": {
"background": "#3a3a3c", "background": "#221F22",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"shortcutForeground": "#939293" "shortcutForeground": "#939293"
}, },
"EditorPane": { "EditorPane": {
"background": "#3a3a3c", "background": "#221F22",
"caretForeground": "#ffd866", "caretForeground": "#ffd866",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"inactiveBackground": "#2D2A2E", "inactiveBackground": "#2D2A2E",
"inactiveForeground": "#5b595c", "inactiveForeground": "#727072",
"selectionBackground": "#6E6C6F", "selectionBackground": "#5B595C",
"selectionForeground": "#ffd866" "selectionForeground": "#FFFFFF"
}, },
"EditorTabs": { "EditorTabs": {
"borderColor": "#403E41", "borderColor": "#403E41",
"hoverBackground": "#5b595c",
"hoverColor": "#5b595c", "hoverColor": "#5b595c",
"hoverMaskColor": "#5b595c", "hoverMaskColor": "#5b595c",
"inactiveMaskColor": "#2D2A2E", "inactiveMaskColor": "#2D2A2E",
"inactiveColoredFileBackground": "#2D2A2E2", "inactiveColoredFileBackground": "#2D2A2E",
"inactiveUnderlineColor": "#5b595c", "inactiveUnderlineColor": "#727072",
"selectedForeground": "#fcfcfa", "selectedForeground": "#fcfcfa",
"selectedBackground": "#4A474B", "selectedBackground": "#4A474B",
"underlineColor": "#ffd866", "underlineColor": "#ffd866",
"underlinedTabBackground": "#4A474B" "underlinedTabBackground": "#4A474B",
"underlinedTabForeground": "#FFFFFF"
}, },
"EditorGroupsTabs": { "EditorGroupsTabs": {
"background": "#2D2A2E", "background": "#2D2A2E",
@@ -238,25 +260,26 @@
}, },
"Focus.color": "#2d2a2e", "Focus.color": "#2d2a2e",
"FormattedTextField": { "FormattedTextField": {
"background": "#3a3a3c", "background": "#221F22",
"caretForeground": "#ffd866", "caretForeground": "#ffd866",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"inactiveBackground": "#403E41", "inactiveBackground": "#403E41",
"inactiveForeground": "#5b595c", "inactiveForeground": "#727072",
"selectionForeground": "#ffd866", "selectionForeground": "#FFFFFF",
"selectionBackground": "#4A474B" "selectionBackground": "#4A474B"
}, },
"GotItTooltip.borderColor": "#363437",
"Group": { "Group": {
"disabledSeparatorColor": "#2d2a2e", "disabledSeparatorColor": "#2d2a2e",
"separatorColor": "#2d2a2e" "separatorColor": "#2d2a2e"
}, },
"GutterTooltip": { "GutterTooltip": {
"infoForeground": "#fcfcfa", "infoForeground": "#939293",
"lineSeparatorColor": "#2D2A2E" "lineSeparatorColor": "#2D2A2E"
}, },
"HeaderColor": { "HeaderColor": {
"active": "#2D2A2E", "active": "#2D2A2E",
"inactive": "#3a3a3c" "inactive": "#221F22"
}, },
"HelpTooltip": { "HelpTooltip": {
"background": "#2D2A2E", "background": "#2D2A2E",
@@ -283,12 +306,13 @@
}, },
"Label": { "Label": {
"background": "#2D2A2E", "background": "#2D2A2E",
"disabledForeground": "#5b595c", "disabledForeground": "#727072",
"disabledShadow": "#2D2A2E", "disabledShadow": "#2D2A2E",
"disabledText": "#5b595c", "disabledText": "#727072",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"infoForeground": "#939293", "infoForeground": "#939293",
"selectedForeground": "#ffd866" "selectedForeground": "#FFFFFF",
"selectedDisabledForeground": "#fcfcfa"
}, },
"Link": { "Link": {
"activeForeground": "#ffd866", "activeForeground": "#ffd866",
@@ -301,15 +325,17 @@
"List": { "List": {
"background": "#403E41", "background": "#403E41",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"selectionBackground": "#6E6C6F50", "hoverBackground": "#403E4170",
"hoverInactiveBackground": "#4A474B",
"selectionBackground": "#5B595C50",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#ffd866", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#403E41" "selectionInactiveBackground": "#403E4170"
}, },
"material": { "material": {
"background": "#2D2A2E", "background": "#2D2A2E",
"branchColor": "#fcfcfa", "branchColor": "#fcfcfa",
"contrast": "#3a3a3c", "contrast": "#221F22",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"mergeCommits": "#403E41", "mergeCommits": "#403E41",
"primaryColor": "#939293", "primaryColor": "#939293",
@@ -330,22 +356,22 @@
"border": "4,2,4,2", "border": "4,2,4,2",
"borderColor": "#403E41", "borderColor": "#403E41",
"disabledBackground": "#403E41", "disabledBackground": "#403E41",
"disabledForeground": "#5b595c", "disabledForeground": "#727072",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"selectionBackground": "#6E6C6F", "selectionBackground": "#5B595C",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"separatorColor": "#2d2a2e" "separatorColor": "#2d2a2e"
}, },
"MenuBar": { "MenuBar": {
"background": "#3a3a3c", "background": "#221F22",
"borderColor": "#2D2A2E", "borderColor": "#2D2A2E",
"disabledBackground": "#2D2A2E", "disabledBackground": "#2D2A2E",
"disabledForeground": "#5b595c", "disabledForeground": "#727072",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"highlight": "#2D2A2E", "highlight": "#2D2A2E",
"selectionBackground": "#6E6C6F", "selectionBackground": "#5B595C",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"shadow": "#3a3a3c" "shadow": "#221F22"
}, },
"MenuItem": { "MenuItem": {
"acceleratorForeground": "#939293", "acceleratorForeground": "#939293",
@@ -353,9 +379,9 @@
"border": "4,2,4,2", "border": "4,2,4,2",
"background": "#2D2A2E", "background": "#2D2A2E",
"disabledBackground": "#2D2A2E", "disabledBackground": "#2D2A2E",
"disabledForeground": "#5b595c", "disabledForeground": "#727072",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"selectionBackground": "#6E6C6F", "selectionBackground": "#5B595C",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"NavBar": { "NavBar": {
@@ -367,7 +393,7 @@
"background": "#2D2A2E" "background": "#2D2A2E"
}, },
"SearchField": { "SearchField": {
"background": "#3a3a3c" "background": "#221F22"
} }
}, },
"NewPSD.warning": "#ffd866", "NewPSD.warning": "#ffd866",
@@ -400,7 +426,7 @@
"Outline": { "Outline": {
"color": "#403E41", "color": "#403E41",
"focusedColor": "#ffd866", "focusedColor": "#ffd866",
"disabledColor": "#5b595c" "disabledColor": "#727072"
}, },
"Panel": { "Panel": {
"background": "#2D2A2E", "background": "#2D2A2E",
@@ -409,29 +435,30 @@
"ParameterInfo": { "ParameterInfo": {
"background": "#403E41", "background": "#403E41",
"borderColor": "#4A474B", "borderColor": "#4A474B",
"currentOverloadBackground": "#4A474B", "currentOverloadBackground": "#5b595c",
"currentParameterForeground": "#ffd866", "currentParameterForeground": "#ffd866",
"disabledForeground": "#5b595c", "disabledForeground": "#727072",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"infoForeground": "#939293", "infoForeground": "#939293",
"lineSeparatorColor": "#4A474B" "lineSeparatorColor": "#4A474B"
}, },
"PasswordField": { "PasswordField": {
"background": "#3a3a3c", "background": "#221F22",
"capsLockIconColor": "#ffd866", "capsLockIconColor": "#ffd866",
"caretForeground": "#ffd866", "caretForeground": "#ffd866",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"inactiveForeground": "#5b595c", "inactiveForeground": "#727072",
"selectionBackground": "#4A474B", "selectionBackground": "#4A474B",
"selectionForeground": "#ffd866" "selectionForeground": "#FFFFFF"
}, },
"Plugins": { "Plugins": {
"background": "#2D2A2E", "background": "#2D2A2E",
"disabledForeground": "#5b595c", "disabledForeground": "#727072",
"eapTagBackground": "#5b595c", "eapTagBackground": "#5b595c",
"lightSelectionBackground": "#6E6C6F", "hoverBackground": "#403E4170",
"lightSelectionBackground": "#4A474B",
"paidTagBackground": "#5b595c", "paidTagBackground": "#5b595c",
"selectionBackground": "#6E6C6F", "selectionBackground": "#5B595C",
"tagForeground": "#ffd866", "tagForeground": "#ffd866",
"tagBackground": "#5b595c", "tagBackground": "#5b595c",
"trialTagBackground": "#5b595c", "trialTagBackground": "#5b595c",
@@ -440,14 +467,14 @@
"installBorderColor": "#403E41", "installBorderColor": "#403E41",
"installForeground": "#fcfcfa", "installForeground": "#fcfcfa",
"installFocusedBackground": "#5b595c", "installFocusedBackground": "#5b595c",
"installFillForeground": "#5b595c", "installFillForeground": "#727072",
"installFillBackground": "#403E41", "installFillBackground": "#403E41",
"updateBackground": "#403E41", "updateBackground": "#ffd866",
"updateBorderColor": "#403E41", "updateBorderColor": "#403E41",
"updateForeground": "#fcfcfa" "updateForeground": "#fcfcfa"
}, },
"SearchField": { "SearchField": {
"background": "#3a3a3c", "background": "#221F22",
"borderColor": "#2d2a2e" "borderColor": "#2d2a2e"
}, },
"SectionHeader": { "SectionHeader": {
@@ -466,20 +493,20 @@
"borderColor": "#2D2A2E", "borderColor": "#2D2A2E",
"foreground": "#ffd866" "foreground": "#ffd866"
}, },
"borderColor": "#3a3a3c", "borderColor": "#221F22",
"inactiveBorderColor": "#2D2A2E", "inactiveBorderColor": "#2D2A2E",
"innerBorderColor": "#403E41", "innerBorderColor": "#403E41",
"Header": { "Header": {
"activeBackground": "#2D2A2E", "activeBackground": "#2D2A2E",
"inactiveBackground": "#3a3a3c" "inactiveBackground": "#221F22"
}, },
"paintBorder": true, "paintBorder": true,
"separatorForeground": "#fcfcfa", "separatorForeground": "#fcfcfa",
"separatorColor": "#403E41", "separatorColor": "#403E41",
"Toolbar": { "Toolbar": {
"Floating.background": "#3a3a3c", "Floating.background": "#221F22",
"background": "#3a3a3c", "background": "#221F22",
"borderColor": "#3a3a3c" "borderColor": "#221F22"
} }
}, },
"PopupMenu": { "PopupMenu": {
@@ -504,7 +531,7 @@
}, },
"RadioButton": { "RadioButton": {
"background": "#2D2A2E", "background": "#2D2A2E",
"disabledText": "#5b595c", "disabledText": "#727072",
"foreground": "#fcfcfa" "foreground": "#fcfcfa"
}, },
"RadioButtonMenuItem": { "RadioButtonMenuItem": {
@@ -512,11 +539,12 @@
"acceleratorSelectionForeground": "#939293", "acceleratorSelectionForeground": "#939293",
"background": "#2D2A2E", "background": "#2D2A2E",
"disabledBackground": "#2D2A2E", "disabledBackground": "#2D2A2E",
"disabledForeground": "#5b595c", "disabledForeground": "#727072",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"selectionBackground": "#6E6C6F", "selectionBackground": "#5B595C",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"ScreenView.borderColor": "#2d2a2e",
"ScrollBar": { "ScrollBar": {
"background": "#2D2A2E", "background": "#2D2A2E",
"hoverThumbBorderColor": "#ffd866", "hoverThumbBorderColor": "#ffd866",
@@ -553,7 +581,7 @@
}, },
"SearchEverywhere": { "SearchEverywhere": {
"Advertiser": { "Advertiser": {
"background": "#3a3a3c", "background": "#221F22",
"foreground": "#939293" "foreground": "#939293"
}, },
"Header": { "Header": {
@@ -565,27 +593,36 @@
}, },
"SearchField": { "SearchField": {
"background": "#2D2A2E", "background": "#2D2A2E",
"borderColor": "#3a3a3c", "borderColor": "#221F22",
"infoForeground": "#939293" "infoForeground": "#939293"
}, },
"Tab": { "Tab": {
"active.foreground": "#ffd866", "active.foreground": "#FFFFFF",
"selectedForeground": "#ffd866", "selectedForeground": "#FFFFFF",
"selectedBackground": "#5b595c" "selectedBackground": "#5b595c"
} }
}, },
"SearchMatch": { "SearchMatch": {
"endBackground": "#ffd866", "endBackground": "#ffd866",
"startBackground": "#ffd866" "startBackground": "#ffd866",
"endColor": "#ffd866",
"startColor": "#ffd866"
}, },
"SearchField.errorBackground": "#363437", "SearchField.errorBackground": "#363437",
"SearchOption": {
"selectedBackground": "#4A474B"
},
"SearchResults": {
"Ordinal.File.Foreground": "#939293",
"Repeated.File.Foreground": "#fcfcfa"
},
"Separator": { "Separator": {
"background": "#403E41", "background": "#403E41",
"foreground": "#403E41", "foreground": "#403E41",
"separatorColor": "#403E41" "separatorColor": "#403E41"
}, },
"SidePanel": { "SidePanel": {
"background": "#3a3a3c" "background": "#221F22"
}, },
"Slider": { "Slider": {
"background": "#2D2A2E", "background": "#2D2A2E",
@@ -608,23 +645,25 @@
"background": "#2D2A2E", "background": "#2D2A2E",
"border": "3,3,3,3", "border": "3,3,3,3",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"selectionForeground": "#ffd866" "selectionForeground": "#FFFFFF"
}, },
"SplitPane": { "SplitPane": {
"background": "#2D2A2E", "background": "#2D2A2E",
"highlight": "#3a3a3c" "highlight": "#221F22"
}, },
"SplitPaneDivider.draggingColor": "#403E41", "SplitPaneDivider.draggingColor": "#403E41",
"StatusBar": { "StatusBar": {
"borderColor": "#2D2A2E" "borderColor": "#2D2A2E",
"hoverBackground": "#5b595c",
"LightEditBackground": "#4A474B"
}, },
"TabbedPane": { "TabbedPane": {
"background": "#2D2A2E", "background": "#2D2A2E",
"contentAreaColor": "#5b595c", "contentAreaColor": "#5b595c",
"contentBorderInsets": "3,1,1,1", "contentBorderInsets": "3,1,1,1",
"darkShadow": "#2d2a2e", "darkShadow": "#2d2a2e",
"disabledForeground": "#5b595c", "disabledForeground": "#727072",
"disabledUnderlineColor": "#5b595c", "disabledUnderlineColor": "#727072",
"focus": "#4A474B", "focus": "#4A474B",
"focusColor": "#4A474B", "focusColor": "#4A474B",
"fontSizeOffset": 0, "fontSizeOffset": 0,
@@ -632,7 +671,7 @@
"highlight": "#2d2a2e", "highlight": "#2d2a2e",
"hoverColor": "#5b595c", "hoverColor": "#5b595c",
"labelShift": 0, "labelShift": 0,
"selectedForeground": "#ffd866", "selectedForeground": "#FFFFFF",
"selectedLabelShift": 0, "selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0", "selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true, "tabsOverlapBorder": true,
@@ -641,37 +680,41 @@
"tabSelectionHeight": 2, "tabSelectionHeight": 2,
"underlineColor": "#ffd866" "underlineColor": "#ffd866"
}, },
"TabbedPane.mt.tab.background": "#3a3a3c", "TabbedPane.mt.tab.background": "#221F22",
"Table": { "Table": {
"alternativeRowBackground": "#221F22",
"background": "#2D2A2E", "background": "#2D2A2E",
"cellNoFocusBorder": "10,5,10,5", "cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5",
"disabledForeground": "#727072",
"dropLineColor": "#ffd866", "dropLineColor": "#ffd866",
"dropLineShortColor": "#ffd866", "dropLineShortColor": "#ffd866",
"focusCellBackground": "#4A474B", "focusCellBackground": "#4A474B",
"focusCellForeground": "#ffd866", "focusCellForeground": "#FFFFFF",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"gridColor": "#2D2A2E", "gridColor": "#2D2A2E",
"highlightOuter": "#4A474B", "highlightOuter": "#4A474B",
"lightSelectionForeground": "#ffd866", "hoverBackground": "#403E4170",
"hoverInactiveBackground": "#4A474B",
"lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#939293", "lightSelectionInactiveForeground": "#939293",
"lightSelectionInactiveBackground": "#403E41", "lightSelectionInactiveBackground": "#403E41",
"selectionBackground": "#4A474B", "selectionBackground": "#4A474B",
"selectionForeground": "#ffd866", "selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#4A474B", "selectionInactiveBackground": "#4A474B",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"sortIconColor": "#fcfcfa", "sortIconColor": "#fcfcfa",
"stripeColor": "#3a3a3c" "stripeColor": "#221F22"
}, },
"TableHeader": { "TableHeader": {
"background": "#2D2A2E", "background": "#2D2A2E",
"borderColor": "#2D2A2E", "borderColor": "#2D2A2E",
"bottomSeparatorColor": "#403E41", "bottomSeparatorColor": "#403E41",
"cellBorder": "4,0,4,0", "cellBorder": "4,0,4,0",
"disabledForeground": "#5b595c", "disabledForeground": "#727072",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"focusCellBackground": "#4A474B", "focusCellBackground": "#4A474B",
"focusCellForeground": "#ffd866", "focusCellForeground": "#FFFFFF",
"height": 25, "height": 25,
"separatorColor": "#403E41" "separatorColor": "#403E41"
}, },
@@ -679,31 +722,31 @@
"textInactiveText": "#939293", "textInactiveText": "#939293",
"textText": "#939293", "textText": "#939293",
"TextArea": { "TextArea": {
"background": "#3a3a3c", "background": "#221F22",
"caretForeground": "#ffd866", "caretForeground": "#ffd866",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"inactiveForeground": "#5b595c", "inactiveForeground": "#727072",
"selectionBackground": "#4A474B", "selectionBackground": "#4A474B",
"selectionForeground": "#ffd866" "selectionForeground": "#FFFFFF"
}, },
"TextField": { "TextField": {
"background": "#3a3a3c", "background": "#221F22",
"caretForeground": "#ffd866", "caretForeground": "#ffd866",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"inactiveForeground": "#5b595c", "inactiveForeground": "#727072",
"selectionBackground": "#4A474B", "selectionBackground": "#4A474B",
"selectionForeground": "#ffd866" "selectionForeground": "#FFFFFF"
}, },
"TextPane": { "TextPane": {
"background": "#3a3a3c", "background": "#221F22",
"caretForeground": "#ffd866", "caretForeground": "#ffd866",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"inactiveForeground": "#5b595c", "inactiveForeground": "#727072",
"selectionBackground": "#4A474B", "selectionBackground": "#4A474B",
"selectionForeground": "#ffd866" "selectionForeground": "#FFFFFF"
}, },
"TitlePane": { "TitlePane": {
"background": "#3a3a3c", "background": "#221F22",
"Button.hoverBackground": "#5b595c", "Button.hoverBackground": "#5b595c",
"inactiveBackground": "#2D2A2E", "inactiveBackground": "#2D2A2E",
"infoForeground": "#939293", "infoForeground": "#939293",
@@ -713,7 +756,7 @@
"ToggleButton": { "ToggleButton": {
"borderColor": "#403E41", "borderColor": "#403E41",
"buttonColor": "#fcfcfa", "buttonColor": "#fcfcfa",
"disabledText": "#5b595c", "disabledText": "#727072",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"offForeground": "#2D2A2E", "offForeground": "#2D2A2E",
"offBackground": "#2D2A2E", "offBackground": "#2D2A2E",
@@ -721,7 +764,7 @@
"onForeground": "#ffd866" "onForeground": "#ffd866"
}, },
"ToolBar": { "ToolBar": {
"background": "#3a3a3c", "background": "#221F22",
"borderHandleColor": "#939293", "borderHandleColor": "#939293",
"floatingForeground": "#939293", "floatingForeground": "#939293",
"foreground": "#fcfcfa" "foreground": "#fcfcfa"
@@ -729,8 +772,8 @@
"ToolTip": { "ToolTip": {
"Actions.background": "#2D2A2E", "Actions.background": "#2D2A2E",
"Actions.infoForeground": "#939293", "Actions.infoForeground": "#939293",
"background": "#2D2A2E", "background": "#363437",
"borderColor": "#5b595c", "borderColor": "#2d2a2e",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"infoForeground": "#939293", "infoForeground": "#939293",
"separatorColor": "#2d2a2e", "separatorColor": "#2d2a2e",
@@ -739,8 +782,8 @@
"ToolWindow": { "ToolWindow": {
"Button": { "Button": {
"hoverBackground": "#4A474B", "hoverBackground": "#4A474B",
"selectedForeground": "#ffd866", "selectedForeground": "#FFFFFF",
"selectedBackground": "#3a3a3c" "selectedBackground": "#221F22"
}, },
"Header": { "Header": {
"background": "#2D2A2E", "background": "#2D2A2E",
@@ -751,50 +794,93 @@
"background": "#2D2A2E" "background": "#2D2A2E"
}, },
"HeaderTab": { "HeaderTab": {
"borderColor": "#5b595c",
"hoverBackground": "#5b595c", "hoverBackground": "#5b595c",
"hoverInactiveBackground": "#403E41", "hoverInactiveBackground": "#5b595c",
"inactiveUnderlineColor": "#ffd866", "inactiveUnderlineColor": "#ffd866",
"selectedBackground": "#3a3a3c", "selectedBackground": "#221F22",
"selectedInactiveBackground": "#3a3a3c", "selectedInactiveBackground": "#221F22",
"underlineColor": "#ffd866", "underlineColor": "#ffd866",
"underlinedTabBackground": "#5b595c", "underlinedTabBackground": "#4A474B",
"underlinedTabInactiveBackground": "#403E41" "underlinedTabInactiveBackground": "#403E41",
"underlinedTabForeground": "#FFFFFF",
"underlinedTabInactiveForeground": "#fcfcfa"
} }
}, },
"Tree": { "Tree": {
"background": "#3a3a3c", "background": "#221F22",
"foreground": "#939293", "foreground": "#939293",
"hash": "#2d2a2e", "hash": "#2d2a2e",
"hoverBackground": "#403E4170",
"hoverInactiveBackground": "#4A474B",
"modifiedItemForeground": "#ffd866", "modifiedItemForeground": "#ffd866",
"rowHeight": 28, "rowHeight": 28,
"selectionBackground": "#403E41", "selectionBackground": "#403E4170",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#403E41", "selectionInactiveBackground": "#403E4170",
"textBackground": "#3a3a3c" "textBackground": "#221F22"
}, },
"Tree.leftChildIndent": 10, "Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5, "Tree.rightChildIndent": 5,
"UiDesigner": { "UIDesigner": {
"Activity.borderColor": "#2d2a2e", "Activity.borderColor": "#2d2a2e",
"ColorPicker.background": "#2D2A2E", "Canvas.background": "#221F22",
"ColorPicker.foreground": "#fcfcfa", "ColorPicker": {
"Component.borderColor": "#2d2a2e", "background": "#2D2A2E",
"Component.background": "#2D2A2E", "foreground": "#fcfcfa"
"Component.foreground": "#fcfcfa", },
"Connector.borderColor": "#2d2a2e", "Component": {
"Connector.hoverBorderColor": "#5b595c", "borderColor": "#2d2a2e",
"Canvas.background": "#3a3a3c", "background": "#2D2A2E",
"foreground": "#fcfcfa",
"hoverBorderColor": "#5b595c"
},
"Connector": {
"borderColor": "#2d2a2e",
"hoverBorderColor": "#5b595c"
},
"Canvas.background": "#221F22",
"highStroke.foreground": "#fcfcfa", "highStroke.foreground": "#fcfcfa",
"Label.foreground": "#939293", "Label.foreground": "#939293",
"List.selectionBackground": "#403E41", "List.selectionBackground": "#403E4170",
"Panel.borderColor": "#2d2a2e", "motion": {
"Panel.background": "#2D2A2E", "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", "percent.foreground": "#fcfcfa",
"Placeholder.background": "#2D2A2E", "Placeholder": {
"Placeholder.borderColor": "#2d2a2e", "background": "#2D2A2E",
"Placeholder.foreground": "#fcfcfa", "borderColor": "#2d2a2e",
"Placeholder.selectedForeground": "#FFFFFF", "foreground": "#fcfcfa",
"selectedForeground": "#FFFFFF"
},
"Preview.background": "#2D2A2E", "Preview.background": "#2D2A2E",
"stroke.acceleratorForeground": "#939293" "stroke.acceleratorForeground": "#939293"
}, },
@@ -819,8 +905,8 @@
}, },
"HgLog": { "HgLog": {
"branchIconColor": "#ffd866", "branchIconColor": "#ffd866",
"bookmarkIconColor": "#ffd866", "bookmarkIconColor": "#FFFFFF",
"closedBranchIconColor": "#5b595c", "closedBranchIconColor": "#727072",
"localTagIconColor": "#939293", "localTagIconColor": "#939293",
"mqTagIconColor": "#939293", "mqTagIconColor": "#939293",
"tagIconColor": "#939293", "tagIconColor": "#939293",
@@ -828,48 +914,55 @@
}, },
"Log": { "Log": {
"Commit.unmatchedForeground": "#939293", "Commit.unmatchedForeground": "#939293",
"Commit.currentBranchBackground": "#403E41" "Commit.currentBranchBackground": "#403E41",
"Commit.hoveredBackground": "#403E4170"
}, },
"RefLabel": { "RefLabel": {
"foreground": "#ffd866", "foreground": "#FFFFFF",
"backgroundBase": "#5b595c" "backgroundBase": "#5b595c"
} }
}, },
"Viewport": { "Viewport": {
"background": "#3a3a3c", "background": "#221F22",
"foreground": "#fcfcfa" "foreground": "#fcfcfa"
}, },
"WelcomeScreen": { "WelcomeScreen": {
"AssociatedComponent.background": "#2D2A2E",
"background": "#2D2A2E", "background": "#2D2A2E",
"borderColor": "#2D2A2E", "borderColor": "#2D2A2E",
"captionBackground": "#3a3a3c", "captionBackground": "#221F22",
"captionForeground": "#fcfcfa", "captionForeground": "#fcfcfa",
"footerBackground": "#3a3a3c", "Details.background": "#2D2A2E",
"footerBackground": "#221F22",
"footerForeground": "#fcfcfa", "footerForeground": "#fcfcfa",
"headerBackground": "#2D2A2E", "headerBackground": "#2D2A2E",
"headerForeground": "#fcfcfa", "headerForeground": "#fcfcfa",
"List.background": "#221F22",
"separatorColor": "#2d2a2e", "separatorColor": "#2d2a2e",
"SidePanel.background": "#403E41",
"Projects": { "Projects": {
"actions.background": "#221F22",
"actions.selectionBackground": "#5b595c",
"background": "#403E41", "background": "#403E41",
"selectionBackground": "#6E6C6F", "selectionBackground": "#5B595C",
"selectionInactiveBackground": "#403E41" "selectionInactiveBackground": "#403E41"
} }
}, },
"window": "#3a3a3c", "window": "#221F22",
"windowBorder": "#2d2a2e", "windowBorder": "#2d2a2e",
"windowText": "#939293", "windowText": "#939293",
"Window.border": "#2d2a2e" "Window.border": "#2d2a2e"
}, },
"icons": { "icons": {
"ColorPalette": { "ColorPalette": {
"#43494A": "#3a3a3c", "#43494A": "#221F22",
"#6B6B6B": "#939293", "#6B6B6B": "#939293",
"#A7A7A7": "#2D2A2E", "#A7A7A7": "#2D2A2E",
"#3D6185": "#ffd866", "#3D6185": "#ffd866",
"#466D94": "#ffd866", "#466D94": "#ffd866",
"#3C3F41": "#2D2A2E", "#3C3F41": "#2D2A2E",
"#545556": "#5b595c", "#545556": "#727072",
"#606060": "#5b595c", "#606060": "#727072",
"#9AA7B0": "#fcfcfa", "#9AA7B0": "#fcfcfa",
"#675133": "#ffd866", "#675133": "#ffd866",
"Actions.Blue": "#A9DC76", "Actions.Blue": "#A9DC76",
@@ -879,20 +972,20 @@
"Actions.GreyInline.Dark": "#fcfcfa", "Actions.GreyInline.Dark": "#fcfcfa",
"Actions.Red": "#FF6188", "Actions.Red": "#FF6188",
"Actions.Yellow": "#78DCE8", "Actions.Yellow": "#78DCE8",
"Checkbox.Background.Default": "#3a3a3c", "Checkbox.Background.Default": "#221F22",
"Checkbox.Background.Default.Dark": "#3a3a3c", "Checkbox.Background.Default.Dark": "#221F22",
"Checkbox.Background.Disabled": "#3a3a3c", "Checkbox.Background.Disabled": "#3a3a3c",
"Checkbox.Background.Disabled.Dark": "#3a3a3c", "Checkbox.Background.Disabled.Dark": "#3a3a3c",
"Checkbox.Border.Default": "#2d2a2e", "Checkbox.Border.Default": "#2d2a2e",
"Checkbox.Border.Default.Dark": "#2d2a2e", "Checkbox.Border.Default.Dark": "#2d2a2e",
"Checkbox.Border.Disabled": "#5b595c", "Checkbox.Border.Disabled": "#727072",
"Checkbox.Border.Disabled.Dark": "#5b595c", "Checkbox.Border.Disabled.Dark": "#727072",
"Checkbox.Focus.Thin.Default": "#ffd866", "Checkbox.Focus.Thin.Default": "#ffd866",
"Checkbox.Focus.Thin.Default.Dark": "#ffd866", "Checkbox.Focus.Thin.Default.Dark": "#ffd866",
"Checkbox.Focus.Wide": "#ffd866", "Checkbox.Focus.Wide": "#ffd866",
"Checkbox.Focus.Wide.Dark": "#ffd866", "Checkbox.Focus.Wide.Dark": "#ffd866",
"Checkbox.Foreground.Disabled": "#5b595c", "Checkbox.Foreground.Disabled": "#727072",
"Checkbox.Foreground.Disabled.Dark": "#5b595c", "Checkbox.Foreground.Disabled.Dark": "#727072",
"Checkbox.Background.Selected": "#ffd866", "Checkbox.Background.Selected": "#ffd866",
"Checkbox.Background.Selected.Dark": "#2D2A2E", "Checkbox.Background.Selected.Dark": "#2D2A2E",
"Checkbox.Border.Selected": "#ffd866", "Checkbox.Border.Selected": "#ffd866",

View File

@@ -3,21 +3,27 @@
"dark": true, "dark": true,
"author": "Mallowigi", "author": "Mallowigi",
"editorScheme": "/colors/Monokai Pro.xml", "editorScheme": "/colors/Monokai Pro.xml",
"emptyFrameBackground": {
"anchor": "center",
"image": "/walls/monokai.svg",
"fill": "scale",
"transparency": 50
},
"ui": { "ui": {
"*": { "*": {
"acceleratorSelectionForeground": "#939293", "acceleratorSelectionForeground": "#939293",
"background": "#2D2A2E", "background": "#2D2A2E",
"borderColor": "#2d2a2e", "borderColor": "#2d2a2e",
"disabledBackground": "#3a3a3c", "disabledBackground": "#3a3a3c",
"disabledForeground": "#5b595c", "disabledForeground": "#727072",
"disabledText": "#5b595c", "disabledText": "#727072",
"focusColor": "#5b595c", "focusColor": "#5b595c",
"focusedBorderColor": "#ffd866", "focusedBorderColor": "#ffd866",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"inactiveBackground": "#3a3a3c", "inactiveBackground": "#3a3a3c",
"inactiveForeground": "#939293", "inactiveForeground": "#939293",
"infoForeground": "#939293", "infoForeground": "#939293",
"selectionBackground": "#6E6C6F", "selectionBackground": "#5B595C",
"selectionBackgroundInactive": "#403E41", "selectionBackgroundInactive": "#403E41",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#403E41", "selectionInactiveBackground": "#403E41",
@@ -33,7 +39,7 @@
"pressedBorderColor": "#ffd86650" "pressedBorderColor": "#ffd86650"
}, },
"Autocomplete": { "Autocomplete": {
"selectionBackground": "#6E6C6F" "selectionBackground": "#5B595C"
}, },
"Borders.ContrastBorderColor": "#2D2A2E", "Borders.ContrastBorderColor": "#2D2A2E",
"Borders.color": "#2d2a2e", "Borders.color": "#2d2a2e",
@@ -43,7 +49,7 @@
"default": { "default": {
"endBackground": "#4A474B", "endBackground": "#4A474B",
"endBorderColor": "#4A474B", "endBorderColor": "#4A474B",
"foreground": "#ffd866", "foreground": "#FFFFFF",
"focusColor": "#ffd866", "focusColor": "#ffd866",
"focusedBorderColor": "#ffd866", "focusedBorderColor": "#ffd866",
"shadowColor": "#4A474B", "shadowColor": "#4A474B",
@@ -51,7 +57,7 @@
"startBorderColor": "#4A474B" "startBorderColor": "#4A474B"
}, },
"disabledBorderColor": "#403E41", "disabledBorderColor": "#403E41",
"disabledText": "#5b595c", "disabledText": "#727072",
"endBackground": "#403E41", "endBackground": "#403E41",
"endBorderColor": "#403E41", "endBorderColor": "#403E41",
"focus": "#5b595c", "focus": "#5b595c",
@@ -72,10 +78,13 @@
"Tooltip.borderColor": "#2d2a2e", "Tooltip.borderColor": "#2d2a2e",
"Tooltip.background": "#363437" "Tooltip.background": "#363437"
}, },
"Content.background": "#3a3a3c", "Content": {
"background": "#221F22",
"selectionBackground": "#5B595C"
},
"CheckBox": { "CheckBox": {
"background": "#2D2A2E", "background": "#2D2A2E",
"disabledText": "#5b595c", "disabledText": "#727072",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"select": "#ffd866" "select": "#ffd866"
}, },
@@ -84,10 +93,18 @@
"acceleratorSelectionForeground": "#939293", "acceleratorSelectionForeground": "#939293",
"background": "#2D2A2E", "background": "#2D2A2E",
"disabledBackground": "#2D2A2E", "disabledBackground": "#2D2A2E",
"disabledForeground": "#5b595c", "disabledForeground": "#727072",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"selectionBackground": "#6E6C6F", "selectionBackground": "#5B595C",
"selectionForeground": "#ffd866" "selectionForeground": "#FFFFFF"
},
"CodeWithMe": {
"Avatar.foreground": "#fcfcfa",
"AccessEnabled": {
"accessDot": "#ffd866",
"dropdownBorder": "#403E41",
"pillBackground": "$second"
}
}, },
"ColorChooser": { "ColorChooser": {
"background": "#2D2A2E", "background": "#2D2A2E",
@@ -98,19 +115,20 @@
"ComboBox": { "ComboBox": {
"ArrowButton": { "ArrowButton": {
"background": "#403E41", "background": "#403E41",
"disabledIconColor": "#5b595c", "disabledIconColor": "#727072",
"iconColor": "#fcfcfa", "iconColor": "#fcfcfa",
"nonEditableBackground": "#2D2A2E" "nonEditableBackground": "#2D2A2E"
}, },
"background": "#2D2A2E", "background": "#2D2A2E",
"buttonBackground": "#403E41", "buttonBackground": "#403E41",
"disabledForeground": "#5b595c", "darcula.hoveredArrowButtonForeground": "#ffd866",
"disabledForeground": "#727072",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"modifiedItemForeground": "#ffd866", "modifiedItemForeground": "#ffd866",
"nonEditableBackground": "#403E41", "nonEditableBackground": "#403E41",
"padding": "5,5,5,5", "padding": "5,5,5,5",
"selectionBackground": "#4A474B", "selectionBackground": "#4A474B",
"selectionForeground": "#ffd866" "selectionForeground": "#FFFFFF"
}, },
"ComboPopup.border": "#2d2a2e", "ComboPopup.border": "#2d2a2e",
"CompletionPopup": { "CompletionPopup": {
@@ -123,8 +141,8 @@
"selectedGrayedForeground": "#FFFFFF", "selectedGrayedForeground": "#FFFFFF",
"selectionGrayForeground": "#FFFFFF", "selectionGrayForeground": "#FFFFFF",
"selectionInactiveInfoForeground": "#939293", "selectionInactiveInfoForeground": "#939293",
"selectionInactiveBackground": "#6E6C6F50", "selectionInactiveBackground": "#5B595C50",
"selectionBackground": "#6E6C6F80", "selectionBackground": "#5B595C80",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInfoForeground": "#FFFFFF" "selectionInfoForeground": "#FFFFFF"
}, },
@@ -168,11 +186,13 @@
"hoverBackground": "#4A474B", "hoverBackground": "#4A474B",
"hoverColor": "#2D2A2E", "hoverColor": "#2D2A2E",
"hoverMaskColor": "#5b595c", "hoverMaskColor": "#5b595c",
"inactiveColoredTabBackground": "#2D2A2E",
"inactiveColoredFileBackground": "#403E41", "inactiveColoredFileBackground": "#403E41",
"inactiveUnderlineColor": "#5b595c", "inactiveUnderlineColor": "#ffd866",
"inactiveMaskColor": "#2D2A2E", "inactiveMaskColor": "#2D2A2E",
"underlineColor": "#ffd866", "underlineColor": "#ffd866",
"underlinedTabBackground": "#4A474B" "underlinedTabBackground": "#4A474B",
"underlinedTabForeground": "#FFFFFF"
}, },
"Desktop.background": "#2D2A2E", "Desktop.background": "#2D2A2E",
"DialogWrapper.southPanelBackground": "#2D2A2E", "DialogWrapper.southPanelBackground": "#2D2A2E",
@@ -192,21 +212,23 @@
"caretForeground": "#ffd866", "caretForeground": "#ffd866",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"inactiveBackground": "#2D2A2E", "inactiveBackground": "#2D2A2E",
"inactiveForeground": "#5b595c", "inactiveForeground": "#727072",
"selectionBackground": "#6E6C6F", "selectionBackground": "#5B595C",
"selectionForeground": "#ffd866" "selectionForeground": "#FFFFFF"
}, },
"EditorTabs": { "EditorTabs": {
"borderColor": "#403E41", "borderColor": "#403E41",
"hoverBackground": "#5b595c",
"hoverColor": "#5b595c", "hoverColor": "#5b595c",
"hoverMaskColor": "#5b595c", "hoverMaskColor": "#5b595c",
"inactiveMaskColor": "#2D2A2E", "inactiveMaskColor": "#2D2A2E",
"inactiveColoredFileBackground": "#2D2A2E2", "inactiveColoredFileBackground": "#2D2A2E",
"inactiveUnderlineColor": "#5b595c", "inactiveUnderlineColor": "#727072",
"selectedForeground": "#fcfcfa", "selectedForeground": "#fcfcfa",
"selectedBackground": "#4A474B", "selectedBackground": "#4A474B",
"underlineColor": "#ffd866", "underlineColor": "#ffd866",
"underlinedTabBackground": "#4A474B" "underlinedTabBackground": "#4A474B",
"underlinedTabForeground": "#FFFFFF"
}, },
"EditorGroupsTabs": { "EditorGroupsTabs": {
"background": "#2D2A2E", "background": "#2D2A2E",
@@ -242,21 +264,22 @@
"caretForeground": "#ffd866", "caretForeground": "#ffd866",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"inactiveBackground": "#403E41", "inactiveBackground": "#403E41",
"inactiveForeground": "#5b595c", "inactiveForeground": "#727072",
"selectionForeground": "#ffd866", "selectionForeground": "#FFFFFF",
"selectionBackground": "#4A474B" "selectionBackground": "#4A474B"
}, },
"GotItTooltip.borderColor": "#363437",
"Group": { "Group": {
"disabledSeparatorColor": "#2d2a2e", "disabledSeparatorColor": "#2d2a2e",
"separatorColor": "#2d2a2e" "separatorColor": "#2d2a2e"
}, },
"GutterTooltip": { "GutterTooltip": {
"infoForeground": "#fcfcfa", "infoForeground": "#939293",
"lineSeparatorColor": "#2D2A2E" "lineSeparatorColor": "#2D2A2E"
}, },
"HeaderColor": { "HeaderColor": {
"active": "#2D2A2E", "active": "#2D2A2E",
"inactive": "#3a3a3c" "inactive": "#221F22"
}, },
"HelpTooltip": { "HelpTooltip": {
"background": "#2D2A2E", "background": "#2D2A2E",
@@ -283,12 +306,13 @@
}, },
"Label": { "Label": {
"background": "#2D2A2E", "background": "#2D2A2E",
"disabledForeground": "#5b595c", "disabledForeground": "#727072",
"disabledShadow": "#2D2A2E", "disabledShadow": "#2D2A2E",
"disabledText": "#5b595c", "disabledText": "#727072",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"infoForeground": "#939293", "infoForeground": "#939293",
"selectedForeground": "#ffd866" "selectedForeground": "#FFFFFF",
"selectedDisabledForeground": "#fcfcfa"
}, },
"Link": { "Link": {
"activeForeground": "#ffd866", "activeForeground": "#ffd866",
@@ -301,15 +325,17 @@
"List": { "List": {
"background": "#403E41", "background": "#403E41",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"selectionBackground": "#6E6C6F50", "hoverBackground": "#403E4170",
"hoverInactiveBackground": "#4A474B",
"selectionBackground": "#5B595C50",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#ffd866", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#403E41" "selectionInactiveBackground": "#403E4170"
}, },
"material": { "material": {
"background": "#2D2A2E", "background": "#2D2A2E",
"branchColor": "#fcfcfa", "branchColor": "#fcfcfa",
"contrast": "#3a3a3c", "contrast": "#221F22",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"mergeCommits": "#403E41", "mergeCommits": "#403E41",
"primaryColor": "#939293", "primaryColor": "#939293",
@@ -330,9 +356,9 @@
"border": "4,2,4,2", "border": "4,2,4,2",
"borderColor": "#403E41", "borderColor": "#403E41",
"disabledBackground": "#403E41", "disabledBackground": "#403E41",
"disabledForeground": "#5b595c", "disabledForeground": "#727072",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"selectionBackground": "#6E6C6F", "selectionBackground": "#5B595C",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"separatorColor": "#2d2a2e" "separatorColor": "#2d2a2e"
}, },
@@ -340,10 +366,10 @@
"background": "#2D2A2E", "background": "#2D2A2E",
"borderColor": "#2D2A2E", "borderColor": "#2D2A2E",
"disabledBackground": "#2D2A2E", "disabledBackground": "#2D2A2E",
"disabledForeground": "#5b595c", "disabledForeground": "#727072",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"highlight": "#2D2A2E", "highlight": "#2D2A2E",
"selectionBackground": "#6E6C6F", "selectionBackground": "#5B595C",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"shadow": "#2D2A2E" "shadow": "#2D2A2E"
}, },
@@ -353,9 +379,9 @@
"border": "4,2,4,2", "border": "4,2,4,2",
"background": "#2D2A2E", "background": "#2D2A2E",
"disabledBackground": "#2D2A2E", "disabledBackground": "#2D2A2E",
"disabledForeground": "#5b595c", "disabledForeground": "#727072",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"selectionBackground": "#6E6C6F", "selectionBackground": "#5B595C",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"NavBar": { "NavBar": {
@@ -400,7 +426,7 @@
"Outline": { "Outline": {
"color": "#403E41", "color": "#403E41",
"focusedColor": "#ffd866", "focusedColor": "#ffd866",
"disabledColor": "#5b595c" "disabledColor": "#727072"
}, },
"Panel": { "Panel": {
"background": "#2D2A2E", "background": "#2D2A2E",
@@ -409,9 +435,9 @@
"ParameterInfo": { "ParameterInfo": {
"background": "#403E41", "background": "#403E41",
"borderColor": "#4A474B", "borderColor": "#4A474B",
"currentOverloadBackground": "#4A474B", "currentOverloadBackground": "#5b595c",
"currentParameterForeground": "#ffd866", "currentParameterForeground": "#ffd866",
"disabledForeground": "#5b595c", "disabledForeground": "#727072",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"infoForeground": "#939293", "infoForeground": "#939293",
"lineSeparatorColor": "#4A474B" "lineSeparatorColor": "#4A474B"
@@ -421,17 +447,18 @@
"capsLockIconColor": "#ffd866", "capsLockIconColor": "#ffd866",
"caretForeground": "#ffd866", "caretForeground": "#ffd866",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"inactiveForeground": "#5b595c", "inactiveForeground": "#727072",
"selectionBackground": "#4A474B", "selectionBackground": "#4A474B",
"selectionForeground": "#ffd866" "selectionForeground": "#FFFFFF"
}, },
"Plugins": { "Plugins": {
"background": "#2D2A2E", "background": "#2D2A2E",
"disabledForeground": "#5b595c", "disabledForeground": "#727072",
"eapTagBackground": "#5b595c", "eapTagBackground": "#5b595c",
"lightSelectionBackground": "#6E6C6F", "hoverBackground": "#403E4170",
"lightSelectionBackground": "#4A474B",
"paidTagBackground": "#5b595c", "paidTagBackground": "#5b595c",
"selectionBackground": "#6E6C6F", "selectionBackground": "#5B595C",
"tagForeground": "#ffd866", "tagForeground": "#ffd866",
"tagBackground": "#5b595c", "tagBackground": "#5b595c",
"trialTagBackground": "#5b595c", "trialTagBackground": "#5b595c",
@@ -440,9 +467,9 @@
"installBorderColor": "#403E41", "installBorderColor": "#403E41",
"installForeground": "#fcfcfa", "installForeground": "#fcfcfa",
"installFocusedBackground": "#5b595c", "installFocusedBackground": "#5b595c",
"installFillForeground": "#5b595c", "installFillForeground": "#727072",
"installFillBackground": "#403E41", "installFillBackground": "#403E41",
"updateBackground": "#403E41", "updateBackground": "#ffd866",
"updateBorderColor": "#403E41", "updateBorderColor": "#403E41",
"updateForeground": "#fcfcfa" "updateForeground": "#fcfcfa"
}, },
@@ -466,20 +493,20 @@
"borderColor": "#2D2A2E", "borderColor": "#2D2A2E",
"foreground": "#ffd866" "foreground": "#ffd866"
}, },
"borderColor": "#3a3a3c", "borderColor": "#221F22",
"inactiveBorderColor": "#2D2A2E", "inactiveBorderColor": "#2D2A2E",
"innerBorderColor": "#403E41", "innerBorderColor": "#403E41",
"Header": { "Header": {
"activeBackground": "#2D2A2E", "activeBackground": "#2D2A2E",
"inactiveBackground": "#3a3a3c" "inactiveBackground": "#221F22"
}, },
"paintBorder": true, "paintBorder": true,
"separatorForeground": "#fcfcfa", "separatorForeground": "#fcfcfa",
"separatorColor": "#403E41", "separatorColor": "#403E41",
"Toolbar": { "Toolbar": {
"Floating.background": "#3a3a3c", "Floating.background": "#221F22",
"background": "#3a3a3c", "background": "#221F22",
"borderColor": "#3a3a3c" "borderColor": "#221F22"
} }
}, },
"PopupMenu": { "PopupMenu": {
@@ -504,7 +531,7 @@
}, },
"RadioButton": { "RadioButton": {
"background": "#2D2A2E", "background": "#2D2A2E",
"disabledText": "#5b595c", "disabledText": "#727072",
"foreground": "#fcfcfa" "foreground": "#fcfcfa"
}, },
"RadioButtonMenuItem": { "RadioButtonMenuItem": {
@@ -512,11 +539,12 @@
"acceleratorSelectionForeground": "#939293", "acceleratorSelectionForeground": "#939293",
"background": "#2D2A2E", "background": "#2D2A2E",
"disabledBackground": "#2D2A2E", "disabledBackground": "#2D2A2E",
"disabledForeground": "#5b595c", "disabledForeground": "#727072",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"selectionBackground": "#6E6C6F", "selectionBackground": "#5B595C",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"ScreenView.borderColor": "#2d2a2e",
"ScrollBar": { "ScrollBar": {
"background": "#2D2A2E", "background": "#2D2A2E",
"hoverThumbBorderColor": "#ffd866", "hoverThumbBorderColor": "#ffd866",
@@ -553,7 +581,7 @@
}, },
"SearchEverywhere": { "SearchEverywhere": {
"Advertiser": { "Advertiser": {
"background": "#3a3a3c", "background": "#221F22",
"foreground": "#939293" "foreground": "#939293"
}, },
"Header": { "Header": {
@@ -565,20 +593,29 @@
}, },
"SearchField": { "SearchField": {
"background": "#2D2A2E", "background": "#2D2A2E",
"borderColor": "#3a3a3c", "borderColor": "#221F22",
"infoForeground": "#939293" "infoForeground": "#939293"
}, },
"Tab": { "Tab": {
"active.foreground": "#ffd866", "active.foreground": "#FFFFFF",
"selectedForeground": "#ffd866", "selectedForeground": "#FFFFFF",
"selectedBackground": "#5b595c" "selectedBackground": "#5b595c"
} }
}, },
"SearchMatch": { "SearchMatch": {
"endBackground": "#ffd866", "endBackground": "#ffd866",
"startBackground": "#ffd866" "startBackground": "#ffd866",
"endColor": "#ffd866",
"startColor": "#ffd866"
}, },
"SearchField.errorBackground": "#363437", "SearchField.errorBackground": "#363437",
"SearchOption": {
"selectedBackground": "#4A474B"
},
"SearchResults": {
"Ordinal.File.Foreground": "#939293",
"Repeated.File.Foreground": "#fcfcfa"
},
"Separator": { "Separator": {
"background": "#403E41", "background": "#403E41",
"foreground": "#403E41", "foreground": "#403E41",
@@ -608,7 +645,7 @@
"background": "#2D2A2E", "background": "#2D2A2E",
"border": "3,3,3,3", "border": "3,3,3,3",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"selectionForeground": "#ffd866" "selectionForeground": "#FFFFFF"
}, },
"SplitPane": { "SplitPane": {
"background": "#2D2A2E", "background": "#2D2A2E",
@@ -616,15 +653,17 @@
}, },
"SplitPaneDivider.draggingColor": "#403E41", "SplitPaneDivider.draggingColor": "#403E41",
"StatusBar": { "StatusBar": {
"borderColor": "#2D2A2E" "borderColor": "#2D2A2E",
"hoverBackground": "#5b595c",
"LightEditBackground": "#4A474B"
}, },
"TabbedPane": { "TabbedPane": {
"background": "#2D2A2E", "background": "#2D2A2E",
"contentAreaColor": "#5b595c", "contentAreaColor": "#5b595c",
"contentBorderInsets": "3,1,1,1", "contentBorderInsets": "3,1,1,1",
"darkShadow": "#2d2a2e", "darkShadow": "#2d2a2e",
"disabledForeground": "#5b595c", "disabledForeground": "#727072",
"disabledUnderlineColor": "#5b595c", "disabledUnderlineColor": "#727072",
"focus": "#4A474B", "focus": "#4A474B",
"focusColor": "#4A474B", "focusColor": "#4A474B",
"fontSizeOffset": 0, "fontSizeOffset": 0,
@@ -632,7 +671,7 @@
"highlight": "#2d2a2e", "highlight": "#2d2a2e",
"hoverColor": "#5b595c", "hoverColor": "#5b595c",
"labelShift": 0, "labelShift": 0,
"selectedForeground": "#ffd866", "selectedForeground": "#FFFFFF",
"selectedLabelShift": 0, "selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0", "selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true, "tabsOverlapBorder": true,
@@ -643,35 +682,39 @@
}, },
"TabbedPane.mt.tab.background": "#2D2A2E", "TabbedPane.mt.tab.background": "#2D2A2E",
"Table": { "Table": {
"alternativeRowBackground": "#221F22",
"background": "#2D2A2E", "background": "#2D2A2E",
"cellNoFocusBorder": "10,5,10,5", "cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5",
"disabledForeground": "#727072",
"dropLineColor": "#ffd866", "dropLineColor": "#ffd866",
"dropLineShortColor": "#ffd866", "dropLineShortColor": "#ffd866",
"focusCellBackground": "#4A474B", "focusCellBackground": "#4A474B",
"focusCellForeground": "#ffd866", "focusCellForeground": "#FFFFFF",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"gridColor": "#2D2A2E", "gridColor": "#2D2A2E",
"highlightOuter": "#4A474B", "highlightOuter": "#4A474B",
"lightSelectionForeground": "#ffd866", "hoverBackground": "#403E4170",
"hoverInactiveBackground": "#4A474B",
"lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#939293", "lightSelectionInactiveForeground": "#939293",
"lightSelectionInactiveBackground": "#403E41", "lightSelectionInactiveBackground": "#403E41",
"selectionBackground": "#4A474B", "selectionBackground": "#4A474B",
"selectionForeground": "#ffd866", "selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#4A474B", "selectionInactiveBackground": "#4A474B",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"sortIconColor": "#fcfcfa", "sortIconColor": "#fcfcfa",
"stripeColor": "#3a3a3c" "stripeColor": "#221F22"
}, },
"TableHeader": { "TableHeader": {
"background": "#2D2A2E", "background": "#2D2A2E",
"borderColor": "#2D2A2E", "borderColor": "#2D2A2E",
"bottomSeparatorColor": "#403E41", "bottomSeparatorColor": "#403E41",
"cellBorder": "4,0,4,0", "cellBorder": "4,0,4,0",
"disabledForeground": "#5b595c", "disabledForeground": "#727072",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"focusCellBackground": "#4A474B", "focusCellBackground": "#4A474B",
"focusCellForeground": "#ffd866", "focusCellForeground": "#FFFFFF",
"height": 25, "height": 25,
"separatorColor": "#403E41" "separatorColor": "#403E41"
}, },
@@ -682,28 +725,28 @@
"background": "#2D2A2E", "background": "#2D2A2E",
"caretForeground": "#ffd866", "caretForeground": "#ffd866",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"inactiveForeground": "#5b595c", "inactiveForeground": "#727072",
"selectionBackground": "#4A474B", "selectionBackground": "#4A474B",
"selectionForeground": "#ffd866" "selectionForeground": "#FFFFFF"
}, },
"TextField": { "TextField": {
"background": "#2D2A2E", "background": "#2D2A2E",
"caretForeground": "#ffd866", "caretForeground": "#ffd866",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"inactiveForeground": "#5b595c", "inactiveForeground": "#727072",
"selectionBackground": "#4A474B", "selectionBackground": "#4A474B",
"selectionForeground": "#ffd866" "selectionForeground": "#FFFFFF"
}, },
"TextPane": { "TextPane": {
"background": "#2D2A2E", "background": "#2D2A2E",
"caretForeground": "#ffd866", "caretForeground": "#ffd866",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"inactiveForeground": "#5b595c", "inactiveForeground": "#727072",
"selectionBackground": "#4A474B", "selectionBackground": "#4A474B",
"selectionForeground": "#ffd866" "selectionForeground": "#FFFFFF"
}, },
"TitlePane": { "TitlePane": {
"background": "#3a3a3c", "background": "#221F22",
"Button.hoverBackground": "#5b595c", "Button.hoverBackground": "#5b595c",
"inactiveBackground": "#2D2A2E", "inactiveBackground": "#2D2A2E",
"infoForeground": "#939293", "infoForeground": "#939293",
@@ -713,7 +756,7 @@
"ToggleButton": { "ToggleButton": {
"borderColor": "#403E41", "borderColor": "#403E41",
"buttonColor": "#fcfcfa", "buttonColor": "#fcfcfa",
"disabledText": "#5b595c", "disabledText": "#727072",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"offForeground": "#2D2A2E", "offForeground": "#2D2A2E",
"offBackground": "#2D2A2E", "offBackground": "#2D2A2E",
@@ -729,8 +772,8 @@
"ToolTip": { "ToolTip": {
"Actions.background": "#2D2A2E", "Actions.background": "#2D2A2E",
"Actions.infoForeground": "#939293", "Actions.infoForeground": "#939293",
"background": "#2D2A2E", "background": "#363437",
"borderColor": "#5b595c", "borderColor": "#2d2a2e",
"foreground": "#fcfcfa", "foreground": "#fcfcfa",
"infoForeground": "#939293", "infoForeground": "#939293",
"separatorColor": "#2d2a2e", "separatorColor": "#2d2a2e",
@@ -739,8 +782,8 @@
"ToolWindow": { "ToolWindow": {
"Button": { "Button": {
"hoverBackground": "#4A474B", "hoverBackground": "#4A474B",
"selectedForeground": "#ffd866", "selectedForeground": "#FFFFFF",
"selectedBackground": "#3a3a3c" "selectedBackground": "#221F22"
}, },
"Header": { "Header": {
"background": "#2D2A2E", "background": "#2D2A2E",
@@ -751,50 +794,93 @@
"background": "#2D2A2E" "background": "#2D2A2E"
}, },
"HeaderTab": { "HeaderTab": {
"borderColor": "#5b595c",
"hoverBackground": "#5b595c", "hoverBackground": "#5b595c",
"hoverInactiveBackground": "#403E41", "hoverInactiveBackground": "#5b595c",
"inactiveUnderlineColor": "#ffd866", "inactiveUnderlineColor": "#ffd866",
"selectedBackground": "#3a3a3c", "selectedBackground": "#221F22",
"selectedInactiveBackground": "#3a3a3c", "selectedInactiveBackground": "#221F22",
"underlineColor": "#ffd866", "underlineColor": "#ffd866",
"underlinedTabBackground": "#5b595c", "underlinedTabBackground": "#4A474B",
"underlinedTabInactiveBackground": "#403E41" "underlinedTabInactiveBackground": "#403E41",
"underlinedTabForeground": "#FFFFFF",
"underlinedTabInactiveForeground": "#fcfcfa"
} }
}, },
"Tree": { "Tree": {
"background": "#2D2A2E", "background": "#2D2A2E",
"foreground": "#939293", "foreground": "#939293",
"hash": "#2d2a2e", "hash": "#2d2a2e",
"hoverBackground": "#403E4170",
"hoverInactiveBackground": "#4A474B",
"modifiedItemForeground": "#ffd866", "modifiedItemForeground": "#ffd866",
"rowHeight": 28, "rowHeight": 28,
"selectionBackground": "#403E41", "selectionBackground": "#403E4170",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#403E41", "selectionInactiveBackground": "#403E4170",
"textBackground": "#2D2A2E" "textBackground": "#2D2A2E"
}, },
"Tree.leftChildIndent": 10, "Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5, "Tree.rightChildIndent": 5,
"UiDesigner": { "UIDesigner": {
"Activity.borderColor": "#2d2a2e", "Activity.borderColor": "#2d2a2e",
"ColorPicker.background": "#2D2A2E", "Canvas.background": "#221F22",
"ColorPicker.foreground": "#fcfcfa", "ColorPicker": {
"Component.borderColor": "#2d2a2e", "background": "#2D2A2E",
"Component.background": "#2D2A2E", "foreground": "#fcfcfa"
"Component.foreground": "#fcfcfa", },
"Connector.borderColor": "#2d2a2e", "Component": {
"Connector.hoverBorderColor": "#5b595c", "borderColor": "#2d2a2e",
"Canvas.background": "#3a3a3c", "background": "#2D2A2E",
"foreground": "#fcfcfa",
"hoverBorderColor": "#5b595c"
},
"Connector": {
"borderColor": "#2d2a2e",
"hoverBorderColor": "#5b595c"
},
"Canvas.background": "#221F22",
"highStroke.foreground": "#fcfcfa", "highStroke.foreground": "#fcfcfa",
"Label.foreground": "#939293", "Label.foreground": "#939293",
"List.selectionBackground": "#403E41", "List.selectionBackground": "#403E4170",
"Panel.borderColor": "#2d2a2e", "motion": {
"Panel.background": "#2D2A2E", "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", "percent.foreground": "#fcfcfa",
"Placeholder.background": "#2D2A2E", "Placeholder": {
"Placeholder.borderColor": "#2d2a2e", "background": "#2D2A2E",
"Placeholder.foreground": "#fcfcfa", "borderColor": "#2d2a2e",
"Placeholder.selectedForeground": "#FFFFFF", "foreground": "#fcfcfa",
"selectedForeground": "#FFFFFF"
},
"Preview.background": "#2D2A2E", "Preview.background": "#2D2A2E",
"stroke.acceleratorForeground": "#939293" "stroke.acceleratorForeground": "#939293"
}, },
@@ -819,8 +905,8 @@
}, },
"HgLog": { "HgLog": {
"branchIconColor": "#ffd866", "branchIconColor": "#ffd866",
"bookmarkIconColor": "#ffd866", "bookmarkIconColor": "#FFFFFF",
"closedBranchIconColor": "#5b595c", "closedBranchIconColor": "#727072",
"localTagIconColor": "#939293", "localTagIconColor": "#939293",
"mqTagIconColor": "#939293", "mqTagIconColor": "#939293",
"tagIconColor": "#939293", "tagIconColor": "#939293",
@@ -828,10 +914,11 @@
}, },
"Log": { "Log": {
"Commit.unmatchedForeground": "#939293", "Commit.unmatchedForeground": "#939293",
"Commit.currentBranchBackground": "#403E41" "Commit.currentBranchBackground": "#403E41",
"Commit.hoveredBackground": "#403E4170"
}, },
"RefLabel": { "RefLabel": {
"foreground": "#ffd866", "foreground": "#FFFFFF",
"backgroundBase": "#5b595c" "backgroundBase": "#5b595c"
} }
}, },
@@ -840,18 +927,24 @@
"foreground": "#fcfcfa" "foreground": "#fcfcfa"
}, },
"WelcomeScreen": { "WelcomeScreen": {
"AssociatedComponent.background": "#2D2A2E",
"background": "#2D2A2E", "background": "#2D2A2E",
"borderColor": "#2D2A2E", "borderColor": "#2D2A2E",
"captionBackground": "#3a3a3c", "captionBackground": "#221F22",
"captionForeground": "#fcfcfa", "captionForeground": "#fcfcfa",
"footerBackground": "#3a3a3c", "Details.background": "#2D2A2E",
"footerBackground": "#221F22",
"footerForeground": "#fcfcfa", "footerForeground": "#fcfcfa",
"headerBackground": "#2D2A2E", "headerBackground": "#2D2A2E",
"headerForeground": "#fcfcfa", "headerForeground": "#fcfcfa",
"List.background": "#221F22",
"separatorColor": "#2d2a2e", "separatorColor": "#2d2a2e",
"SidePanel.background": "#403E41",
"Projects": { "Projects": {
"actions.background": "#221F22",
"actions.selectionBackground": "#5b595c",
"background": "#403E41", "background": "#403E41",
"selectionBackground": "#6E6C6F", "selectionBackground": "#5B595C",
"selectionInactiveBackground": "#403E41" "selectionInactiveBackground": "#403E41"
} }
}, },
@@ -862,14 +955,14 @@
}, },
"icons": { "icons": {
"ColorPalette": { "ColorPalette": {
"#43494A": "#3a3a3c", "#43494A": "#221F22",
"#6B6B6B": "#939293", "#6B6B6B": "#939293",
"#A7A7A7": "#2D2A2E", "#A7A7A7": "#2D2A2E",
"#3D6185": "#ffd866", "#3D6185": "#ffd866",
"#466D94": "#ffd866", "#466D94": "#ffd866",
"#3C3F41": "#2D2A2E", "#3C3F41": "#2D2A2E",
"#545556": "#5b595c", "#545556": "#727072",
"#606060": "#5b595c", "#606060": "#727072",
"#9AA7B0": "#fcfcfa", "#9AA7B0": "#fcfcfa",
"#675133": "#ffd866", "#675133": "#ffd866",
"Actions.Blue": "#A9DC76", "Actions.Blue": "#A9DC76",
@@ -879,20 +972,20 @@
"Actions.GreyInline.Dark": "#fcfcfa", "Actions.GreyInline.Dark": "#fcfcfa",
"Actions.Red": "#FF6188", "Actions.Red": "#FF6188",
"Actions.Yellow": "#78DCE8", "Actions.Yellow": "#78DCE8",
"Checkbox.Background.Default": "#3a3a3c", "Checkbox.Background.Default": "#221F22",
"Checkbox.Background.Default.Dark": "#3a3a3c", "Checkbox.Background.Default.Dark": "#221F22",
"Checkbox.Background.Disabled": "#3a3a3c", "Checkbox.Background.Disabled": "#3a3a3c",
"Checkbox.Background.Disabled.Dark": "#3a3a3c", "Checkbox.Background.Disabled.Dark": "#3a3a3c",
"Checkbox.Border.Default": "#2d2a2e", "Checkbox.Border.Default": "#2d2a2e",
"Checkbox.Border.Default.Dark": "#2d2a2e", "Checkbox.Border.Default.Dark": "#2d2a2e",
"Checkbox.Border.Disabled": "#5b595c", "Checkbox.Border.Disabled": "#727072",
"Checkbox.Border.Disabled.Dark": "#5b595c", "Checkbox.Border.Disabled.Dark": "#727072",
"Checkbox.Focus.Thin.Default": "#ffd866", "Checkbox.Focus.Thin.Default": "#ffd866",
"Checkbox.Focus.Thin.Default.Dark": "#ffd866", "Checkbox.Focus.Thin.Default.Dark": "#ffd866",
"Checkbox.Focus.Wide": "#ffd866", "Checkbox.Focus.Wide": "#ffd866",
"Checkbox.Focus.Wide.Dark": "#ffd866", "Checkbox.Focus.Wide.Dark": "#ffd866",
"Checkbox.Foreground.Disabled": "#5b595c", "Checkbox.Foreground.Disabled": "#727072",
"Checkbox.Foreground.Disabled.Dark": "#5b595c", "Checkbox.Foreground.Disabled.Dark": "#727072",
"Checkbox.Background.Selected": "#ffd866", "Checkbox.Background.Selected": "#ffd866",
"Checkbox.Background.Selected.Dark": "#2D2A2E", "Checkbox.Background.Selected.Dark": "#2D2A2E",
"Checkbox.Border.Selected": "#ffd866", "Checkbox.Border.Selected": "#ffd866",

View File

@@ -1,8 +1,14 @@
{ {
"name": "Material Solarized Dark Contrast", "name": "Solarized Dark Contrast",
"dark": true, "dark": true,
"author": "Mallowigi", "author": "Mallowigi",
"editorScheme": "/colors/Solarized Dark.xml", "editorScheme": "/colors/Solarized Dark.xml",
"emptyFrameBackground": {
"anchor": "center",
"image": "/walls/solardark.svg",
"fill": "scale",
"transparency": 50
},
"ui": { "ui": {
"*": { "*": {
"acceleratorSelectionForeground": "#586e75", "acceleratorSelectionForeground": "#586e75",
@@ -11,7 +17,7 @@
"disabledBackground": "#083F4D", "disabledBackground": "#083F4D",
"disabledForeground": "#2E5861", "disabledForeground": "#2E5861",
"disabledText": "#2E5861", "disabledText": "#2E5861",
"focusColor": "#005a6f", "focusColor": "#11353F",
"focusedBorderColor": "#d33682", "focusedBorderColor": "#d33682",
"foreground": "#839496", "foreground": "#839496",
"inactiveBackground": "#083F4D", "inactiveBackground": "#083F4D",
@@ -41,28 +47,28 @@
"arc": 0, "arc": 0,
"background": "#002B36", "background": "#002B36",
"default": { "default": {
"endBackground": "#003946", "endBackground": "#11353F",
"endBorderColor": "#003946", "endBorderColor": "#11353F",
"foreground": "#FFFFFF", "foreground": "#FFFFFF",
"focusColor": "#d33682", "focusColor": "#d33682",
"focusedBorderColor": "#d33682", "focusedBorderColor": "#d33682",
"shadowColor": "#003946", "shadowColor": "#11353F",
"startBackground": "#003946", "startBackground": "#11353F",
"startBorderColor": "#003946" "startBorderColor": "#11353F"
}, },
"disabledBorderColor": "#073642", "disabledBorderColor": "#073642",
"disabledText": "#2E5861", "disabledText": "#2E5861",
"endBackground": "#073642", "endBackground": "#073642",
"endBorderColor": "#073642", "endBorderColor": "#073642",
"focus": "#005a6f", "focus": "#11353F",
"focusedBorderColor": "#d33682", "focusedBorderColor": "#d33682",
"foreground": "#586e75", "foreground": "#586e75",
"highlight": "#FFFFFF", "highlight": "#FFFFFF",
"mt.background": "#073642", "mt.background": "#073642",
"mt.foreground": "#586e75", "mt.foreground": "#586e75",
"mt.selectedForeground": "#FFFFFF", "mt.selectedForeground": "#FFFFFF",
"mt.selection.color1": "#003946", "mt.selection.color1": "#11353F",
"mt.selection.color2": "#003946", "mt.selection.color2": "#11353F",
"startBackground": "#073642", "startBackground": "#073642",
"startBorderColor": "#073642", "startBorderColor": "#073642",
"shadowColor": "#073642", "shadowColor": "#073642",
@@ -72,7 +78,10 @@
"Tooltip.borderColor": "#0D3640", "Tooltip.borderColor": "#0D3640",
"Tooltip.background": "#2E4C52" "Tooltip.background": "#2E4C52"
}, },
"Content.background": "#00252E", "Content": {
"background": "#00252E",
"selectionBackground": "#2E4C52"
},
"CheckBox": { "CheckBox": {
"background": "#002B36", "background": "#002B36",
"disabledText": "#2E5861", "disabledText": "#2E5861",
@@ -89,6 +98,14 @@
"selectionBackground": "#2E4C52", "selectionBackground": "#2E4C52",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"CodeWithMe": {
"Avatar.foreground": "#839496",
"AccessEnabled": {
"accessDot": "#d33682",
"dropdownBorder": "#003745",
"pillBackground": "$second"
}
},
"ColorChooser": { "ColorChooser": {
"background": "#002B36", "background": "#002B36",
"foreground": "#839496", "foreground": "#839496",
@@ -104,12 +121,13 @@
}, },
"background": "#00252E", "background": "#00252E",
"buttonBackground": "#073642", "buttonBackground": "#073642",
"darcula.hoveredArrowButtonForeground": "#d33682",
"disabledForeground": "#2E5861", "disabledForeground": "#2E5861",
"foreground": "#839496", "foreground": "#839496",
"modifiedItemForeground": "#d33682", "modifiedItemForeground": "#d33682",
"nonEditableBackground": "#003745", "nonEditableBackground": "#003745",
"padding": "5,5,5,5", "padding": "5,5,5,5",
"selectionBackground": "#003946", "selectionBackground": "#11353F",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"ComboPopup.border": "#0D3640", "ComboPopup.border": "#0D3640",
@@ -130,7 +148,7 @@
}, },
"Component": { "Component": {
"arc": 4, "arc": 4,
"borderColor": "#005a6f", "borderColor": "#11353F",
"disabledBorderColor": "#073642", "disabledBorderColor": "#073642",
"focusColor": "#d33682", "focusColor": "#d33682",
"focusedBorderColor": "#d33682", "focusedBorderColor": "#d33682",
@@ -156,23 +174,25 @@
} }
}, },
"DebuggerTabs": { "DebuggerTabs": {
"selectedBackground": "#005a6f", "selectedBackground": "#11353F",
"underlinedTabBackground": "#005a6f" "underlinedTabBackground": "#11353F"
}, },
"DebuggerPopup": { "DebuggerPopup": {
"borderColor": "#005a6f" "borderColor": "#11353F"
}, },
"DefaultTabs": { "DefaultTabs": {
"background": "#002B36", "background": "#002B36",
"borderColor": "#002B36", "borderColor": "#002B36",
"hoverBackground": "#003946", "hoverBackground": "#11353F",
"hoverColor": "#00252E", "hoverColor": "#00252E",
"hoverMaskColor": "#005a6f", "hoverMaskColor": "#11353F",
"inactiveColoredTabBackground": "#002B36",
"inactiveColoredFileBackground": "#073642", "inactiveColoredFileBackground": "#073642",
"inactiveUnderlineColor": "#2E5861", "inactiveUnderlineColor": "#d33682",
"inactiveMaskColor": "#00252E", "inactiveMaskColor": "#00252E",
"underlineColor": "#d33682", "underlineColor": "#d33682",
"underlinedTabBackground": "#003946" "underlinedTabBackground": "#11353F",
"underlinedTabForeground": "#FFFFFF"
}, },
"Desktop.background": "#002B36", "Desktop.background": "#002B36",
"DialogWrapper.southPanelBackground": "#002B36", "DialogWrapper.southPanelBackground": "#002B36",
@@ -198,24 +218,26 @@
}, },
"EditorTabs": { "EditorTabs": {
"borderColor": "#003745", "borderColor": "#003745",
"hoverColor": "#005a6f", "hoverBackground": "#11353F",
"hoverMaskColor": "#005a6f", "hoverColor": "#11353F",
"hoverMaskColor": "#11353F",
"inactiveMaskColor": "#002B36", "inactiveMaskColor": "#002B36",
"inactiveColoredFileBackground": "#002B362", "inactiveColoredFileBackground": "#002B36",
"inactiveUnderlineColor": "#2E5861", "inactiveUnderlineColor": "#2E5861",
"selectedForeground": "#839496", "selectedForeground": "#839496",
"selectedBackground": "#003946", "selectedBackground": "#11353F",
"underlineColor": "#d33682", "underlineColor": "#d33682",
"underlinedTabBackground": "#003946" "underlinedTabBackground": "#11353F",
"underlinedTabForeground": "#FFFFFF"
}, },
"EditorGroupsTabs": { "EditorGroupsTabs": {
"background": "#002B36", "background": "#002B36",
"borderColor": "#003745", "borderColor": "#003745",
"hoverBackground": "#005a6f", "hoverBackground": "#11353F",
"hoverColor": "#005a6f", "hoverColor": "#11353F",
"inactiveUnderlineColor": "#d33682", "inactiveUnderlineColor": "#d33682",
"underlineColor": "#d33682", "underlineColor": "#d33682",
"underlinedTabBackground": "#003946", "underlinedTabBackground": "#11353F",
"underlinedTabForeground": "#839496" "underlinedTabForeground": "#839496"
}, },
"FileColor": { "FileColor": {
@@ -244,14 +266,15 @@
"inactiveBackground": "#073642", "inactiveBackground": "#073642",
"inactiveForeground": "#2E5861", "inactiveForeground": "#2E5861",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionBackground": "#003946" "selectionBackground": "#11353F"
}, },
"GotItTooltip.borderColor": "#2E4C52",
"Group": { "Group": {
"disabledSeparatorColor": "#0D3640", "disabledSeparatorColor": "#0D3640",
"separatorColor": "#0D3640" "separatorColor": "#0D3640"
}, },
"GutterTooltip": { "GutterTooltip": {
"infoForeground": "#839496", "infoForeground": "#586e75",
"lineSeparatorColor": "#002B36" "lineSeparatorColor": "#002B36"
}, },
"HeaderColor": { "HeaderColor": {
@@ -288,7 +311,8 @@
"disabledText": "#2E5861", "disabledText": "#2E5861",
"foreground": "#839496", "foreground": "#839496",
"infoForeground": "#586e75", "infoForeground": "#586e75",
"selectedForeground": "#FFFFFF" "selectedForeground": "#FFFFFF",
"selectedDisabledForeground": "#839496"
}, },
"Link": { "Link": {
"activeForeground": "#d33682", "activeForeground": "#d33682",
@@ -301,10 +325,12 @@
"List": { "List": {
"background": "#003745", "background": "#003745",
"foreground": "#839496", "foreground": "#839496",
"hoverBackground": "#2E4C5270",
"hoverInactiveBackground": "#11353F",
"selectionBackground": "#2E4C5250", "selectionBackground": "#2E4C5250",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#2E4C5280" "selectionInactiveBackground": "#2E4C5270"
}, },
"material": { "material": {
"background": "#002B36", "background": "#002B36",
@@ -320,8 +346,8 @@
}, },
"MemoryIndicator": { "MemoryIndicator": {
"allocatedBackground": "#003745", "allocatedBackground": "#003745",
"usedColor": "#005a6f", "usedColor": "#11353F",
"usedBackground": "#005a6f" "usedBackground": "#11353F"
}, },
"Menu": { "Menu": {
"acceleratorForeground": "#586e75", "acceleratorForeground": "#586e75",
@@ -408,13 +434,13 @@
}, },
"ParameterInfo": { "ParameterInfo": {
"background": "#003745", "background": "#003745",
"borderColor": "#003946", "borderColor": "#11353F",
"currentOverloadBackground": "#003946", "currentOverloadBackground": "#11353F",
"currentParameterForeground": "#d33682", "currentParameterForeground": "#d33682",
"disabledForeground": "#2E5861", "disabledForeground": "#2E5861",
"foreground": "#839496", "foreground": "#839496",
"infoForeground": "#586e75", "infoForeground": "#586e75",
"lineSeparatorColor": "#003946" "lineSeparatorColor": "#11353F"
}, },
"PasswordField": { "PasswordField": {
"background": "#00252E", "background": "#00252E",
@@ -422,27 +448,28 @@
"caretForeground": "#d33682", "caretForeground": "#d33682",
"foreground": "#839496", "foreground": "#839496",
"inactiveForeground": "#2E5861", "inactiveForeground": "#2E5861",
"selectionBackground": "#003946", "selectionBackground": "#11353F",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"Plugins": { "Plugins": {
"background": "#002B36", "background": "#002B36",
"disabledForeground": "#2E5861", "disabledForeground": "#2E5861",
"eapTagBackground": "#005a6f", "eapTagBackground": "#11353F",
"lightSelectionBackground": "#2E4C52", "hoverBackground": "#2E4C5270",
"paidTagBackground": "#005a6f", "lightSelectionBackground": "#11353F",
"paidTagBackground": "#11353F",
"selectionBackground": "#2E4C52", "selectionBackground": "#2E4C52",
"tagForeground": "#d33682", "tagForeground": "#d33682",
"tagBackground": "#005a6f", "tagBackground": "#11353F",
"trialTagBackground": "#005a6f", "trialTagBackground": "#11353F",
"Button": { "Button": {
"installBackground": "#073642", "installBackground": "#073642",
"installBorderColor": "#073642", "installBorderColor": "#073642",
"installForeground": "#839496", "installForeground": "#839496",
"installFocusedBackground": "#005a6f", "installFocusedBackground": "#11353F",
"installFillForeground": "#2E5861", "installFillForeground": "#2E5861",
"installFillBackground": "#073642", "installFillBackground": "#073642",
"updateBackground": "#073642", "updateBackground": "#d33682",
"updateBorderColor": "#073642", "updateBorderColor": "#073642",
"updateForeground": "#839496" "updateForeground": "#839496"
}, },
@@ -455,9 +482,9 @@
"foreground": "#839496" "foreground": "#839496"
}, },
"Tab": { "Tab": {
"hoverBackground": "#003946", "hoverBackground": "#11353F",
"selectedForeground": "#FFFFFF", "selectedForeground": "#FFFFFF",
"selectedBackground": "#003946" "selectedBackground": "#11353F"
} }
}, },
"Popup": { "Popup": {
@@ -496,8 +523,8 @@
"indeterminateEndColor": "#d33682", "indeterminateEndColor": "#d33682",
"indeterminateStartColor": "#d33682", "indeterminateStartColor": "#d33682",
"progressColor": "#d33682", "progressColor": "#d33682",
"selectionBackground": "#005a6f", "selectionBackground": "#11353F",
"trackColor": "#005a6f" "trackColor": "#11353F"
}, },
"PsiViewer": { "PsiViewer": {
"referenceHighlightColor": "#d33682" "referenceHighlightColor": "#d33682"
@@ -517,6 +544,7 @@
"selectionBackground": "#2E4C52", "selectionBackground": "#2E4C52",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"ScreenView.borderColor": "#0D3640",
"ScrollBar": { "ScrollBar": {
"background": "#002B36", "background": "#002B36",
"hoverThumbBorderColor": "#d33682", "hoverThumbBorderColor": "#d33682",
@@ -538,7 +566,7 @@
"trackColor": "#002B3630" "trackColor": "#002B3630"
} }
}, },
"thumb": "#005a6f", "thumb": "#11353F",
"thumbBorderColor": "#d3368270", "thumbBorderColor": "#d3368270",
"thumbColor": "#d3368270", "thumbColor": "#d3368270",
"trackColor": "#002B3630", "trackColor": "#002B3630",
@@ -571,14 +599,23 @@
"Tab": { "Tab": {
"active.foreground": "#FFFFFF", "active.foreground": "#FFFFFF",
"selectedForeground": "#FFFFFF", "selectedForeground": "#FFFFFF",
"selectedBackground": "#005a6f" "selectedBackground": "#11353F"
} }
}, },
"SearchMatch": { "SearchMatch": {
"endBackground": "#d33682", "endBackground": "#d33682",
"startBackground": "#d33682" "startBackground": "#d33682",
"endColor": "#d33682",
"startColor": "#d33682"
}, },
"SearchField.errorBackground": "#2E4C52", "SearchField.errorBackground": "#2E4C52",
"SearchOption": {
"selectedBackground": "#11353F"
},
"SearchResults": {
"Ordinal.File.Foreground": "#586e75",
"Repeated.File.Foreground": "#839496"
},
"Separator": { "Separator": {
"background": "#003745", "background": "#003745",
"foreground": "#003745", "foreground": "#003745",
@@ -594,12 +631,12 @@
"foreground": "#839496", "foreground": "#839496",
"majorTickLength": 6, "majorTickLength": 6,
"tickColor": "#003745", "tickColor": "#003745",
"trackColor": "#003946", "trackColor": "#11353F",
"trackWidth": 7, "trackWidth": 7,
"thumb": "#d33682" "thumb": "#d33682"
}, },
"SpeedSearch": { "SpeedSearch": {
"background": "#005a6f", "background": "#11353F",
"borderColor": "#0D3640", "borderColor": "#0D3640",
"foreground": "#839496", "foreground": "#839496",
"errorForeground": "#839496" "errorForeground": "#839496"
@@ -616,21 +653,23 @@
}, },
"SplitPaneDivider.draggingColor": "#003745", "SplitPaneDivider.draggingColor": "#003745",
"StatusBar": { "StatusBar": {
"borderColor": "#002B36" "borderColor": "#002B36",
"hoverBackground": "#11353F",
"LightEditBackground": "#11353F"
}, },
"TabbedPane": { "TabbedPane": {
"background": "#002B36", "background": "#002B36",
"contentAreaColor": "#005a6f", "contentAreaColor": "#11353F",
"contentBorderInsets": "3,1,1,1", "contentBorderInsets": "3,1,1,1",
"darkShadow": "#0D3640", "darkShadow": "#0D3640",
"disabledForeground": "#2E5861", "disabledForeground": "#2E5861",
"disabledUnderlineColor": "#2E5861", "disabledUnderlineColor": "#2E5861",
"focus": "#003946", "focus": "#11353F",
"focusColor": "#003946", "focusColor": "#11353F",
"fontSizeOffset": 0, "fontSizeOffset": 0,
"foreground": "#839496", "foreground": "#839496",
"highlight": "#0D3640", "highlight": "#0D3640",
"hoverColor": "#005a6f", "hoverColor": "#11353F",
"labelShift": 0, "labelShift": 0,
"selectedForeground": "#FFFFFF", "selectedForeground": "#FFFFFF",
"selectedLabelShift": 0, "selectedLabelShift": 0,
@@ -643,22 +682,26 @@
}, },
"TabbedPane.mt.tab.background": "#00252E", "TabbedPane.mt.tab.background": "#00252E",
"Table": { "Table": {
"alternativeRowBackground": "#00252E",
"background": "#002B36", "background": "#002B36",
"cellNoFocusBorder": "10,5,10,5", "cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5",
"disabledForeground": "#2E5861",
"dropLineColor": "#d33682", "dropLineColor": "#d33682",
"dropLineShortColor": "#d33682", "dropLineShortColor": "#d33682",
"focusCellBackground": "#003946", "focusCellBackground": "#11353F",
"focusCellForeground": "#FFFFFF", "focusCellForeground": "#FFFFFF",
"foreground": "#839496", "foreground": "#839496",
"gridColor": "#002B36", "gridColor": "#002B36",
"highlightOuter": "#003946", "highlightOuter": "#11353F",
"hoverBackground": "#2E4C5270",
"hoverInactiveBackground": "#11353F",
"lightSelectionForeground": "#FFFFFF", "lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#586e75", "lightSelectionInactiveForeground": "#586e75",
"lightSelectionInactiveBackground": "#003745", "lightSelectionInactiveBackground": "#003745",
"selectionBackground": "#003946", "selectionBackground": "#11353F",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#003946", "selectionInactiveBackground": "#11353F",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"sortIconColor": "#839496", "sortIconColor": "#839496",
"stripeColor": "#00252E" "stripeColor": "#00252E"
@@ -670,7 +713,7 @@
"cellBorder": "4,0,4,0", "cellBorder": "4,0,4,0",
"disabledForeground": "#2E5861", "disabledForeground": "#2E5861",
"foreground": "#839496", "foreground": "#839496",
"focusCellBackground": "#003946", "focusCellBackground": "#11353F",
"focusCellForeground": "#FFFFFF", "focusCellForeground": "#FFFFFF",
"height": 25, "height": 25,
"separatorColor": "#003745" "separatorColor": "#003745"
@@ -683,7 +726,7 @@
"caretForeground": "#d33682", "caretForeground": "#d33682",
"foreground": "#839496", "foreground": "#839496",
"inactiveForeground": "#2E5861", "inactiveForeground": "#2E5861",
"selectionBackground": "#003946", "selectionBackground": "#11353F",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"TextField": { "TextField": {
@@ -691,7 +734,7 @@
"caretForeground": "#d33682", "caretForeground": "#d33682",
"foreground": "#839496", "foreground": "#839496",
"inactiveForeground": "#2E5861", "inactiveForeground": "#2E5861",
"selectionBackground": "#003946", "selectionBackground": "#11353F",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"TextPane": { "TextPane": {
@@ -699,12 +742,12 @@
"caretForeground": "#d33682", "caretForeground": "#d33682",
"foreground": "#839496", "foreground": "#839496",
"inactiveForeground": "#2E5861", "inactiveForeground": "#2E5861",
"selectionBackground": "#003946", "selectionBackground": "#11353F",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"TitlePane": { "TitlePane": {
"background": "#00252E", "background": "#00252E",
"Button.hoverBackground": "#005a6f", "Button.hoverBackground": "#11353F",
"inactiveBackground": "#002B36", "inactiveBackground": "#002B36",
"infoForeground": "#586e75", "infoForeground": "#586e75",
"inactiveInfoForeground": "#586e75" "inactiveInfoForeground": "#586e75"
@@ -729,8 +772,8 @@
"ToolTip": { "ToolTip": {
"Actions.background": "#002B36", "Actions.background": "#002B36",
"Actions.infoForeground": "#586e75", "Actions.infoForeground": "#586e75",
"background": "#002B36", "background": "#2E4C52",
"borderColor": "#005a6f", "borderColor": "#0D3640",
"foreground": "#839496", "foreground": "#839496",
"infoForeground": "#586e75", "infoForeground": "#586e75",
"separatorColor": "#0D3640", "separatorColor": "#0D3640",
@@ -738,7 +781,7 @@
}, },
"ToolWindow": { "ToolWindow": {
"Button": { "Button": {
"hoverBackground": "#003946", "hoverBackground": "#11353F",
"selectedForeground": "#FFFFFF", "selectedForeground": "#FFFFFF",
"selectedBackground": "#00252E" "selectedBackground": "#00252E"
}, },
@@ -751,50 +794,93 @@
"background": "#002B36" "background": "#002B36"
}, },
"HeaderTab": { "HeaderTab": {
"hoverBackground": "#005a6f", "borderColor": "#11353F",
"hoverInactiveBackground": "#003745", "hoverBackground": "#11353F",
"hoverInactiveBackground": "#11353F",
"inactiveUnderlineColor": "#d33682", "inactiveUnderlineColor": "#d33682",
"selectedBackground": "#00252E", "selectedBackground": "#00252E",
"selectedInactiveBackground": "#00252E", "selectedInactiveBackground": "#00252E",
"underlineColor": "#d33682", "underlineColor": "#d33682",
"underlinedTabBackground": "#005a6f", "underlinedTabBackground": "#11353F",
"underlinedTabInactiveBackground": "#003745" "underlinedTabInactiveBackground": "#003745",
"underlinedTabForeground": "#FFFFFF",
"underlinedTabInactiveForeground": "#839496"
} }
}, },
"Tree": { "Tree": {
"background": "#00252E", "background": "#00252E",
"foreground": "#586e75", "foreground": "#586e75",
"hash": "#0D3640", "hash": "#0D3640",
"hoverBackground": "#2E4C5270",
"hoverInactiveBackground": "#11353F",
"modifiedItemForeground": "#d33682", "modifiedItemForeground": "#d33682",
"rowHeight": 28, "rowHeight": 28,
"selectionBackground": "#2E4C5280", "selectionBackground": "#2E4C5270",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#2E4C5280", "selectionInactiveBackground": "#2E4C5270",
"textBackground": "#00252E" "textBackground": "#00252E"
}, },
"Tree.leftChildIndent": 10, "Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5, "Tree.rightChildIndent": 5,
"UiDesigner": { "UIDesigner": {
"Activity.borderColor": "#0D3640", "Activity.borderColor": "#0D3640",
"ColorPicker.background": "#002B36", "Canvas.background": "#00252E",
"ColorPicker.foreground": "#839496", "ColorPicker": {
"Component.borderColor": "#0D3640", "background": "#002B36",
"Component.background": "#002B36", "foreground": "#839496"
"Component.foreground": "#839496", },
"Connector.borderColor": "#0D3640", "Component": {
"Connector.hoverBorderColor": "#005a6f", "borderColor": "#0D3640",
"background": "#002B36",
"foreground": "#839496",
"hoverBorderColor": "#11353F"
},
"Connector": {
"borderColor": "#0D3640",
"hoverBorderColor": "#11353F"
},
"Canvas.background": "#00252E", "Canvas.background": "#00252E",
"highStroke.foreground": "#839496", "highStroke.foreground": "#839496",
"Label.foreground": "#586e75", "Label.foreground": "#586e75",
"List.selectionBackground": "#2E4C5280", "List.selectionBackground": "#2E4C5270",
"Panel.borderColor": "#0D3640", "motion": {
"Panel.background": "#002B36", "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", "percent.foreground": "#839496",
"Placeholder.background": "#002B36", "Placeholder": {
"Placeholder.borderColor": "#0D3640", "background": "#002B36",
"Placeholder.foreground": "#839496", "borderColor": "#0D3640",
"Placeholder.selectedForeground": "#FFFFFF", "foreground": "#839496",
"selectedForeground": "#FFFFFF"
},
"Preview.background": "#002B36", "Preview.background": "#002B36",
"stroke.acceleratorForeground": "#586e75" "stroke.acceleratorForeground": "#586e75"
}, },
@@ -809,7 +895,7 @@
"selectedBranchBackground": "#002B36" "selectedBranchBackground": "#002B36"
}, },
"GitCommits": { "GitCommits": {
"graphColor": "#005a6f" "graphColor": "#11353F"
}, },
"GitLog": { "GitLog": {
"localBranchIconColor": "#d33682", "localBranchIconColor": "#d33682",
@@ -828,11 +914,12 @@
}, },
"Log": { "Log": {
"Commit.unmatchedForeground": "#586e75", "Commit.unmatchedForeground": "#586e75",
"Commit.currentBranchBackground": "#003745" "Commit.currentBranchBackground": "#003745",
"Commit.hoveredBackground": "#2E4C5270"
}, },
"RefLabel": { "RefLabel": {
"foreground": "#FFFFFF", "foreground": "#FFFFFF",
"backgroundBase": "#005a6f" "backgroundBase": "#11353F"
} }
}, },
"Viewport": { "Viewport": {
@@ -840,16 +927,22 @@
"foreground": "#839496" "foreground": "#839496"
}, },
"WelcomeScreen": { "WelcomeScreen": {
"AssociatedComponent.background": "#002B36",
"background": "#002B36", "background": "#002B36",
"borderColor": "#002B36", "borderColor": "#002B36",
"captionBackground": "#00252E", "captionBackground": "#00252E",
"captionForeground": "#839496", "captionForeground": "#839496",
"Details.background": "#002B36",
"footerBackground": "#00252E", "footerBackground": "#00252E",
"footerForeground": "#839496", "footerForeground": "#839496",
"headerBackground": "#002B36", "headerBackground": "#002B36",
"headerForeground": "#839496", "headerForeground": "#839496",
"List.background": "#00252E",
"separatorColor": "#0D3640", "separatorColor": "#0D3640",
"SidePanel.background": "#003745",
"Projects": { "Projects": {
"actions.background": "#00252E",
"actions.selectionBackground": "#11353F",
"background": "#003745", "background": "#003745",
"selectionBackground": "#2E4C52", "selectionBackground": "#2E4C52",
"selectionInactiveBackground": "#003745" "selectionInactiveBackground": "#003745"

View File

@@ -3,6 +3,12 @@
"dark": true, "dark": true,
"author": "Mallowigi", "author": "Mallowigi",
"editorScheme": "/colors/Solarized Dark.xml", "editorScheme": "/colors/Solarized Dark.xml",
"emptyFrameBackground": {
"anchor": "center",
"image": "/walls/solardark.svg",
"fill": "scale",
"transparency": 50
},
"ui": { "ui": {
"*": { "*": {
"acceleratorSelectionForeground": "#586e75", "acceleratorSelectionForeground": "#586e75",
@@ -11,7 +17,7 @@
"disabledBackground": "#083F4D", "disabledBackground": "#083F4D",
"disabledForeground": "#2E5861", "disabledForeground": "#2E5861",
"disabledText": "#2E5861", "disabledText": "#2E5861",
"focusColor": "#005a6f", "focusColor": "#11353F",
"focusedBorderColor": "#d33682", "focusedBorderColor": "#d33682",
"foreground": "#839496", "foreground": "#839496",
"inactiveBackground": "#083F4D", "inactiveBackground": "#083F4D",
@@ -41,28 +47,28 @@
"arc": 0, "arc": 0,
"background": "#002B36", "background": "#002B36",
"default": { "default": {
"endBackground": "#003946", "endBackground": "#11353F",
"endBorderColor": "#003946", "endBorderColor": "#11353F",
"foreground": "#FFFFFF", "foreground": "#FFFFFF",
"focusColor": "#d33682", "focusColor": "#d33682",
"focusedBorderColor": "#d33682", "focusedBorderColor": "#d33682",
"shadowColor": "#003946", "shadowColor": "#11353F",
"startBackground": "#003946", "startBackground": "#11353F",
"startBorderColor": "#003946" "startBorderColor": "#11353F"
}, },
"disabledBorderColor": "#073642", "disabledBorderColor": "#073642",
"disabledText": "#2E5861", "disabledText": "#2E5861",
"endBackground": "#073642", "endBackground": "#073642",
"endBorderColor": "#073642", "endBorderColor": "#073642",
"focus": "#005a6f", "focus": "#11353F",
"focusedBorderColor": "#d33682", "focusedBorderColor": "#d33682",
"foreground": "#586e75", "foreground": "#586e75",
"highlight": "#FFFFFF", "highlight": "#FFFFFF",
"mt.background": "#073642", "mt.background": "#073642",
"mt.foreground": "#586e75", "mt.foreground": "#586e75",
"mt.selectedForeground": "#FFFFFF", "mt.selectedForeground": "#FFFFFF",
"mt.selection.color1": "#003946", "mt.selection.color1": "#11353F",
"mt.selection.color2": "#003946", "mt.selection.color2": "#11353F",
"startBackground": "#073642", "startBackground": "#073642",
"startBorderColor": "#073642", "startBorderColor": "#073642",
"shadowColor": "#073642", "shadowColor": "#073642",
@@ -72,7 +78,10 @@
"Tooltip.borderColor": "#0D3640", "Tooltip.borderColor": "#0D3640",
"Tooltip.background": "#2E4C52" "Tooltip.background": "#2E4C52"
}, },
"Content.background": "#00252E", "Content": {
"background": "#00252E",
"selectionBackground": "#2E4C52"
},
"CheckBox": { "CheckBox": {
"background": "#002B36", "background": "#002B36",
"disabledText": "#2E5861", "disabledText": "#2E5861",
@@ -89,6 +98,14 @@
"selectionBackground": "#2E4C52", "selectionBackground": "#2E4C52",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"CodeWithMe": {
"Avatar.foreground": "#839496",
"AccessEnabled": {
"accessDot": "#d33682",
"dropdownBorder": "#003745",
"pillBackground": "$second"
}
},
"ColorChooser": { "ColorChooser": {
"background": "#002B36", "background": "#002B36",
"foreground": "#839496", "foreground": "#839496",
@@ -104,12 +121,13 @@
}, },
"background": "#002B36", "background": "#002B36",
"buttonBackground": "#073642", "buttonBackground": "#073642",
"darcula.hoveredArrowButtonForeground": "#d33682",
"disabledForeground": "#2E5861", "disabledForeground": "#2E5861",
"foreground": "#839496", "foreground": "#839496",
"modifiedItemForeground": "#d33682", "modifiedItemForeground": "#d33682",
"nonEditableBackground": "#003745", "nonEditableBackground": "#003745",
"padding": "5,5,5,5", "padding": "5,5,5,5",
"selectionBackground": "#003946", "selectionBackground": "#11353F",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"ComboPopup.border": "#0D3640", "ComboPopup.border": "#0D3640",
@@ -130,7 +148,7 @@
}, },
"Component": { "Component": {
"arc": 4, "arc": 4,
"borderColor": "#005a6f", "borderColor": "#11353F",
"disabledBorderColor": "#073642", "disabledBorderColor": "#073642",
"focusColor": "#d33682", "focusColor": "#d33682",
"focusedBorderColor": "#d33682", "focusedBorderColor": "#d33682",
@@ -156,23 +174,25 @@
} }
}, },
"DebuggerTabs": { "DebuggerTabs": {
"selectedBackground": "#005a6f", "selectedBackground": "#11353F",
"underlinedTabBackground": "#005a6f" "underlinedTabBackground": "#11353F"
}, },
"DebuggerPopup": { "DebuggerPopup": {
"borderColor": "#005a6f" "borderColor": "#11353F"
}, },
"DefaultTabs": { "DefaultTabs": {
"background": "#002B36", "background": "#002B36",
"borderColor": "#002B36", "borderColor": "#002B36",
"hoverBackground": "#003946", "hoverBackground": "#11353F",
"hoverColor": "#002B36", "hoverColor": "#002B36",
"hoverMaskColor": "#005a6f", "hoverMaskColor": "#11353F",
"inactiveColoredTabBackground": "#002B36",
"inactiveColoredFileBackground": "#073642", "inactiveColoredFileBackground": "#073642",
"inactiveUnderlineColor": "#2E5861", "inactiveUnderlineColor": "#d33682",
"inactiveMaskColor": "#002B36", "inactiveMaskColor": "#002B36",
"underlineColor": "#d33682", "underlineColor": "#d33682",
"underlinedTabBackground": "#003946" "underlinedTabBackground": "#11353F",
"underlinedTabForeground": "#FFFFFF"
}, },
"Desktop.background": "#002B36", "Desktop.background": "#002B36",
"DialogWrapper.southPanelBackground": "#002B36", "DialogWrapper.southPanelBackground": "#002B36",
@@ -198,24 +218,26 @@
}, },
"EditorTabs": { "EditorTabs": {
"borderColor": "#003745", "borderColor": "#003745",
"hoverColor": "#005a6f", "hoverBackground": "#11353F",
"hoverMaskColor": "#005a6f", "hoverColor": "#11353F",
"hoverMaskColor": "#11353F",
"inactiveMaskColor": "#002B36", "inactiveMaskColor": "#002B36",
"inactiveColoredFileBackground": "#002B362", "inactiveColoredFileBackground": "#002B36",
"inactiveUnderlineColor": "#2E5861", "inactiveUnderlineColor": "#2E5861",
"selectedForeground": "#839496", "selectedForeground": "#839496",
"selectedBackground": "#003946", "selectedBackground": "#11353F",
"underlineColor": "#d33682", "underlineColor": "#d33682",
"underlinedTabBackground": "#003946" "underlinedTabBackground": "#11353F",
"underlinedTabForeground": "#FFFFFF"
}, },
"EditorGroupsTabs": { "EditorGroupsTabs": {
"background": "#002B36", "background": "#002B36",
"borderColor": "#003745", "borderColor": "#003745",
"hoverBackground": "#005a6f", "hoverBackground": "#11353F",
"hoverColor": "#005a6f", "hoverColor": "#11353F",
"inactiveUnderlineColor": "#d33682", "inactiveUnderlineColor": "#d33682",
"underlineColor": "#d33682", "underlineColor": "#d33682",
"underlinedTabBackground": "#003946", "underlinedTabBackground": "#11353F",
"underlinedTabForeground": "#839496" "underlinedTabForeground": "#839496"
}, },
"FileColor": { "FileColor": {
@@ -244,14 +266,15 @@
"inactiveBackground": "#073642", "inactiveBackground": "#073642",
"inactiveForeground": "#2E5861", "inactiveForeground": "#2E5861",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionBackground": "#003946" "selectionBackground": "#11353F"
}, },
"GotItTooltip.borderColor": "#2E4C52",
"Group": { "Group": {
"disabledSeparatorColor": "#0D3640", "disabledSeparatorColor": "#0D3640",
"separatorColor": "#0D3640" "separatorColor": "#0D3640"
}, },
"GutterTooltip": { "GutterTooltip": {
"infoForeground": "#839496", "infoForeground": "#586e75",
"lineSeparatorColor": "#002B36" "lineSeparatorColor": "#002B36"
}, },
"HeaderColor": { "HeaderColor": {
@@ -288,7 +311,8 @@
"disabledText": "#2E5861", "disabledText": "#2E5861",
"foreground": "#839496", "foreground": "#839496",
"infoForeground": "#586e75", "infoForeground": "#586e75",
"selectedForeground": "#FFFFFF" "selectedForeground": "#FFFFFF",
"selectedDisabledForeground": "#839496"
}, },
"Link": { "Link": {
"activeForeground": "#d33682", "activeForeground": "#d33682",
@@ -301,10 +325,12 @@
"List": { "List": {
"background": "#003745", "background": "#003745",
"foreground": "#839496", "foreground": "#839496",
"hoverBackground": "#2E4C5270",
"hoverInactiveBackground": "#11353F",
"selectionBackground": "#2E4C5250", "selectionBackground": "#2E4C5250",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#2E4C5280" "selectionInactiveBackground": "#2E4C5270"
}, },
"material": { "material": {
"background": "#002B36", "background": "#002B36",
@@ -320,8 +346,8 @@
}, },
"MemoryIndicator": { "MemoryIndicator": {
"allocatedBackground": "#003745", "allocatedBackground": "#003745",
"usedColor": "#005a6f", "usedColor": "#11353F",
"usedBackground": "#005a6f" "usedBackground": "#11353F"
}, },
"Menu": { "Menu": {
"acceleratorForeground": "#586e75", "acceleratorForeground": "#586e75",
@@ -408,13 +434,13 @@
}, },
"ParameterInfo": { "ParameterInfo": {
"background": "#003745", "background": "#003745",
"borderColor": "#003946", "borderColor": "#11353F",
"currentOverloadBackground": "#003946", "currentOverloadBackground": "#11353F",
"currentParameterForeground": "#d33682", "currentParameterForeground": "#d33682",
"disabledForeground": "#2E5861", "disabledForeground": "#2E5861",
"foreground": "#839496", "foreground": "#839496",
"infoForeground": "#586e75", "infoForeground": "#586e75",
"lineSeparatorColor": "#003946" "lineSeparatorColor": "#11353F"
}, },
"PasswordField": { "PasswordField": {
"background": "#002B36", "background": "#002B36",
@@ -422,27 +448,28 @@
"caretForeground": "#d33682", "caretForeground": "#d33682",
"foreground": "#839496", "foreground": "#839496",
"inactiveForeground": "#2E5861", "inactiveForeground": "#2E5861",
"selectionBackground": "#003946", "selectionBackground": "#11353F",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"Plugins": { "Plugins": {
"background": "#002B36", "background": "#002B36",
"disabledForeground": "#2E5861", "disabledForeground": "#2E5861",
"eapTagBackground": "#005a6f", "eapTagBackground": "#11353F",
"lightSelectionBackground": "#2E4C52", "hoverBackground": "#2E4C5270",
"paidTagBackground": "#005a6f", "lightSelectionBackground": "#11353F",
"paidTagBackground": "#11353F",
"selectionBackground": "#2E4C52", "selectionBackground": "#2E4C52",
"tagForeground": "#d33682", "tagForeground": "#d33682",
"tagBackground": "#005a6f", "tagBackground": "#11353F",
"trialTagBackground": "#005a6f", "trialTagBackground": "#11353F",
"Button": { "Button": {
"installBackground": "#073642", "installBackground": "#073642",
"installBorderColor": "#073642", "installBorderColor": "#073642",
"installForeground": "#839496", "installForeground": "#839496",
"installFocusedBackground": "#005a6f", "installFocusedBackground": "#11353F",
"installFillForeground": "#2E5861", "installFillForeground": "#2E5861",
"installFillBackground": "#073642", "installFillBackground": "#073642",
"updateBackground": "#073642", "updateBackground": "#d33682",
"updateBorderColor": "#073642", "updateBorderColor": "#073642",
"updateForeground": "#839496" "updateForeground": "#839496"
}, },
@@ -455,9 +482,9 @@
"foreground": "#839496" "foreground": "#839496"
}, },
"Tab": { "Tab": {
"hoverBackground": "#003946", "hoverBackground": "#11353F",
"selectedForeground": "#FFFFFF", "selectedForeground": "#FFFFFF",
"selectedBackground": "#003946" "selectedBackground": "#11353F"
} }
}, },
"Popup": { "Popup": {
@@ -496,8 +523,8 @@
"indeterminateEndColor": "#d33682", "indeterminateEndColor": "#d33682",
"indeterminateStartColor": "#d33682", "indeterminateStartColor": "#d33682",
"progressColor": "#d33682", "progressColor": "#d33682",
"selectionBackground": "#005a6f", "selectionBackground": "#11353F",
"trackColor": "#005a6f" "trackColor": "#11353F"
}, },
"PsiViewer": { "PsiViewer": {
"referenceHighlightColor": "#d33682" "referenceHighlightColor": "#d33682"
@@ -517,6 +544,7 @@
"selectionBackground": "#2E4C52", "selectionBackground": "#2E4C52",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"ScreenView.borderColor": "#0D3640",
"ScrollBar": { "ScrollBar": {
"background": "#002B36", "background": "#002B36",
"hoverThumbBorderColor": "#d33682", "hoverThumbBorderColor": "#d33682",
@@ -538,7 +566,7 @@
"trackColor": "#002B3630" "trackColor": "#002B3630"
} }
}, },
"thumb": "#005a6f", "thumb": "#11353F",
"thumbBorderColor": "#d3368270", "thumbBorderColor": "#d3368270",
"thumbColor": "#d3368270", "thumbColor": "#d3368270",
"trackColor": "#002B3630", "trackColor": "#002B3630",
@@ -571,14 +599,23 @@
"Tab": { "Tab": {
"active.foreground": "#FFFFFF", "active.foreground": "#FFFFFF",
"selectedForeground": "#FFFFFF", "selectedForeground": "#FFFFFF",
"selectedBackground": "#005a6f" "selectedBackground": "#11353F"
} }
}, },
"SearchMatch": { "SearchMatch": {
"endBackground": "#d33682", "endBackground": "#d33682",
"startBackground": "#d33682" "startBackground": "#d33682",
"endColor": "#d33682",
"startColor": "#d33682"
}, },
"SearchField.errorBackground": "#2E4C52", "SearchField.errorBackground": "#2E4C52",
"SearchOption": {
"selectedBackground": "#11353F"
},
"SearchResults": {
"Ordinal.File.Foreground": "#586e75",
"Repeated.File.Foreground": "#839496"
},
"Separator": { "Separator": {
"background": "#003745", "background": "#003745",
"foreground": "#003745", "foreground": "#003745",
@@ -594,12 +631,12 @@
"foreground": "#839496", "foreground": "#839496",
"majorTickLength": 6, "majorTickLength": 6,
"tickColor": "#003745", "tickColor": "#003745",
"trackColor": "#003946", "trackColor": "#11353F",
"trackWidth": 7, "trackWidth": 7,
"thumb": "#d33682" "thumb": "#d33682"
}, },
"SpeedSearch": { "SpeedSearch": {
"background": "#005a6f", "background": "#11353F",
"borderColor": "#0D3640", "borderColor": "#0D3640",
"foreground": "#839496", "foreground": "#839496",
"errorForeground": "#839496" "errorForeground": "#839496"
@@ -616,21 +653,23 @@
}, },
"SplitPaneDivider.draggingColor": "#003745", "SplitPaneDivider.draggingColor": "#003745",
"StatusBar": { "StatusBar": {
"borderColor": "#002B36" "borderColor": "#002B36",
"hoverBackground": "#11353F",
"LightEditBackground": "#11353F"
}, },
"TabbedPane": { "TabbedPane": {
"background": "#002B36", "background": "#002B36",
"contentAreaColor": "#005a6f", "contentAreaColor": "#11353F",
"contentBorderInsets": "3,1,1,1", "contentBorderInsets": "3,1,1,1",
"darkShadow": "#0D3640", "darkShadow": "#0D3640",
"disabledForeground": "#2E5861", "disabledForeground": "#2E5861",
"disabledUnderlineColor": "#2E5861", "disabledUnderlineColor": "#2E5861",
"focus": "#003946", "focus": "#11353F",
"focusColor": "#003946", "focusColor": "#11353F",
"fontSizeOffset": 0, "fontSizeOffset": 0,
"foreground": "#839496", "foreground": "#839496",
"highlight": "#0D3640", "highlight": "#0D3640",
"hoverColor": "#005a6f", "hoverColor": "#11353F",
"labelShift": 0, "labelShift": 0,
"selectedForeground": "#FFFFFF", "selectedForeground": "#FFFFFF",
"selectedLabelShift": 0, "selectedLabelShift": 0,
@@ -643,22 +682,26 @@
}, },
"TabbedPane.mt.tab.background": "#002B36", "TabbedPane.mt.tab.background": "#002B36",
"Table": { "Table": {
"alternativeRowBackground": "#00252E",
"background": "#002B36", "background": "#002B36",
"cellNoFocusBorder": "10,5,10,5", "cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5",
"disabledForeground": "#2E5861",
"dropLineColor": "#d33682", "dropLineColor": "#d33682",
"dropLineShortColor": "#d33682", "dropLineShortColor": "#d33682",
"focusCellBackground": "#003946", "focusCellBackground": "#11353F",
"focusCellForeground": "#FFFFFF", "focusCellForeground": "#FFFFFF",
"foreground": "#839496", "foreground": "#839496",
"gridColor": "#002B36", "gridColor": "#002B36",
"highlightOuter": "#003946", "highlightOuter": "#11353F",
"hoverBackground": "#2E4C5270",
"hoverInactiveBackground": "#11353F",
"lightSelectionForeground": "#FFFFFF", "lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#586e75", "lightSelectionInactiveForeground": "#586e75",
"lightSelectionInactiveBackground": "#003745", "lightSelectionInactiveBackground": "#003745",
"selectionBackground": "#003946", "selectionBackground": "#11353F",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#003946", "selectionInactiveBackground": "#11353F",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"sortIconColor": "#839496", "sortIconColor": "#839496",
"stripeColor": "#00252E" "stripeColor": "#00252E"
@@ -670,7 +713,7 @@
"cellBorder": "4,0,4,0", "cellBorder": "4,0,4,0",
"disabledForeground": "#2E5861", "disabledForeground": "#2E5861",
"foreground": "#839496", "foreground": "#839496",
"focusCellBackground": "#003946", "focusCellBackground": "#11353F",
"focusCellForeground": "#FFFFFF", "focusCellForeground": "#FFFFFF",
"height": 25, "height": 25,
"separatorColor": "#003745" "separatorColor": "#003745"
@@ -683,7 +726,7 @@
"caretForeground": "#d33682", "caretForeground": "#d33682",
"foreground": "#839496", "foreground": "#839496",
"inactiveForeground": "#2E5861", "inactiveForeground": "#2E5861",
"selectionBackground": "#003946", "selectionBackground": "#11353F",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"TextField": { "TextField": {
@@ -691,7 +734,7 @@
"caretForeground": "#d33682", "caretForeground": "#d33682",
"foreground": "#839496", "foreground": "#839496",
"inactiveForeground": "#2E5861", "inactiveForeground": "#2E5861",
"selectionBackground": "#003946", "selectionBackground": "#11353F",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"TextPane": { "TextPane": {
@@ -699,12 +742,12 @@
"caretForeground": "#d33682", "caretForeground": "#d33682",
"foreground": "#839496", "foreground": "#839496",
"inactiveForeground": "#2E5861", "inactiveForeground": "#2E5861",
"selectionBackground": "#003946", "selectionBackground": "#11353F",
"selectionForeground": "#FFFFFF" "selectionForeground": "#FFFFFF"
}, },
"TitlePane": { "TitlePane": {
"background": "#00252E", "background": "#00252E",
"Button.hoverBackground": "#005a6f", "Button.hoverBackground": "#11353F",
"inactiveBackground": "#002B36", "inactiveBackground": "#002B36",
"infoForeground": "#586e75", "infoForeground": "#586e75",
"inactiveInfoForeground": "#586e75" "inactiveInfoForeground": "#586e75"
@@ -729,8 +772,8 @@
"ToolTip": { "ToolTip": {
"Actions.background": "#002B36", "Actions.background": "#002B36",
"Actions.infoForeground": "#586e75", "Actions.infoForeground": "#586e75",
"background": "#002B36", "background": "#2E4C52",
"borderColor": "#005a6f", "borderColor": "#0D3640",
"foreground": "#839496", "foreground": "#839496",
"infoForeground": "#586e75", "infoForeground": "#586e75",
"separatorColor": "#0D3640", "separatorColor": "#0D3640",
@@ -738,7 +781,7 @@
}, },
"ToolWindow": { "ToolWindow": {
"Button": { "Button": {
"hoverBackground": "#003946", "hoverBackground": "#11353F",
"selectedForeground": "#FFFFFF", "selectedForeground": "#FFFFFF",
"selectedBackground": "#00252E" "selectedBackground": "#00252E"
}, },
@@ -751,50 +794,93 @@
"background": "#002B36" "background": "#002B36"
}, },
"HeaderTab": { "HeaderTab": {
"hoverBackground": "#005a6f", "borderColor": "#11353F",
"hoverInactiveBackground": "#003745", "hoverBackground": "#11353F",
"hoverInactiveBackground": "#11353F",
"inactiveUnderlineColor": "#d33682", "inactiveUnderlineColor": "#d33682",
"selectedBackground": "#00252E", "selectedBackground": "#00252E",
"selectedInactiveBackground": "#00252E", "selectedInactiveBackground": "#00252E",
"underlineColor": "#d33682", "underlineColor": "#d33682",
"underlinedTabBackground": "#005a6f", "underlinedTabBackground": "#11353F",
"underlinedTabInactiveBackground": "#003745" "underlinedTabInactiveBackground": "#003745",
"underlinedTabForeground": "#FFFFFF",
"underlinedTabInactiveForeground": "#839496"
} }
}, },
"Tree": { "Tree": {
"background": "#002B36", "background": "#002B36",
"foreground": "#586e75", "foreground": "#586e75",
"hash": "#0D3640", "hash": "#0D3640",
"hoverBackground": "#2E4C5270",
"hoverInactiveBackground": "#11353F",
"modifiedItemForeground": "#d33682", "modifiedItemForeground": "#d33682",
"rowHeight": 28, "rowHeight": 28,
"selectionBackground": "#2E4C5280", "selectionBackground": "#2E4C5270",
"selectionForeground": "#FFFFFF", "selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF", "selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#2E4C5280", "selectionInactiveBackground": "#2E4C5270",
"textBackground": "#002B36" "textBackground": "#002B36"
}, },
"Tree.leftChildIndent": 10, "Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5, "Tree.rightChildIndent": 5,
"UiDesigner": { "UIDesigner": {
"Activity.borderColor": "#0D3640", "Activity.borderColor": "#0D3640",
"ColorPicker.background": "#002B36", "Canvas.background": "#00252E",
"ColorPicker.foreground": "#839496", "ColorPicker": {
"Component.borderColor": "#0D3640", "background": "#002B36",
"Component.background": "#002B36", "foreground": "#839496"
"Component.foreground": "#839496", },
"Connector.borderColor": "#0D3640", "Component": {
"Connector.hoverBorderColor": "#005a6f", "borderColor": "#0D3640",
"background": "#002B36",
"foreground": "#839496",
"hoverBorderColor": "#11353F"
},
"Connector": {
"borderColor": "#0D3640",
"hoverBorderColor": "#11353F"
},
"Canvas.background": "#00252E", "Canvas.background": "#00252E",
"highStroke.foreground": "#839496", "highStroke.foreground": "#839496",
"Label.foreground": "#586e75", "Label.foreground": "#586e75",
"List.selectionBackground": "#2E4C5280", "List.selectionBackground": "#2E4C5270",
"Panel.borderColor": "#0D3640", "motion": {
"Panel.background": "#002B36", "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", "percent.foreground": "#839496",
"Placeholder.background": "#002B36", "Placeholder": {
"Placeholder.borderColor": "#0D3640", "background": "#002B36",
"Placeholder.foreground": "#839496", "borderColor": "#0D3640",
"Placeholder.selectedForeground": "#FFFFFF", "foreground": "#839496",
"selectedForeground": "#FFFFFF"
},
"Preview.background": "#002B36", "Preview.background": "#002B36",
"stroke.acceleratorForeground": "#586e75" "stroke.acceleratorForeground": "#586e75"
}, },
@@ -809,7 +895,7 @@
"selectedBranchBackground": "#002B36" "selectedBranchBackground": "#002B36"
}, },
"GitCommits": { "GitCommits": {
"graphColor": "#005a6f" "graphColor": "#11353F"
}, },
"GitLog": { "GitLog": {
"localBranchIconColor": "#d33682", "localBranchIconColor": "#d33682",
@@ -828,11 +914,12 @@
}, },
"Log": { "Log": {
"Commit.unmatchedForeground": "#586e75", "Commit.unmatchedForeground": "#586e75",
"Commit.currentBranchBackground": "#003745" "Commit.currentBranchBackground": "#003745",
"Commit.hoveredBackground": "#2E4C5270"
}, },
"RefLabel": { "RefLabel": {
"foreground": "#FFFFFF", "foreground": "#FFFFFF",
"backgroundBase": "#005a6f" "backgroundBase": "#11353F"
} }
}, },
"Viewport": { "Viewport": {
@@ -840,16 +927,22 @@
"foreground": "#839496" "foreground": "#839496"
}, },
"WelcomeScreen": { "WelcomeScreen": {
"AssociatedComponent.background": "#002B36",
"background": "#002B36", "background": "#002B36",
"borderColor": "#002B36", "borderColor": "#002B36",
"captionBackground": "#00252E", "captionBackground": "#00252E",
"captionForeground": "#839496", "captionForeground": "#839496",
"Details.background": "#002B36",
"footerBackground": "#00252E", "footerBackground": "#00252E",
"footerForeground": "#839496", "footerForeground": "#839496",
"headerBackground": "#002B36", "headerBackground": "#002B36",
"headerForeground": "#839496", "headerForeground": "#839496",
"List.background": "#00252E",
"separatorColor": "#0D3640", "separatorColor": "#0D3640",
"SidePanel.background": "#003745",
"Projects": { "Projects": {
"actions.background": "#00252E",
"actions.selectionBackground": "#11353F",
"background": "#003745", "background": "#003745",
"selectionBackground": "#2E4C52", "selectionBackground": "#2E4C52",
"selectionInactiveBackground": "#003745" "selectionInactiveBackground": "#003745"

View File

@@ -1,8 +1,14 @@
{ {
"name": "Material Solarized Light Contrast", "name": "Solarized Light Contrast",
"dark": false, "dark": false,
"author": "Mallowigi", "author": "Mallowigi",
"editorScheme": "/colors/Solarized Light.xml", "editorScheme": "/colors/Solarized Light.xml",
"emptyFrameBackground": {
"anchor": "center",
"image": "/walls/solarlight.svg",
"fill": "scale",
"transparency": 50
},
"ui": { "ui": {
"*": { "*": {
"acceleratorSelectionForeground": "#93a1a1", "acceleratorSelectionForeground": "#93a1a1",
@@ -11,13 +17,13 @@
"disabledBackground": "#E3DCC9", "disabledBackground": "#E3DCC9",
"disabledForeground": "#C9CCC3", "disabledForeground": "#C9CCC3",
"disabledText": "#C9CCC3", "disabledText": "#C9CCC3",
"focusColor": "#d1cbb8", "focusColor": "#F6F0DE",
"focusedBorderColor": "#d33682", "focusedBorderColor": "#d33682",
"foreground": "#586e75", "foreground": "#586e75",
"inactiveBackground": "#E3DCC9", "inactiveBackground": "#E3DCC9",
"inactiveForeground": "#93a1a1", "inactiveForeground": "#93a1a1",
"infoForeground": "#93a1a1", "infoForeground": "#93a1a1",
"selectionBackground": "#e8dcb6", "selectionBackground": "#93a1a1",
"selectionBackgroundInactive": "#F6F0DE", "selectionBackgroundInactive": "#F6F0DE",
"selectionForeground": "#002b36", "selectionForeground": "#002b36",
"selectionInactiveBackground": "#F6F0DE", "selectionInactiveBackground": "#F6F0DE",
@@ -27,13 +33,13 @@
"ActionButton": { "ActionButton": {
"hoverBackground": "#d3368250", "hoverBackground": "#d3368250",
"hoverBorderColor": "#d3368250", "hoverBorderColor": "#d3368250",
"hoverSeparatorColor": "#d8d4c4", "hoverSeparatorColor": "#FEFBF1",
"focusedBorderColor": "#d3368250", "focusedBorderColor": "#d3368250",
"pressedBackground": "#d3368250", "pressedBackground": "#d3368250",
"pressedBorderColor": "#d3368250" "pressedBorderColor": "#d3368250"
}, },
"Autocomplete": { "Autocomplete": {
"selectionBackground": "#e8dcb6" "selectionBackground": "#93a1a1"
}, },
"Borders.ContrastBorderColor": "#fdf6e3", "Borders.ContrastBorderColor": "#fdf6e3",
"Borders.color": "#edead9", "Borders.color": "#edead9",
@@ -41,38 +47,41 @@
"arc": 0, "arc": 0,
"background": "#fdf6e3", "background": "#fdf6e3",
"default": { "default": {
"endBackground": "#d1cbb8", "endBackground": "#F6F0DE",
"endBorderColor": "#d1cbb8", "endBorderColor": "#F6F0DE",
"foreground": "#002b36", "foreground": "#002b36",
"focusColor": "#d33682", "focusColor": "#d33682",
"focusedBorderColor": "#d33682", "focusedBorderColor": "#d33682",
"shadowColor": "#d1cbb8", "shadowColor": "#F6F0DE",
"startBackground": "#d1cbb8", "startBackground": "#F6F0DE",
"startBorderColor": "#d1cbb8" "startBorderColor": "#F6F0DE"
}, },
"disabledBorderColor": "#d8d4c4", "disabledBorderColor": "#FEFBF1",
"disabledText": "#C9CCC3", "disabledText": "#C9CCC3",
"endBackground": "#d8d4c4", "endBackground": "#FEFBF1",
"endBorderColor": "#d8d4c4", "endBorderColor": "#FEFBF1",
"focus": "#d1cbb8", "focus": "#F6F0DE",
"focusedBorderColor": "#d33682", "focusedBorderColor": "#d33682",
"foreground": "#93a1a1", "foreground": "#93a1a1",
"highlight": "#002b36", "highlight": "#002b36",
"mt.background": "#d8d4c4", "mt.background": "#FEFBF1",
"mt.foreground": "#93a1a1", "mt.foreground": "#93a1a1",
"mt.selectedForeground": "#002b36", "mt.selectedForeground": "#002b36",
"mt.selection.color1": "#d1cbb8", "mt.selection.color1": "#F6F0DE",
"mt.selection.color2": "#d1cbb8", "mt.selection.color2": "#F6F0DE",
"startBackground": "#d8d4c4", "startBackground": "#FEFBF1",
"startBorderColor": "#d8d4c4", "startBorderColor": "#FEFBF1",
"shadowColor": "#d8d4c4", "shadowColor": "#FEFBF1",
"shadowWidth": 0 "shadowWidth": 0
}, },
"Canvas": { "Canvas": {
"Tooltip.borderColor": "#edead9", "Tooltip.borderColor": "#edead9",
"Tooltip.background": "#EDE8D4" "Tooltip.background": "#EDE8D4"
}, },
"Content.background": "#eee8d5", "Content": {
"background": "#eee8d5",
"selectionBackground": "#93a1a1"
},
"CheckBox": { "CheckBox": {
"background": "#fdf6e3", "background": "#fdf6e3",
"disabledText": "#C9CCC3", "disabledText": "#C9CCC3",
@@ -86,30 +95,39 @@
"disabledBackground": "#fdf6e3", "disabledBackground": "#fdf6e3",
"disabledForeground": "#C9CCC3", "disabledForeground": "#C9CCC3",
"foreground": "#586e75", "foreground": "#586e75",
"selectionBackground": "#e8dcb6", "selectionBackground": "#93a1a1",
"selectionForeground": "#002b36" "selectionForeground": "#002b36"
}, },
"CodeWithMe": {
"Avatar.foreground": "#586e75",
"AccessEnabled": {
"accessDot": "#d33682",
"dropdownBorder": "#F6F0DE",
"pillBackground": "$second"
}
},
"ColorChooser": { "ColorChooser": {
"background": "#fdf6e3", "background": "#fdf6e3",
"foreground": "#586e75", "foreground": "#586e75",
"swatchesDefaultRecentColor": "#586e75" "swatchesDefaultRecentColor": "#586e75"
}, },
"ComboBoxButton.background": "#d8d4c4", "ComboBoxButton.background": "#FEFBF1",
"ComboBox": { "ComboBox": {
"ArrowButton": { "ArrowButton": {
"background": "#d8d4c4", "background": "#FEFBF1",
"disabledIconColor": "#C9CCC3", "disabledIconColor": "#C9CCC3",
"iconColor": "#586e75", "iconColor": "#586e75",
"nonEditableBackground": "#fdf6e3" "nonEditableBackground": "#fdf6e3"
}, },
"background": "#eee8d5", "background": "#eee8d5",
"buttonBackground": "#d8d4c4", "buttonBackground": "#FEFBF1",
"darcula.hoveredArrowButtonForeground": "#d33682",
"disabledForeground": "#C9CCC3", "disabledForeground": "#C9CCC3",
"foreground": "#586e75", "foreground": "#586e75",
"modifiedItemForeground": "#d33682", "modifiedItemForeground": "#d33682",
"nonEditableBackground": "#F6F0DE", "nonEditableBackground": "#F6F0DE",
"padding": "5,5,5,5", "padding": "5,5,5,5",
"selectionBackground": "#d1cbb8", "selectionBackground": "#F6F0DE",
"selectionForeground": "#002b36" "selectionForeground": "#002b36"
}, },
"ComboPopup.border": "#edead9", "ComboPopup.border": "#edead9",
@@ -123,15 +141,15 @@
"selectedGrayedForeground": "#002b36", "selectedGrayedForeground": "#002b36",
"selectionGrayForeground": "#002b36", "selectionGrayForeground": "#002b36",
"selectionInactiveInfoForeground": "#93a1a1", "selectionInactiveInfoForeground": "#93a1a1",
"selectionInactiveBackground": "#e8dcb650", "selectionInactiveBackground": "#93a1a150",
"selectionBackground": "#e8dcb680", "selectionBackground": "#93a1a180",
"selectionForeground": "#002b36", "selectionForeground": "#002b36",
"selectionInfoForeground": "#002b36" "selectionInfoForeground": "#002b36"
}, },
"Component": { "Component": {
"arc": 4, "arc": 4,
"borderColor": "#d1cbb8", "borderColor": "#F6F0DE",
"disabledBorderColor": "#d8d4c4", "disabledBorderColor": "#FEFBF1",
"focusColor": "#d33682", "focusColor": "#d33682",
"focusedBorderColor": "#d33682", "focusedBorderColor": "#d33682",
"hoverIconColor": "#d33682", "hoverIconColor": "#d33682",
@@ -156,23 +174,25 @@
} }
}, },
"DebuggerTabs": { "DebuggerTabs": {
"selectedBackground": "#d1cbb8", "selectedBackground": "#F6F0DE",
"underlinedTabBackground": "#d1cbb8" "underlinedTabBackground": "#F6F0DE"
}, },
"DebuggerPopup": { "DebuggerPopup": {
"borderColor": "#d1cbb8" "borderColor": "#F6F0DE"
}, },
"DefaultTabs": { "DefaultTabs": {
"background": "#fdf6e3", "background": "#fdf6e3",
"borderColor": "#fdf6e3", "borderColor": "#fdf6e3",
"hoverBackground": "#d1cbb8", "hoverBackground": "#F6F0DE",
"hoverColor": "#eee8d5", "hoverColor": "#eee8d5",
"hoverMaskColor": "#d1cbb8", "hoverMaskColor": "#F6F0DE",
"inactiveColoredFileBackground": "#d8d4c4", "inactiveColoredTabBackground": "#fdf6e3",
"inactiveUnderlineColor": "#C9CCC3", "inactiveColoredFileBackground": "#FEFBF1",
"inactiveUnderlineColor": "#d33682",
"inactiveMaskColor": "#eee8d5", "inactiveMaskColor": "#eee8d5",
"underlineColor": "#d33682", "underlineColor": "#d33682",
"underlinedTabBackground": "#d1cbb8" "underlinedTabBackground": "#F6F0DE",
"underlinedTabForeground": "#002b36"
}, },
"Desktop.background": "#fdf6e3", "Desktop.background": "#fdf6e3",
"DialogWrapper.southPanelBackground": "#fdf6e3", "DialogWrapper.southPanelBackground": "#fdf6e3",
@@ -193,29 +213,31 @@
"foreground": "#586e75", "foreground": "#586e75",
"inactiveBackground": "#fdf6e3", "inactiveBackground": "#fdf6e3",
"inactiveForeground": "#C9CCC3", "inactiveForeground": "#C9CCC3",
"selectionBackground": "#e8dcb6", "selectionBackground": "#93a1a1",
"selectionForeground": "#002b36" "selectionForeground": "#002b36"
}, },
"EditorTabs": { "EditorTabs": {
"borderColor": "#F6F0DE", "borderColor": "#F6F0DE",
"hoverColor": "#d1cbb8", "hoverBackground": "#F6F0DE",
"hoverMaskColor": "#d1cbb8", "hoverColor": "#F6F0DE",
"hoverMaskColor": "#F6F0DE",
"inactiveMaskColor": "#fdf6e3", "inactiveMaskColor": "#fdf6e3",
"inactiveColoredFileBackground": "#fdf6e32", "inactiveColoredFileBackground": "#fdf6e3",
"inactiveUnderlineColor": "#C9CCC3", "inactiveUnderlineColor": "#C9CCC3",
"selectedForeground": "#586e75", "selectedForeground": "#586e75",
"selectedBackground": "#d1cbb8", "selectedBackground": "#F6F0DE",
"underlineColor": "#d33682", "underlineColor": "#d33682",
"underlinedTabBackground": "#d1cbb8" "underlinedTabBackground": "#F6F0DE",
"underlinedTabForeground": "#002b36"
}, },
"EditorGroupsTabs": { "EditorGroupsTabs": {
"background": "#fdf6e3", "background": "#fdf6e3",
"borderColor": "#F6F0DE", "borderColor": "#F6F0DE",
"hoverBackground": "#d1cbb8", "hoverBackground": "#F6F0DE",
"hoverColor": "#d1cbb8", "hoverColor": "#F6F0DE",
"inactiveUnderlineColor": "#d33682", "inactiveUnderlineColor": "#d33682",
"underlineColor": "#d33682", "underlineColor": "#d33682",
"underlinedTabBackground": "#d1cbb8", "underlinedTabBackground": "#F6F0DE",
"underlinedTabForeground": "#586e75" "underlinedTabForeground": "#586e75"
}, },
"FileColor": { "FileColor": {
@@ -241,17 +263,18 @@
"background": "#eee8d5", "background": "#eee8d5",
"caretForeground": "#d33682", "caretForeground": "#d33682",
"foreground": "#586e75", "foreground": "#586e75",
"inactiveBackground": "#d8d4c4", "inactiveBackground": "#FEFBF1",
"inactiveForeground": "#C9CCC3", "inactiveForeground": "#C9CCC3",
"selectionForeground": "#002b36", "selectionForeground": "#002b36",
"selectionBackground": "#d1cbb8" "selectionBackground": "#F6F0DE"
}, },
"GotItTooltip.borderColor": "#EDE8D4",
"Group": { "Group": {
"disabledSeparatorColor": "#edead9", "disabledSeparatorColor": "#edead9",
"separatorColor": "#edead9" "separatorColor": "#edead9"
}, },
"GutterTooltip": { "GutterTooltip": {
"infoForeground": "#586e75", "infoForeground": "#93a1a1",
"lineSeparatorColor": "#fdf6e3" "lineSeparatorColor": "#fdf6e3"
}, },
"HeaderColor": { "HeaderColor": {
@@ -288,7 +311,8 @@
"disabledText": "#C9CCC3", "disabledText": "#C9CCC3",
"foreground": "#586e75", "foreground": "#586e75",
"infoForeground": "#93a1a1", "infoForeground": "#93a1a1",
"selectedForeground": "#002b36" "selectedForeground": "#002b36",
"selectedDisabledForeground": "#586e75"
}, },
"Link": { "Link": {
"activeForeground": "#d33682", "activeForeground": "#d33682",
@@ -301,17 +325,19 @@
"List": { "List": {
"background": "#F6F0DE", "background": "#F6F0DE",
"foreground": "#586e75", "foreground": "#586e75",
"selectionBackground": "#e8dcb650", "hoverBackground": "#93a1a170",
"hoverInactiveBackground": "#F6F0DE",
"selectionBackground": "#93a1a150",
"selectionForeground": "#002b36", "selectionForeground": "#002b36",
"selectionInactiveForeground": "#002b36", "selectionInactiveForeground": "#002b36",
"selectionInactiveBackground": "#e8dcb6b0" "selectionInactiveBackground": "#93a1a170"
}, },
"material": { "material": {
"background": "#fdf6e3", "background": "#fdf6e3",
"branchColor": "#586e75", "branchColor": "#586e75",
"contrast": "#eee8d5", "contrast": "#eee8d5",
"foreground": "#586e75", "foreground": "#586e75",
"mergeCommits": "#d8d4c4", "mergeCommits": "#FEFBF1",
"primaryColor": "#93a1a1", "primaryColor": "#93a1a1",
"selectionForeground": "#002b36", "selectionForeground": "#002b36",
"tab.backgroundColor": "#fdf6e3", "tab.backgroundColor": "#fdf6e3",
@@ -320,8 +346,8 @@
}, },
"MemoryIndicator": { "MemoryIndicator": {
"allocatedBackground": "#F6F0DE", "allocatedBackground": "#F6F0DE",
"usedColor": "#d1cbb8", "usedColor": "#F6F0DE",
"usedBackground": "#d1cbb8" "usedBackground": "#F6F0DE"
}, },
"Menu": { "Menu": {
"acceleratorForeground": "#93a1a1", "acceleratorForeground": "#93a1a1",
@@ -332,7 +358,7 @@
"disabledBackground": "#F6F0DE", "disabledBackground": "#F6F0DE",
"disabledForeground": "#C9CCC3", "disabledForeground": "#C9CCC3",
"foreground": "#586e75", "foreground": "#586e75",
"selectionBackground": "#e8dcb6", "selectionBackground": "#93a1a1",
"selectionForeground": "#002b36", "selectionForeground": "#002b36",
"separatorColor": "#edead9" "separatorColor": "#edead9"
}, },
@@ -343,7 +369,7 @@
"disabledForeground": "#C9CCC3", "disabledForeground": "#C9CCC3",
"foreground": "#586e75", "foreground": "#586e75",
"highlight": "#fdf6e3", "highlight": "#fdf6e3",
"selectionBackground": "#e8dcb6", "selectionBackground": "#93a1a1",
"selectionForeground": "#002b36", "selectionForeground": "#002b36",
"shadow": "#eee8d5" "shadow": "#eee8d5"
}, },
@@ -355,7 +381,7 @@
"disabledBackground": "#fdf6e3", "disabledBackground": "#fdf6e3",
"disabledForeground": "#C9CCC3", "disabledForeground": "#C9CCC3",
"foreground": "#586e75", "foreground": "#586e75",
"selectionBackground": "#e8dcb6", "selectionBackground": "#93a1a1",
"selectionForeground": "#002b36" "selectionForeground": "#002b36"
}, },
"NavBar": { "NavBar": {
@@ -378,9 +404,9 @@
"errorBorderColor": "#EDE8D4", "errorBorderColor": "#EDE8D4",
"foreground": "#586e75", "foreground": "#586e75",
"MoreButton": { "MoreButton": {
"background": "#d8d4c4", "background": "#FEFBF1",
"foreground": "#586e75", "foreground": "#586e75",
"innerBorderColor": "#d8d4c4" "innerBorderColor": "#FEFBF1"
}, },
"ToolWindow": { "ToolWindow": {
"errorBackground": "#EDE8D4", "errorBackground": "#EDE8D4",
@@ -398,7 +424,7 @@
"messageForeground": "#586e75" "messageForeground": "#586e75"
}, },
"Outline": { "Outline": {
"color": "#d8d4c4", "color": "#FEFBF1",
"focusedColor": "#d33682", "focusedColor": "#d33682",
"disabledColor": "#C9CCC3" "disabledColor": "#C9CCC3"
}, },
@@ -408,13 +434,13 @@
}, },
"ParameterInfo": { "ParameterInfo": {
"background": "#F6F0DE", "background": "#F6F0DE",
"borderColor": "#d1cbb8", "borderColor": "#F6F0DE",
"currentOverloadBackground": "#d1cbb8", "currentOverloadBackground": "#F6F0DE",
"currentParameterForeground": "#d33682", "currentParameterForeground": "#d33682",
"disabledForeground": "#C9CCC3", "disabledForeground": "#C9CCC3",
"foreground": "#586e75", "foreground": "#586e75",
"infoForeground": "#93a1a1", "infoForeground": "#93a1a1",
"lineSeparatorColor": "#d1cbb8" "lineSeparatorColor": "#F6F0DE"
}, },
"PasswordField": { "PasswordField": {
"background": "#eee8d5", "background": "#eee8d5",
@@ -422,28 +448,29 @@
"caretForeground": "#d33682", "caretForeground": "#d33682",
"foreground": "#586e75", "foreground": "#586e75",
"inactiveForeground": "#C9CCC3", "inactiveForeground": "#C9CCC3",
"selectionBackground": "#d1cbb8", "selectionBackground": "#F6F0DE",
"selectionForeground": "#002b36" "selectionForeground": "#002b36"
}, },
"Plugins": { "Plugins": {
"background": "#fdf6e3", "background": "#fdf6e3",
"disabledForeground": "#C9CCC3", "disabledForeground": "#C9CCC3",
"eapTagBackground": "#d1cbb8", "eapTagBackground": "#F6F0DE",
"lightSelectionBackground": "#e8dcb6", "hoverBackground": "#93a1a170",
"paidTagBackground": "#d1cbb8", "lightSelectionBackground": "#F6F0DE",
"selectionBackground": "#e8dcb6", "paidTagBackground": "#F6F0DE",
"selectionBackground": "#93a1a1",
"tagForeground": "#d33682", "tagForeground": "#d33682",
"tagBackground": "#d1cbb8", "tagBackground": "#F6F0DE",
"trialTagBackground": "#d1cbb8", "trialTagBackground": "#F6F0DE",
"Button": { "Button": {
"installBackground": "#d8d4c4", "installBackground": "#FEFBF1",
"installBorderColor": "#d8d4c4", "installBorderColor": "#FEFBF1",
"installForeground": "#586e75", "installForeground": "#586e75",
"installFocusedBackground": "#d1cbb8", "installFocusedBackground": "#F6F0DE",
"installFillForeground": "#C9CCC3", "installFillForeground": "#C9CCC3",
"installFillBackground": "#d8d4c4", "installFillBackground": "#FEFBF1",
"updateBackground": "#d8d4c4", "updateBackground": "#d33682",
"updateBorderColor": "#d8d4c4", "updateBorderColor": "#FEFBF1",
"updateForeground": "#586e75" "updateForeground": "#586e75"
}, },
"SearchField": { "SearchField": {
@@ -455,9 +482,9 @@
"foreground": "#586e75" "foreground": "#586e75"
}, },
"Tab": { "Tab": {
"hoverBackground": "#d1cbb8", "hoverBackground": "#F6F0DE",
"selectedForeground": "#002b36", "selectedForeground": "#002b36",
"selectedBackground": "#d1cbb8" "selectedBackground": "#F6F0DE"
} }
}, },
"Popup": { "Popup": {
@@ -496,8 +523,8 @@
"indeterminateEndColor": "#d33682", "indeterminateEndColor": "#d33682",
"indeterminateStartColor": "#d33682", "indeterminateStartColor": "#d33682",
"progressColor": "#d33682", "progressColor": "#d33682",
"selectionBackground": "#d1cbb8", "selectionBackground": "#F6F0DE",
"trackColor": "#d1cbb8" "trackColor": "#F6F0DE"
}, },
"PsiViewer": { "PsiViewer": {
"referenceHighlightColor": "#d33682" "referenceHighlightColor": "#d33682"
@@ -514,9 +541,10 @@
"disabledBackground": "#fdf6e3", "disabledBackground": "#fdf6e3",
"disabledForeground": "#C9CCC3", "disabledForeground": "#C9CCC3",
"foreground": "#586e75", "foreground": "#586e75",
"selectionBackground": "#e8dcb6", "selectionBackground": "#93a1a1",
"selectionForeground": "#002b36" "selectionForeground": "#002b36"
}, },
"ScreenView.borderColor": "#edead9",
"ScrollBar": { "ScrollBar": {
"background": "#fdf6e3", "background": "#fdf6e3",
"hoverThumbBorderColor": "#d33682", "hoverThumbBorderColor": "#d33682",
@@ -538,7 +566,7 @@
"trackColor": "#fdf6e330" "trackColor": "#fdf6e330"
} }
}, },
"thumb": "#d1cbb8", "thumb": "#F6F0DE",
"thumbBorderColor": "#d3368270", "thumbBorderColor": "#d3368270",
"thumbColor": "#d3368270", "thumbColor": "#d3368270",
"trackColor": "#fdf6e330", "trackColor": "#fdf6e330",
@@ -571,14 +599,23 @@
"Tab": { "Tab": {
"active.foreground": "#002b36", "active.foreground": "#002b36",
"selectedForeground": "#002b36", "selectedForeground": "#002b36",
"selectedBackground": "#d1cbb8" "selectedBackground": "#F6F0DE"
} }
}, },
"SearchMatch": { "SearchMatch": {
"endBackground": "#d33682", "endBackground": "#d33682",
"startBackground": "#d33682" "startBackground": "#d33682",
"endColor": "#d33682",
"startColor": "#d33682"
}, },
"SearchField.errorBackground": "#EDE8D4", "SearchField.errorBackground": "#EDE8D4",
"SearchOption": {
"selectedBackground": "#F6F0DE"
},
"SearchResults": {
"Ordinal.File.Foreground": "#93a1a1",
"Repeated.File.Foreground": "#586e75"
},
"Separator": { "Separator": {
"background": "#F6F0DE", "background": "#F6F0DE",
"foreground": "#F6F0DE", "foreground": "#F6F0DE",
@@ -594,12 +631,12 @@
"foreground": "#586e75", "foreground": "#586e75",
"majorTickLength": 6, "majorTickLength": 6,
"tickColor": "#F6F0DE", "tickColor": "#F6F0DE",
"trackColor": "#d1cbb8", "trackColor": "#F6F0DE",
"trackWidth": 7, "trackWidth": 7,
"thumb": "#d33682" "thumb": "#d33682"
}, },
"SpeedSearch": { "SpeedSearch": {
"background": "#d1cbb8", "background": "#F6F0DE",
"borderColor": "#edead9", "borderColor": "#edead9",
"foreground": "#586e75", "foreground": "#586e75",
"errorForeground": "#586e75" "errorForeground": "#586e75"
@@ -616,21 +653,23 @@
}, },
"SplitPaneDivider.draggingColor": "#F6F0DE", "SplitPaneDivider.draggingColor": "#F6F0DE",
"StatusBar": { "StatusBar": {
"borderColor": "#fdf6e3" "borderColor": "#fdf6e3",
"hoverBackground": "#F6F0DE",
"LightEditBackground": "#F6F0DE"
}, },
"TabbedPane": { "TabbedPane": {
"background": "#fdf6e3", "background": "#fdf6e3",
"contentAreaColor": "#d1cbb8", "contentAreaColor": "#F6F0DE",
"contentBorderInsets": "3,1,1,1", "contentBorderInsets": "3,1,1,1",
"darkShadow": "#edead9", "darkShadow": "#edead9",
"disabledForeground": "#C9CCC3", "disabledForeground": "#C9CCC3",
"disabledUnderlineColor": "#C9CCC3", "disabledUnderlineColor": "#C9CCC3",
"focus": "#d1cbb8", "focus": "#F6F0DE",
"focusColor": "#d1cbb8", "focusColor": "#F6F0DE",
"fontSizeOffset": 0, "fontSizeOffset": 0,
"foreground": "#586e75", "foreground": "#586e75",
"highlight": "#edead9", "highlight": "#edead9",
"hoverColor": "#d1cbb8", "hoverColor": "#F6F0DE",
"labelShift": 0, "labelShift": 0,
"selectedForeground": "#002b36", "selectedForeground": "#002b36",
"selectedLabelShift": 0, "selectedLabelShift": 0,
@@ -643,22 +682,26 @@
}, },
"TabbedPane.mt.tab.background": "#eee8d5", "TabbedPane.mt.tab.background": "#eee8d5",
"Table": { "Table": {
"alternativeRowBackground": "#eee8d5",
"background": "#fdf6e3", "background": "#fdf6e3",
"cellNoFocusBorder": "10,5,10,5", "cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5",
"disabledForeground": "#C9CCC3",
"dropLineColor": "#d33682", "dropLineColor": "#d33682",
"dropLineShortColor": "#d33682", "dropLineShortColor": "#d33682",
"focusCellBackground": "#d1cbb8", "focusCellBackground": "#F6F0DE",
"focusCellForeground": "#002b36", "focusCellForeground": "#002b36",
"foreground": "#586e75", "foreground": "#586e75",
"gridColor": "#fdf6e3", "gridColor": "#fdf6e3",
"highlightOuter": "#d1cbb8", "highlightOuter": "#F6F0DE",
"hoverBackground": "#93a1a170",
"hoverInactiveBackground": "#F6F0DE",
"lightSelectionForeground": "#002b36", "lightSelectionForeground": "#002b36",
"lightSelectionInactiveForeground": "#93a1a1", "lightSelectionInactiveForeground": "#93a1a1",
"lightSelectionInactiveBackground": "#F6F0DE", "lightSelectionInactiveBackground": "#F6F0DE",
"selectionBackground": "#d1cbb8", "selectionBackground": "#F6F0DE",
"selectionForeground": "#002b36", "selectionForeground": "#002b36",
"selectionInactiveBackground": "#d1cbb8", "selectionInactiveBackground": "#F6F0DE",
"selectionInactiveForeground": "#002b36", "selectionInactiveForeground": "#002b36",
"sortIconColor": "#586e75", "sortIconColor": "#586e75",
"stripeColor": "#eee8d5" "stripeColor": "#eee8d5"
@@ -670,7 +713,7 @@
"cellBorder": "4,0,4,0", "cellBorder": "4,0,4,0",
"disabledForeground": "#C9CCC3", "disabledForeground": "#C9CCC3",
"foreground": "#586e75", "foreground": "#586e75",
"focusCellBackground": "#d1cbb8", "focusCellBackground": "#F6F0DE",
"focusCellForeground": "#002b36", "focusCellForeground": "#002b36",
"height": 25, "height": 25,
"separatorColor": "#F6F0DE" "separatorColor": "#F6F0DE"
@@ -683,7 +726,7 @@
"caretForeground": "#d33682", "caretForeground": "#d33682",
"foreground": "#586e75", "foreground": "#586e75",
"inactiveForeground": "#C9CCC3", "inactiveForeground": "#C9CCC3",
"selectionBackground": "#d1cbb8", "selectionBackground": "#F6F0DE",
"selectionForeground": "#002b36" "selectionForeground": "#002b36"
}, },
"TextField": { "TextField": {
@@ -691,7 +734,7 @@
"caretForeground": "#d33682", "caretForeground": "#d33682",
"foreground": "#586e75", "foreground": "#586e75",
"inactiveForeground": "#C9CCC3", "inactiveForeground": "#C9CCC3",
"selectionBackground": "#d1cbb8", "selectionBackground": "#F6F0DE",
"selectionForeground": "#002b36" "selectionForeground": "#002b36"
}, },
"TextPane": { "TextPane": {
@@ -699,19 +742,19 @@
"caretForeground": "#d33682", "caretForeground": "#d33682",
"foreground": "#586e75", "foreground": "#586e75",
"inactiveForeground": "#C9CCC3", "inactiveForeground": "#C9CCC3",
"selectionBackground": "#d1cbb8", "selectionBackground": "#F6F0DE",
"selectionForeground": "#002b36" "selectionForeground": "#002b36"
}, },
"TitlePane": { "TitlePane": {
"background": "#eee8d5", "background": "#eee8d5",
"Button.hoverBackground": "#d1cbb8", "Button.hoverBackground": "#F6F0DE",
"inactiveBackground": "#fdf6e3", "inactiveBackground": "#fdf6e3",
"infoForeground": "#93a1a1", "infoForeground": "#93a1a1",
"inactiveInfoForeground": "#93a1a1" "inactiveInfoForeground": "#93a1a1"
}, },
"TitledBorder.titleColor": "#586e75", "TitledBorder.titleColor": "#586e75",
"ToggleButton": { "ToggleButton": {
"borderColor": "#d8d4c4", "borderColor": "#FEFBF1",
"buttonColor": "#586e75", "buttonColor": "#586e75",
"disabledText": "#C9CCC3", "disabledText": "#C9CCC3",
"foreground": "#586e75", "foreground": "#586e75",
@@ -729,8 +772,8 @@
"ToolTip": { "ToolTip": {
"Actions.background": "#fdf6e3", "Actions.background": "#fdf6e3",
"Actions.infoForeground": "#93a1a1", "Actions.infoForeground": "#93a1a1",
"background": "#fdf6e3", "background": "#EDE8D4",
"borderColor": "#d1cbb8", "borderColor": "#edead9",
"foreground": "#586e75", "foreground": "#586e75",
"infoForeground": "#93a1a1", "infoForeground": "#93a1a1",
"separatorColor": "#edead9", "separatorColor": "#edead9",
@@ -738,7 +781,7 @@
}, },
"ToolWindow": { "ToolWindow": {
"Button": { "Button": {
"hoverBackground": "#d1cbb8", "hoverBackground": "#F6F0DE",
"selectedForeground": "#002b36", "selectedForeground": "#002b36",
"selectedBackground": "#eee8d5" "selectedBackground": "#eee8d5"
}, },
@@ -751,50 +794,93 @@
"background": "#fdf6e3" "background": "#fdf6e3"
}, },
"HeaderTab": { "HeaderTab": {
"hoverBackground": "#d1cbb8", "borderColor": "#F6F0DE",
"hoverBackground": "#F6F0DE",
"hoverInactiveBackground": "#F6F0DE", "hoverInactiveBackground": "#F6F0DE",
"inactiveUnderlineColor": "#d33682", "inactiveUnderlineColor": "#d33682",
"selectedBackground": "#eee8d5", "selectedBackground": "#eee8d5",
"selectedInactiveBackground": "#eee8d5", "selectedInactiveBackground": "#eee8d5",
"underlineColor": "#d33682", "underlineColor": "#d33682",
"underlinedTabBackground": "#d1cbb8", "underlinedTabBackground": "#F6F0DE",
"underlinedTabInactiveBackground": "#F6F0DE" "underlinedTabInactiveBackground": "#F6F0DE",
"underlinedTabForeground": "#002b36",
"underlinedTabInactiveForeground": "#586e75"
} }
}, },
"Tree": { "Tree": {
"background": "#eee8d5", "background": "#eee8d5",
"foreground": "#93a1a1", "foreground": "#93a1a1",
"hash": "#edead9", "hash": "#edead9",
"hoverBackground": "#93a1a170",
"hoverInactiveBackground": "#F6F0DE",
"modifiedItemForeground": "#d33682", "modifiedItemForeground": "#d33682",
"rowHeight": 28, "rowHeight": 28,
"selectionBackground": "#e8dcb6b0", "selectionBackground": "#93a1a170",
"selectionForeground": "#002b36", "selectionForeground": "#002b36",
"selectionInactiveForeground": "#002b36", "selectionInactiveForeground": "#002b36",
"selectionInactiveBackground": "#e8dcb6b0", "selectionInactiveBackground": "#93a1a170",
"textBackground": "#eee8d5" "textBackground": "#eee8d5"
}, },
"Tree.leftChildIndent": 10, "Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5, "Tree.rightChildIndent": 5,
"UiDesigner": { "UIDesigner": {
"Activity.borderColor": "#edead9", "Activity.borderColor": "#edead9",
"ColorPicker.background": "#fdf6e3", "Canvas.background": "#eee8d5",
"ColorPicker.foreground": "#586e75", "ColorPicker": {
"Component.borderColor": "#edead9", "background": "#fdf6e3",
"Component.background": "#fdf6e3", "foreground": "#586e75"
"Component.foreground": "#586e75", },
"Connector.borderColor": "#edead9", "Component": {
"Connector.hoverBorderColor": "#d1cbb8", "borderColor": "#edead9",
"background": "#fdf6e3",
"foreground": "#586e75",
"hoverBorderColor": "#F6F0DE"
},
"Connector": {
"borderColor": "#edead9",
"hoverBorderColor": "#F6F0DE"
},
"Canvas.background": "#eee8d5", "Canvas.background": "#eee8d5",
"highStroke.foreground": "#586e75", "highStroke.foreground": "#586e75",
"Label.foreground": "#93a1a1", "Label.foreground": "#93a1a1",
"List.selectionBackground": "#e8dcb6b0", "List.selectionBackground": "#93a1a170",
"Panel.borderColor": "#edead9", "motion": {
"Panel.background": "#fdf6e3", "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", "percent.foreground": "#586e75",
"Placeholder.background": "#fdf6e3", "Placeholder": {
"Placeholder.borderColor": "#edead9", "background": "#fdf6e3",
"Placeholder.foreground": "#586e75", "borderColor": "#edead9",
"Placeholder.selectedForeground": "#002b36", "foreground": "#586e75",
"selectedForeground": "#002b36"
},
"Preview.background": "#fdf6e3", "Preview.background": "#fdf6e3",
"stroke.acceleratorForeground": "#93a1a1" "stroke.acceleratorForeground": "#93a1a1"
}, },
@@ -809,7 +895,7 @@
"selectedBranchBackground": "#fdf6e3" "selectedBranchBackground": "#fdf6e3"
}, },
"GitCommits": { "GitCommits": {
"graphColor": "#d1cbb8" "graphColor": "#F6F0DE"
}, },
"GitLog": { "GitLog": {
"localBranchIconColor": "#d33682", "localBranchIconColor": "#d33682",
@@ -828,11 +914,12 @@
}, },
"Log": { "Log": {
"Commit.unmatchedForeground": "#93a1a1", "Commit.unmatchedForeground": "#93a1a1",
"Commit.currentBranchBackground": "#F6F0DE" "Commit.currentBranchBackground": "#F6F0DE",
"Commit.hoveredBackground": "#93a1a170"
}, },
"RefLabel": { "RefLabel": {
"foreground": "#002b36", "foreground": "#002b36",
"backgroundBase": "#d1cbb8" "backgroundBase": "#F6F0DE"
} }
}, },
"Viewport": { "Viewport": {
@@ -840,18 +927,24 @@
"foreground": "#586e75" "foreground": "#586e75"
}, },
"WelcomeScreen": { "WelcomeScreen": {
"AssociatedComponent.background": "#fdf6e3",
"background": "#fdf6e3", "background": "#fdf6e3",
"borderColor": "#fdf6e3", "borderColor": "#fdf6e3",
"captionBackground": "#eee8d5", "captionBackground": "#eee8d5",
"captionForeground": "#586e75", "captionForeground": "#586e75",
"Details.background": "#fdf6e3",
"footerBackground": "#eee8d5", "footerBackground": "#eee8d5",
"footerForeground": "#586e75", "footerForeground": "#586e75",
"headerBackground": "#fdf6e3", "headerBackground": "#fdf6e3",
"headerForeground": "#586e75", "headerForeground": "#586e75",
"List.background": "#eee8d5",
"separatorColor": "#edead9", "separatorColor": "#edead9",
"SidePanel.background": "#F6F0DE",
"Projects": { "Projects": {
"actions.background": "#eee8d5",
"actions.selectionBackground": "#F6F0DE",
"background": "#F6F0DE", "background": "#F6F0DE",
"selectionBackground": "#e8dcb6", "selectionBackground": "#93a1a1",
"selectionInactiveBackground": "#F6F0DE" "selectionInactiveBackground": "#F6F0DE"
} }
}, },

View File

@@ -3,6 +3,12 @@
"dark": false, "dark": false,
"author": "Mallowigi", "author": "Mallowigi",
"editorScheme": "/colors/Solarized Light.xml", "editorScheme": "/colors/Solarized Light.xml",
"emptyFrameBackground": {
"anchor": "center",
"image": "/walls/solarlight.svg",
"fill": "scale",
"transparency": 50
},
"ui": { "ui": {
"*": { "*": {
"acceleratorSelectionForeground": "#93a1a1", "acceleratorSelectionForeground": "#93a1a1",
@@ -11,13 +17,13 @@
"disabledBackground": "#E3DCC9", "disabledBackground": "#E3DCC9",
"disabledForeground": "#C9CCC3", "disabledForeground": "#C9CCC3",
"disabledText": "#C9CCC3", "disabledText": "#C9CCC3",
"focusColor": "#d1cbb8", "focusColor": "#F6F0DE",
"focusedBorderColor": "#d33682", "focusedBorderColor": "#d33682",
"foreground": "#586e75", "foreground": "#586e75",
"inactiveBackground": "#E3DCC9", "inactiveBackground": "#E3DCC9",
"inactiveForeground": "#93a1a1", "inactiveForeground": "#93a1a1",
"infoForeground": "#93a1a1", "infoForeground": "#93a1a1",
"selectionBackground": "#e8dcb6", "selectionBackground": "#93a1a1",
"selectionBackgroundInactive": "#F6F0DE", "selectionBackgroundInactive": "#F6F0DE",
"selectionForeground": "#002b36", "selectionForeground": "#002b36",
"selectionInactiveBackground": "#F6F0DE", "selectionInactiveBackground": "#F6F0DE",
@@ -27,13 +33,13 @@
"ActionButton": { "ActionButton": {
"hoverBackground": "#d3368250", "hoverBackground": "#d3368250",
"hoverBorderColor": "#d3368250", "hoverBorderColor": "#d3368250",
"hoverSeparatorColor": "#d8d4c4", "hoverSeparatorColor": "#FEFBF1",
"focusedBorderColor": "#d3368250", "focusedBorderColor": "#d3368250",
"pressedBackground": "#d3368250", "pressedBackground": "#d3368250",
"pressedBorderColor": "#d3368250" "pressedBorderColor": "#d3368250"
}, },
"Autocomplete": { "Autocomplete": {
"selectionBackground": "#e8dcb6" "selectionBackground": "#93a1a1"
}, },
"Borders.ContrastBorderColor": "#fdf6e3", "Borders.ContrastBorderColor": "#fdf6e3",
"Borders.color": "#edead9", "Borders.color": "#edead9",
@@ -41,38 +47,41 @@
"arc": 0, "arc": 0,
"background": "#fdf6e3", "background": "#fdf6e3",
"default": { "default": {
"endBackground": "#d1cbb8", "endBackground": "#F6F0DE",
"endBorderColor": "#d1cbb8", "endBorderColor": "#F6F0DE",
"foreground": "#002b36", "foreground": "#002b36",
"focusColor": "#d33682", "focusColor": "#d33682",
"focusedBorderColor": "#d33682", "focusedBorderColor": "#d33682",
"shadowColor": "#d1cbb8", "shadowColor": "#F6F0DE",
"startBackground": "#d1cbb8", "startBackground": "#F6F0DE",
"startBorderColor": "#d1cbb8" "startBorderColor": "#F6F0DE"
}, },
"disabledBorderColor": "#d8d4c4", "disabledBorderColor": "#FEFBF1",
"disabledText": "#C9CCC3", "disabledText": "#C9CCC3",
"endBackground": "#d8d4c4", "endBackground": "#FEFBF1",
"endBorderColor": "#d8d4c4", "endBorderColor": "#FEFBF1",
"focus": "#d1cbb8", "focus": "#F6F0DE",
"focusedBorderColor": "#d33682", "focusedBorderColor": "#d33682",
"foreground": "#93a1a1", "foreground": "#93a1a1",
"highlight": "#002b36", "highlight": "#002b36",
"mt.background": "#d8d4c4", "mt.background": "#FEFBF1",
"mt.foreground": "#93a1a1", "mt.foreground": "#93a1a1",
"mt.selectedForeground": "#002b36", "mt.selectedForeground": "#002b36",
"mt.selection.color1": "#d1cbb8", "mt.selection.color1": "#F6F0DE",
"mt.selection.color2": "#d1cbb8", "mt.selection.color2": "#F6F0DE",
"startBackground": "#d8d4c4", "startBackground": "#FEFBF1",
"startBorderColor": "#d8d4c4", "startBorderColor": "#FEFBF1",
"shadowColor": "#d8d4c4", "shadowColor": "#FEFBF1",
"shadowWidth": 0 "shadowWidth": 0
}, },
"Canvas": { "Canvas": {
"Tooltip.borderColor": "#edead9", "Tooltip.borderColor": "#edead9",
"Tooltip.background": "#EDE8D4" "Tooltip.background": "#EDE8D4"
}, },
"Content.background": "#eee8d5", "Content": {
"background": "#eee8d5",
"selectionBackground": "#93a1a1"
},
"CheckBox": { "CheckBox": {
"background": "#fdf6e3", "background": "#fdf6e3",
"disabledText": "#C9CCC3", "disabledText": "#C9CCC3",
@@ -86,30 +95,39 @@
"disabledBackground": "#fdf6e3", "disabledBackground": "#fdf6e3",
"disabledForeground": "#C9CCC3", "disabledForeground": "#C9CCC3",
"foreground": "#586e75", "foreground": "#586e75",
"selectionBackground": "#e8dcb6", "selectionBackground": "#93a1a1",
"selectionForeground": "#002b36" "selectionForeground": "#002b36"
}, },
"CodeWithMe": {
"Avatar.foreground": "#586e75",
"AccessEnabled": {
"accessDot": "#d33682",
"dropdownBorder": "#F6F0DE",
"pillBackground": "$second"
}
},
"ColorChooser": { "ColorChooser": {
"background": "#fdf6e3", "background": "#fdf6e3",
"foreground": "#586e75", "foreground": "#586e75",
"swatchesDefaultRecentColor": "#586e75" "swatchesDefaultRecentColor": "#586e75"
}, },
"ComboBoxButton.background": "#d8d4c4", "ComboBoxButton.background": "#FEFBF1",
"ComboBox": { "ComboBox": {
"ArrowButton": { "ArrowButton": {
"background": "#d8d4c4", "background": "#FEFBF1",
"disabledIconColor": "#C9CCC3", "disabledIconColor": "#C9CCC3",
"iconColor": "#586e75", "iconColor": "#586e75",
"nonEditableBackground": "#fdf6e3" "nonEditableBackground": "#fdf6e3"
}, },
"background": "#fdf6e3", "background": "#fdf6e3",
"buttonBackground": "#d8d4c4", "buttonBackground": "#FEFBF1",
"darcula.hoveredArrowButtonForeground": "#d33682",
"disabledForeground": "#C9CCC3", "disabledForeground": "#C9CCC3",
"foreground": "#586e75", "foreground": "#586e75",
"modifiedItemForeground": "#d33682", "modifiedItemForeground": "#d33682",
"nonEditableBackground": "#F6F0DE", "nonEditableBackground": "#F6F0DE",
"padding": "5,5,5,5", "padding": "5,5,5,5",
"selectionBackground": "#d1cbb8", "selectionBackground": "#F6F0DE",
"selectionForeground": "#002b36" "selectionForeground": "#002b36"
}, },
"ComboPopup.border": "#edead9", "ComboPopup.border": "#edead9",
@@ -123,15 +141,15 @@
"selectedGrayedForeground": "#002b36", "selectedGrayedForeground": "#002b36",
"selectionGrayForeground": "#002b36", "selectionGrayForeground": "#002b36",
"selectionInactiveInfoForeground": "#93a1a1", "selectionInactiveInfoForeground": "#93a1a1",
"selectionInactiveBackground": "#e8dcb650", "selectionInactiveBackground": "#93a1a150",
"selectionBackground": "#e8dcb680", "selectionBackground": "#93a1a180",
"selectionForeground": "#002b36", "selectionForeground": "#002b36",
"selectionInfoForeground": "#002b36" "selectionInfoForeground": "#002b36"
}, },
"Component": { "Component": {
"arc": 4, "arc": 4,
"borderColor": "#d1cbb8", "borderColor": "#F6F0DE",
"disabledBorderColor": "#d8d4c4", "disabledBorderColor": "#FEFBF1",
"focusColor": "#d33682", "focusColor": "#d33682",
"focusedBorderColor": "#d33682", "focusedBorderColor": "#d33682",
"hoverIconColor": "#d33682", "hoverIconColor": "#d33682",
@@ -156,23 +174,25 @@
} }
}, },
"DebuggerTabs": { "DebuggerTabs": {
"selectedBackground": "#d1cbb8", "selectedBackground": "#F6F0DE",
"underlinedTabBackground": "#d1cbb8" "underlinedTabBackground": "#F6F0DE"
}, },
"DebuggerPopup": { "DebuggerPopup": {
"borderColor": "#d1cbb8" "borderColor": "#F6F0DE"
}, },
"DefaultTabs": { "DefaultTabs": {
"background": "#fdf6e3", "background": "#fdf6e3",
"borderColor": "#fdf6e3", "borderColor": "#fdf6e3",
"hoverBackground": "#d1cbb8", "hoverBackground": "#F6F0DE",
"hoverColor": "#fdf6e3", "hoverColor": "#fdf6e3",
"hoverMaskColor": "#d1cbb8", "hoverMaskColor": "#F6F0DE",
"inactiveColoredFileBackground": "#d8d4c4", "inactiveColoredTabBackground": "#fdf6e3",
"inactiveUnderlineColor": "#C9CCC3", "inactiveColoredFileBackground": "#FEFBF1",
"inactiveUnderlineColor": "#d33682",
"inactiveMaskColor": "#fdf6e3", "inactiveMaskColor": "#fdf6e3",
"underlineColor": "#d33682", "underlineColor": "#d33682",
"underlinedTabBackground": "#d1cbb8" "underlinedTabBackground": "#F6F0DE",
"underlinedTabForeground": "#002b36"
}, },
"Desktop.background": "#fdf6e3", "Desktop.background": "#fdf6e3",
"DialogWrapper.southPanelBackground": "#fdf6e3", "DialogWrapper.southPanelBackground": "#fdf6e3",
@@ -193,29 +213,31 @@
"foreground": "#586e75", "foreground": "#586e75",
"inactiveBackground": "#fdf6e3", "inactiveBackground": "#fdf6e3",
"inactiveForeground": "#C9CCC3", "inactiveForeground": "#C9CCC3",
"selectionBackground": "#e8dcb6", "selectionBackground": "#93a1a1",
"selectionForeground": "#002b36" "selectionForeground": "#002b36"
}, },
"EditorTabs": { "EditorTabs": {
"borderColor": "#F6F0DE", "borderColor": "#F6F0DE",
"hoverColor": "#d1cbb8", "hoverBackground": "#F6F0DE",
"hoverMaskColor": "#d1cbb8", "hoverColor": "#F6F0DE",
"hoverMaskColor": "#F6F0DE",
"inactiveMaskColor": "#fdf6e3", "inactiveMaskColor": "#fdf6e3",
"inactiveColoredFileBackground": "#fdf6e32", "inactiveColoredFileBackground": "#fdf6e3",
"inactiveUnderlineColor": "#C9CCC3", "inactiveUnderlineColor": "#C9CCC3",
"selectedForeground": "#586e75", "selectedForeground": "#586e75",
"selectedBackground": "#d1cbb8", "selectedBackground": "#F6F0DE",
"underlineColor": "#d33682", "underlineColor": "#d33682",
"underlinedTabBackground": "#d1cbb8" "underlinedTabBackground": "#F6F0DE",
"underlinedTabForeground": "#002b36"
}, },
"EditorGroupsTabs": { "EditorGroupsTabs": {
"background": "#fdf6e3", "background": "#fdf6e3",
"borderColor": "#F6F0DE", "borderColor": "#F6F0DE",
"hoverBackground": "#d1cbb8", "hoverBackground": "#F6F0DE",
"hoverColor": "#d1cbb8", "hoverColor": "#F6F0DE",
"inactiveUnderlineColor": "#d33682", "inactiveUnderlineColor": "#d33682",
"underlineColor": "#d33682", "underlineColor": "#d33682",
"underlinedTabBackground": "#d1cbb8", "underlinedTabBackground": "#F6F0DE",
"underlinedTabForeground": "#586e75" "underlinedTabForeground": "#586e75"
}, },
"FileColor": { "FileColor": {
@@ -241,17 +263,18 @@
"background": "#fdf6e3", "background": "#fdf6e3",
"caretForeground": "#d33682", "caretForeground": "#d33682",
"foreground": "#586e75", "foreground": "#586e75",
"inactiveBackground": "#d8d4c4", "inactiveBackground": "#FEFBF1",
"inactiveForeground": "#C9CCC3", "inactiveForeground": "#C9CCC3",
"selectionForeground": "#002b36", "selectionForeground": "#002b36",
"selectionBackground": "#d1cbb8" "selectionBackground": "#F6F0DE"
}, },
"GotItTooltip.borderColor": "#EDE8D4",
"Group": { "Group": {
"disabledSeparatorColor": "#edead9", "disabledSeparatorColor": "#edead9",
"separatorColor": "#edead9" "separatorColor": "#edead9"
}, },
"GutterTooltip": { "GutterTooltip": {
"infoForeground": "#586e75", "infoForeground": "#93a1a1",
"lineSeparatorColor": "#fdf6e3" "lineSeparatorColor": "#fdf6e3"
}, },
"HeaderColor": { "HeaderColor": {
@@ -288,7 +311,8 @@
"disabledText": "#C9CCC3", "disabledText": "#C9CCC3",
"foreground": "#586e75", "foreground": "#586e75",
"infoForeground": "#93a1a1", "infoForeground": "#93a1a1",
"selectedForeground": "#002b36" "selectedForeground": "#002b36",
"selectedDisabledForeground": "#586e75"
}, },
"Link": { "Link": {
"activeForeground": "#d33682", "activeForeground": "#d33682",
@@ -301,17 +325,19 @@
"List": { "List": {
"background": "#F6F0DE", "background": "#F6F0DE",
"foreground": "#586e75", "foreground": "#586e75",
"selectionBackground": "#e8dcb650", "hoverBackground": "#93a1a170",
"hoverInactiveBackground": "#F6F0DE",
"selectionBackground": "#93a1a150",
"selectionForeground": "#002b36", "selectionForeground": "#002b36",
"selectionInactiveForeground": "#002b36", "selectionInactiveForeground": "#002b36",
"selectionInactiveBackground": "#e8dcb6b0" "selectionInactiveBackground": "#93a1a170"
}, },
"material": { "material": {
"background": "#fdf6e3", "background": "#fdf6e3",
"branchColor": "#586e75", "branchColor": "#586e75",
"contrast": "#eee8d5", "contrast": "#eee8d5",
"foreground": "#586e75", "foreground": "#586e75",
"mergeCommits": "#d8d4c4", "mergeCommits": "#FEFBF1",
"primaryColor": "#93a1a1", "primaryColor": "#93a1a1",
"selectionForeground": "#002b36", "selectionForeground": "#002b36",
"tab.backgroundColor": "#fdf6e3", "tab.backgroundColor": "#fdf6e3",
@@ -320,8 +346,8 @@
}, },
"MemoryIndicator": { "MemoryIndicator": {
"allocatedBackground": "#F6F0DE", "allocatedBackground": "#F6F0DE",
"usedColor": "#d1cbb8", "usedColor": "#F6F0DE",
"usedBackground": "#d1cbb8" "usedBackground": "#F6F0DE"
}, },
"Menu": { "Menu": {
"acceleratorForeground": "#93a1a1", "acceleratorForeground": "#93a1a1",
@@ -332,7 +358,7 @@
"disabledBackground": "#F6F0DE", "disabledBackground": "#F6F0DE",
"disabledForeground": "#C9CCC3", "disabledForeground": "#C9CCC3",
"foreground": "#586e75", "foreground": "#586e75",
"selectionBackground": "#e8dcb6", "selectionBackground": "#93a1a1",
"selectionForeground": "#002b36", "selectionForeground": "#002b36",
"separatorColor": "#edead9" "separatorColor": "#edead9"
}, },
@@ -343,7 +369,7 @@
"disabledForeground": "#C9CCC3", "disabledForeground": "#C9CCC3",
"foreground": "#586e75", "foreground": "#586e75",
"highlight": "#fdf6e3", "highlight": "#fdf6e3",
"selectionBackground": "#e8dcb6", "selectionBackground": "#93a1a1",
"selectionForeground": "#002b36", "selectionForeground": "#002b36",
"shadow": "#fdf6e3" "shadow": "#fdf6e3"
}, },
@@ -355,7 +381,7 @@
"disabledBackground": "#fdf6e3", "disabledBackground": "#fdf6e3",
"disabledForeground": "#C9CCC3", "disabledForeground": "#C9CCC3",
"foreground": "#586e75", "foreground": "#586e75",
"selectionBackground": "#e8dcb6", "selectionBackground": "#93a1a1",
"selectionForeground": "#002b36" "selectionForeground": "#002b36"
}, },
"NavBar": { "NavBar": {
@@ -378,9 +404,9 @@
"errorBorderColor": "#EDE8D4", "errorBorderColor": "#EDE8D4",
"foreground": "#586e75", "foreground": "#586e75",
"MoreButton": { "MoreButton": {
"background": "#d8d4c4", "background": "#FEFBF1",
"foreground": "#586e75", "foreground": "#586e75",
"innerBorderColor": "#d8d4c4" "innerBorderColor": "#FEFBF1"
}, },
"ToolWindow": { "ToolWindow": {
"errorBackground": "#EDE8D4", "errorBackground": "#EDE8D4",
@@ -398,7 +424,7 @@
"messageForeground": "#586e75" "messageForeground": "#586e75"
}, },
"Outline": { "Outline": {
"color": "#d8d4c4", "color": "#FEFBF1",
"focusedColor": "#d33682", "focusedColor": "#d33682",
"disabledColor": "#C9CCC3" "disabledColor": "#C9CCC3"
}, },
@@ -408,13 +434,13 @@
}, },
"ParameterInfo": { "ParameterInfo": {
"background": "#F6F0DE", "background": "#F6F0DE",
"borderColor": "#d1cbb8", "borderColor": "#F6F0DE",
"currentOverloadBackground": "#d1cbb8", "currentOverloadBackground": "#F6F0DE",
"currentParameterForeground": "#d33682", "currentParameterForeground": "#d33682",
"disabledForeground": "#C9CCC3", "disabledForeground": "#C9CCC3",
"foreground": "#586e75", "foreground": "#586e75",
"infoForeground": "#93a1a1", "infoForeground": "#93a1a1",
"lineSeparatorColor": "#d1cbb8" "lineSeparatorColor": "#F6F0DE"
}, },
"PasswordField": { "PasswordField": {
"background": "#fdf6e3", "background": "#fdf6e3",
@@ -422,28 +448,29 @@
"caretForeground": "#d33682", "caretForeground": "#d33682",
"foreground": "#586e75", "foreground": "#586e75",
"inactiveForeground": "#C9CCC3", "inactiveForeground": "#C9CCC3",
"selectionBackground": "#d1cbb8", "selectionBackground": "#F6F0DE",
"selectionForeground": "#002b36" "selectionForeground": "#002b36"
}, },
"Plugins": { "Plugins": {
"background": "#fdf6e3", "background": "#fdf6e3",
"disabledForeground": "#C9CCC3", "disabledForeground": "#C9CCC3",
"eapTagBackground": "#d1cbb8", "eapTagBackground": "#F6F0DE",
"lightSelectionBackground": "#e8dcb6", "hoverBackground": "#93a1a170",
"paidTagBackground": "#d1cbb8", "lightSelectionBackground": "#F6F0DE",
"selectionBackground": "#e8dcb6", "paidTagBackground": "#F6F0DE",
"selectionBackground": "#93a1a1",
"tagForeground": "#d33682", "tagForeground": "#d33682",
"tagBackground": "#d1cbb8", "tagBackground": "#F6F0DE",
"trialTagBackground": "#d1cbb8", "trialTagBackground": "#F6F0DE",
"Button": { "Button": {
"installBackground": "#d8d4c4", "installBackground": "#FEFBF1",
"installBorderColor": "#d8d4c4", "installBorderColor": "#FEFBF1",
"installForeground": "#586e75", "installForeground": "#586e75",
"installFocusedBackground": "#d1cbb8", "installFocusedBackground": "#F6F0DE",
"installFillForeground": "#C9CCC3", "installFillForeground": "#C9CCC3",
"installFillBackground": "#d8d4c4", "installFillBackground": "#FEFBF1",
"updateBackground": "#d8d4c4", "updateBackground": "#d33682",
"updateBorderColor": "#d8d4c4", "updateBorderColor": "#FEFBF1",
"updateForeground": "#586e75" "updateForeground": "#586e75"
}, },
"SearchField": { "SearchField": {
@@ -455,9 +482,9 @@
"foreground": "#586e75" "foreground": "#586e75"
}, },
"Tab": { "Tab": {
"hoverBackground": "#d1cbb8", "hoverBackground": "#F6F0DE",
"selectedForeground": "#002b36", "selectedForeground": "#002b36",
"selectedBackground": "#d1cbb8" "selectedBackground": "#F6F0DE"
} }
}, },
"Popup": { "Popup": {
@@ -496,8 +523,8 @@
"indeterminateEndColor": "#d33682", "indeterminateEndColor": "#d33682",
"indeterminateStartColor": "#d33682", "indeterminateStartColor": "#d33682",
"progressColor": "#d33682", "progressColor": "#d33682",
"selectionBackground": "#d1cbb8", "selectionBackground": "#F6F0DE",
"trackColor": "#d1cbb8" "trackColor": "#F6F0DE"
}, },
"PsiViewer": { "PsiViewer": {
"referenceHighlightColor": "#d33682" "referenceHighlightColor": "#d33682"
@@ -514,9 +541,10 @@
"disabledBackground": "#fdf6e3", "disabledBackground": "#fdf6e3",
"disabledForeground": "#C9CCC3", "disabledForeground": "#C9CCC3",
"foreground": "#586e75", "foreground": "#586e75",
"selectionBackground": "#e8dcb6", "selectionBackground": "#93a1a1",
"selectionForeground": "#002b36" "selectionForeground": "#002b36"
}, },
"ScreenView.borderColor": "#edead9",
"ScrollBar": { "ScrollBar": {
"background": "#fdf6e3", "background": "#fdf6e3",
"hoverThumbBorderColor": "#d33682", "hoverThumbBorderColor": "#d33682",
@@ -538,7 +566,7 @@
"trackColor": "#fdf6e330" "trackColor": "#fdf6e330"
} }
}, },
"thumb": "#d1cbb8", "thumb": "#F6F0DE",
"thumbBorderColor": "#d3368270", "thumbBorderColor": "#d3368270",
"thumbColor": "#d3368270", "thumbColor": "#d3368270",
"trackColor": "#fdf6e330", "trackColor": "#fdf6e330",
@@ -571,14 +599,23 @@
"Tab": { "Tab": {
"active.foreground": "#002b36", "active.foreground": "#002b36",
"selectedForeground": "#002b36", "selectedForeground": "#002b36",
"selectedBackground": "#d1cbb8" "selectedBackground": "#F6F0DE"
} }
}, },
"SearchMatch": { "SearchMatch": {
"endBackground": "#d33682", "endBackground": "#d33682",
"startBackground": "#d33682" "startBackground": "#d33682",
"endColor": "#d33682",
"startColor": "#d33682"
}, },
"SearchField.errorBackground": "#EDE8D4", "SearchField.errorBackground": "#EDE8D4",
"SearchOption": {
"selectedBackground": "#F6F0DE"
},
"SearchResults": {
"Ordinal.File.Foreground": "#93a1a1",
"Repeated.File.Foreground": "#586e75"
},
"Separator": { "Separator": {
"background": "#F6F0DE", "background": "#F6F0DE",
"foreground": "#F6F0DE", "foreground": "#F6F0DE",
@@ -594,12 +631,12 @@
"foreground": "#586e75", "foreground": "#586e75",
"majorTickLength": 6, "majorTickLength": 6,
"tickColor": "#F6F0DE", "tickColor": "#F6F0DE",
"trackColor": "#d1cbb8", "trackColor": "#F6F0DE",
"trackWidth": 7, "trackWidth": 7,
"thumb": "#d33682" "thumb": "#d33682"
}, },
"SpeedSearch": { "SpeedSearch": {
"background": "#d1cbb8", "background": "#F6F0DE",
"borderColor": "#edead9", "borderColor": "#edead9",
"foreground": "#586e75", "foreground": "#586e75",
"errorForeground": "#586e75" "errorForeground": "#586e75"
@@ -616,21 +653,23 @@
}, },
"SplitPaneDivider.draggingColor": "#F6F0DE", "SplitPaneDivider.draggingColor": "#F6F0DE",
"StatusBar": { "StatusBar": {
"borderColor": "#fdf6e3" "borderColor": "#fdf6e3",
"hoverBackground": "#F6F0DE",
"LightEditBackground": "#F6F0DE"
}, },
"TabbedPane": { "TabbedPane": {
"background": "#fdf6e3", "background": "#fdf6e3",
"contentAreaColor": "#d1cbb8", "contentAreaColor": "#F6F0DE",
"contentBorderInsets": "3,1,1,1", "contentBorderInsets": "3,1,1,1",
"darkShadow": "#edead9", "darkShadow": "#edead9",
"disabledForeground": "#C9CCC3", "disabledForeground": "#C9CCC3",
"disabledUnderlineColor": "#C9CCC3", "disabledUnderlineColor": "#C9CCC3",
"focus": "#d1cbb8", "focus": "#F6F0DE",
"focusColor": "#d1cbb8", "focusColor": "#F6F0DE",
"fontSizeOffset": 0, "fontSizeOffset": 0,
"foreground": "#586e75", "foreground": "#586e75",
"highlight": "#edead9", "highlight": "#edead9",
"hoverColor": "#d1cbb8", "hoverColor": "#F6F0DE",
"labelShift": 0, "labelShift": 0,
"selectedForeground": "#002b36", "selectedForeground": "#002b36",
"selectedLabelShift": 0, "selectedLabelShift": 0,
@@ -643,22 +682,26 @@
}, },
"TabbedPane.mt.tab.background": "#fdf6e3", "TabbedPane.mt.tab.background": "#fdf6e3",
"Table": { "Table": {
"alternativeRowBackground": "#eee8d5",
"background": "#fdf6e3", "background": "#fdf6e3",
"cellNoFocusBorder": "10,5,10,5", "cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5", "focusCellHighlightBorder": "10,5,10,5",
"disabledForeground": "#C9CCC3",
"dropLineColor": "#d33682", "dropLineColor": "#d33682",
"dropLineShortColor": "#d33682", "dropLineShortColor": "#d33682",
"focusCellBackground": "#d1cbb8", "focusCellBackground": "#F6F0DE",
"focusCellForeground": "#002b36", "focusCellForeground": "#002b36",
"foreground": "#586e75", "foreground": "#586e75",
"gridColor": "#fdf6e3", "gridColor": "#fdf6e3",
"highlightOuter": "#d1cbb8", "highlightOuter": "#F6F0DE",
"hoverBackground": "#93a1a170",
"hoverInactiveBackground": "#F6F0DE",
"lightSelectionForeground": "#002b36", "lightSelectionForeground": "#002b36",
"lightSelectionInactiveForeground": "#93a1a1", "lightSelectionInactiveForeground": "#93a1a1",
"lightSelectionInactiveBackground": "#F6F0DE", "lightSelectionInactiveBackground": "#F6F0DE",
"selectionBackground": "#d1cbb8", "selectionBackground": "#F6F0DE",
"selectionForeground": "#002b36", "selectionForeground": "#002b36",
"selectionInactiveBackground": "#d1cbb8", "selectionInactiveBackground": "#F6F0DE",
"selectionInactiveForeground": "#002b36", "selectionInactiveForeground": "#002b36",
"sortIconColor": "#586e75", "sortIconColor": "#586e75",
"stripeColor": "#eee8d5" "stripeColor": "#eee8d5"
@@ -670,7 +713,7 @@
"cellBorder": "4,0,4,0", "cellBorder": "4,0,4,0",
"disabledForeground": "#C9CCC3", "disabledForeground": "#C9CCC3",
"foreground": "#586e75", "foreground": "#586e75",
"focusCellBackground": "#d1cbb8", "focusCellBackground": "#F6F0DE",
"focusCellForeground": "#002b36", "focusCellForeground": "#002b36",
"height": 25, "height": 25,
"separatorColor": "#F6F0DE" "separatorColor": "#F6F0DE"
@@ -683,7 +726,7 @@
"caretForeground": "#d33682", "caretForeground": "#d33682",
"foreground": "#586e75", "foreground": "#586e75",
"inactiveForeground": "#C9CCC3", "inactiveForeground": "#C9CCC3",
"selectionBackground": "#d1cbb8", "selectionBackground": "#F6F0DE",
"selectionForeground": "#002b36" "selectionForeground": "#002b36"
}, },
"TextField": { "TextField": {
@@ -691,7 +734,7 @@
"caretForeground": "#d33682", "caretForeground": "#d33682",
"foreground": "#586e75", "foreground": "#586e75",
"inactiveForeground": "#C9CCC3", "inactiveForeground": "#C9CCC3",
"selectionBackground": "#d1cbb8", "selectionBackground": "#F6F0DE",
"selectionForeground": "#002b36" "selectionForeground": "#002b36"
}, },
"TextPane": { "TextPane": {
@@ -699,19 +742,19 @@
"caretForeground": "#d33682", "caretForeground": "#d33682",
"foreground": "#586e75", "foreground": "#586e75",
"inactiveForeground": "#C9CCC3", "inactiveForeground": "#C9CCC3",
"selectionBackground": "#d1cbb8", "selectionBackground": "#F6F0DE",
"selectionForeground": "#002b36" "selectionForeground": "#002b36"
}, },
"TitlePane": { "TitlePane": {
"background": "#eee8d5", "background": "#eee8d5",
"Button.hoverBackground": "#d1cbb8", "Button.hoverBackground": "#F6F0DE",
"inactiveBackground": "#fdf6e3", "inactiveBackground": "#fdf6e3",
"infoForeground": "#93a1a1", "infoForeground": "#93a1a1",
"inactiveInfoForeground": "#93a1a1" "inactiveInfoForeground": "#93a1a1"
}, },
"TitledBorder.titleColor": "#586e75", "TitledBorder.titleColor": "#586e75",
"ToggleButton": { "ToggleButton": {
"borderColor": "#d8d4c4", "borderColor": "#FEFBF1",
"buttonColor": "#586e75", "buttonColor": "#586e75",
"disabledText": "#C9CCC3", "disabledText": "#C9CCC3",
"foreground": "#586e75", "foreground": "#586e75",
@@ -729,8 +772,8 @@
"ToolTip": { "ToolTip": {
"Actions.background": "#fdf6e3", "Actions.background": "#fdf6e3",
"Actions.infoForeground": "#93a1a1", "Actions.infoForeground": "#93a1a1",
"background": "#fdf6e3", "background": "#EDE8D4",
"borderColor": "#d1cbb8", "borderColor": "#edead9",
"foreground": "#586e75", "foreground": "#586e75",
"infoForeground": "#93a1a1", "infoForeground": "#93a1a1",
"separatorColor": "#edead9", "separatorColor": "#edead9",
@@ -738,7 +781,7 @@
}, },
"ToolWindow": { "ToolWindow": {
"Button": { "Button": {
"hoverBackground": "#d1cbb8", "hoverBackground": "#F6F0DE",
"selectedForeground": "#002b36", "selectedForeground": "#002b36",
"selectedBackground": "#eee8d5" "selectedBackground": "#eee8d5"
}, },
@@ -751,50 +794,93 @@
"background": "#fdf6e3" "background": "#fdf6e3"
}, },
"HeaderTab": { "HeaderTab": {
"hoverBackground": "#d1cbb8", "borderColor": "#F6F0DE",
"hoverBackground": "#F6F0DE",
"hoverInactiveBackground": "#F6F0DE", "hoverInactiveBackground": "#F6F0DE",
"inactiveUnderlineColor": "#d33682", "inactiveUnderlineColor": "#d33682",
"selectedBackground": "#eee8d5", "selectedBackground": "#eee8d5",
"selectedInactiveBackground": "#eee8d5", "selectedInactiveBackground": "#eee8d5",
"underlineColor": "#d33682", "underlineColor": "#d33682",
"underlinedTabBackground": "#d1cbb8", "underlinedTabBackground": "#F6F0DE",
"underlinedTabInactiveBackground": "#F6F0DE" "underlinedTabInactiveBackground": "#F6F0DE",
"underlinedTabForeground": "#002b36",
"underlinedTabInactiveForeground": "#586e75"
} }
}, },
"Tree": { "Tree": {
"background": "#fdf6e3", "background": "#fdf6e3",
"foreground": "#93a1a1", "foreground": "#93a1a1",
"hash": "#edead9", "hash": "#edead9",
"hoverBackground": "#93a1a170",
"hoverInactiveBackground": "#F6F0DE",
"modifiedItemForeground": "#d33682", "modifiedItemForeground": "#d33682",
"rowHeight": 28, "rowHeight": 28,
"selectionBackground": "#e8dcb6b0", "selectionBackground": "#93a1a170",
"selectionForeground": "#002b36", "selectionForeground": "#002b36",
"selectionInactiveForeground": "#002b36", "selectionInactiveForeground": "#002b36",
"selectionInactiveBackground": "#e8dcb6b0", "selectionInactiveBackground": "#93a1a170",
"textBackground": "#fdf6e3" "textBackground": "#fdf6e3"
}, },
"Tree.leftChildIndent": 10, "Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5, "Tree.rightChildIndent": 5,
"UiDesigner": { "UIDesigner": {
"Activity.borderColor": "#edead9", "Activity.borderColor": "#edead9",
"ColorPicker.background": "#fdf6e3", "Canvas.background": "#eee8d5",
"ColorPicker.foreground": "#586e75", "ColorPicker": {
"Component.borderColor": "#edead9", "background": "#fdf6e3",
"Component.background": "#fdf6e3", "foreground": "#586e75"
"Component.foreground": "#586e75", },
"Connector.borderColor": "#edead9", "Component": {
"Connector.hoverBorderColor": "#d1cbb8", "borderColor": "#edead9",
"background": "#fdf6e3",
"foreground": "#586e75",
"hoverBorderColor": "#F6F0DE"
},
"Connector": {
"borderColor": "#edead9",
"hoverBorderColor": "#F6F0DE"
},
"Canvas.background": "#eee8d5", "Canvas.background": "#eee8d5",
"highStroke.foreground": "#586e75", "highStroke.foreground": "#586e75",
"Label.foreground": "#93a1a1", "Label.foreground": "#93a1a1",
"List.selectionBackground": "#e8dcb6b0", "List.selectionBackground": "#93a1a170",
"Panel.borderColor": "#edead9", "motion": {
"Panel.background": "#fdf6e3", "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", "percent.foreground": "#586e75",
"Placeholder.background": "#fdf6e3", "Placeholder": {
"Placeholder.borderColor": "#edead9", "background": "#fdf6e3",
"Placeholder.foreground": "#586e75", "borderColor": "#edead9",
"Placeholder.selectedForeground": "#002b36", "foreground": "#586e75",
"selectedForeground": "#002b36"
},
"Preview.background": "#fdf6e3", "Preview.background": "#fdf6e3",
"stroke.acceleratorForeground": "#93a1a1" "stroke.acceleratorForeground": "#93a1a1"
}, },
@@ -809,7 +895,7 @@
"selectedBranchBackground": "#fdf6e3" "selectedBranchBackground": "#fdf6e3"
}, },
"GitCommits": { "GitCommits": {
"graphColor": "#d1cbb8" "graphColor": "#F6F0DE"
}, },
"GitLog": { "GitLog": {
"localBranchIconColor": "#d33682", "localBranchIconColor": "#d33682",
@@ -828,11 +914,12 @@
}, },
"Log": { "Log": {
"Commit.unmatchedForeground": "#93a1a1", "Commit.unmatchedForeground": "#93a1a1",
"Commit.currentBranchBackground": "#F6F0DE" "Commit.currentBranchBackground": "#F6F0DE",
"Commit.hoveredBackground": "#93a1a170"
}, },
"RefLabel": { "RefLabel": {
"foreground": "#002b36", "foreground": "#002b36",
"backgroundBase": "#d1cbb8" "backgroundBase": "#F6F0DE"
} }
}, },
"Viewport": { "Viewport": {
@@ -840,18 +927,24 @@
"foreground": "#586e75" "foreground": "#586e75"
}, },
"WelcomeScreen": { "WelcomeScreen": {
"AssociatedComponent.background": "#fdf6e3",
"background": "#fdf6e3", "background": "#fdf6e3",
"borderColor": "#fdf6e3", "borderColor": "#fdf6e3",
"captionBackground": "#eee8d5", "captionBackground": "#eee8d5",
"captionForeground": "#586e75", "captionForeground": "#586e75",
"Details.background": "#fdf6e3",
"footerBackground": "#eee8d5", "footerBackground": "#eee8d5",
"footerForeground": "#586e75", "footerForeground": "#586e75",
"headerBackground": "#fdf6e3", "headerBackground": "#fdf6e3",
"headerForeground": "#586e75", "headerForeground": "#586e75",
"List.background": "#eee8d5",
"separatorColor": "#edead9", "separatorColor": "#edead9",
"SidePanel.background": "#F6F0DE",
"Projects": { "Projects": {
"actions.background": "#eee8d5",
"actions.selectionBackground": "#F6F0DE",
"background": "#F6F0DE", "background": "#F6F0DE",
"selectionBackground": "#e8dcb6", "selectionBackground": "#93a1a1",
"selectionInactiveBackground": "#F6F0DE" "selectionInactiveBackground": "#F6F0DE"
} }
}, },