IntelliJ Themes: moved themes into own sub-project and build a JAR that contains all themes

This commit is contained in:
Karl Tauber
2020-04-23 11:06:12 +02:00
parent b08ccc9767
commit 13cbbd8bc1
81 changed files with 149 additions and 6 deletions

View File

@@ -60,7 +60,7 @@ public class DemoPrefs
if( IntelliJTheme.ThemeLaf.class.getName().equals( lafClassName ) ) {
String theme = state.get( KEY_LAF_THEME, "" );
if( theme.startsWith( RESOURCE_PREFIX ) )
IntelliJTheme.install( IJThemesPanel.class.getResourceAsStream( theme.substring( RESOURCE_PREFIX.length() ) ) );
IntelliJTheme.install( IJThemesPanel.class.getResourceAsStream( IJThemesPanel.THEMES_PACKAGE + theme.substring( RESOURCE_PREFIX.length() ) ) );
else if( theme.startsWith( FILE_PREFIX ) )
FlatLaf.install( IntelliJTheme.createLaf( new FileInputStream( theme.substring( FILE_PREFIX.length() ) ) ) );
else

View File

@@ -60,6 +60,8 @@ import net.miginfocom.swing.*;
public class IJThemesPanel
extends JPanel
{
public static final String THEMES_PACKAGE = "/com/formdev/flatlaf/intellijthemes/themes/";
private final IJThemesManager themesManager = new IJThemesManager();
private final List<IJThemeInfo> themes = new ArrayList<>();
private final HashMap<Integer, String> categories = new HashMap<>();
@@ -237,7 +239,7 @@ public class IJThemesPanel
showInformationDialog( "Failed to load '" + themeInfo.themeFile + "'.", ex );
}
} else {
IntelliJTheme.install( getClass().getResourceAsStream( themeInfo.resourceName ) );
IntelliJTheme.install( getClass().getResourceAsStream( THEMES_PACKAGE + themeInfo.resourceName ) );
DemoPrefs.getState().put( DemoPrefs.KEY_LAF_THEME, DemoPrefs.RESOURCE_PREFIX + themeInfo.resourceName );
}
@@ -260,7 +262,7 @@ public class IJThemesPanel
// save theme
try {
Files.copy( getClass().getResourceAsStream( themeInfo.resourceName ),
Files.copy( getClass().getResourceAsStream( THEMES_PACKAGE + themeInfo.resourceName ),
file.toPath(), StandardCopyOption.REPLACE_EXISTING );
} catch( IOException ex ) {
showInformationDialog( "Failed to save theme to '" + file + "'.", ex );
@@ -273,7 +275,7 @@ public class IJThemesPanel
File licenseFile = new File( file.getParentFile(),
StringUtils.removeTrailing( file.getName(), ".theme.json" ) +
themeInfo.licenseFile.substring( themeInfo.licenseFile.indexOf( '.' ) ) );
Files.copy( getClass().getResourceAsStream( themeInfo.licenseFile ),
Files.copy( getClass().getResourceAsStream( THEMES_PACKAGE + themeInfo.licenseFile ),
licenseFile.toPath(), StandardCopyOption.REPLACE_EXISTING );
} catch( IOException ex ) {
showInformationDialog( "Failed to save theme license to '" + file + "'.", ex );

View File

@@ -46,7 +46,7 @@ public class IJThemesUpdater
else if( fromUrl.contains( "gitlab.com" ) )
fromUrl = fromUrl.replace( "/blob/", "/raw/" );
String toPath = "src/main/resources/com/formdev/flatlaf/demo/intellijthemes/" + ti.resourceName;
String toPath = "../flatlaf-intellij-themes/src/main/resources" + IJThemesPanel.THEMES_PACKAGE + ti.resourceName;
download( fromUrl, toPath );
}

View File

@@ -1,21 +0,0 @@
The MIT License (MIT)
Copyright (c) 2016 CloudCannon
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -1,281 +0,0 @@
{
"name": "Cyan light",
"dark": false,
"author": "Olga Berdnikova",
"editorScheme": "/themes/cyanScheme.xml",
"ui": {
"*": {
"background": "#e4e6eb",
"foreground": "#1d1d1d",
"selectionBackground": "#3eb2c2",
"selectionBackgroundInactive": "#d0d5db",
"selectionInactiveBackground": "#d0d5db",
"lightSelectionBackground": "#d3e4eb",
"disabledForeground": "#b1b1b1",
"disabledText": "#b1b1b1",
"inactiveForeground": "#b1b1b1",
"infoForeground": "#787878",
"modifiedItemForeground": "#00a9bf",
"separatorColor": "#bec5cd",
"borderColor": "#bec5cd",
"underlineColor": "#0ab0d1"
},
"ActionButton": {
"hoverBackground": "#d0d3d9",
"hoverBorderColor": "#d0d3d9",
"pressedBackground": "#c3c7cf",
"pressedBorderColor": "#c3c7cf"
},
"Borders": {
"color": "#bec5cd",
"ContrastBorderColor": "#bec5cd"
},
"Button": {
"startBorderColor": "#b0b9c3",
"endBorderColor": "#b0b9c3",
"default": {
"foreground": "#FFFFFF",
"startBackground": "#28a4c3",
"endBackground": "#28a4c3",
"startBorderColor": "#258aa4",
"endBorderColor": "#258aa4",
"focusedBorderColor": "#82d3dd"
}
},
"ComboBox": {
"background": "#eef0f4",
"nonEditableBackground": "#FFFFFF",
"ArrowButton.background": "#FFFFFF"
},
"ComboBoxButton.background": "#FFFFFF",
"ComboPopup.border": "1,1,1,1,b0b9c3",
"CompletionPopup": {
"foreground": "#404040",
"infoForeground": "#8c8c8c",
"selectionBackground": "#bce2e6",
"selectionInactiveBackground": "#d7dbe0",
"matchForeground": "#00a0d1",
"selectionForeground": "#404040",
"selectionInfoForeground": "#8c8c8c",
"matchSelectionForeground": "#00a0d1"
},
"Component": {
"borderColor": "#b0b9c3",
"focusedBorderColor": "#31b1d0",
"focusColor": "#5fc5de"
},
"Counter": {
"background": "#9AA7B0",
"foreground": "#FFFFFF"
},
"DefaultTabs": {
"inactiveUnderlineColor": "#8699a6",
"hoverBackground": "#ced2d9"
},
"Editor": {
"background": "#d0d3d9",
"foreground": "#808080",
"shortcutForeground": "#1b9bb6"
},
"EditorPane.inactiveBackground": "#e4e6eb",
"EditorTabs": {
"selectedBackground": "#f3f3f3",
"inactiveMaskColor": "#4752661A",
"underlineColor": "#29abcb",
"underlinedTabBackground": "#f2f4f5",
"inactiveColoredFileBackground": "#a6a9b350",
"hoverBackground": "#b9bdc999"
},
"DebuggerTabs.selectedBackground": "#e4e6eb",
"FileColor.Yellow": "#f2efda",
"FileColor.Green": "#d8f0e2",
"FileColor.Blue": "#d3f0f4",
"Label.errorForeground": "#C7222D",
"Link": {
"activeForeground": "#009eb3",
"hoverForeground": "#009eb3",
"pressedForeground": "#009eb3",
"visitedForeground": "#009eb3",
"secondaryForeground": "#7ac2cc"
},
"List.background": "#eef0f4",
"Notification": {
"MoreButton.innerBorderColor": "#bec5cd",
"errorBackground": "#f5e1e4",
"errorBorderColor": "#e695a3",
"ToolWindow": {
"informativeBackground": "#ccedcf",
"informativeBorderColor": "#8ebd91",
"warningBackground": "#f0e4c0",
"warningBorderColor": "#d9b857",
"errorBackground": "#fad7dd",
"errorBorderColor": "#e68a99"
}
},
"PasswordField.background": "#FFFFFF",
"Plugins": {
"background": "#f5f7fa",
"SearchField.background": "#FFFFFF",
"SectionHeader.foreground": "#808080",
"SectionHeader.background": "#edeef2",
"Tab.selectedBackground": "#cacccf",
"Tab.hoverBackground": "#cacccf"
},
"Popup": {
"Header": {
"activeBackground": "#d6dae5",
"inactiveBackground": "#d6dae5"
},
"separatorColor": "#bec5cd",
"separatorForeground": "#919699",
"Advertiser": {
"foreground": "#787878",
"background": "#e4e6eb",
"borderColor": "#e4e6eb"
}
},
"ProgressBar": {
"trackColor": "#c4c9d5",
"progressColor": "#2b9cb8",
"indeterminateStartColor": "#b8dde6",
"indeterminateEndColor": "#2b9cb8",
"passedEndColor": "#bcebd5",
"passedColor": "#1eb070",
"failedEndColor": "#e6b8bf",
"failedColor": "#dc445d"
},
"SearchEverywhere": {
"SearchField.background": "#FFFFFF",
"Tab.selectedBackground": "#d1d4d4",
"Advertiser.foreground": "#787878"
},
"SearchMatch": {
"startBackground": "#ffc466",
"endBackground": "#FFC466"
},
"SidePanel.background": "#e4e6eb",
"SpeedSearch": {
"background": "#FFFFFF",
"errorForeground": "#C7222D"
},
"TabbedPane": {
"hoverColor": "#ced2d9",
"focusColor": "#dbebed",
"contentAreaColor": "#bec5cd"
},
"Table.background": "#eef0f4",
"TableHeader": {
"cellBorder": "3,0,3,0",
"background": "#e9ecf0",
"bottomSeparatorColor": "#dfe2e6"
},
"TextArea.background": "#FFFFFF",
"TextField.background": "#FFFFFF",
"ToggleButton": {
"onBackground": "#28a4c3",
"offForeground": "#787878",
"buttonColor": "#b0b9c3",
"borderColor": "#b0b9c3"
},
"ToolTip": {
"background": "#f3f6fb",
"Actions.background": "#e4e6eb"
},
"ToolWindow": {
"Header": {
"background": "#d8dee8",
"inactiveBackground": "#e4e6eb"
},
"HeaderTab": {
"selectedBackground": "#b9bec7",
"hoverBackground": "#b9bdc999",
"selectedInactiveBackground": "#CED1D6",
"hoverInactiveBackground": "#b9bdc999"
},
"Button": {
"selectedBackground": "#C3C6C9",
"hoverBackground": "#C3C6C9"
}
},
"Tree.background": "#eef0f4"
},
"icons": {
"ColorPalette": {
"Actions.Grey": "#696d78",
"Actions.Red": "#e0516b",
"Actions.Blue": "#348def",
"Actions.Green": "#29a66c",
"Actions.Yellow": "#e3b610",
"Objects.Grey": "#858994",
"Objects.RedStatus": "#dc445d",
"Objects.Red": "#de4765",
"Objects.Pink": "#f070a5",
"Objects.Yellow": "#e6ba29",
"Objects.Green": "#1eb070",
"Objects.Blue": "#499df2",
"Objects.Purple": "#bc8af2",
"Objects.YellowDark": "#b79108",
"Objects.BlackText": "#26282b",
"Checkbox.Background.Default": "#f3f3f3",
"Checkbox.Border.Default": "#8a9199",
"Checkbox.Background.Selected": "#28a4c3",
"Checkbox.Border.Selected": "#2896b2",
"Checkbox.Foreground.Selected": "#FFFFFF",
"Checkbox.Focus.Wide": "#5fc5de",
"Checkbox.Focus.Thin.Default": "#98a0aa4c",
"Checkbox.Focus.Thin.Selected": "#82d3dd",
"Checkbox.Background.Disabled": "#e4e6eb",
"Checkbox.Border.Disabled": "#babfc4",
"Checkbox.Foreground.Disabled": "#babfc4"
}
}
}

View File

@@ -1,21 +0,0 @@
MIT License
Copyright (c) 2019 Artem Bukhonov
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -1,561 +0,0 @@
{
"name": "Dark Flat Theme",
"dark": true,
"author": "Nerzhul 500",
"ui": {
"*": {
"//*": "#FF00FF",
"//background": "#FF0000",
"//foreground": "#00FF00",
"//borderColor": "#00FFFF",
"selectionBackground": "#2a5285",
"selectionForeground": "#EEEEEE",
"selectionInactiveBackground": "#3d4452",
"selectionBackgroundInactive": "#3d4452",
"selectionInactiveForeground": "#EEEEEE",
"selectionForegroundInactive": "#EEEEEE"
},
"Panel": {
"background": "#383838",
"foreground": "#BCBCBC"
},
"Borders": {
"color": "#383838",
"ContrastBorderColor": "#383838"
},
"NavBar": {
"borderColor": "#282828"
},
"StatusBar": {
"borderColor": "#383838"
},
"ToolWindow": {
"Button": {
"selectedBackground": "#282828",
"selectedForeground": "#8F8F8F",
"hoverBackground": "#303030"
},
"Header": {
"borderColor": "#383838",
"background": "#383838",
"inactiveBackground": "#383838"
},
"HeaderTab": {
"selectedBackground": "#282828",
"selectedInactiveBackground": "#282828",
"hoverBackground": "#383838",
"hoverInactiveBackground": "#383838"
}
},
"SearchEverywhere": {
"Header.background": "#383838",
"Tab": {
"selectedBackground": "#242424",
"selectedForeground": "#FFFFFF"
},
"SearchField": {
"background": "#242424",
"borderColor": "#242424"
},
"List": {
"separatorForeground": "#666666",
"separatorColor": "#383838"
},
"Advertiser": {
"background": "#383838",
"borderColor": "#383838",
"foreground": "#8F8F8F"
}
},
"SearchMatch": {
"startBackground": "#d4bc64",
"endBackground": "#d4bc64"
},
"SpeedSearch": {
"background": "#453c1d",
"borderColor": "#705c1c",
"foreground": "#CCCCCC",
"errorForeground": "#d8796f"
},
"EditorTabs": {
"borderColor": "#282828",
"underlineColor": "#2a5285",
"selectedBackground": "#303030",
"inactiveMaskColor": "#383838"
},
"ScrollBar": {
"background": "#383838",
"trackColor": "#383838",
"Mac.trackColor": "#383838",
"hoverTrackColor": "#383838",
"Mac.hoverTrackColor": "#383838",
"Transparent.trackColor": "#38383800",
"Mac.Transparent.trackColor": "#38383800",
"Transparent.hoverTrackColor": "#38383800",
"Mac.Transparent.hoverTrackColor": "#38383800",
"thumbBorderColor": "#88889940",
"Mac.thumbBorderColor": "#88889940",
"hoverThumbBorderColor": "#888899",
"Mac.hoverThumbBorderColor": "#888899",
"thumbColor": "#88889940",
"Mac.thumbColor": "#88889940",
"hoverThumbColor": "#888899",
"Mac.hoverThumbColor": "#888899",
"Transparent.thumbBorderColor": "#88889940",
"Mac.Transparent.thumbBorderColor": "#88889940",
"Transparent.hoverThumbBorderColor": "#888899",
"Mac.Transparent.hoverThumbBorderColor": "#888899",
"Transparent.thumbColor": "#88889940",
"Mac.Transparent.thumbColor": "#88889940",
"Transparent.hoverThumbColor": "#888899",
"Mac.Transparent.hoverThumbColor": "#888899"
},
"CheckBox": {
"background": "#383838",
"foreground": "#CCCCCC"
},
"RadioButton": {
"background": "#383838",
"foreground": "#CCCCCC"
},
"Button": {
"background": "#383838",
"foreground": "#CCCCCC",
"startBorderColor": "#383838",
"endBorderColor": "#383838",
"startBackground": "#474A4D",
"endBackground": "#474A4D",
"default.foreground": "#FFFFFF",
"default.startBorderColor": "#383838",
"default.endBorderColor": "#383838",
"default.startBackground": "#2a5285",
"default.endBackground": "#2a5285"
},
"ToggleButton": {
"background": "#FF00FF",
"borderColor": "#BCBCBC",
"foreground": "#BCBCBC",
"buttonColor": "#BCBCBC",
"onBackground": "#39632955",
"onForeground": "#99C986",
"offBackground": "#30303000",
"offForeground": "#BCBCBC"
},
"List": {
"background": "#303030",
"foreground": "#CCCCCC",
"selectionForeground": "#FFFFFF"
},
"Spinner": {
"background": "#383838"
},
"HelpTooltip": {
"background": "#303030",
"borderColor": "#282828",
"foreground": "#CCCCCC"
},
"ParameterInfo": {
"background": "#383838",
"currentOverloadBackground": "#2a5285",
"borderColor": "#484848",
"foreground": "#CCCCCC",
"currentParameterForeground": "#FFFFFF",
"disabledForeground": "#808080",
"infoForeground": "#8F8F8F",
"lineSeparatorColor": "#303030"
},
"Menu": {
"background": "#383838",
"borderColor": "#484848",
"foreground": "#CCCCCC",
"selectionForeground": "#FFFFFF",
"separatorColor": "#484848",
"acceleratorForeground": "#999999",
"acceleratorSelectionForeground": "#FFFFFF"
},
"PopupMenu": {
"borderWidth": 1,
"borderInsets": "1,1,1,1",
"background": "#383838",
"translucentBackground": "#383838",
"foreground": "#CCCCCC"
},
"Popup": {
"paintBorder": true,
"borderColor": "#484848",
"inactiveBorderColor": "#484848",
"separatorColor": "#404040",
"separatorForeground": "#666666",
"Header": {
"activeBackground": "#383838",
"inactiveBackground": "#383838"
},
"Toolbar": {
"background": "#383838",
"borderColor": "#303030"
},
"Advertiser": {
"background": "#383838",
"borderColor": "#383838",
"foreground": "#8F8F8F"
}
},
"MenuBar": {
"background": "#383838",
"foreground": "#CCCCCC",
"borderColor": "#383838",
"disabledBackground": "#383838"
},
"MenuItem": {
"background": "#383838",
"foreground": "#CCCCCC",
"selectionBackground": "#2a5285",
"selectionForeground": "#FFFFFF",
"acceleratorForeground": "#999999",
"acceleratorSelectionForeground": "#FFFFFF"
},
"CheckBoxMenuItem": {
"background": "#383838",
"foreground": "#CCCCCC",
"selectionBackground": "#2a5285",
"selectionForeground": "#CCCCCC",
"acceleratorForeground": "#999999",
"acceleratorSelectionForeground": "#FFFFFF"
},
"RadioButtonMenuItem": {
"background": "#383838",
"foreground": "#CCCCCC",
"selectionBackground": "#2a5285",
"selectionForeground": "#CCCCCC",
"acceleratorForeground": "#999999",
"acceleratorSelectionForeground": "#FFFFFF"
},
"CompletionPopup": {
"background": "#303030",
"foreground": "#CCCCCC",
"infoForeground": "#666666",
"matchForeground": "#D6AB76",
"matchSelectionForeground": "#D6AB76"
},
"Label": {
"background": "#383838",
"foreground": "#CCCCCC",
"disabledForeground": "#808080",
"selectedDisabledForeground": "#808080"
},
"ComboBox": {
"foreground": "#CCCCCC",
"background": "#474A4D",
"disabledForeground": "#808080",
"nonEditableBackground": "#474A4D",
"ArrowButton.background": "#474A4D",
"ArrowButton.nonEditableBackground": "#474A4D"
},
"ComboBoxButton": {
"background": "#474A4D"
},
"ComboPopup.border": "1,1,1,1,383838",
"Tree": {
"background": "#303030",
"foreground": "#BBBBBB"
},
"Notification": {
"background": "#282828",
"borderColor": "#303030",
"foreground": "#cccccc",
"errorBackground": "#592624",
"errorBorderColor": "#73302e",
"errorForeground": "#ff9794",
"ToolWindow": {
"errorBackground": "#592624",
"errorBorderColor": "#73302e",
"errorForeground": "#ff9794",
"warningBackground": "#523911",
"warningBorderColor": "#704f17",
"warningForeground": "#edba68",
"informativeBackground": "#15394d",
"informativeBorderColor": "#1b4a63",
"informativeForeground": "#61bced"
},
"MoreButton": {
"background": "#282828",
"innerBorderColor": "#202020",
"foreground": "#39A3DB"
}
},
"ValidationTooltip": {
"errorBackground": "#592624",
"errorBorderColor": "#73302e",
"warningBackground": "#523911",
"warningBorderColor": "#704f17"
},
"Link": {
"activeForeground": "#39A3DB",
"hoverForeground": "#30B8FF",
"pressedForeground": "#39A3DB",
"visitedForeground": "#39A3DB"
},
"Plugins": {
"background": "#282828",
"lightSelectionBackground": "#2a5285",
"SectionHeader": {
"background": "#383838",
"foreground": "#CCCCCC"
},
"Tab": {
"selectedBackground": "#242424",
"selectedForeground": "#CCCCCC",
"hoverBackground": "#383838"
},
"SearchField": {
"background": "#242424",
"borderColor": "#383838"
},
"Button": {
"installFillBackground": "#202020",
"installFillForeground": "#CCCCCC",
"installBackground": "#202020",
"installBorderColor": "#666666",
"installForeground": "#CCCCCC",
"updateBackground": "#202020",
"updateBorderColor": "#666666",
"updateForeground": "#CCCCCC"
},
"tagBackground": "#303030",
"tagForeground": "#999999"
},
"Component": {
"borderColor": "#282828",
"errorFocusColor": "#DB5860A0",
"inactiveErrorFocusColor": "#DB586060",
"warningFocusColor": "#DE971FA0",
"inactiveWarningFocusColor": "#DE971F60",
"iconColor": "#8f8f9fcc",
"hoverIconColor": "#8f8f9fcc"
},
"ToolTip": {
"background": "#303030",
"foreground": "#CCCCCC",
"infoForeground": "#CCCCCC",
"Actions.background": "#383838",
"Actions.infoForeground": "#8F8F8F"
},
"TextField": {
"background": "#242424",
"foreground": "#CCCCCC",
"inactiveBackground": "#242424",
"inactiveForeground": "#CCCCCC"
},
"FormattedTextField": {
"background": "#242424",
"foreground": "#CCCCCC",
"inactiveBackground": "#242424",
"inactiveForeground": "#CCCCCC"
},
"PasswordField": {
"background": "#242424",
"foreground": "#CCCCCC"
},
"TextArea": {
"background": "#242424",
"foreground": "#CCCCCC",
"inactiveBackground": "#242424",
"inactiveForeground": "#CCCCCC"
},
"ActionButton": {
"hoverBackground": "#404040",
"hoverBorderColor": "#202020",
"pressedBackground": "#202020",
"pressedBorderColor": "#404040"
},
"Table": {
"background": "#303030",
"foreground": "#CCCCCC",
"stripeColor": "#2C2C2C",
"gridColor": "#282828",
"sortIconColor": "#8f8f9fcc",
"lightSelectionBackground": "#2a5285",
"lightSelectionForeground": "#EEEEEE",
"lightSelectionInactiveBackground": "#3d4452",
"lightSelectionInactiveForeground": "#EEEEEE"
},
"TableHeader": {
"background": "#70707010",
"foreground": "#999999",
"cellBorder": "1,5,2,5"
},
"ProgressBar": {
"trackColor": "#242424",
"progressColor": "#8F8F8FB0",
"indeterminateStartColor": "#8F8F8FB0",
"indeterminateEndColor": "#8F8F8F40",
"failedColor": "#BA5249B0",
"failedEndColor": "#BA524940",
"passedColor": "#6EA35AB0",
"passedEndColor": "#6EA35A40"
},
"Slider": {
"background": "#383838",
"tickColor": "#666666"
},
"Counter": {
"background": "#8f8f9f",
"foreground": "#202020"
},
"DragAndDrop": {
"areaBackground": "#23324D",
"areaBorderColor": "#23324D",
"areaForeground": "#CCCCCC"
},
"Editor": {
"background": "#242424",
"foreground": "#999999",
"shortcutForeground": "#6888C9"
},
"FileColor": {
"Rose": "#52282e",
"Orange": "#4f2f1f",
"Yellow": "#453c1d",
"Green": "#25401a",
"Blue": "#283857",
"Violet": "#472a5e"
},
"InplaceRefactoringPopup": {
"background": "#383838",
"borderColor": "#282828"
},
"TabbedPane": {
"background": "#383838",
"underlineColor": "#2a5285",
"disabledUnderlineColor": "#454545",
"contentAreaColor": "#282828",
"hoverColor": "#282828"
},
"VersionControl": {
},
"WelcomeScreen": {
"background": "#383838",
"borderColor": "#FF0000",
"separatorColor": "#282828",
"captionBackground": "#0000FF",
"captionForeground": "#FFFF00",
"footerBackground": "#FF00FF",
"footerForeground": "#00FFFF",
"headerBackground": "#800000",
"headerForeground": "#008000",
"groupIconBorderColor": "#000080",
"Projects": {
"background": "#383838",
"selectionBackground": "#2a5285",
"selectionInactiveBackground": "#3d4452"
}
},
"DebuggerTabs.selectedBackground": "#383838",
"Window.border": "0,0,0,0,48484833",
"DebuggerPopup.borderColor": "#484848",
"TitlePane.background": "#383838",
"Separator.separatorColor": "#383838",
"SidePanel.background": "#383838",
"OptionPane.background": "#383838",
"EditorPane.inactiveBackground": "#383838",
"EditorPane.foreground": "#CCCCCC",
"ScrollPane.background": "#383838",
"ScrollPane.foreground": "#CCCCCC"
},
"icons": {
"ColorPalette": {
"Actions.Grey": "#8f8f9fcc",
"Actions.GreyInline": "#8f8f9fcc",
"Actions.GreyInline.Dark": "#8f8f9f80",
"Actions.Red": "#BA5249CC",
"Actions.Green": "#6EA35ACC",
"Actions.Blue": "#6888C9CC",
"Actions.Yellow": "#B09B45CC",
"Objects.Grey": "#8f8f9fcc",
"Objects.BlackText": "#333343CC",
"Objects.Red": "#BA5249CC",
"Objects.RedStatus": "#BA5249CC",
"Objects.Yellow": "#B09B45CC",
"Objects.YellowDark": "#B09B45CC",
"Objects.Green": "#6EA35ACC",
"Objects.GreenAndroid": "#6EA35ACC",
"Objects.Blue": "#6888C9CC",
"Objects.Purple": "#BA76B8CC",
"Objects.Pink": "#C46872CC",
"Checkbox.Border.Default.Dark": "#282828",
"Checkbox.Background.Default.Dark": "#55585C",
"Checkbox.Foreground.Selected.Dark": "#CCCCCC"
}
}
}

View File

@@ -1,21 +0,0 @@
The MIT License (MIT)
Copyright (c) 2016 CloudCannon
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -1,409 +0,0 @@
{
"name": "Dark purple",
"dark": true,
"author": "JetBrains",
"editorScheme": "/themes/darkPurpleScheme.xml",
"ui": {
"*": {
"background": "#2C2C3B",
"foreground": "#D0D0D9",
"infoForeground": "#6d6a80",
"selectionBackground": "#713a91",
"selectionForeground": "#D0D0D9",
"selectionInactiveBackground": "#3d3952",
"selectionBackgroundInactive": "#3d3952",
"lightSelectionBackground": "#3a324a",
"lightSelectionForeground": "#D0D0D9",
"lightSelectionInactiveBackground": "#3d3952",
"lightSelectionInactiveForeground":"#D0D0D9",
"disabledBackground": "#2C2C3B",
"inactiveBackground": "#2C2C3B",
"disabledForeground": "#646078",
"disabledText": "#646078",
"inactiveForeground": "#646078",
"acceleratorForeground": "#D0D0D9",
"acceleratorSelectionForeground": "#D0D0D9",
"errorForeground": "#dd3962",
"borderColor": "#4E4C63",
"disabledBorderColor": "#45405C",
"focusColor": "#693687",
"focusedBorderColor": "#814F9E",
"separatorForeground": "#6d6a80",
"separatorColor": "#4e4b61",
"lineSeparatorColor": "#55506b",
"modifiedItemForeground": "#b279f2"
},
"ActionButton": {
"hoverBackground": "#453e57",
"hoverBorderColor": "#453E57",
"pressedBackground": "#49415c",
"pressedBorderColor": "#49415C"
},
"Button": {
"startBackground": "#45405C",
"endBackground": "#45405C",
"startBorderColor": "#544F70",
"endBorderColor": "#544F70",
"shadowColor": "#27282B",
"default": {
"foreground": "#D0D0D9",
"startBackground": "#6B388F",
"endBackground": "#6B388F",
"startBorderColor": "#7C519C",
"endBorderColor": "#7C519C",
"focusedBorderColor": "#8465a6",
"focusColor": "#784299",
"shadowColor": "#27282B"
}
},
"Borders": {
"color": "#1a1721",
"ContrastBorderColor": "#1a1721"
},
"ComboBox": {
"nonEditableBackground": "#3A384D",
"background": "#343445",
"ArrowButton": {
"iconColor": "#9A97A8",
"disabledIconColor": "#454554",
"nonEditableBackground": "#3A384D"
}
},
"ComboPopup.border": "1,1,1,1,64647A",
"CompletionPopup": {
"matchForeground": "#ED94FF",
"matchSelectionForeground": "#ED94FF",
"selectionInactiveBackground": "#44405c",
"nonFocusedMask": "#00000033"
},
"Component": {
"errorFocusColor": "#993750",
"inactiveErrorFocusColor": "#522530",
"warningFocusColor": "#8c812b",
"inactiveWarningFocusColor": "#47441f",
"iconColor": "#77728fCC",
"hoverIconColor": "#8b85a6"
},
"Counter": {
"background": "#FFFFFF80",
"foreground": "#000000"
},
"DebuggerPopup.borderColor": "#524e66",
"DebuggerTabs.selectedBackground": "#332C40",
"DefaultTabs": {
"underlineColor": "#9649cc",
"inactiveUnderlineColor": "#877399",
"hoverBackground": "#dfb3ff1a"
},
"DragAndDrop": {
"areaForeground": "#D0D0D9",
"areaBackground": "#702F91",
"areaBorderColor": "#343142"
},
"Editor": {
"background": "#1D1D26",
"foreground": "#6d6a80",
"shortcutForeground": "#6E86FF"
},
"EditorPane.inactiveBackground": "#2C2C3B",
"EditorTabs": {
"selectedForeground": "#D0D0D9",
"selectedBackground": "#343445",
"inactiveMaskColor": "#0d0d0d33",
"underlineColor": "#904ac2",
"underlinedTabBackground": "#363647",
"inactiveColoredFileBackground": "#2C2C3B80",
"borderColor": "#1a1721"
},
"FileColor": {
"Yellow": "#45243b",
"Green": "#213d37",
"Blue": "#1f3557",
"Violet": "#2a2754",
"Orange": "#402e23",
"Rose": "#4a2d59"
},
"InplaceRefactoringPopup.borderColor": "#474359",
"Link": {
"activeForeground": "#7094ff",
"hoverForeground": "#7094FF",
"pressedForeground": "#7094FF",
"visitedForeground": "#7094FF"
},
"MenuBar.borderColor": "##1a1721",
"NavBar.borderColor": "#1a1721",
"Notification": {
"background": "#3d394d",
"borderColor": "#57506e",
"errorForeground": "#D0D0D9",
"errorBackground": "#4d232e",
"errorBorderColor": "#802e44",
"MoreButton.innerBorderColor": "#1a1721",
"ToolWindow": {
"informativeForeground": "#D0D0D9",
"informativeBackground": "#2e4280",
"informativeBorderColor": "#17254d",
"warningForeground": "#D0D0D9",
"warningBackground": "#735822",
"warningBorderColor": "#403013",
"errorForeground": "#D0D0D9",
"errorBackground": "#802d43",
"errorBorderColor": "#4d1c2b"
}
},
"MemoryIndicator": {
"allocatedBackground": "#352140",
"usedBackground": "#533473"
},
"ParameterInfo": {
"background": "#463f57",
"foreground": "#ababb3",
"infoForeground": "ababb3",
"currentOverloadBackground": "#6A6173",
"currentParameterForeground": "#D0D0D9"
},
"Plugins": {
"Tab": {
"selectedForeground": "#D0D0D9",
"selectedBackground": "#593f73",
"hoverBackground": "#593F73"
},
"SearchField.borderColor": "#1a1721",
"SearchField.background": "#252533",
"SectionHeader.background": "#3d3952",
"tagBackground": "#4c4766",
"tagForeground": "#D0D0D9",
"Button": {
"installForeground": "#8862b3",
"installBorderColor":"#8862b3",
"installFillForeground": "#D0D0D9",
"installFillBackground": "#713a91",
"updateForeground":"#D0D0D9",
"updateBackground": "#713a91",
"updateBorderColor": "#713a91"
}
},
"Popup": {
"paintBorder": true,
"borderColor": "#4e4b61",
"inactiveBorderColor": "#343142",
"Toolbar.borderColor": "#1a1721",
"Header.activeBackground": "#453A5C",
"Header.inactiveBackground": "#453A5C",
"Advertiser": {
"foreground": "#8785a6",
"borderColor": "#4e4b61",
"borderInsets": "4,8,3,0"
}
},
"PopupMenu": {
"borderWidth": 1,
"borderInsets": "4,1,4,1"
},
"ProgressBar": {
"trackColor": "#1D1D26",
"progressColor": "#a85ed6",
"indeterminateStartColor": "#a85ed6",
"indeterminateEndColor": "#402e4d",
"failedColor": "#bd3c5f",
"failedEndColor": "#472c33",
"passedColor": "#239E62",
"passedEndColor": "#2b4242"
},
"SearchEverywhere": {
"Header.background": "#3a394d",
"Tab": {
"selectedForeground": "#D0D0D9",
"selectedBackground": "#5c3d7a"
},
"SearchField":{
"background": "#252533",
"borderColor": "#1a1721"
},
"Advertiser.foreground": "#8785a6"
},
"SearchMatch": {
"startBackground": "#cca929",
"endBackground": "#cca929"
},
"SpeedSearch": {
"foreground": "#D0D0D9",
"borderColor": "#69418c",
"background": "#5c3a7a",
"errorForeground": "#ff80a1"
},
"StatusBar.borderColor": "#1a1721",
"TabbedPane": {
"underlineColor": "#9649cc",
"disabledUnderlineColor": "#5e5b6b",
"contentAreaColor": "#1a1721",
"hoverColor": "#dfb3ff1a",
"focusColor": "#523366"
},
"TableHeader": {
"cellBorder": "3,0,3,0",
"background": "#363445",
"separatorColor": "#1a1721",
"bottomSeparatorColor": "#282430"
},
"Table.stripeColor": "#323242",
"TextArea": {
"background": "#3A384D",
"selectionBackground": "#69418c"
},
"TextField": {
"background": "#3A384D",
"selectionBackground": "#69418c"
},
"ToggleButton": {
"onForeground": "#D0D0D9",
"onBackground": "#543073",
"offForeground": "#9f9fa6",
"offBackground": "#2C2C3B",
"buttonColor": "#666380",
"borderColor": "#666380"
},
"ToolTip": {
"background": "#463f57",
"Actions.background": "#323245"
},
"ToolWindow": {
"Header": {
"background": "#453A5C",
"inactiveBackground": "#2C2C3B",
"borderColor": "#1a1721"
},
"HeaderTab": {
"selectedBackground": "#0a0a0a66",
"selectedInactiveBackground": "#0a0a0a4D",
"hoverBackground": "#dfb3ff1a",
"hoverInactiveBackground": "#dfb3ff1a"
},
"Button": {
"hoverBackground": "#1e1e24",
"selectedBackground": "#1e1e24",
"selectedForeground": "#D0D0D9"
}
},
"Tree.rowHeight": 20,
"ValidationTooltip": {
"errorBackground": "#802d43",
"errorBorderColor": "#4d1c2b",
"warningBackground": "#735822",
"warningBorderColor": "#403013"
},
"VersionControl": {
"Log.Commit": {
"currentBranchBackground": "#202340",
"unmatchedForeground": "#6d6a80"
},
"FileHistory.Commit.selectedBranchBackground": "#202340"
},
"WelcomeScreen": {
"Projects.selectionInactiveBackground": "#713a91",
"separatorColor": "#1a1721"
}
},
"icons": {
"ColorPalette": {
"Actions.Grey": "#a4a1b3",
"Actions.Red": "#c63a5d",
"Actions.Yellow": "#caba2d",
"Actions.Green": "#25ad6b",
"Actions.Blue": "#4d85ff",
"Actions.GreyInline.Dark": "#9f99bfb3",
"Objects.Grey": "#9790ad",
"Objects.RedStatus": "#dd3962",
"Objects.Red": "#c63a5d",
"Objects.Pink": "#f98b9e",
"Objects.Yellow": "#caba2d",
"Objects.Green": "#239e62",
"Objects.Blue": "#598bff",
"Objects.Purple": "#af71e0",
"Objects.BlackText": "#000000ff",
"Objects.YellowDark": "#988c26",
"Objects.GreenAndroid": "#78c257",
"Checkbox.Background.Default.Dark": "#343445",
"Checkbox.Border.Default.Dark": "#756b8c",
"Checkbox.Foreground.Selected.Dark": "#a4a1b3",
"Checkbox.Focus.Wide.Dark": "#723b94",
"Checkbox.Focus.Thin.Default.Dark": "#8a64b3",
"Checkbox.Focus.Thin.Selected.Dark": "#8a64b3",
"Checkbox.Background.Disabled.Dark": "#2C2C3B",
"Checkbox.Border.Disabled.Dark": "#4c4766",
"Checkbox.Foreground.Disabled.Dark": "#565073"
}
}
}

View File

@@ -1,21 +0,0 @@
The MIT License (MIT)
Copyright (c) 2019-Present Dracula Theme
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -1,273 +0,0 @@
{
"name": "Dracula",
"dark": true,
"author": "VermouthX",
"editorScheme": "/themes/Dracula.xml",
"ui": {
"*": {
"arc": "5",
"background": "#414450",
"selectionBackground": "#6272a4",
"selectionInactiveBackground": "#4E5A82",
"inactiveBackground": "#414450",
"borderColor": "#282a36"
},
"Borders": {
"color": "#282a36",
"ContrastBorderColor": "#282a36"
},
"ActionButton": {
"hoverBackground": "#282a35",
"hoverBorderColor": "#282a35",
"pressedBackground": "#282a35",
"pressedBorderColor": "#282a35"
},
"Button": {
"foreground": "#f8f8f2",
"startBorderColor": "#6272a4",
"endBorderColor": "#6272a4",
"startBackground": "#6272a4",
"endBackground": "#6272a4",
"focusedBorderColor": "#bd93f9",
"default": {
"foreground": "#f8f8f2",
"startBackground": "#6272a4",
"endBackground": "#6272a4",
"startBorderColor": "#bd93f9",
"endBorderColor": "#bd93f9",
"focusColor": "#bd93f9",
"focusedBorderColor": "#bd93f9"
}
},
"Counter": {
"foreground": "#414450",
"background": "#2fc864"
},
"CheckBoxMenuItem": {
"acceleratorSelectionForeground": "#ff79c6"
},
"ComboBox": {
"modifiedItemForeground": "#ff79c6",
"ArrowButton": {
"background": "#44475a",
"nonEditableBackground": "#44475a",
"iconColor": "#bd93f9"
},
"selectionBackground": "#bd93f9",
"nonEditableBackground": "#44475a"
},
"CompletionPopup": {
"selectionBackground": "#6272a4",
"selectionInactiveBackground": "#4E5A82",
"matchForeground": "#ff79c6"
},
"Component": {
"focusColor": "#bd93f9",
"borderColor": "#6272a4",
"focusedBorderColor": "#6272a4",
"errorFocusColor": "#ff5554",
"inactiveErrorFocusColor": "#ff5554",
"warningFocusColor": "#f1fa8c",
"inactiveWarningFocusColor": "#f1fa8c"
},
"DragAndDrop": {
"areaBorderColor": "#6272a4"
},
"Editor": {
"background": "#44475a",
"shortcutForeground": "#ff79c6"
},
"EditorTabs": {
"background": "#44475a",
"underlinedTabBackground": "#313341",
"underlineColor": "#bd93f9",
"underlineHeight": 1
},
"FileColor": {
"Blue": "#8be9fd",
"Green": "#63667E",
"Orange": "#ffb86c",
"Yellow": "#44475a",
"Rose": "#ff79c6",
"Violet": "#bd93f9"
},
"Label": {
"foreground": "#f8f8f2",
"errorForeground": "#ff5554"
},
"Link": {
"activeForeground": "#ff79c6",
"hoverForeground": "#ff79c6",
"visitedForeground": "#bd93f9",
"pressedForeground": "#bd93f9"
},
"Notification": {
"borderColor": "#6272a4",
"errorBorderColor": "#ff5554",
"errorBackground": "#414450",
"errorForeground": "#f8f8f2",
"ToolWindow": {
"warningForeground": "#f8f8f2",
"warningBackground": "#414450",
"warningBorderColor": "#ffb86c",
"errorForeground": "#f8f8f2",
"errorBorderColor": "#ff5554",
"errorBackground": "#414450",
"informativeForeground": "#f8f8f2",
"informativeBackground": "#414450",
"informativeBorderColor": "#50fa7b"
}
},
"Plugins": {
"SearchField": {
"background": "#44475a"
},
"SectionHeader": {
"foreground": "#f8f8f2"
},
"lightSelectionBackground": "#282a35",
"Button": {
"installBorderColor": "#bd93f9",
"installForeground": "#bd93f9",
"installBackground": "#414450",
"installFillForeground": "#414450",
"installFillBackground": "#bd93f9",
"installFocusedBackground": "#414450",
"updateBorderColor": "#5da3f4",
"updateForeground": "#f8f8f2",
"updateBackground": "#5da3f4"
},
"Tab": {
"selectedBackground": "#282a35",
"selectedForeground": "#f8f8f2",
"hoverBackground": "#282a35"
}
},
"ProgressBar": {
"failedColor": "#ff5554",
"failedEndColor": "#ff5554",
"trackColor": "#6272a4",
"progressColor": "#ff79c6",
"indeterminateStartColor": "#bd93f9",
"indeterminateEndColor": "#bd93f9",
"passedColor": "#50fa7b",
"passedEndColor": "#50fa7b"
},
"Popup": {
"Header": {
"activeBackground": "#44475a",
"inactiveBackground": "#44475a"
}
},
"SearchEverywhere": {
"SearchField": {
"background": "#44475a"
},
"Tab": {
"selectedBackground": "#313341",
"selectedForeground": "#f8f8f2"
}
},
"SearchMatch": {
"startBackground": "#ff79c6",
"endBackground": "#ff79c6"
},
"Separator.separatorColor": "#282a35",
"TabbedPane": {
"tabSelectionHeight": 1,
"focusColor": "#282a35",
"hoverColor": "#282a35",
"underlineColor": "#bd93f9",
"contentAreaColor": "#282a35"
},
"ToggleButton": {
"onBackground": "#50fa7b",
"onForeground": "#282a35",
"offBackground": "#6272a4",
"offForeground": "#282a35",
"buttonColor": "#f8f8f2"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#282a35"
},
"Header": {
"background": "#44475a",
"inactiveBackground": "#44475a"
},
"HeaderTab": {
"underlineColor": "#bd93f9",
"underlineHeight": 1,
"underlinedTabBackground": "#313341",
"underlinedTabInactiveBackground": "#313341"
}
},
"Tree": {
"modifiedItemForeground": "#ff79c6",
"selectionBackground": "#6272a4",
"selectionInactiveBackground": "#4E5A82"
},
"ValidationTooltip": {
"errorBackground": "#ff5554",
"errorBorderColor": "#ff5554",
"warningBorderColor": "#ffb86c",
"warningBackground": "#ffb86c"
},
"VersionControl": {
"FileHistory": {
"Commit": {
"selectedBranchBackground": "#44475a"
}
},
"GitLog": {
"headIconColor": "#f1fa8c",
"localBranchIconColor": "#50fa7b",
"remoteBranchIconColor": "#bd93f9",
"tagIconColor": "#ff79c6",
"otherIconColor": "#8be9fd"
},
"Log": {
"Commit": {
"currentBranchBackground": "#44475a"
}
}
},
"WelcomeScreen": {
"separatorColor": "#191b1f",
"Projects": {
"background": "#282a35",
"selectionBackground": "#44475a",
"selectionInactiveBackground": "#44475a"
}
}
},
"icons": {
"ColorPalette": {
"Actions.Blue": "#5da3f4",
"Actions.Green": "#2fc864",
"Actions.Grey": "#858994",
"Actions.GreyInline.Dark": "#2fc864",
"Actions.GreyInline": "#2fc864",
"Actions.Red": "#ff5554",
"Actions.Yellow": "#f1fa8c",
"Objects.Blue": "#5da3f4",
"Objects.Green": "#2fc864",
"Objects.GreenAndroid": "#2fc864",
"Objects.Grey": "#858994",
"Objects.Pink": "#ff79c6",
"Objects.Purple": "#bd93f9",
"Objects.Red": "#ff5554",
"Objects.RedStatus": "#ff5554",
"Objects.Yellow": "#f1fa8c",
"Objects.YellowDark": "#f1fa8c",
"Objects.BlackText": "#282a35",
"Checkbox.Border.Default.Dark": "#bd93f9",
"Checkbox.Border.Selected.Dark": "#bd93f9",
"Checkbox.Background.Default.Dark": "#6272a4",
"Checkbox.Foreground.Selected.Dark": "#f8f8f2",
"Checkbox.Focus.Wide.Dark": "#bd93f9",
"Checkbox.Focus.Thin.Selected.Dark": "#bd93f9",
"Checkbox.Focus.Thin.Default.Dark": "#bd93f9"
}
}
}

View File

@@ -1,21 +0,0 @@
MIT License
Copyright (c) 2019 thvardhan
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -1,267 +0,0 @@
{
"name": "Gradianto Dark Fuchsia",
"dark": true,
"author": "",
"editorScheme": "/Gradianto_dark_fuchsia.xml",
"ui": {
"*": {
"background": "#20022d",
"foreground": "#9ca9af",
"infoForeground": "#6aaf41",
"selectionBackground": "#4d086d",
"selectionForeground": "#c9c9c9",
"selectionInactiveBackground": "#37064e",
"disabledForeground": "#646464",
"disabledBackground": "#250434",
"inactiveBackground": "#250434",
"errorForeground": "#cd860b",
"disabledText": "#646464",
"Borders.ContrastBorderColor" : "#2b033b",
"borderColor": "#38044e",
"disabledBorderColor": "#22022f",
"focusColor" : "#550979",
"focusedBorderColor": "#550979",
"separatorColor": "#2d033f"
},
"ActionButton": {
"hoverBackground": "#320647",
"pressedBackground": "#42075c",
"hoverBorderColor": "#58077c",
"pressedBorderColor": "#3c0555"
},
"Borders": {
"color": "#38044e",
"ContrastBorderColor": "#38044e"
},
"Button": {
"startBackground": "#41295a",
"endBackground": "#2F0743",
"startBorderColor": "#400080",
"endBorderColor": "#6300c5",
"shadowColor" : "#400080",
"focusedBorderColor" : "#550979",
"default.focusColor": "#550979",
"disabledBorderColor" : "#2e005d",
"default": {
"startBackground": "#41295a",
"endBackground": "#2f0743",
"startBorderColor": "#400080",
"endBorderColor": "#6300c5",
"focusedBorderColor": "#550979",
"focusColor": "#550979"
}
},
"RadioButton": {
"background" : "#41295a",
"foreground": "#2f0743"
},
"CompletionPopup": {
"matchForeground": "#652683",
"matchSelectionForeground": "#9057f2"
},
"MenuBar.borderColor": "#550979",
"Menu.borderColor": "#2f0743",
"NavBar.borderColor": "#2f0743",
"Notification": {
"errorForeground": "#abb2bf",
"errorBackground": "#280e29",
"errorBorderColor": "#692746",
"ToolWindow": {
"informativeForeground": "#abb2bf",
"informativeBackground": "#4b1d62",
"informativeBorderColor": "#3f2d55",
"warningForeground": "#abb2bf",
"warningBackground": "#735822",
"warningBorderColor": "#5f4422",
"errorForeground": "#abb2bf",
"errorBackground": "#802d43",
"errorBorderColor": "#552029"
}
},
"ComboBox": {
"background" : "#300444",
"nonEditableBackground": "#170b16",
"ArrowButton": {
"iconColor": "#aeb0b2",
"disabledIconColor": "#2a043c",
"nonEditableBackground": "#2c152a"
}
},
"Editor": {
"shortcutForeground": "#477924"
},
"EditorTabs": {
"selectedForeground": "#c9c9c9",
"selectedBackground": "#4e086f",
"underlinedTabBackground": "58097e",
"underlineColor": "#58097e",
"inactiveMaskColor": "#280a2fff"
},
"Link": {
"activeForeground": "#ede891",
"hoverForeground": "#ede891",
"pressedForeground": "#ede891",
"visitedForeground": "#ede891"
},
"FileColor": {
"Yellow": "#d19a6614",
"Green": "#98c37915",
"Blue": "#61afef15",
"Violet": "#542a4f",
"Orange": "#d13c0015",
"Rose": "#ae002f20"
},
"Tree.background": "#2d0340",
"SearchEverywhere": {
"Tab": {
"selectedForeground": "#c9c9c9",
"selectedBackground": "#4d086d"
}
},
"SearchMatch": {
"startBackground": "#d379f2",
"endBackground": "#d379f2"
},
"WelcomeScreen": {
"Projects.selectionInactiveBackground": "#37064e",
"separatorColor": "#2d033f"
},
"ValidationTooltip": {
"errorBackground": "#802d43",
"errorBorderColor": "#802d43",
"warningBackground": "#735822",
"warningBorderColor": "#5f4422"
},
"Table": {
"stripeColor": "#2d033f",
"selectionForeground": "#c9c9c9",
"dropLineColor": "#2d033f",
"focusCellForeground": "#abb2bf",
"gridColor": "#35064c"
},
"ProgressBar": {
"trackColor": "#280a2f",
"progressColor": "#e78af2",
"indeterminateStartColor": "#e78af2",
"indeterminateEndColor": "#523569",
"failedColor": "#ad3864",
"failedEndColor": "#47221d",
"passedColor": "#60649e",
"passedEndColor": "#251642"
},
"PopupMenu.translucentBackground": "#4d086d",
"Popup": {
"paintBorder": true,
"Header.activeBackground": "#4e086f",
"Header.inactiveBackground": "#4d086d",
"separatorColor" : "#5e0a85",
"separatorForeground": "#5e0a85",
"Advertiser": {
"background": "#490768",
"borderColor": "#490768",
"borderInsets": "3,8,5,0"
}
},
"ToggleButton": {
"onForeground": "#4d086d",
"onBackground": "#9ca9af",
"offForeground": "#646464",
"offBackground": "#280a2f",
"buttonColor": "#4e086f",
"borderColor": "#4e086f"
},
"ToolTip": {
"background": "#450073",
"Actions.background": "#331432"
},
"ToolWindow": {
"Header": {
"background": "#3b0063",
"inactiveBackground": "#370c41"
},
"HeaderTab": {
"selectedBackground": "#9C23D9FF",
"selectedInactiveBackground": "#4D0080FF",
"hoverBackground": "#9C23D9FF",
"hoverInactiveBackground": "#4D0080FF"
},
"Button": {
"hoverBackground": "#320647",
"selectedBackground": "#42075c",
"selectedForeground": "#9ca9af"
}
},
"DragAndDrop": {
"areaForeground": "#FFFFFF",
"areaBackground": "#42075c",
"areaBorderColor": "#4d0080"
},
"Plugins": {
"SectionHeader.background": "#4d0080",
"tagBackground": "#42075c",
"lightSelectionBackground": "#41075b"
},
"EditorPane.inactiveBackground": "#1a0225"
},
"icons": {
"ColorPalette": {
"Checkbox.Background.Default.Dark": "#3c0555",
"Checkbox.Border.Default.Dark": "#460561",
"Checkbox.Foreground.Selected.Dark": "#6aae41",
"Objects.Grey": "#9b8ebe",
"Objects.Blue": "#05b4a1",
"Objects.RedStatus": "#a8191aff",
"Objects.Red": "#aa3c3aff",
"Objects.Pink": "#d16979ff",
"Objects.Yellow": "#be9418ff",
"Objects.Green": "#009c0eff",
"Objects.Purple": "#6b48a6ff",
"Objects.BlackText": "#131313ff",
"Objects.YellowDark": "#8a6c1aff",
"Objects.GreenAndroid": "#008b14ff"
}
}
}

View File

@@ -1,240 +0,0 @@
{
"name": "Gradianto Deep Ocean",
"dark": true,
"author": "",
"editorScheme": "/Gradianto_deep_ocean.xml",
"ui": {
"*": {
"background": "#1c2739",
"foreground": "#c1c1c1",
"infoForeground": "#d7ff18c1",
"selectionBackground": "#39487e",
"selectionForeground": "#e2e2e2",
"selectionInactiveBackground": "#2c3d59",
"disabledForeground": "#a3a3a3",
"disabledBackground": "#222f44",
"inactiveBackground": "#325180",
"errorForeground": "#b5b5b5",
"disabledText": "#adadad",
"Borders.ContrastBorderColor" : "#0e1624",
"borderColor": "#151d2c",
"disabledBorderColor": "#0d1022",
"focusColor" : "#25334b",
"focusedBorderColor": "#2b416a",
"separatorColor": "#1d304b"
},
"Tree.background": "#24334a",
"ActionButton": {
"hoverBackground": "#324565",
"pressedBackground": "#284267",
"hoverBorderColor": "#141834",
"pressedBorderColor": "#171c3c"
},
"Borders": {
"color": "#2b3858cc",
"ContrastBorderColor": "#0e1624"
},
"Button": {
"startBackground": "#4a75a2",
"endBackground": "#4a75a2",
"startBorderColor": "#252e4b",
"endBorderColor": "#252e4b",
"focusedBorderColor" : "#4a75a2",
"default.focusColor": "#4a75a2",
"disabledBorderColor" : "#193c81",
"default": {
"startBackground": "#4a75a2",
"endBackground": "#4a75a2",
"focusColor": "#2969a2"
}
},
"CompletionPopup": {
"matchForeground": "#568AF2"
},
"Notification": {
"errorForeground": "#f5f5f5",
"errorBackground": "#c4131e",
"errorBorderColor": "#c55e4a",
"ToolWindow": {
"informativeForeground": "#f5f5f5",
"informativeBackground": "#414f66",
"informativeBorderColor": "#d4745c",
"warningForeground": "#abb2bf",
"warningBackground": "#896a28",
"warningBorderColor": "#5f4422",
"errorForeground": "#abb2bf",
"errorBackground": "#923849",
"errorBorderColor": "#552029"
}
},
"ComboBox": {
"background" : "#3c557c",
"nonEditableBackground": "#466391",
"ArrowButton": {
"iconColor": "#e3e2f1",
"disabledIconColor": "#83828b",
"nonEditableBackground": "#607691"
}
},
"Editor": {
"shortcutForeground": "#3f5079"
},
"EditorTabs": {
"selectedForeground": "#ececec",
"selectedBackground": "#324d65",
"underlinedTabBackground": "#324d65",
"background": "#243647",
"underlineColor": "#46628f",
"hoverMaskColor": "#46628f",
"inactiveMaskColor": "#24334aff"
},
"Link": {
"activeForeground": "#ede891",
"hoverForeground": "#ede891",
"pressedForeground": "#ede891",
"visitedForeground": "#ede891"
},
"FileColor": {
"Yellow": "#d1b14225",
"Green": "#98c37925",
"Blue": "#61afef25",
"Violet": "#542a4f25",
"Orange": "#d13c0025",
"Rose": "#ae002f25"
},
"SearchEverywhere": {
"Tab": {
"selectedForeground": "#ffffff",
"selectedBackground": "#314f8f"
}
},
"SearchMatch": {
"startBackground": "#67849d",
"endBackground": "#2d3f71"
},
"WelcomeScreen": {
"Projects.selectionInactiveBackground": "#325180",
"separatorColor": "#223757"
},
"ValidationTooltip": {
"errorBackground": "#802d43",
"errorBorderColor": "#802d43",
"warningBackground": "#735822",
"warningBorderColor": "#5f4422"
},
"Table": {
"stripeColor": "#475a6f",
"selectionForeground": "#e4e4e4",
"dropLineColor": "#586b8d",
"focusCellForeground": "#e3e3e3",
"gridColor": "#45526f"
},
"ProgressBar": {
"trackColor": "#131b2f",
"progressColor": "#608fcf",
"indeterminateStartColor": "#68a2f2",
"indeterminateEndColor": "#304869",
"failedColor": "#ad3864",
"failedEndColor": "#47221d",
"passedColor": "#83d68d",
"passedEndColor": "#2f422f"
},
"windowBorder" : "#282c57",
"window": "#282c57",
"PopupMenu.translucentBackground": "#26366d",
"Popup": {
"inactiveBorderColor" : "#252649",
"paintBorder": true,
"Header.activeBackground": "#39487e",
"Header.inactiveBackground": "#325180",
"separatorColor" : "#223757",
"separatorForeground": "#426aa8",
"Advertiser": {
"background": "#2f3347",
"borderColor": "#141834",
"borderInsets": "3,8,5,0"
}
},
"ToggleButton": {
"onForeground": "#274368",
"onBackground": "#9ca9af",
"offForeground": "#646464",
"offBackground": "#1c2732",
"buttonColor": "#3c5285"
},
"ToolTip": {
"background": "#445a83",
"Actions.background": "#252c3a"
},
"ToolWindow": {
"Header": {
"background": "#3766ae",
"inactiveBackground": "#325180"
},
"HeaderTab": {
"selectedBackground": "#39487eff",
"selectedInactiveBackground": "#2c3d59ff",
"hoverBackground": "#384d71ff",
"hoverInactiveBackground": "#25334aff"
},
"Button": {
"hoverBackground": "#384d71ff",
"selectedBackground": "#39487eff",
"selectedForeground": "#b1bfc6"
}
},
"DragAndDrop": {
"areaForeground": "#e5e5e5",
"areaBackground": "#242b39",
"areaBorderColor": "#141834"
},
"Plugins": {
"SectionHeader.background": "#2a3563",
"tagBackground": "#3d445a",
"lightSelectionBackground": "#3c4b7e"
},
"EditorPane.inactiveBackground": "#040c25"
},
"icons": {
"ColorPalette": {
"Checkbox.Background.Default.Dark": "#3c4861",
"Checkbox.Foreground.Selected.Dark": "#00d66e",
"Checkbox.Background.Disabled": "#212735",
"Checkbox.Background.Disabled.Dark": "#212735",
"Objects.Grey": "#e3e3e3c0",
"Objects.Blue": "#4fc3f7c0",
"Objects.RedStatus": "#ff5722c0",
"Objects.Red": "#ff7274c0",
"Objects.Pink": "#ff97b1c0",
"Objects.Yellow": "#ffca57c0",
"Objects.Green": "#76da84c0",
"Objects.Purple": "#d199ffc0",
"Objects.BlackText": "#2e2e2ec0",
"Objects.YellowDark": "#ffca1ec0",
"Objects.GreenAndroid": "#18e66bc0"
}
}
}

View File

@@ -1,241 +0,0 @@
{
"name": "Gradianto Midnight Blue",
"dark": true,
"author": "",
"editorScheme": "/Gradianto_midnight_blue.xml",
"ui": {
"*": {
"background": "#282839",
"foreground": "#d4d4d4",
"infoForeground": "#00d66e",
"selectionBackground": "#544092",
"selectionForeground": "#e2e2e2",
"selectionInactiveBackground": "#48387e",
"disabledForeground": "#a3a3a3",
"disabledBackground": "#3f3571",
"inactiveBackground": "#52408f",
"errorForeground": "#ebf1f2",
"disabledText": "#adadad",
"Borders.ContrastBorderColor" : "#221b3c",
"borderColor": "#221b3c",
"disabledBorderColor": "#221b3c",
"focusColor" : "#161227",
"focusedBorderColor": "#161227",
"separatorColor": "#383850"
},
"Tree.background": "#2c2c3e",
"ActionButton": {
"hoverBackground": "#6d55bd",
"pressedBackground": "#4b3a81",
"hoverBorderColor": "#6d55bd",
"pressedBorderColor": "#4b3a81"
},
"Borders": {
"color": "#1b092f",
"ContrastBorderColor": "#1a1328"
},
"Button": {
"startBackground": "#544c91",
"endBackground": "#544c91",
"startBorderColor": "#544c91",
"endBorderColor": "#544c91",
"focusedBorderColor" : "#5631a2",
"default.focusColor": "#5631a2",
"disabledBorderColor" : "#442781",
"default": {
"startBackground": "#544c91",
"endBackground": "#544c91",
"startBorderColor": "#544c91",
"endBorderColor": "#442781",
"focusedBorderColor": "#5631a2",
"focusColor": "#5631a2"
}
},
"CompletionPopup": {
"matchForeground": "#cecb46",
"matchSelectionForeground": "#ffcd7e"
},
"MenuBar.borderColor": "#221b3c",
"Menu.borderColor": "#140928",
"NavBar.borderColor": "#140928",
"Notification": {
"errorForeground": "#f5f5f5",
"errorBackground": "#c4131e",
"errorBorderColor": "#c55e4a",
"ToolWindow": {
"informativeForeground": "#f5f5f5",
"informativeBackground": "#4a4a66",
"informativeBorderColor": "#d4745c",
"warningForeground": "#abb2bf",
"warningBackground": "#896a28",
"warningBorderColor": "#5f4422",
"errorForeground": "#abb2bf",
"errorBackground": "#923849",
"errorBorderColor": "#552029"
}
},
"ComboBox": {
"background" : "#5d5d84",
"nonEditableBackground": "#4a4a68",
"ArrowButton": {
"iconColor": "#e3e2f1",
"disabledIconColor": "#667286",
"nonEditableBackground": "#464662"
}
},
"Editor": {
"shortcutForeground": "#745279"
},
"EditorTabs": {
"underlinedTabBackground": "#3d3d56",
"selectedBackground": "#3d3d56",
"underlineColor": "#44346e"
},
"Link": {
"activeForeground": "#ede891",
"hoverForeground": "#ede891",
"pressedForeground": "#ede891",
"visitedForeground": "#ede891"
},
"FileColor": {
"Yellow": "#d19a6625",
"Green": "#98c37925",
"Blue": "#61afef25",
"Violet": "#542a4f25",
"Orange": "#d13c0025",
"Rose": "#ae002f25"
},
"SearchEverywhere": {
"Tab": {
"selectedForeground": "#ffffff",
"selectedBackground": "#52408f"
}
},
"SearchMatch": {
"startBackground": "#8787c1",
"endBackground": "#8787c1"
},
"WelcomeScreen": {
"Projects.selectionInactiveBackground": "#323247",
"separatorColor": "#323247"
},
"ValidationTooltip": {
"errorBackground": "#802d43",
"errorBorderColor": "#802d43",
"warningBackground": "#735822",
"warningBorderColor": "#5f4422"
},
"Table": {
"stripeColor": "#4e4e6f",
"selectionForeground": "#ffffff",
"dropLineColor": "#63638d",
"focusCellForeground": "#ffffff",
"gridColor": "#4e4e6f"
},
"ProgressBar": {
"trackColor": "#280a2f",
"progressColor": "#8769cf",
"indeterminateStartColor": "#a088f2",
"indeterminateEndColor": "#3d3f69",
"failedColor": "#ad3864",
"failedEndColor": "#47221d",
"passedColor": "#83d68d",
"passedEndColor": "#2f422f"
},
"PopupMenu.translucentBackground": "#37256d",
"Popup": {
"paintBorder": true,
"Header.activeBackground": "#5841a7",
"Header.inactiveBackground": "#48388b",
"separatorColor" : "#5640a2",
"separatorForeground": "#654bbe",
"Advertiser": {
"background": "#323247",
"borderColor": "#140928",
"borderInsets": "3,8,5,0"
}
},
"ToggleButton": {
"onForeground": "#9ca9af",
"onBackground": "#3f2c6d",
"offForeground": "#646464",
"offBackground": "#232332",
"buttonColor": "#411e85",
"borderColor": "#140928"
},
"ToolTip": {
"background": "#5c5c83",
"Actions.background": "#29293a"
},
"ToolWindow": {
"Header": {
"background": "#504896",
"inactiveBackground": "#443577"
},
"HeaderTab": {
"selectedBackground": "#41415eff",
"selectedInactiveBackground": "#363647ff",
"hoverBackground": "#4e4e70ff",
"hoverInactiveBackground": "#414157ff"
},
"Button": {
"hoverBackground": "#4e4e70",
"selectedBackground": "#41415e",
"selectedForeground": "#9ca9af"
}
},
"DragAndDrop": {
"areaForeground": "#f5f5f5",
"areaBackground": "#282839",
"areaBorderColor": "#140928"
},
"Plugins": {
"SectionHeader.background": "#392c63",
"tagBackground": "#40405a",
"lightSelectionBackground": "#48387e"
},
"EditorPane.inactiveBackground": "#1a0225"
},
"icons": {
"ColorPalette": {
"Checkbox.Background.Default.Dark": "#444461",
"Checkbox.Foreground.Selected.Dark": "#00d66e",
"Objects.Grey": "#d6d6d6c0",
"Objects.Blue": "#4fc3f7c0",
"Objects.RedStatus": "#ff5722c0",
"Objects.Red": "#ff7274c0",
"Objects.Pink": "#ff97b1c0",
"Objects.Yellow": "#ffca57c0",
"Objects.Green": "#76da84c0",
"Objects.Purple": "#d199ffc0",
"Objects.BlackText": "#2e2e2ec0",
"Objects.YellowDark": "#ffca1ec0",
"Objects.GreenAndroid": "#18e66bc0"
}
}
}

View File

@@ -1,21 +0,0 @@
The MIT License (MIT)
Copyright (c) 2016 CloudCannon
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -1,238 +0,0 @@
{
"name": "Gray",
"dark": false,
"author": "Olga Berdnikova",
"editorScheme": "/themes/grayScheme.xml",
"ui": {
"*": {
"background": "#F2F3F5",
"foreground": "#1F1F1F",
"selectionBackground": "#407FC7",
"selectionBackgroundInactive": "#D5D5D5",
"selectionInactiveBackground": "#D5D5D5",
"disabledForeground": "#8C8C8C",
"disabledText": "#8C8C8C",
"inactiveForeground": "#8C8C8C",
"infoForeground": "#808080",
"modifiedItemForeground": "#006be6",
"acceleratorSelectionForeground": "#FFFFFF",
"separatorColor": "#E1E3E6",
"borderColor": "#E1E3E6",
"underlineColor": "#4787d1"
},
"Borders": {
"color": "#e1e3e6",
"ContrastBorderColor": "#E1E3E6"
},
"Button": {
"shadowColor": "#A6A6A620",
"startBorderColor": "#C4C4C4",
"endBorderColor": "#C4C4C4",
"default": {
"foreground": "#FFFFFF",
"startBackground": "#528CC7",
"endBackground": "#4989CC",
"startBorderColor": "#487EB8",
"endBorderColor": "#346DAD",
"shadowColor": "#A6A6A650",
"focusedBorderColor": "#A9C9F5"
}
},
"ComboBox.nonEditableBackground": "#FFFFFF",
"ComboBox.ArrowButton.background": "#f7f8fa",
"ComboBoxButton.background": "#FFFFFF",
"ComboPopup.border": "1,1,1,1,D4D6D9",
"CompletionPopup": {
"selectionBackground": "#cfe5fc",
"selectionInactiveBackground": "#e0e0e0",
"nonFocusedMask": "#FFFFFF35",
"matchForeground": "#0081de",
"selectionForeground": "#1F1F1F",
"selectionInfoForeground": "#808080",
"matchSelectionForeground": "#0081de"
},
"Component": {
"borderColor": "#C4C4C4",
"focusColor": "#84B8F0"
},
"Counter": {
"background": "#9AA7B0",
"foreground": "#FFFFFF"
},
"Editor": {
"background": "#d4d6d9",
"foreground": "#797b80",
"shortcutForeground": "#4274A6"
},
"EditorPane.inactiveBackground": "#F2F3F5",
"EditorTabs": {
"selectedBackground": "#FFFFFF",
"inactiveMaskColor": "#4d4d4d12",
"underlinedTabBackground": "#F2F3F5",
"hoverMaskColor": "#00000015",
"inactiveColoredFileBackground": "#d9d9d950"
},
"DebuggerTabs.selectedBackground": "#F2F3F5",
"FileColor.Yellow": "#F5F0DF",
"FileColor.Green": "#E8F2DF",
"Label.errorForeground": "#C7222D",
"Link": {
"activeForeground": "#2163A6",
"hoverForeground": "#2163A6",
"pressedForeground": "#2163A6",
"visitedForeground": "#2163A6",
"secondaryForeground": "#77a8d9"
},
"Notification": {
"background": "#f7f8fa",
"borderColor": "#D4D6D9",
"MoreButton": {
"background": "#E8E9EB",
"foreground": "#8C8C8C",
"innerBorderColor": "#E8E9EB"
},
"ToolWindow": {
"informativeBackground": "#e1ebd8",
"informativeBorderColor": "#b5c7a5",
"warningBackground": "#f5ebd7",
"warningBorderColor": "#E0CEA8",
"errorForeground": "#1F1F1F",
"errorBackground": "#F5E6E7",
"errorBorderColor": "#E0A8A9"
}
},
"PasswordField.background": "#FFFFFF",
"Plugins": {
"background": "#FFFFFF",
"SearchField.background": "#FFFFFF",
"SectionHeader.foreground": "#808080",
"Tab.selectedBackground": "#D5D6D7",
"Tab.hoverBackground": "#D5D6D7",
"lightSelectionBackground": "#F4F9FF"
},
"Popup": {
"Header": {
"activeBackground": "#E1E2E3",
"inactiveBackground": "#E1E2E3"
},
"separatorForeground": "#999999",
"Advertiser": {
"foreground": "#8C8C8C",
"borderInsets": "3,6,3,0"
}
},
"ProgressBar": {
"trackColor": "#D1D1D1",
"progressColor": "#1E82E6",
"indeterminateStartColor": "#91C5F2",
"indeterminateEndColor": "#1E82E6"
},
"SearchEverywhere": {
"SearchField.background": "#FFFFFF",
"Tab.selectedBackground": "#D5D6D7",
"Advertiser.foreground": "#8C8C8C"
},
"SearchMatch": {
"startBackground": "#FFD080",
"endBackground": "#FFD080"
},
"SidePanel.background": "#F2F3F5",
"SpeedSearch": {
"background": "#D5D6D7",
"borderColor": "#D5D6D7",
"errorForeground": "#C7222D"
},
"TabbedPane": {
"hoverColor": "#E1E2E3",
"contentAreaColor": "#E1E3E6"
},
"Table.stripeColor": "#F2F3F5",
"TableHeader": {
"cellBorder": "3,0,3,0",
"background": "#fafbfc",
"bottomSeparatorColor": "#ebedf0"
},
"TextArea.background": "#FFFFFF",
"TextField.background": "#FFFFFF",
"ToggleButton": {
"onBackground": "#407FC7",
"borderColor": "#C4C4C4"
},
"ToolTip.Actions.background": "#E8E9EB",
"ToolWindow": {
"Header": {
"background": "#E8E9EB",
"inactiveBackground": "#F2F3F5"
},
"HeaderTab": {
"selectedBackground": "#D5D6D7",
"hoverBackground": "#D5D6D7",
"selectedInactiveBackground": "#e1e2e3",
"hoverInactiveBackground": "#e1e2e3"
},
"Button": {
"selectedBackground": "#D5D6D7",
"hoverBackground": "#D5D6D7"
}
},
"Tree.rowHeight": 22,
"VersionControl": {
"Log.Commit.currentBranchBackground": "#e6f0f2",
"FileHistory.Commit.selectedBranchBackground": "#e6f0f2"
}
},
"icons": {
"ColorPalette": {
"Checkbox.Border.Default": "#adadad"
}
}
}

View File

@@ -1,21 +0,0 @@
The MIT License
Copyright (c) 2019 Vlad Volkov https://hiberbee.github.io/intellij-theme
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

View File

@@ -1,313 +0,0 @@
{
"name": "Hiberbee Dark",
"author": "Vlad Volkov",
"dark": true,
"editorScheme": "/colors/Dark.xml",
"colors": {
"black": "#000000",
"consoleBackground": "#191919",
"editorBackground": "#212121",
"panelBackground": "#333333",
"textColor": "#F9F6EF",
"border": "#3c3c3c",
"redMac": "#fb3b45",
"redWin": "#ef6950",
"redMonokaiPro": "#ff6188",
"blueWinPalette": "#409AE1",
"blue": "#78dce8",
"orangeMonokaiPro": "#fc9867",
"greenMonokaiPro": "#a9dc76",
"yellowWinPalette": "#ffc83d",
"yellowMac": "#faaa1f",
"purpleWinPalette": "#b4a0ff",
"purpleMonokaiPro": "#ab9df2",
"greenWinPalette": "#40c5af",
"greyWinPalette": "#b2b2b2",
"panelText": "#a6a6a6",
"desaturatedBlue": "#1e282d",
"desaturatedOrange": "#8049117f",
"green": "#5B8021",
"greyDot15": "#d8d8d8",
"greyDot20": "#cccccc",
"greyDot25": "#bfbfbf",
"greyDot33": "#aaaaaa",
"greyDot50": "#7d7d7d",
"greyDot60": "#666666",
"greyDot65": "#5a5a5a",
"greyDot70": "#4d4d4d",
"greyDot75": "#434343",
"greyDot80": "#323232",
"greyDot85": "#252525",
"greyDot90": "#1f2021",
"lightBlue": "#70D7FF",
"navyDot85": "#191d21",
"navyDot90": "#1f2021",
"red": "#800040",
"transparentGreen": "#5B80217f",
"transparentRed": "#8000407f",
"transparentViolet": "#9478F67f",
"transparentYellow": "#8066357f",
"yellow": "#806635"
},
"icons": {
"ColorPalette": {
"Actions.Blue": "#57D1EB",
"Actions.Green": "#92D923",
"Actions.Grey": "#afafaf",
"Actions.GreyInline": "#7f7f7f",
"Actions.GreyInline.Dark": "#646464",
"Actions.Red": "#ff6188",
"Actions.Yellow": "#FFC83C",
"Objects.BlackText": "#7d7d7d",
"Objects.Blue": "#57D1EB",
"Objects.Green": "#92D923",
"Objects.GreenAndroid": "#92D923",
"Objects.Grey": "#7f7f7f",
"Objects.Pink": "#ffa9ca",
"Objects.Purple": "#9380FF",
"Objects.Red": "#ed005c",
"Objects.RedStatus": "#EC5F5D",
"Objects.Yellow": "#FFC83C",
"Objects.YellowDark": "#FD971F"
}
},
"ui": {
"*": {
"arc": "3",
"shadow": "greyDot75",
"background": "greyDot80",
"borderColor": "greyDot70",
"caretForeground": "yellowMac",
"color": "greyDot50",
"foreground": "greyDot20",
"hoverBackground": "greyDot70",
"selectedBackground": "greyDot85",
"selectedForeground": "greyDot15",
"selectedInactiveBackground": "greyDot70",
"selectionBackground": "navyDot85",
"selectionForeground": "yellowMac",
"separatorColor": "greyDot75",
"underlineHeight": 1
},
"ActionButton": {
"hoverBorderColor": "greyDot50",
"pressedBackground": "greyDot65",
"pressedBorderColor": "greyDot50"
},
"Borders": {
"ContrastBorderColor": "greyDot65",
"color": "border"
},
"Button.default.endBackground": "greyDot80",
"Button.default.endBorderColor": "greyDot65",
"Button.default.focusColor": "greyDot80",
"Button.default.focusedBorderColor": "greyDot15",
"Button.default.foreground": "greyDot15",
"Button.default.startBackground": "greyDot80",
"Button.default.startBorderColor": "greyDot65",
"Button.endBackground": "greyDot80",
"Button.endBorderColor": "greyDot65",
"Button.focusedBorderColor": "yellowMac",
"Button.startBackground": "greyDot80",
"Button.startBorderColor": "greyDot65",
"CheckBox.disabledText": "greyDot33",
"CheckBox.select": "greyDot50",
"CheckBoxMenuItem.disabledBackground": "greyDot80",
"ComboBox.ArrowButton.disabledIconColor": "greyDot50",
"ComboBox.ArrowButton.iconColor": "yellowMac",
"ComboBox.ArrowButton.nonEditableBackground": "greyDot70",
"ComboBox.modifiedItemForeground": "yellowMac",
"ComboBox.disabledForeground": "greyDot80",
"ComboBox.nonEditableBackground": "greyDot75",
"ComboPopup.border": "1,1,1,1,4d4d4d",
"CompletionPopup": {
"nonFocusedMask": "#34343434",
"selectionBackground": "navyDot85",
"foreground": "greyDot20",
"matchForeground": "yellowMac"
},
"Component": {
"arc": "3",
"disabledBorderColor": "greyDot70",
"infoForeground": "greyDot50",
"errorFocusColor": "#F65F87",
"focusColor": "greyDot50",
"focusWidth": "0",
"focusedBorderColor": "greyDot50",
"hoverIconColor": "yellowMac",
"inactiveErrorFocusColor": "transparentRed",
"inactiveWarningFocusColor": "transparentYellow",
"warningFocusColor": "yellow"
},
"Debugger.Variables.changedValueForeground": "yellowMac",
"Debugger.Variables.evaluatingExpressionForeground": "lightBlue",
"DefaultTabs.underlineColor": "yellowMac",
"DefaultTabs.underlineHeight": 1,
"DefaultTabs.underlinedTabBackground": "greyDot75",
"DefaultTabs.underlinedTabForeground": "lightBlue",
"DragAndDrop.areaBackground": "greyDot75",
"DragAndDrop.areaForeground": "greyDot25",
"Editor.background": "greyDot90",
"EditorPane.inactiveBackground": "greyDot85",
"EditorPane.inactiveForeground": "greyDot50",
"EditorTabs.underlineHeight": 1,
"FileColor.Blue": "#23282d",
"FileColor.Green": "#232d28",
"FileColor.Orange": "#2d2823",
"FileColor.Rose": "#2d2323",
"FileColor.Violet": "#2D232D",
"FileColor.Yellow": "#2d2d23",
"FormattedTextField.inactiveBackground": "greyDot80",
"FormattedTextField.background": "greyDot75",
"GutterTooltip.infoForeground": "greyDot50",
"Label": {
"foreground": "greyDot25",
"infoForeground": "greyDot50"
},
"Link.activeForeground": "lightBlue",
"Link.hoverForeground": "yellowMac",
"Link.pressedForeground": "lightBlue",
"Link.visitedForeground": "greyDot25",
"MemoryIndicator.allocatedBackground": "green",
"MemoryIndicator.usedBackground": "red",
"Menu": {
"separatorColor": "greyDot75",
"foreground": "textColor",
"borderColor": "greyDot70",
"acceleratorForeground": "greyDot25"
},
"Notification.MoreButton.innerBorderColor": "greyDot65",
"Notification.ToolWindow.errorBackground": "greyDot85",
"Notification.ToolWindow.errorBorderColor": "#ed005c",
"Notification.ToolWindow.errorForeground": "#F65F87",
"Notification.ToolWindow.informativeBackground": "greyDot85",
"Notification.ToolWindow.informativeBorderColor": "#92D923",
"Notification.ToolWindow.informativeForeground": "#92D923",
"Notification.ToolWindow.warningBackground": "greyDot85",
"Notification.ToolWindow.warningBorderColor": "yellowMac",
"Notification.ToolWindow.warningForeground": "yellowMac",
"Notification.background": "greyDot85",
"Notification.errorBackground": "greyDot85",
"Notification.errorBorderColor": "#ed005c",
"Notification.errorForeground": "#F65F87",
"OptionPane": {
"background": "greyDot80",
"foreground": "greyDot20"
},
"Panel": {
"background": "greyDot80",
"foreground": "greyDot20"
},
"Panel.foreground": "greyDot20",
"ParameterInfo.background": "greyDot85",
"ParameterInfo.foreground": "greyDot25",
"ParameterInfo.currentOverloadBackground": "greyDot65",
"ParameterInfo.currentParameterForeground": "yellowMac",
"ParameterInfo.infoForeground": "greyDot33",
"ParameterInfo.lineSeparatorColor": "greyDot75",
"PasswordField.background": "greyDot75",
"Plugins.Button.installBackground": "greyDot80",
"Plugins.Button.installBorderColor": "greyDot65",
"Plugins.Button.installFillBackground": "greyDot80",
"Plugins.Button.installFillForeground": "greyDot25",
"Plugins.Button.installForeground": "yellowMac",
"Plugins.SearchField.background": "greyDot75",
"Plugins.SectionHeader.background": "greyDot75",
"Plugins.Tab.hoverBackground": "navyDot85",
"Plugins.Tab.selectedBackground": "greyDot85",
"Plugins.background": "greyDot80",
"Plugins.disabledForeground": "greyDot50",
"Plugins.lightSelectionBackground": "navyDot85",
"Plugins.tagBackground": "greyDot85",
"Popup.Advertiser.background": "greyDot85",
"Popup.Advertiser.foreground": "greyDot50",
"Popup.Header.activeBackground": "greyDot75",
"Popup.Header.inactiveBackground": "greyDot85",
"Popup.paintBorder": true,
"PopupMenu.background": "greyDot80",
"PopupMenuSeparator.stripeWidth": 1,
"ProgressBar.failedColor": "#ed005c",
"ProgressBar.failedEndColor": "greyDot75",
"ProgressBar.indeterminateStartColor": "yellowMac",
"ProgressBar.indeterminateEndColor": "#FD971F",
"ProgressBar.passedColor": "#92D923",
"ProgressBar.passedEndColor": "greyDot75",
"ProgressBar.progressColor": "yellowMac",
"ProgressBar.trackColor": "greyDot75",
"RadioButton.background": "greyDot80",
"RadioButtonMenuItem.disabledBackground": "greyDot80",
"ScrollPane.background": "greyDot80",
"SearchEverywhere.Advertiser.foreground": "greyDot50",
"SearchEverywhere.List.separatorForeground": "greyDot50",
"SearchEverywhere.SearchField.infoForeground": "greyDot33",
"SearchEverywhere.SearchField.background": "greyDot75",
"SearchEverywhere.Header.background": "greyDot80",
"SearchEverywhere.Tab.selectedBackground": "greyDot85",
"SearchEverywhere.Tab.selectedForeground": "lightBlue",
"SearchMatch.endBackground": "yellowMac",
"SearchMatch.startBackground": "yellowMac",
"SidePanel.background": "greyDot85",
"SpeedSearch.errorForeground": "#F65F87",
"SpeedSearch.foreground": "yellowMac",
"SplitPane.highlight": "yellowMac",
"PopupMenu.translucentBackground": "greyDot50",
"TabbedPane.disabledUnderlineColor": "greyDot65",
"TabbedPane.focusColor": "greyDot65",
"TabbedPane.tabSelectionHeight": 1,
"TabbedPane.underlineColor": "yellowMac",
"Table.dropLineColor": "greyDot75",
"Table.dropLineShortColor": "greyDot70",
"Table.focusCellBackground": "greyDot85",
"Table.focusCellForeground": "yellowMac",
"Table.sortIconColor": "yellowMac",
"Table.stripeColor": "greyDot75",
"TableHeader.background": "greyDot85",
"TableHeader.bottomSeparatorColor": "greyDot65",
"TextArea.background": "greyDot75",
"TextArea.caretForeground": "yellowMac",
"TextArea.inactiveBackground": "greyDot80",
"TextField.background": "greyDot75",
"TextField.foreground": "greyDot25",
"TextField.caretForeground": "yellowMac",
"TextField.highlight": "greyDot15",
"TextField.inactiveForeground": "greyDot33",
"TextPane.inactiveBackground": "greyDot80",
"TitlePane.background": "greyDot85",
"ToggleButton.buttonColor": "greyDot65",
"ToggleButton.offBackground": "greyDot75",
"ToggleButton.offForeground": "greyDot25",
"ToggleButton.onBackground": "yellowMac",
"ToggleButton.onForeground": "greyDot80",
"ToolBar.borderHandleColor": "greyDot65",
"ToolTip.Actions.background": "greyDot80",
"ToolTip.Actions.infoForeground": "greyDot50",
"ToolTip.background": "greyDot75",
"ToolTip.infoForeground": "greyDot50",
"ToolWindow.Button.hoverBackground": "greyDot65",
"ToolWindow.Button.selectedBackground": "greyDot85",
"ToolWindow.Button.selectedForeground": "lightBlue",
"ToolWindow.Header.background": "greyDot85",
"ToolWindow.Header.inactiveBackground": "greyDot80",
"ToolWindow.HeaderTab.hoverBackground": "greyDot65",
"ToolWindow.HeaderTab.hoverInactiveBackground": "greyDot85",
"ToolWindow.HeaderTab.inactiveUnderlineColor": "greyDot75",
"ToolWindow.HeaderTab.underlineColor": "yellowMac",
"ToolWindow.HeaderTab.underlineHeight": 1,
"ToolWindow.HeaderTab.underlinedTabBackground": "greyDot90",
"ToolWindow.HeaderTab.underlinedTabInactiveBackground": "greyDot75",
"Tree.background": "greyDot85",
"Tree.foreground": "greyDot15",
"Tree.modifiedItemForeground": "yellowMac",
"ValidationTooltip.errorBackground": "greyDot85",
"ValidationTooltip.errorBorderColor": "#ed005c",
"ValidationTooltip.warningBackground": "greyDot85",
"ValidationTooltip.warningBorderColor": "yellowMac",
"VersionControl.FileHistory.Commit.selectedBranchBackground": "greyDot70",
"VersionControl.Log.Commit.currentBranchBackground": "greyDot85",
"VersionControl.Log.Commit.unmatchedForeground": "greyDot25",
"WelcomeScreen.Projects.selectionBackground": "navyDot85",
"WelcomeScreen.Projects.selectionInactiveBackground": "navyDot90",
"WelcomeScreen.separatorColor": "greyDot65",
"Window.border": "1,1,1,1,4d4d4d"
}
}

View File

@@ -1,21 +0,0 @@
The MIT License (MIT)
Copyright (c) 2016 CloudCannon
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -1,456 +0,0 @@
{
"name": "High contrast",
"dark": true,
"author": "JetBrains",
"editorScheme": "/themes/highContrastScheme.xml",
"ui": {
"*": {
"background": "#000000",
"foreground": "#FFFFFF",
"infoForeground": "#E0861F",
"selectionBackground": "#3333FF",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#42424f",
"selectionBackgroundInactive": "#42424F",
"disabledBackground": "#33210C",
"inactiveBackground": "#33210C",
"disabledForeground": "#E0861F",
"disabledText": "#E0861F",
"inactiveForeground": "#E0861F",
"acceleratorForeground": "#E6E6E6",
"acceleratorSelectionForeground": "#E6E6E6",
"errorForeground": "#FA3232",
"borderColor": "#E6E6E6",
"disabledBorderColor": "#AA6E28",
"focusColor": "#1AEBFF",
"focusedBorderColor": "#1AEBFF",
"hoverBorderColor": "#1AEBFF",
"pressedBorderColor": "#1AEBFF",
"separatorColor": "#B3B3B3",
"lineSeparatorColor": "#6A6173"
},
"ActionButton": {
"hoverBackground": "#000000",
"pressedBackground": "#000000"
},
"Button": {
"startBackground": "#000000",
"endBackground": "#000000",
"startBorderColor": "#FFFFFF",
"endBorderColor": "#FFFFFF",
"default": {
"foreground": "#000000",
"startBackground": "#1AEBFF",
"endBackground": "#1AEBFF",
"startBorderColor": "#1AEBFF",
"endBorderColor": "#1AEBFF",
"focusedBorderColor": "#000000"
}
},
"Borders": {
"color": "#b3b3b3",
"ContrastBorderColor": "#B3B3B3"
},
"ComboBox": {
"nonEditableBackground": "#000000",
"modifiedItemForeground": "#4FF0FF",
"ArrowButton": {
"iconColor": "#FFFFFF",
"disabledIconColor": "#AA6E28",
"nonEditableBackground": "#000000"
}
},
"ComboPopup.border": "1,1,1,1,E6E6E6",
"CompletionPopup": {
"matchForeground": "#ED94FF",
"matchSelectionForeground": "#ED94FF"
},
"Component": {
"errorFocusColor": "#E6194B",
"inactiveErrorFocusColor": "#800002",
"warningFocusColor": "#F58231",
"inactiveWarningFocusColor": "#804605",
"iconColor": "#FFFFFF",
"hoverIconColor": "#FFFFFF"
},
"Counter": {
"background": "#FFFFFF",
"foreground": "#000000"
},
"DebuggerPopup.borderColor": "#E6E6E6",
"DebuggerTabs.selectedBackground": "#000080",
"DefaultTabs": {
"underlineColor": "#1AEBFF",
"inactiveUnderlineColor": "#1AEBFF",
"underlineHeight": 5,
"hoverBackground": "#0f6780"
},
"DragAndDrop": {
"areaForeground": "#FFFFFF",
"areaBackground": "#00838f",
"areaBorderColor": "#1AEBFF"
},
"Editor": {
"background": "#1f1f1f",
"foreground": "#CCCCCC",
"shortcutForeground": "#D2F53C"
},
"EditorPane.inactiveBackground": "#000000",
"EditorTabs": {
"selectedForeground": "#FFFFFF",
"selectedBackground": "#0e5d73",
"inactiveMaskColor": "#000000FF",
"underlineColor": "#1AEBFF",
"underlineHeight": 4,
"underlinedTabBackground": "#000000",
"inactiveColoredFileBackground": "#00000000"
},
"FileColor": {
"Yellow": "#381C00",
"Green": "#092E15",
"Blue": "#00004D",
"Violet": "#471747",
"Orange": "#733000",
"Rose": "#4D0F22"
},
"FlameGraph": {
"JVMBackground": "#FFD333",
"JVMSearchNotMatchedBackground": "#806919",
"nativeBackground": "#1AEBFF",
"nativeSearchNotMatchedBackground":"#00838F",
"parentBackground":"#FFFFFF",
"parentSearchNotMatchedBackground": "#757575",
"JVMFocusBackground":"#3333FF",
"JVMFocusSearchNotMatchedBackground": "#3333FF",
"nativeFocusBackground": "#3333FF",
"nativeFocusSearchNotMatchedBackground":"#3333FF",
"parentFocusBackground":"#3333FF",
"parentFocusSearchNotMatchedBackground": "#3333FF",
"JVMFrameForeground":"#000000",
"nativeFrameForeground":"#000000",
"parentFrameForeground":"#000000",
"JVMFocusedFrameForeground": "#FFFFFF",
"nativeFocusedFrameForeground": "#FFFFFF",
"parentFocusedFrameForeground": "#FFFFFF"
},
"InplaceRefactoringPopup": {
"background": "#450073",
"borderColor": "#E6E6E6"
},
"Link": {
"activeForeground": "#D2F53C",
"hoverForeground": "#D2F53C",
"pressedForeground": "#D2F53C",
"visitedForeground": "#D2F53C",
"secondaryForeground": "#D2F53C"
},
"MemoryIndicator": {
"usedBackground": "#3333FF",
"allocatedBackground": "#7e00d9"
},
"NavBar.borderColor": "#b3b3b3",
"Notification": {
"background": "#000080",
"errorForeground": "#FFFFFF",
"errorBackground": "#800002",
"errorBorderColor": "#E6194B",
"MoreButton.innerBorderColor": "#000000",
"ToolWindow": {
"informativeForeground": "#FFFFFF",
"informativeBackground": "#450073",
"informativeBorderColor": "#e6e6e6",
"warningForeground": "#FFFFFF",
"warningBackground": "#804605",
"warningBorderColor": "#F58231",
"errorForeground": "#FFFFFF",
"errorBackground": "#800002",
"errorBorderColor": "#E6194B"
}
},
"ParameterInfo": {
"background": "#281A33",
"foreground": "#CCCCCC",
"currentOverloadBackground": "#450073",
"currentParameterForeground": "#FFFFFF"
},
"Plugins": {
"Tab": {
"selectedForeground": "#FFFFFF",
"selectedBackground": "#3333FF",
"hoverBackground": "#3333FF"
},
"SearchField.borderColor": "#B3B3B3",
"SectionHeader.background": "#000080",
"tagBackground": "#000080",
"tagForeground": "#FFFFFF",
"Button": {
"installForeground": "#1AEBFF",
"installBorderColor":"#1AEBFF",
"installFillForeground": "#000000",
"installFillBackground": "#1AEBFF",
"updateForeground":"#000000",
"updateBackground": "#1AEBFF"
},
"lightSelectionBackground": "#000066"
},
"Popup": {
"paintBorder": true,
"inactiveBorderColor": "#e6e6e6",
"Toolbar.borderColor": "#b3b3b3",
"separatorForeground": "#FFFFFF",
"Header.activeBackground": "#000080",
"Header.inactiveBackground": "#000080",
"Advertiser": {
"background": "#000080",
"borderColor": "#000080",
"borderInsets": "3,8,5,0"
}
},
"PopupMenu": {
"borderWidth": 1,
"borderInsets": "4,1,4,1"
},
"ProgressBar": {
"trackColor": "#404040",
"progressColor": "#FFFFFF",
"indeterminateStartColor": "#FFFFFF",
"indeterminateEndColor": "#1a1a1a",
"failedColor": "#E6194B",
"failedEndColor": "#431C27",
"passedColor": "#00E61F",
"passedEndColor": "#15451E"
},
"ScrollBar": {
"Transparent": {
"thumbColor": "#b3b3b3",
"thumbBorderColor": "#000000C8",
"hoverThumbColor": "#E6E6E6",
"hoverThumbBorderColor": "#000000C8",
"hoverTrackColor": "#E6E6E65A"
},
"thumbColor": "#b3b3b3",
"thumbBorderColor": "#000000C8",
"hoverThumbColor": "#E6E6E6",
"hoverThumbBorderColor": "#000000C8",
"trackColor": "#000000",
"hoverTrackColor": "#E6E6E65A",
"Mac": {
"Transparent": {
"thumbColor": "#A6A6A6",
"thumbBorderColor": "#000000C8",
"hoverThumbColor": "#E6E6E6",
"hoverThumbBorderColor": "#000000C8",
"hoverTrackColor": "#E6E6E65A"
},
"thumbColor": "#A6A6A6",
"thumbBorderColor": "#000000C8",
"hoverThumbColor": "#E6E6E6",
"hoverThumbBorderColor": "#000000C8",
"trackColor": "#000000",
"hoverTrackColor": "#E6E6E65A"
}
},
"SearchEverywhere": {
"Tab": {
"selectedForeground": "#FFFFFF",
"selectedBackground": "#3333FF"
},
"SearchField.borderColor": "#b3b3b3",
"Advertiser": {
"background": "#000080",
"borderInsets": "3,8,5,0"
}
},
"SearchMatch": {
"startBackground": "#FFD333FF",
"endBackground": "#FFD333FF"
},
"SpeedSearch": {
"foreground": "#000000",
"borderColor": "#000000",
"background": "#1AEBFF"
},
"StatusBar.borderColor": "#b3b3b3",
"TabbedPane": {
"underlineColor": "#1AEBFF",
"tabSelectionHeight": 5,
"disabledUnderlineColor": "#AA6E28",
"contentAreaColor": "#b3b3b3",
"hoverColor": "#0f6780",
"focusColor": "#0f6780"
},
"TableHeader": {
"cellBorder": "5,0,5,0",
"background": "#000080"
},
"Table": {
"stripeColor": "#000033",
"lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground":"#FFFFFF",
"lightSelectionBackground": "#000066",
"lightSelectionInactiveBackground":"#383838"
},
"ToggleButton": {
"onForeground": "#FFFFFF",
"onBackground": "#000080",
"offForeground": "#FFFFFF",
"offBackground": "#000000",
"buttonColor": "#FFFFFF",
"borderColor": "#FFFFFF"
},
"ToolTip": {
"background": "#450073",
"Actions.background": "#281A33"
},
"ToolWindow": {
"Header": {
"background": "#450073",
"inactiveBackground": "#281A33"
},
"HeaderTab": {
"selectedBackground": "#9C23D9FF",
"selectedInactiveBackground": "#4D0080FF",
"hoverBackground": "#7e00d9ff",
"hoverInactiveBackground": "#7e00d9FF",
"underlineColor": "#1AEBFF",
"inactiveUnderlineColor": "#1AEBFF",
"underlineHeight": 5
},
"Button": {
"hoverBackground": "#3333FF",
"selectedBackground": "#3333FF",
"selectedForeground": "#FFFFFF"
}
},
"Tree.modifiedItemForeground": "#4FF0FF",
"ValidationTooltip": {
"errorBackground": "#800002",
"errorBorderColor": "#E6194B",
"warningBackground": "#804605",
"warningBorderColor": "#F58231"
},
"VersionControl": {
"Log.Commit": {
"currentBranchBackground": "#0D0D40",
"unmatchedForeground": "#E0861F"
},
"RefLabel": {
"backgroundBase": "#3333FF",
"backgroundBrightness": 0.7
},
"FileHistory.Commit.selectedBranchBackground": "#0D0D40"
},
"WelcomeScreen": {
"Projects.selectionInactiveBackground": "#3333FF",
"separatorColor": "#e6e6e6"
},
"Window.border" : "1,1,1,1,E6E6E6"
},
"icons": {
"ColorPalette": {
"Actions.Grey": "#FFFFFF",
"Actions.Red": "#FF3633",
"Actions.Yellow": "#FFD333",
"Actions.Green": "#00E61F",
"Actions.Blue": "#00EAFF",
"Actions.GreyInline.Dark": "#FFFFFFFF",
"Objects.Grey": "#FFFFFFFF",
"Objects.RedStatus": "#FF4340FF",
"Objects.Red": "#FF4340FF",
"Objects.Pink": "#FF8FA2FF",
"Objects.Yellow": "#FFD333FF",
"Objects.Green": "#00E61FFF",
"Objects.Blue": "#00EAFFFF",
"Objects.Purple": "#A880FFFF",
"Objects.BlackText": "#000000FF",
"Objects.YellowDark": "#FFD333FF",
"Objects.GreenAndroid": "#00E61FFF",
"Checkbox.Background.Default.Dark": "#000000",
"Checkbox.Border.Default.Dark": "#FFFFFF",
"Checkbox.Foreground.Selected.Dark": "#FFFFFF",
"Checkbox.Focus.Wide.Dark": "#1AEBFF",
"Checkbox.Focus.Thin.Default.Dark": "#1AEBFF",
"Checkbox.Focus.Thin.Selected.Dark": "#1AEBFF",
"Checkbox.Background.Disabled.Dark": "#000000",
"Checkbox.Border.Disabled.Dark": "#AA6E28",
"Checkbox.Foreground.Disabled.Dark": "#AA6E28"
}
}
}

View File

@@ -1,21 +0,0 @@
MIT License
Copyright (c) 2019 Artem Bukhonov
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -1,561 +0,0 @@
{
"name": "Light Flat",
"dark": false,
"author": "Nerzhul 500",
"ui": {
"*": {
"//*": "#FF00FF",
"//background": "#FF0000",
"//foreground": "#00FF00",
"//borderColor": "#FF00FF",
"selectionBackground": "#b8d9ff",
"selectionForeground": "#000000",
"selectionInactiveBackground": "#d5dff0",
"selectionInactiveForeground": "#000000"
},
"Panel": {
"background": "#EEEEF2",
"foreground": "#696977"
},
"Borders": {
"color": "#EEEEF2",
"ContrastBorderColor": "#EEEEF2"
},
"NavBar": {
"borderColor": "#D0D0D0"
},
"StatusBar": {
"borderColor": "#EEEEF2"
},
"ToolWindow": {
"Button": {
"selectedBackground": "#D4D4D4",
"selectedForeground": "#5A5A66",
"hoverBackground": "#D4D4D4"
},
"Header": {
"borderColor": "#EEEEF2",
"background": "#EEEEF2",
"inactiveBackground": "#EEEEF2"
},
"HeaderTab": {
"selectedBackground": "#ffffff",
"selectedInactiveBackground": "#ffffff",
"hoverBackground": "#EEEEF2",
"hoverInactiveBackground": "#EEEEF2"
}
},
"SearchEverywhere": {
"Header.background": "#EEEEF2",
"Tab": {
"selectedBackground": "#FFFFFF",
"selectedForeground": "#000000"
},
"SearchField": {
"background": "#FFFFFF",
"borderColor": "#FFFFFF"
},
"List": {
"separatorForeground": "#999999",
"separatorColor": "#EEEEF2"
},
"Advertiser": {
"background": "#EEEEF2",
"borderColor": "#EEEEF2",
"foreground": "#5A5A66"
}
},
"SearchMatch": {
"startBackground": "#e6bd1b",
"endBackground": "#e6bd1b"
},
"SpeedSearch": {
"background": "#f7f0d2",
"borderColor": "#FFFFFF80",
"foreground": "#333333",
"errorForeground": "#d91400"
},
"EditorTabs": {
"borderColor": "#eeeef2",
"underlineColor": "#5397E6",
"selectedBackground": "#FFFFFF",
"inactiveMaskColor": "#EEEEF2"
},
"ScrollBar": {
"background": "#EEEEF2",
"trackColor": "#EEEEF2",
"Mac.trackColor": "#EEEEF2",
"hoverTrackColor": "#EEEEF2",
"Mac.hoverTrackColor": "#EEEEF2",
"Transparent.trackColor": "#EEEEF200",
"Mac.Transparent.trackColor": "#EEEEF200",
"Transparent.hoverTrackColor": "#EEEEF200",
"Mac.Transparent.hoverTrackColor": "#EEEEF200",
"thumbBorderColor": "#88889940",
"Mac.thumbBorderColor": "#88889940",
"hoverThumbBorderColor": "#888899",
"Mac.hoverThumbBorderColor": "#888899",
"thumbColor": "#88889940",
"Mac.thumbColor": "#88889940",
"hoverThumbColor": "#888899",
"Mac.hoverThumbColor": "#888899",
"Transparent.thumbBorderColor": "#88889940",
"Mac.Transparent.thumbBorderColor": "#88889940",
"Transparent.hoverThumbBorderColor": "#888899",
"Mac.Transparent.hoverThumbBorderColor": "#888899",
"Transparent.thumbColor": "#88889940",
"Mac.Transparent.thumbColor": "#88889940",
"Transparent.hoverThumbColor": "#888899",
"Mac.Transparent.hoverThumbColor": "#888899"
},
"CheckBox": {
"background": "#EEEEF2",
"foreground": "#333333"
},
"RadioButton": {
"background": "#EEEEF2",
"foreground": "#333333"
},
"Button": {
"background": "#EEEEF2",
"foreground": "#333333",
"startBorderColor": "#EEEEF2",
"endBorderColor": "#EEEEF2",
"startBackground": "#F8F8F8",
"endBackground": "#F8F8F8",
"default.foreground": "#FFFFFF",
"//default.startBorderColor": "#427aba",
"//default.endBorderColor": "#427aba",
"//default.startBackground": "#b8d9ff",
"//default.endBackground": "#b8d9ff"
},
"ToggleButton": {
"background": "#FF00FF",
"borderColor": "#696977",
"foreground": "#696977",
"buttonColor": "#696977",
"onBackground": "#A8E68E55",
"onForeground": "#217303",
"offBackground": "#F0F0F000",
"offForeground": "#696977"
},
"List": {
"background": "#F8F8F8",
"foreground": "#333333",
"selectionBackground": "#b8d9ff",
"selectionForeground": "#000000"
},
"Spinner": {
"background": "#EEEEF2"
},
"HelpTooltip": {
"background": "#EEEEF2",
"borderColor": "#D0D0D0",
"foreground": "#333333"
},
"ParameterInfo": {
"background": "#F0F0F0",
"currentOverloadBackground": "#b8d9ff",
"borderColor": "#FFFFFF",
"foreground": "#333333",
"currentParameterForeground": "#000000",
"disabledForeground": "#808080",
"infoForeground": "#5A5A66",
"lineSeparatorColor": "#EEEEF2"
},
"Menu": {
"background": "#EEEEF2",
"borderColor": "#D0D0D0",
"foreground": "#333333",
"selectionForeground": "#000000",
"separatorColor": "#D0D0D0",
"acceleratorForeground": "#666666",
"acceleratorSelectionForeground": "#000000"
},
"PopupMenu": {
"borderWidth": 1,
"borderInsets": "1,1,1,1",
"background": "#EEEEF2",
"translucentBackground": "#EEEEF2",
"foreground": "#333333"
},
"Popup": {
"paintBorder": true,
"borderColor": "#D0D0D0",
"inactiveBorderColor": "#D0D0D0",
"separatorColor": "#D0D0D0",
"separatorForeground": "#999999",
"Header": {
"activeBackground": "#EEEEF2",
"inactiveBackground": "#EEEEF2"
},
"Toolbar": {
"background": "#EEEEF2",
"borderColor": "#F8F8F8"
},
"Advertiser": {
"background": "#EEEEF2",
"borderColor": "#EEEEF2",
"foreground": "#5A5A66"
}
},
"MenuBar": {
"background": "#EEEEF2",
"foreground": "#333333",
"borderColor": "#EEEEF2",
"disabledBackground": "#F8F8F8"
},
"MenuItem": {
"background": "#EEEEF2",
"foreground": "#333333",
"selectionBackground": "#b8d9ff",
"selectionForeground": "#000000",
"acceleratorForeground": "#666666",
"acceleratorSelectionForeground": "#000000"
},
"CheckBoxMenuItem": {
"background": "#EEEEF2",
"foreground": "#333333",
"selectionBackground": "#b8d9ff",
"selectionForeground": "#FFFFFF",
"acceleratorForeground": "#666666",
"acceleratorSelectionForeground": "#000000"
},
"RadioButtonMenuItem": {
"background": "#EEEEF2",
"foreground": "#333333",
"selectionBackground": "#b8d9ff",
"selectionForeground": "#FFFFFF",
"acceleratorForeground": "#666666",
"acceleratorSelectionForeground": "#000000"
},
"CompletionPopup": {
"background": "#F8F8F8",
"foreground": "#333333",
"infoForeground": "#999999",
"matchForeground": "#9C5800",
"matchSelectionForeground": "#9C5800"
},
"Label": {
"background": "#EEEEF2",
"foreground": "#333333",
"disabledForeground": "#808080",
"selectedDisabledForeground": "#808080"
},
"ComboBox": {
"foreground": "#333333",
"background": "#EEEEF2",
"disabledForeground": "#808080",
"nonEditableBackground": "#F8F8F8",
"ArrowButton.background": "#F8F8F8",
"ArrowButton.nonEditableBackground": "#F8F8F8"
},
"ComboBoxButton": {
"background": "#F8F8F8"
},
"ComboPopup.border": "1,1,1,1,EEEEF2",
"Tree": {
"background": "#F8F8F8",
"foreground": "#333333"
},
"Notification": {
"background": "#EEEEF2",
"borderColor": "#F0F0F0",
"foreground": "#333333",
"errorBackground": "#FFE3E3",
"errorBorderColor": "#FFEDED",
"errorForeground": "#B5494F",
"ToolWindow": {
"errorBackground": "#FFE3E3",
"errorBorderColor": "#FFEDED",
"errorForeground": "#B5494F",
"warningBackground": "#FAEED5",
"warningBorderColor": "#FFF7E6",
"warningForeground": "#A87300",
"informativeBackground": "#DCF0E1",
"informativeBorderColor": "#E6F5E9",
"informativeForeground": "#378C49"
},
"MoreButton": {
"background": "#EEEEF2",
"innerBorderColor": "#D0D0D0",
"foreground": "#5c85cc"
}
},
"ValidationTooltip": {
"errorBackground": "#FFE3E3",
"errorBorderColor": "#FFEDED",
"warningBackground": "#FAEED5",
"warningBorderColor": "#FFF7E6"
},
"Link": {
"activeForeground": "#5c85cc",
"hoverForeground": "#1295DB",
"pressedForeground": "#5c85cc",
"visitedForeground": "#5c85cc"
},
"Plugins": {
"background": "#FFFFFF",
"lightSelectionBackground": "#b8d9ff",
"SectionHeader": {
"background": "#EEEEF2",
"foreground": "#5A5A66"
},
"Tab": {
"selectedBackground": "#FFFFFF",
"selectedForeground": "#666666",
"hoverBackground": "#EEEEF2"
},
"SearchField": {
"background": "#FFFFFF",
"borderColor": "#EEEEF2"
},
"Button": {
"installFillBackground": "#FFFFFF",
"installFillForeground": "#333333",
"installBackground": "#FFFFFF",
"installBorderColor": "#BFBFBF",
"installForeground": "#333333",
"updateBackground": "#FFFFFF",
"updateBorderColor": "#BFBFBF",
"updateForeground": "#333333"
},
"tagBackground": "#EEEEF2",
"tagForeground": "#5A5A66"
},
"Component": {
"borderColor": "#D0D0D0",
"errorFocusColor": "#DB5860A0",
"inactiveErrorFocusColor": "#DB586060",
"warningFocusColor": "#DE971FA0",
"inactiveWarningFocusColor": "#DE971F60",
"iconColor": "#777787cc",
"hoverIconColor": "#777787cc"
},
"ToolTip": {
"background": "#F8F8F8",
"foreground": "#333333",
"infoForeground": "#333333",
"Actions.background": "#EEEEF2",
"Actions.infoForeground": "#5A5A66"
},
"TextField": {
"background": "#FFFFFF",
"foreground": "#333333",
"inactiveBackground": "#FFFFFF",
"inactiveForeground": "#333333"
},
"FormattedTextField": {
"background": "#FFFFFF",
"foreground": "#333333",
"inactiveBackground": "#FFFFFF",
"inactiveForeground": "#333333"
},
"PasswordField": {
"background": "#FFFFFF",
"foreground": "#333333"
},
"TextArea": {
"background": "#FFFFFF",
"foreground": "#333333",
"inactiveBackground": "#FFFFFF",
"inactiveForeground": "#333333"
},
"ActionButton": {
"hoverBackground": "#F8F8F8",
"hoverBorderColor": "#FFFFFF",
"pressedBackground": "#FFFFFF",
"pressedBorderColor": "#D8D8D8"
},
"Table": {
"background": "#F8F8F8",
"foreground": "#333333",
"stripeColor": "#FFFFFF",
"gridColor": "#EEEEF2",
"sortIconColor": "#777787cc",
"lightSelectionBackground": "#b8d9ff",
"lightSelectionForeground": "#000000",
"lightSelectionInactiveBackground": "#d5dff0",
"lightSelectionInactiveForeground": "#000000"
},
"TableHeader": {
"background": "#66666610",
"foreground": "#666666",
"cellBorder": "1,5,2,5"
},
"ProgressBar": {
"trackColor": "#FFFFFF",
"progressColor": "#777787B0",
"indeterminateStartColor": "#777787B0",
"indeterminateEndColor": "#77778740",
"failedColor": "#d96462B0",
"failedEndColor": "#d9646240",
"passedColor": "#63994dB0",
"passedEndColor": "#63994d40"
},
"Slider": {
"background": "#EEEEF2",
"tickColor": "#999999"
},
"Counter": {
"background": "#777787",
"foreground": "#EEEEF2"
},
"DragAndDrop": {
"areaBackground": "#CCDFFF",
"areaBorderColor": "#CCDFFF",
"areaForeground": "#333333"
},
"Editor": {
"background": "#FFFFFF",
"foreground": "#777787",
"shortcutForeground": "#5c85cc"
},
"FileColor": {
"Rose": "#ffe6e9",
"Orange": "#ffefe6",
"Yellow": "#f7f0d2",
"Green": "#e1eddc",
"Blue": "#dae4f7",
"Violet": "#f1e6ff"
},
"InplaceRefactoringPopup": {
"background": "#EEEEF2",
"borderColor": "#D0D0D0"
},
"TabbedPane": {
"background": "#EEEEF2",
"underlineColor": "#5397e6",
"disabledUnderlineColor": "#CCCCCC",
"contentAreaColor": "#D0D0D0",
"hoverColor": "#D0D0D0"
},
"VersionControl": {
},
"WelcomeScreen": {
"background": "#EEEEF2",
"borderColor": "#FF0000",
"separatorColor": "#D0D0D0",
"captionBackground": "#0000FF",
"captionForeground": "#FFFF00",
"footerBackground": "#FF00FF",
"footerForeground": "#00FFFF",
"headerBackground": "#800000",
"headerForeground": "#008000",
"groupIconBorderColor": "#000080",
"Projects": {
"background": "#EEEEF2",
"selectionBackground": "#b8d9ff",
"selectionInactiveBackground": "#d5dff0"
}
},
"DebuggerTabs.selectedBackground": "#EEEEF2",
"Window.border": "0,0,0,0,FFFFFF33",
"DebuggerPopup.borderColor": "#EEEEF2",
"TitlePane.background": "#EEEEF2",
"Separator.separatorColor": "#EEEEF2",
"SidePanel.background": "#EEEEF2",
"OptionPane.background": "#EEEEF2",
"EditorPane.inactiveBackground": "#EEEEF2",
"EditorPane.foreground": "#333333",
"ScrollPane.background": "#EEEEF2",
"ScrollPane.foreground": "#333333"
},
"icons": {
"ColorPalette": {
"Actions.Grey": "#777787cc",
"Actions.GreyInline": "#777787cc",
"Actions.GreyInline.Dark": "#777787cc",
"Actions.Red": "#d96462cc",
"Actions.Green": "#63994dcc",
"Actions.Blue": "#5c85cccc",
"Actions.Yellow": "#cc9b14cc",
"Objects.Grey": "#777787cc",
"Objects.BlackText": "#383848CC",
"Objects.Red": "#d96462cc",
"Objects.RedStatus": "#d96462cc",
"Objects.Yellow": "#cc9b14cc",
"Objects.YellowDark": "#cc9b14cc",
"Objects.Green": "#63994dcc",
"Objects.GreenAndroid": "#63994dcc",
"Objects.Blue": "#5c85cccc",
"Objects.Purple": "#a663a5cc",
"Objects.Pink": "#d96275cc",
"Checkbox.Border.Default": "#D0D0D0",
"Checkbox.Background.Default": "#FF00FF",
"Checkbox.Foreground.Selected": "#FF00FF"
}
}
}

View File

@@ -1,21 +0,0 @@
The MIT License (MIT)
Copyright (c) 2019 Xinkun Zhang
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -1,205 +0,0 @@
{
"name": "NotReallyMDTheme",
"dark": true,
"author": "zhangxinkun-_-@outlook.com",
"editorScheme": "/Material Theme.xml",
"colors": {
"mySelectionColor": "#3E6183",
"myHoverColor": "#415E83",
"mySelectionAccentColor": "#212E43",
"myTabBlueColor": "#314763",
"myAccentRedColor": "#FF666F",
"mySecondAccentRedColor": "#88373C",
"myThemeBackgroundColor": "#1F292E",
"myHlightControlsColor": "#21384E",
"myControlsColor": "#293840",
"myDisableGreyColor": "#32424A",
"myDisableTxtColor": "#8C8C8C"
},
"ui": {
"*": {
"separatorColor": "#2B3940",
"background": "myThemeBackgroundColor",
"borderColor": "myThemeBackgroundColor",
"disabledForeground": "myDisableTxtColor",
"disabledText": "myDisableTxtColor",
"inactiveForeground": "myDisableTxtColor",
"infoForeground": "#808080",
"modifiedItemForeground": "myAccentRedColor",
"highlight": "myAccentRedColor",
"underlineColor": "myAccentRedColor",
"focusColor": "myAccentRedColor",
"underlinedTabBackground": "myTabBlueColor",
"hoverColor": "myHoverColor",
"selectionBackground": "mySelectionColor",
"selectedBackground": "mySelectionColor",
"pressedBackground": "mySelectionColor"
},
"Tree.rowHeight": 24,
"DefaultTabs.hoverBackground": "mySelectionColor",
"ActionButton.hoverBackground": "mySelectionColor",
"Separator.separatorColor": "myDisableGreyColor",
"Popup": {
"Header.activeBackground": "mySelectionColor",
"Header.inactiveBackground": "myDisableGreyColor",
"borderColor": "mySelectionColor"
},
"SearchEverywhere": {
"Tab.selectedBackground": "myAccentRedColor",
"List.separatorForeground": "myAccentRedColor",
"Header.background": "myTabBlueColor"
},
"Borders.ContrastBorderColor": "myThemeBackgroundColor",
"Borders.color": "myThemeBackgroundColor",
"ToolWindow": {
"Header": {
"borderColor": "myDisableGreyColor",
"inactiveBackground": "myThemeBackgroundColor",
"background": "myThemeBackgroundColor"
},
"HeaderTab": {
"selectedInactiveBackground": "mySelectionColor",
"hoverInactiveBackground": "mySelectionColor"
},
"Button": {
"selectedBackground": "mySelectionColor",
"hoverBackground": "mySelectionColor"
}
},
"TextArea": {
"background": "myControlsColor",
"selectionBackground": "mySelectionColor"
},
"TabbedPane.background": "myControlsColor",
"TextPane.background": "mySelectionColor",
"Button": {
"arc": 0,
"startBackground": "myControlsColor",
"endBackground": "myControlsColor",
"shadowColor": "myControlsColor",
"startBorderColor": "myControlsColor",
"endBorderColor": "myControlsColor",
"focusedBorderColor": "myControlsColor",
"shadowWidth": 2,
"default": {
"foreground": "#FFFFFF",
"startBackground": "myHlightControlsColor",
"endBackground": "myHlightControlsColor",
"startBorderColor": "myHlightControlsColor",
"endBorderColor": "myHlightControlsColor",
"focusedBorderColor": "myHlightControlsColor",
"shadowColor": "myAccentRedColor"
}
},
"ComboBoxButton.background": "myHlightControlsColor",
"ComboBox": {
"ArrowButton.nonEditableBackground": "myDisableGreyColor",
"ArrowButton.iconColor": "myAccentRedColor",
"nonEditableBackground": "myDisableGreyColor"
},
"Component.borderColor": "myDisableGreyColor",
"TextArea.background": "myDisableGreyColor",
"TextField": {
"background": "myDisableGreyColor"
},
"StatusBar": {
"hoverBackground": "mySelectionColor",
"borderColor": "myThemeBackgroundColor"
},
"SplitPane.highlight": "myThemeBackgroundColor",
"ProgressBar": {
"progressColor": "myAccentRedColor",
"trackColor": "myTabBlueColor",
"passedColor": "myAccentRedColor",
"passedEndColor": "myTabBlueColor",
"indeterminateStartColor": "myAccentRedColor",
"indeterminateEndColor": "mySecondAccentRedColor"
},
"Notification": {
"background": "#52316E",
"borderColor": "#52316E"
},
"VersionControl": {
"GitLog": {
"headIconColor": "myAccentRedColor"
},
"Log": {
"Commit.currentBranchBackground": "mySelectionAccentColor"
}
},
"Plugins": {
"lightSelectionBackground": "mySelectionAccentColor",
"Tab.selectedBackground": "mySelectionColor",
"tagBackground": "myThemeBackgroundColor",
"tagForeground": "myAccentRedColor"
},
"VersionControl.FileHistory.Commit.selectedBranchBackground": "myDisableGreyColor",
"Table.stripeColor": "myDisableGreyColor",
"Link": {
"activeForeground": "myAccentRedColor",
"hoverForeground": "myAccentRedColor",
"pressedForeground": "myAccentRedColor",
"visitedForeground": "myAccentRedColor",
"secondaryForeground": "mySecondAccentRedColor"
},
"ParameterInfo": {
"background": "myDisableGreyColor",
"lineSeparatorColor": "myDisableGreyColor",
"currentOverloadBackground": "mySelectionColor",
"currentParameterForeground": "myAccentRedColor"
},
"CompletionPopup": {
"matchForeground": "myAccentRedColor"
},
"SearchMatch": {
"endBackground": "myAccentRedColor",
"startBackground": "myAccentRedColor"
},
"ScrollBar.Transparent.hoverThumbColor": "myAccentRedColor"
},
"icons": {
"/com/intellij/ide/ui/laf/icons/darcula/treeCollapsedSelected.svg": "/icons/nodes/right-arrow.svg",
"/com/intellij/ide/ui/laf/icons/darcula/treeExpandedSelected.svg": "/icons/nodes/down-arrow.svg",
"/com/intellij/ide/ui/laf/icons/darcula/treeCollapsed.svg": "/icons/nodes/right-arrow.svg",
"/com/intellij/ide/ui/laf/icons/darcula/treeExpanded.svg": "/icons/nodes/down-arrow.svg",
"/general/arrowDown.svg": "/icons/nodes/down-arrow.svg",
"/general/arrowRight.svg": "/icons/nodes/right-arrow.svg",
"/process/step_1.svg": "/icons/process/step1.svg",
"/process/step_2.svg": "/icons/process/step2.svg",
"/process/step_3.svg": "/icons/process/step3.svg",
"/process/step_4.svg": "/icons/process/step4.svg",
"/process/step_5.svg": "/icons/process/step5.svg",
"/process/step_6.svg": "/icons/process/step6.svg",
"/process/step_7.svg": "/icons/process/step7.svg",
"/process/step_8.svg": "/icons/process/step8.svg",
"/process/big/step_1.svg": "/icons/process/big/step1.svg",
"/process/big/step_2.svg": "/icons/process/big/step2.svg",
"/process/big/step_3.svg": "/icons/process/big/step3.svg",
"/process/big/step_4.svg": "/icons/process/big/step4.svg",
"/process/big/step_5.svg": "/icons/process/big/step5.svg",
"/process/big/step_6.svg": "/icons/process/big/step6.svg",
"/process/big/step_7.svg": "/icons/process/big/step7.svg",
"/process/big/step_8.svg": "/icons/process/big/step8.svg",
"ColorPalette": {
"Actions.Grey": "#A4AABB",
"Actions.Red": "#E0516B",
"Actions.Blue": "#348DEF",
"Actions.Green": "#29A66C",
"Actions.Yellow": "#E3B610",
"Objects.Grey": "#A4AABB",
"Objects.RedStatus": "#DC445D",
"Objects.Red": "#DE4765",
"Objects.Pink": "#F070A5",
"Objects.Yellow": "#E6BA29",
"Objects.Green": "#1EB070",
"Objects.Blue": "#499DF2",
"Objects.Purple": "#BC8AF2",
"Objects.YellowDark": "#B79108",
"Objects.BlackText": "#0D0E11",
"Checkbox.Foreground.Selected.Dark": "#FF666F",
"Checkbox.Background.Default.Dark": "#32424A",
"Checkbox.Border.Disabled": "#32424A",
"Checkbox.Background.Disabled.Dark": "#1F292E"
}
}
}

View File

@@ -1,21 +0,0 @@
The MIT License (MIT)
Copyright (c) 2019 Berzan Yildiz
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -1,382 +0,0 @@
{
"name": "Monocai",
"dark": true,
"author": "Berzan Yildiz",
"editorScheme": "/themes/Monocai.xml",
"ui": {
"*": {
"background": "#2d2a2f",
"foreground": "#fcfcfb",
"infoForeground": "#727072",
"selectionBackground": "#403e42",
"selectionForeground": "#fcfcfb",
"selectionInactiveBackground": "#2d2a2f",
"selectionBackgroundInactive": "#2d2a2f",
"lightSelectionBackground": "#7f7e7f",
"lightSelectionForeground": "#fcfcfb",
"lightSelectionInactiveBackground": "#2d2a2f",
"lightSelectionInactiveForeground":"#fcfcfb",
"disabledBackground": "#2d2a2f",
"inactiveBackground": "#2d2a2f",
"disabledForeground": "#727072",
"disabledText": "#727072",
"inactiveForeground": "#727072",
"acceleratorForeground": "#2d2a2f",
"acceleratorSelectionForeground": "#2d2a2f",
"errorForeground": "#C4265E",
"borderColor": "#7f7e7f",
"disabledBorderColor": "#727072",
"focusColor": "#727072",
"focusedBorderColor": "#7f7e7f",
"separatorForeground": "#727072",
"separatorColor": "#7f7e7f",
"lineSeparatorColor": "#666666",
"modifiedItemForeground": "#ab9df3"
},
"ActionButton": {
"hoverBackground": "#413d44",
"hoverBorderColor": "#413d44",
"pressedBackground": "#413d44",
"pressedBorderColor": "#413d44"
},
"Borders": {
"color": "#403e42",
"ContrastBorderColor": "#403e42"
},
"Button": {
"startBackground": "#413d44",
"endBackground": "#413d44",
"startBorderColor": "#403e42",
"endBorderColor": "#403e42",
"focusedBorderColor": "#727072",
"default": {
"foreground": "#fcfcfb",
"startBackground": "#78dce9",
"endBackground": "#78dce9",
"startBorderColor": "#78dce9",
"endBorderColor": "#78dce9",
"focusedBorderColor": "#fcfcfb",
"focusColor": "#727072",
"shadowColor": "#2d2a2f"
}
},
"ComboBox": {
"nonEditableBackground": "#413d44",
"background": "#2d2a2f",
"ArrowButton": {
"iconColor": "#7f7e7f",
"disabledIconColor": "#2d2a2f",
"nonEditableBackground": "#413d44"
}
},
"ComboPopup.border": "1,1,1,1,5a5160",
"CompletionPopup": {
"matchForeground": "#ab9df3",
"matchSelectionForeground": "#ab9df3"
},
"Component": {
"errorFocusColor": "#ce5070",
"inactiveErrorFocusColor": "#912f48",
"warningFocusColor": "#777233",
"inactiveWarningFocusColor": "#47441f",
"iconColor": "#727072",
"hoverIconColor": "#7f7e7f"
},
"Counter": {
"background": "#FFFFFF80",
"foreground": "#000000"
},
"DebuggerPopup.borderColor": "#524e66",
"DebuggerTabs.selectedBackground": "#7f7e7f",
"DragAndDrop": {
"areaForeground": "#2d2a2f",
"areaBackground": "#49d3e5",
"areaBorderColor": "#3a6a70"
},
"Editor": {
"background": "#2d2a2f",
"foreground": "#fcfcfb8b",
"shortcutForeground": "#78dce9"
},
"EditorPane.inactiveBackground": "#2d2a2f",
"EditorTabs": {
"selectedForeground": "#fcfcfb",
"selectedBackground": "#2d2a2f",
"underlineColor": "#727072",
"inactiveMaskColor": "#403e42",
"borderColor": "#727072"
},
"FileColor": {
"Yellow": "#5f5026",
"Green": "#465f2c",
"Blue": "#78dce9",
"Violet": "#ab9df3",
"Orange": "#fc9868",
"Rose": "#ff6189"
},
"InplaceRefactoringPopup.borderColor": "#524e66",
"Link": {
"activeForeground": "#7094ff",
"hoverForeground": "#7094FF",
"pressedForeground": "#7094FF",
"visitedForeground": "#7094FF"
},
"NavBar.borderColor": "#1b1d1e",
"Notification": {
"background": "#7f7e7f",
"borderColor": "#2d2a2f",
"errorForeground": "#fcfcfb",
"errorBackground": "#4d232e",
"errorBorderColor": "#802e44",
"MoreButton.innerBorderColor": "#1b1d1e",
"ToolWindow": {
"informativeForeground": "#fcfcfb",
"informativeBackground": "#504559",
"informativeBorderColor": "#3e3942",
"warningForeground": "#fcfcfb",
"warningBackground": "#735822",
"warningBorderColor": "#403013",
"errorForeground": "#fcfcfb",
"errorBackground": "#802d43",
"errorBorderColor": "#4d1c2b"
}
},
"ParameterInfo": {
"background": "#7f7e7f",
"foreground": "#fcfcfb",
"infoForeground": "#999999",
"currentOverloadBackground": "#727072",
"currentParameterForeground": "#fcfcfb"
},
"Plugins": {
"Tab": {
"selectedForeground": "#fcfcfb",
"selectedBackground": "#7f7e7f",
"hoverBackground": "#7f7e7f"
},
"SearchField.borderColor": "#727072",
"SearchField.background": "#2d2a2f",
"SectionHeader.background": "#2d2a2f",
"tagBackground": "#7f7e7f",
"tagForeground": "#fcfcfb",
"Button": {
"installForeground": "#fcfcfb",
"installBorderColor":"#7f7e7f",
"installFillForeground": "#fcfcfb",
"installFillBackground": "#ab9df3",
"updateForeground":"#fcfcfb",
"updateBackground": "#7f7e7f",
"updateBorderColor": "#727072"
}
},
"Popup": {
"paintBorder": true,
"borderColor": "#7f7e7f",
"inactiveBorderColor": "#2d2a2f",
"Toolbar.borderColor": "#1b1d1e",
"Header.activeBackground": "#7f7e7f",
"Header.inactiveBackground": "#7f7e7f",
"Advertiser": {
"foreground": "#727072",
"background": "#403e42",
"borderColor": "#7f7e7f",
"borderInsets": "4,8,3,0"
}
},
"PopupMenu": {
"borderWidth": 1,
"borderInsets": "4,1,4,1"
},
"ProgressBar": {
"trackColor": "#1b1d1e",
"progressColor": "#50a3ed",
"indeterminateStartColor": "#50a3ed",
"indeterminateEndColor": "#78dce9",
"failedColor": "#bd3c5f",
"failedEndColor": "#472c33",
"passedColor": "#A9DC76",
"passedEndColor": "#58723d"
},
"SearchEverywhere": {
"Header.background": "#2d2a2f",
"Tab": {
"selectedForeground": "#fcfcfb",
"selectedBackground": "#2d2a2f"
},
"SearchField":{
"background": "#2d2a2f",
"borderColor": "1b1d1e"
},
"Advertiser.foreground": "#8785a6"
},
"SearchMatch": {
"startBackground": "#cca929",
"endBackground": "#cca929"
},
"SpeedSearch": {
"foreground": "#fcfcfb",
"borderColor": "#434044",
"background": "#2d2a2f",
"errorForeground": "#ff80a1"
},
"StatusBar.borderColor": "#1b1d1e",
"TabbedPane": {
"underlineColor": "#434044",
"disabledUnderlineColor": "#5e5b6b",
"contentAreaColor": "#1b1d1e"
},
"TableHeader.cellBorder": "3,0,3,0",
"Table.stripeColor": "#2d2a2f",
"TextArea": {
"background": "#2d2a2f",
"selectionBackground": "#756c7a"
},
"TextField": {
"background": "#2d2a2f",
"selectionBackground": "#756c7a"
},
"ToggleButton": {
"onForeground": "#fcfcfa",
"onBackground": "#ab9df3",
"offForeground": "#9f9fa6",
"offBackground": "#2d2a2f",
"buttonColor": "#403e42",
"borderColor": "#727072"
},
"ToolTip": {
"background": "#2d2a2f",
"Actions.background": "#443f47"
},
"ToolWindow": {
"Header": {
"inactiveBackground": "#2d2a2f",
"background": "#2d2a2f",
"borderColor": "#403e42"
},
"HeaderTab": {
"selectedBackground": "#727072FF",
"selectedInactiveBackground": "#2d2a2fFF",
"hoverBackground": "#727072FF",
"hoverInactiveBackground": "#2d2a2fFF"
},
"Button": {
"hoverBackground": "#403e42",
"selectedBackground": "#403e42",
"selectedForeground": "#727072"
}
},
"Tree.rowHeight": 20,
"ValidationTooltip": {
"errorBackground": "#802d43",
"errorBorderColor": "#4d1c2b",
"warningBackground": "#735822",
"warningBorderColor": "#403013"
},
"VersionControl": {
"Log.Commit": {
"currentBranchBackground": "#1e1c1e",
"unmatchedForeground": "#727072"
},
"FileHistory.Commit.selectedBranchBackground": "#1e1c1e"
},
"WelcomeScreen": {
"Projects.selectionInactiveBackground": "#524e66",
"separatorColor": "#1b1d1e"
}
},
"icons": {
"ColorPalette": {
"Actions.Grey": "#727072",
"Actions.Red": "#ff6188",
"Actions.Yellow": "#ffd866",
"Actions.Green": "#a9dc76",
"Actions.Blue": "#78dce8",
"Actions.GreyInline.Dark": "#403e42",
"Objects.Grey": "#727072",
"Objects.RedStatus": "#F92672",
"Objects.Red": "#C4265E",
"Objects.Pink": "#f98b9e",
"Objects.Yellow": "#ffd866",
"Objects.Green": "#a9dc76",
"Objects.Blue": "#78dce8",
"Objects.Purple": "#ab9df3",
"Objects.BlackText": "#000000ff",
"Objects.YellowDark": "#B3B42B",
"Objects.GreenAndroid": "#78c257",
"Checkbox.Background.Default.Dark": "#2d2a2f",
"Checkbox.Border.Default.Dark": "#727072",
"Checkbox.Foreground.Selected.Dark": "#fcfcfb",
"Checkbox.Focus.Wide.Dark": "#403e42",
"Checkbox.Focus.Thin.Default.Dark": "#fcfcfb",
"Checkbox.Focus.Thin.Selected.Dark": "#fcfcfb",
"Checkbox.Background.Disabled.Dark": "#2d2a2f",
"Checkbox.Border.Disabled.Dark": "#2d2a2f",
"Checkbox.Foreground.Disabled.Dark": "#fcfcfb"
}
}
}

View File

@@ -1,21 +0,0 @@
MIT License
Copyright (c) 2019 Maciej Turlo
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -1,264 +0,0 @@
{
"name": "Spacegray",
"dark": true,
"author": "Maciej Turlo",
"editorScheme": "/themes/Spacegray.xml",
"ui": {
"*": {
"background": "#232830",
"foreground": "#A7ADBA",
"infoForeground": "#656A75",
"selectionBackground": "#5a6173",
"selectionForeground": "#C0C5CE",
"selectionInactiveBackground": "#383C4A",
"selectionBackgroundInactive": "#383C4A",
"lightSelectionBackground": "#232830",
"lightSelectionForeground": "#C0C5CE",
"lightSelectionInactiveBackground": "#383C4A",
"lightSelectionInactiveForeground": "#C0C5CE",
"disabledBackground": "#232830",
"inactiveBackground": "#232830",
"disabledForeground": "#656A75",
"disabledText": "#656A75",
"inactiveForeground": "#656A75",
"acceleratorForeground": "#C0C5CE",
"acceleratorSelectionForeground": "#C0C5CE",
"errorForeground": "#bf4c53",
"disabledBorderColor": "#383C4A",
"focusColor": "#656A75",
"focusedBorderColor": "#656A75",
"separatorColor": "#383C4A",
"lineSeparatorColor": "#383C4A",
"modifiedItemForeground": "#BF616A"
},
"ActionButton": {
"hoverBackground": "#383C4A",
"hoverBorderColor": "#383C4A",
"pressedBackground": "#383C4A",
"pressedBorderColor": "#383C4A"
},
"Button": {
"arc": 10,
"startBackground": "#383C4A",
"endBackground": "#383C4A",
"startBorderColor": "#5a6173",
"endBorderColor": "#383C4A",
"shadowColor": "#1C1F26",
"default": {
"startBackground": "#383C4A",
"endBackground": "#5a6173",
"startBorderColor": "#5a6173",
"endBorderColor": "#5a6173",
"shadowColor": "#1C1F26"
}
},
"Borders": {
"color": "#232830",
"ContrastBorderColor": "#232830"
},
"ComboBox": {
"nonEditableBackground": "#232830",
"ArrowButton": {
"iconColor": "#A7ADBA",
"disabledIconColor": "#383C4A",
"nonEditableBackground": "#232830"
}
},
"ComboPopup.border": "1,1,1,1,64647A",
"CompletionPopup": {
"matchForeground": "#BF616A"
},
"Component": {
"errorFocusColor": "#bf4c53",
"inactiveErrorFocusColor": "#522530",
"warningFocusColor": "#EBCB8B",
"inactiveWarningFocusColor": "#cba869",
"iconColor": "#656A75",
"hoverIconColor": "#A7ADBA"
},
"Counter": {
"background": "#A7ADBA",
"foreground": "#000000"
},
"DefaultTabs": {
"underlineColor": "#BF616A",
"inactiveUnderlineColor": "#5a6173"
},
"DragAndDrop": {
"areaForeground": "#C0C5CE",
"areaBackground": "#BF616A",
"areaBorderColor": "#5a2d2d"
},
"Editor": {
"shortcutForeground": "#7FA1B3"
},
"EditorPane.inactiveBackground": "#2b303b",
"EditorTabs": {
"selectedBackground": "#2b303b",
"underlinedTabBackground": "#2b303b",
"underlineHeight": "0"
},
"Link": {
"activeForeground": "#7FA1B3",
"hoverForeground": "#7FA1B3",
"pressedForeground": "#7FA1B3",
"visitedForeground": "#7FA1B3"
},
"NavBar.borderColor": "#1C1F26",
"Notification": {
"background": "#2b303b",
"borderColor": "#232830",
"errorForeground": "#C0C5CE",
"errorBackground": "#5a2d2d",
"errorBorderColor": "#5a2d2d",
"MoreButton.innerBorderColor": "#232830",
"ToolWindow": {
"informativeForeground": "#A7ADBA",
"informativeBackground": "#1C1F26",
"informativeBorderColor": "#C0C5CE",
"warningForeground": "#EBCB8B",
"warningBackground": "#232830",
"warningBorderColor": "#cba869",
"errorForeground": "#C0C5CE",
"errorBackground": "#5a2d2d",
"errorBorderColor": "#5a2d2d"
}
},
"ParameterInfo": {
"background": "#383C4A",
"disabledForeground": "#A7ADBA",
"infoForeground": "#A7ADBA",
"currentOverloadBackground": "#5a6173",
"currentParameterForeground": "#C0C5CE"
},
"Popup": {
"paintBorder": false,
"Toolbar.borderColor": "#232830",
"Header.activeBackground": "#232830",
"Header.inactiveBackground": "#232830",
"Advertiser": {
"borderColor": "#383C4A",
"borderInsets": "4,8,3,0"
}
},
"PopupMenu": {
"borderWidth": 1,
"borderInsets": "4,1,4,1"
},
"ProgressBar": {
"trackColor": "#1C1F26",
"progressColor": "#BF616A",
"indeterminateStartColor": "#BF616A",
"indeterminateEndColor": "#5a2d2d",
"failedColor": "#bf4c53",
"failedEndColor": "#5a2d2d",
"passedColor": "#99BD8E",
"passedEndColor": "#62795b"
},
"SearchEverywhere": {
"Header.background": "#1C1F26",
"Tab": {
"selectedForeground": "#C0C5CE",
"selectedBackground": "#232830"
},
"SearchField": {
"borderColor": "#232830"
}
},
"SearchMatch": {
"startBackground": "#EBCB8B",
"endBackground": "#EBCB8B"
},
"SpeedSearch": {
"foreground": "#C0C5CE",
"borderColor": "#232830",
"errorForeground": "#bf4c53"
},
"StatusBar.borderColor": "#232830",
"TabbedPane": {
"underlineColor": "#BF616A",
"disabledUnderlineColor": "#5a6173",
"contentAreaColor": "#232830"
},
"TableHeader.cellBorder": "3,0,3,0",
"Table.stripeColor": "#232830",
"TextArea": {
"selectionBackground": "#000000"
},
"TextField": {
"selectionBackground": "#000000"
},
"ToggleButton": {
"onForeground": "#C0C5CE",
"onBackground": "#232830",
"offForeground": "#5a6173",
"offBackground": "#2b303b"
},
"ToolWindow": {
"Header": {
"background": "#1C1F26",
"inactiveBackground": "#1C1F26",
"borderColor": "#232830"
},
"HeaderTab": {
"selectedBackground": "#232830",
"selectedInactiveBackground": "#232830",
"hoverBackground": "#1C1F26",
"hoverInactiveBackground": "#1C1F26"
},
"Button": {
"hoverBackground": "#1C1F26",
"selectedBackground": "#1C1F26",
"selectedForeground": "#C0C5CE"
}
},
"Tree.rowHeight": 20,
"ValidationTooltip": {
"errorBackground": "#bf4c53",
"errorBorderColor": "#5a2d2d",
"warningBackground": "#EBCB8B",
"warningBorderColor": "#cba869"
},
"VersionControl": {
"Log.Commit": {
"currentBranchBackground": "#2b303b",
"unmatchedForeground": "#5a6173"
},
"FileHistory.Commit.selectedBranchBackground": "#232830"
},
"WelcomeScreen": {
"Projects.selectionInactiveBackground": "#5a6173",
"separatorColor": "#232830"
}
},
"icons": {
"ColorPalette": {
"Actions.Grey": "#A7ADBA",
"Actions.Red": "#BF616A",
"Actions.Yellow": "#EBCB8B",
"Actions.Green": "#99BD8E",
"Actions.Blue": "#7FA1B3",
"Actions.GreyInline.Dark": "#656A75",
"Objects.Grey": "#A7ADBA",
"Objects.RedStatus": "#BF616A",
"Objects.Red": "#BF616A",
"Objects.Pink": "#b487a1",
"Objects.Yellow": "#EBCB8B",
"Objects.Green": "#99BD8E",
"Objects.Blue": "#7FA1B3",
"Objects.Purple": "#B48EAD",
"Objects.BlackText": "#000000",
"Objects.YellowDark": "#cba869",
"Checkbox.Background.Default.Dark": "#2b303b",
"Checkbox.Border.Default.Dark": "#656A75",
"Checkbox.Foreground.Selected.Dark": "#A7ADBA",
"Checkbox.Focus.Wide.Dark": "#a8555d",
"Checkbox.Focus.Thin.Default.Dark": "#BF616A",
"Checkbox.Focus.Thin.Selected.Dark": "#BF616A",
"Checkbox.Background.Disabled.Dark": "#2b303b",
"Checkbox.Border.Disabled.Dark": "#1C1F26",
"Checkbox.Foreground.Disabled.Dark": "#232830"
}
}
}

View File

@@ -1,185 +0,0 @@
{
"name": "Arc Theme - Orange",
"dark": false,
"author": "Pavel Zlámal",
"ui": {
"*": {
"selectionBackground": "#f57900",
"selectionForeground": "#ffffff",
"selectionInactiveBackground": "#C36200",
"selectionBackgroundInactive": "#c36200",
"background" : "#FFFFFF",
"focusColor" : "#f57900"
},
"Borders": {
"color": "#e1e3e6",
"ContrastBorderColor": "#E1E3E6"
},
"Button": {
"shadowColor": "#A6A6A620",
"startBorderColor": "#C4C4C4",
"endBorderColor": "#C4C4C4",
"focusedBorderColor" : "#f57900",
"background" : "#F5F5F5",
"default": {
"foreground": "#FFFFFF",
"startBackground": "#f57900",
"endBackground": "#f57900",
"startBorderColor": "#f57900",
"endBorderColor": "#f57900",
"shadowColor": "#A6A6A650",
"focusedBorderColor": "#f57900"
}
},
"ToolBar.background" : "#F5F5F5",
"Popup.Toolbar.background" : "#F5F5F5",
"Panel.background": "#F5F5F5",
"Panel.foreground" : "#5c616c",
"Window.border" : "1,1,1,1,#5c616c",
"WelcomeScreen.background" : "#F5F5F5",
"WelcomeScreen.Projects.background" : "#ffffff",
"MenuBar.foreground" : "#5c616c",
"Menu.background" : "#ffffff",
"Menu.separatorColor" : "#F5F5F5",
"Menu.foreground" : "#5c616c",
"MenuItem.foreground" : "#5c616c",
"MenuItem.background" : "#ffffff",
"PopupMenuSeparator.height" : "2",
"Separator.separatorColor" : "#9ba2ab",
"Group.separatorColor" : "#9ba2ab",
"Tree.background" : "#ffffff",
"ProgressBar.background" : "#f57900",
"ProgressBar.foreground" : "#f57900",
"ProgressBar.progressColor" : "#f57900",
"ProgressBar.indeterminateStartColor" : "#f57900",
"ProgressBar.indeterminateEndColor" : "#f57900",
"Component.focusedBorderColor" : "#f57900",
"Component.focusColor" : "#f57900",
"Component.focusWidth" : "1",
"Component.arc" : "4",
"Button.arc" : "4",
"SidePanel.background" : "#e7e8eb",
"ParameterInfo.background" : "#fffae3",
"ParameterInfo.currentOverloadBackground" : "#fffae3",
"List.background" : "#ffffff",
"List.dropLineColor" : "#f57900",
"List.selectionBackground": "#f57900",
"List.selectionForeground": "#ffffff",
"List.selectionInactiveBackground": "#C36200",
"Table.background" : "#ffffff",
"Table.selectionBackground" : "#f57900",
"Table.selectionForeground" : "#ffffff",
"Table.lightSelectionBackground" : "#f57900",
"Table.lightSelectionForeground" : "#ffffff",
"Table.focusCellBackground" : "#f57900",
"Table.focusCellForeground" : "#ffffff",
"Table.dropLineColor": "#f57900",
"Table.dropLineShortColor": "#f57900",
"TabbedPane.underlineColor" : "#f57900",
"TabbedPane.tabSelectionHeight" : 2,
"TabbedPane.background" : "#F5F5F5",
"Link.hoverForeground" : "#f57900",
"Link.activeForeground" : "#f57900",
"Link.pressedForeground" : "#f57900",
"Link.visitedForeground" : "#f57900",
"Link.secondaryForeground" : "#f57900",
"Hyperlink.linkColor" : "#f57900",
"ComboBox.background" : "#ffffff",
"ComboBoxButton.background" : "#ffffff",
"ComboBox.ArrowButton.background" : "#ffffff",
"TextField.background" : "#ffffff",
"TextArea.background" : "#ffffff",
"TextPane.background" : "#ffffff",
"PasswordField.background" : "#ffffff",
"FormattedTextField.background" : "#ffffff",
"Editor.background" : "#f5f5f5",
"EditorPane.background" : "#ffffff",
"CheckBox.background" : "#F5F5F5",
"RadioButton.background" : "#F5F5F5",
"Slider.background" : "#F5F5F5",
"Spinner.background" : "#F5F5F5",
"OptionPane.background" : "#F5F5F5",
"CompletionPopup": {
"selectionBackground" : "#F5790055",
"nonFocusedMask": false,
"matchForeground": "#F57900",
"selectionInactiveBackground": "#C36200"
},
"Plugins.lightSelectionBackground" : "#dddee1",
"Plugins.SearchField.background" : "#ffffff",
"Plugins.background" : "#ffffff",
"Plugins.Button.installBackground" : "#f57900",
"Plugins.Button.installForeground" : "#ffffff",
"Plugins.Button.installBorderColor" : "#f57900",
"Plugins.Button.installFillBackground" : "#f57900",
"Plugins.Button.installFillForeground" : "#ffffff",
"Plugins.Button.updateBackground" : "#f57900",
"Plugins.Button.updateForeground" : "#ffffff",
"Plugins.Button.updateBorderColor" : "#f57900",
"Counter.background" : "#5c616c",
"Counter.foreground" : "#ffffff",
"SearchEverywhere.SearchField.background" : "#ffffff",
"SearchEverywhere.Header.background" : "#F5F5F5",
"ToolTip.background" : "#F5F5F5",
"ToolTip.Actions.background" : "#F5F5F5",
"ToolWindow.Header.background" : "#e7e8eb",
"ToolWindow.HeaderTab.selectedBackground" : "#dddee1",
"ToolWindow.HeaderTab.hoverInactiveBackground" : "#dddee1",
"ToolWindow.HeaderTab.selectedInactiveBackground" : "#dddee1",
"ToolWindow.Button.selectedBackground" : "#dddee1",
"ToolWindow.HeaderTab.underlineHeight" : 2,
"ToolWindow.HeaderTab.underlineColor" : "#f57900",
"DefaultTabs.underlineHeight" : 2,
"DefaultTabs.underlineColor" : "#f57900",
"DefaultTabs.background" : "#F5F5F5",
"EditorTabs.underlineHeight" : 2,
"EditorTabs.underlineColor" : "#f57900",
"EditorTabs.background" : "#F5F5F5",
"Notification.background" : "#F5F5F5",
"Notification.MoreButton.background" : "#dddee1",
"ScrollBar.background" : "#F5F5F5"
},
"icons": {
"ColorPalette": {
"Checkbox.Focus.Wide": "#f57900",
"Checkbox.Focus.Thin.Selected": "#f57900",
"Checkbox.Focus.Thin.Default": "#f57900",
"Checkbox.Background.Default": "#ffffff",
"Checkbox.Background.Disabled": "#e1e3e6",
"Checkbox.Background.Selected": "#f57900",
"Checkbox.Foreground.Selected": "#ffffff",
"Checkbox.Border.Default": "#e1e3e6",
"Checkbox.Border.Selected": "#f57900"
}
}
}

View File

@@ -1,185 +0,0 @@
{
"name": "Arc Theme",
"dark": false,
"author": "Pavel Zlámal",
"ui": {
"*": {
"selectionBackground": "#2679db",
"selectionForeground": "#ffffff",
"selectionInactiveBackground": "#1e61b0",
"selectionBackgroundInactive": "#1e61b0",
"background" : "#FFFFFF",
"focusColor" : "#2679db"
},
"Borders": {
"color": "#e1e3e6",
"ContrastBorderColor": "#E1E3E6"
},
"Button": {
"shadowColor": "#A6A6A620",
"startBorderColor": "#C4C4C4",
"endBorderColor": "#C4C4C4",
"focusedBorderColor" : "#2679db",
"background" : "#F5F5F5",
"default": {
"foreground": "#FFFFFF",
"startBackground": "#2679db",
"endBackground": "#2679db",
"startBorderColor": "#2679db",
"endBorderColor": "#2679db",
"shadowColor": "#A6A6A650",
"focusedBorderColor": "#2679db"
}
},
"ToolBar.background" : "#F5F5F5",
"Popup.Toolbar.background" : "#F5F5F5",
"Panel.background": "#F5F5F5",
"Panel.foreground" : "#5c616c",
"Window.border" : "1,1,1,1,#5c616c",
"WelcomeScreen.background" : "#F5F5F5",
"WelcomeScreen.Projects.background" : "#ffffff",
"MenuBar.foreground" : "#5c616c",
"Menu.background" : "#ffffff",
"Menu.separatorColor" : "#F5F5F5",
"Menu.foreground" : "#5c616c",
"MenuItem.foreground" : "#5c616c",
"MenuItem.background" : "#ffffff",
"PopupMenuSeparator.height" : "2",
"Separator.separatorColor" : "#9ba2ab",
"Group.separatorColor" : "#9ba2ab",
"Tree.background" : "#ffffff",
"ProgressBar.background" : "#2679db",
"ProgressBar.foreground" : "#2679db",
"ProgressBar.progressColor" : "#2679db",
"ProgressBar.indeterminateStartColor" : "#2679db",
"ProgressBar.indeterminateEndColor" : "#2679db",
"Component.focusedBorderColor" : "#2679db",
"Component.focusColor" : "#2679db",
"Component.focusWidth" : "1",
"Component.arc" : "4",
"Button.arc" : "4",
"SidePanel.background" : "#e7e8eb",
"ParameterInfo.background" : "#fffae3",
"ParameterInfo.currentOverloadBackground" : "#fffae3",
"List.background" : "#ffffff",
"List.dropLineColor" : "#2679db",
"List.selectionBackground": "#2679db",
"List.selectionForeground": "#ffffff",
"List.selectionInactiveBackground": "#1e61b0",
"Table.background" : "#ffffff",
"Table.selectionBackground" : "#2679db",
"Table.selectionForeground" : "#ffffff",
"Table.lightSelectionBackground" : "#2679db",
"Table.lightSelectionForeground" : "#ffffff",
"Table.focusCellBackground" : "#2679db",
"Table.focusCellForeground" : "#ffffff",
"Table.dropLineColor": "#2679db",
"Table.dropLineShortColor": "#2679db",
"TabbedPane.underlineColor" : "#2679db",
"TabbedPane.tabSelectionHeight" : 2,
"TabbedPane.background" : "#F5F5F5",
"Link.hoverForeground" : "#2679db",
"Link.activeForeground" : "#2679db",
"Link.pressedForeground" : "#2679db",
"Link.visitedForeground" : "#2679db",
"Link.secondaryForeground" : "#2679db",
"Hyperlink.linkColor" : "#2679db",
"ComboBox.background" : "#ffffff",
"ComboBoxButton.background" : "#ffffff",
"ComboBox.ArrowButton.background" : "#ffffff",
"TextField.background" : "#ffffff",
"TextArea.background" : "#ffffff",
"TextPane.background" : "#ffffff",
"PasswordField.background" : "#ffffff",
"FormattedTextField.background" : "#ffffff",
"Editor.background" : "#f5f5f5",
"EditorPane.background" : "#ffffff",
"CheckBox.background" : "#F5F5F5",
"RadioButton.background" : "#F5F5F5",
"Slider.background" : "#F5F5F5",
"Spinner.background" : "#F5F5F5",
"OptionPane.background" : "#F5F5F5",
"CompletionPopup": {
"selectionBackground" : "#2679db55",
"nonFocusedMask": false,
"matchForeground": "#2679db",
"selectionInactiveBackground": "#1e61b0"
},
"Plugins.lightSelectionBackground" : "#dddee1",
"Plugins.SearchField.background" : "#ffffff",
"Plugins.background" : "#ffffff",
"Plugins.Button.installBackground" : "#2679db",
"Plugins.Button.installForeground" : "#ffffff",
"Plugins.Button.installBorderColor" : "#2679db",
"Plugins.Button.installFillBackground" : "#2679db",
"Plugins.Button.installFillForeground" : "#ffffff",
"Plugins.Button.updateBackground" : "#2679db",
"Plugins.Button.updateForeground" : "#ffffff",
"Plugins.Button.updateBorderColor" : "#2679db",
"Counter.background" : "#5c616c",
"Counter.foreground" : "#ffffff",
"SearchEverywhere.SearchField.background" : "#ffffff",
"SearchEverywhere.Header.background" : "#F5F5F5",
"ToolTip.background" : "#F5F5F5",
"ToolTip.Actions.background" : "#F5F5F5",
"ToolWindow.Header.background" : "#e7e8eb",
"ToolWindow.HeaderTab.selectedBackground" : "#dddee1",
"ToolWindow.HeaderTab.hoverInactiveBackground" : "#dddee1",
"ToolWindow.HeaderTab.selectedInactiveBackground" : "#dddee1",
"ToolWindow.Button.selectedBackground" : "#dddee1",
"ToolWindow.HeaderTab.underlineHeight" : 2,
"ToolWindow.HeaderTab.underlineColor" : "#2679db",
"DefaultTabs.underlineHeight" : 2,
"DefaultTabs.underlineColor" : "#2679db",
"DefaultTabs.background" : "#F5F5F5",
"EditorTabs.underlineHeight" : 2,
"EditorTabs.underlineColor" : "#2679db",
"EditorTabs.background" : "#F5F5F5",
"Notification.background" : "#F5F5F5",
"Notification.MoreButton.background" : "#dddee1",
"ScrollBar.background" : "#F5F5F5"
},
"icons": {
"ColorPalette": {
"Checkbox.Focus.Wide": "#2679db",
"Checkbox.Focus.Thin.Selected": "#2679db",
"Checkbox.Focus.Thin.Default": "#2679db",
"Checkbox.Background.Default": "#ffffff",
"Checkbox.Background.Disabled": "#e1e3e6",
"Checkbox.Background.Selected": "#2679db",
"Checkbox.Foreground.Selected": "#ffffff",
"Checkbox.Border.Default": "#e1e3e6",
"Checkbox.Border.Selected": "#2679db"
}
}
}

View File

@@ -1,21 +0,0 @@
MIT License
Copyright (c) 2019 Pavel Zlámal
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -1,162 +0,0 @@
{
"name": "Gruvbox Dark Hard",
"dark": true,
"author": "Vincent Parizet",
"editorScheme": "/gruvbox_dark_hard.xml",
"colors": {
"bg0": "#282828",
"bg0_h": "#1d2021",
"bg0_s": "#32302f",
"bg1": "#3c3836",
"bg2": "#504945",
"bg3": "#665c54",
"bg4": "#7c6f64",
"bg": "#1d2021",
"fg0": "#fbf1c7",
"fg1": "#ebdbb2",
"fg2": "#d5c4a1",
"fg3": "#bdae93",
"fg4": "#a89984",
"fg": "#ebdbb2",
"red0": "#cc241d",
"red1": "#fb4934",
"green0": "#98971a",
"green1": "#b8bb26",
"yellow0": "#d79921",
"yellow1": "#fabd2f",
"blue0": "#458588",
"blue1": "#83a598",
"purple0": "#b16286",
"purple1": "#d3869b",
"aqua0": "#689d6a",
"aqua1": "#8ec07c",
"gray0": "#a89984",
"gray1": "#928374",
"orange0": "#d65d0e",
"orange1": "#fe8019"
},
"ui": {
"*": {
"background": "bg",
"foreground": "fg",
"infoForeground": "fg",
"lightSelectionBackground": "bg1",
"selectionBackground": "#4F4945",
"selectionForeground": "fg0",
"selectionBackgroundInactive": "bg0_s",
"selectionInactiveBackground": "bg0_s",
"selectedBackground": "bg0_h",
"selectedForeground": "fg0",
"selectedInactiveBackground": "bg0_s",
"selectedBackgroundInactive": "bg0_s",
"hoverBackground": "#28282866",
"borderColor": "bg2",
"disabledBorderColor": "bg0_h",
"separatorColor": "bg2"
},
"ActionButton": {
"hoverBackground": "bg2"
},
"Button": {
"startBackground": "bg",
"endBackground": "bg",
"startBorderColor": "bg2",
"endBorderColor": "bg2",
"default": {
"foreground": "fg0",
"startBackground": "#32302F",
"endBackground": "#32302F",
"startBorderColor": "#4F4945",
"endBorderColor": "#4F4945",
"focusedBorderColor": "bg"
}
},
"ComboBox": {
"nonEditableBackground": "bg",
"ArrowButton": {
"iconColor": "fg0",
"disabledIconColor": "fg0",
"nonEditableBackground": "bg"
}
},
"EditorTabs": {
"selectedBackground": "bg0_s",
"underlineColor": "blue1",
"inactiveMaskColor": "#28282866"
},
"ToolWindow": {
"Header": {
"background": "bg0_s",
"inactiveBackground": "bg"
},
"HeaderTab": {
"selectedInactiveBackground": "bg0_h",
"hoverInactiveBackground": "bg0_h"
}
},
"Table": {
"stripeColor": "bg0_s",
"lightSelectionForeground": "fg0",
"lightSelectionInactiveForeground":"fg4",
"lightSelectionBackground": "bg2",
"lightSelectionInactiveBackground":"bg"
},
"FileColor": {
"Yellow": "#fabd2f22",
"Green": "#b8bb2622",
"Blue": "#83a59822",
"Violet": "#d3869b22",
"Orange": "#fe801922",
"Rose": "#cc241d22"
},
"Link": {
"activeForeground": "blue1",
"hoverForeground": "blue1",
"pressedForeground": "blue1",
"visitedForeground": "blue1"
}
},
"icons": {
"ColorPalette": {
"Actions.Grey": "#928374",
"Actions.Red": "#fb4934",
"Actions.Yellow": "#fabd2f",
"Actions.Green": "#98971a",
"Actions.Blue": "#458588",
"Actions.GreyInline.Dark": "#fbf1c7",
"Objects.Grey": "#928374FF",
"Objects.RedStatus": "#fb4934FF",
"Objects.Red": "#fb4934FF",
"Objects.Pink": "#d3869bFF",
"Objects.Yellow": "#fabd2fFF",
"Objects.Green": "#98971aFF",
"Objects.Blue": "#458588FF",
"Objects.Purple": "#b16286FF",
"Objects.BlackText": "#000000FF",
"Objects.YellowDark": "#d79921FF",
"Objects.GreenAndroid": "#b8bb26FF",
"Checkbox.Background.Default.Dark": "#282828",
"Checkbox.Border.Default.Dark": "#fbf1c7",
"Checkbox.Foreground.Selected.Dark": "#fbf1c7",
"Checkbox.Focus.Wide.Dark": "#458588",
"Checkbox.Focus.Thin.Default.Dark": "#458588",
"Checkbox.Focus.Thin.Selected.Dark": "#458588",
"Checkbox.Background.Disabled.Dark": "#282828",
"Checkbox.Border.Disabled.Dark": "#a89984",
"Checkbox.Foreground.Disabled.Dark": "#a89984"
}
}
}

View File

@@ -1,162 +0,0 @@
{
"name": "Gruvbox Dark Medium",
"dark": true,
"author": "Vincent Parizet",
"editorScheme": "/gruvbox_dark_medium.xml",
"colors": {
"bg0": "#282828",
"bg0_h": "#1d2021",
"bg0_s": "#32302f",
"bg1": "#3c3836",
"bg2": "#504945",
"bg3": "#665c54",
"bg4": "#7c6f64",
"bg": "#282828",
"fg0": "#fbf1c7",
"fg1": "#ebdbb2",
"fg2": "#d5c4a1",
"fg3": "#bdae93",
"fg4": "#a89984",
"fg": "#ebdbb2",
"red0": "#cc241d",
"red1": "#fb4934",
"green0": "#98971a",
"green1": "#b8bb26",
"yellow0": "#d79921",
"yellow1": "#fabd2f",
"blue0": "#458588",
"blue1": "#83a598",
"purple0": "#b16286",
"purple1": "#d3869b",
"aqua0": "#689d6a",
"aqua1": "#8ec07c",
"gray0": "#a89984",
"gray1": "#928374",
"orange0": "#d65d0e",
"orange1": "#fe8019"
},
"ui": {
"*": {
"background": "bg",
"foreground": "fg",
"infoForeground": "fg",
"lightSelectionBackground": "bg1",
"selectionBackground": "#4F4945",
"selectionForeground": "fg0",
"selectionBackgroundInactive": "bg0_s",
"selectionInactiveBackground": "bg0_s",
"selectedBackground": "bg0_h",
"selectedForeground": "fg0",
"selectedInactiveBackground": "bg0_s",
"selectedBackgroundInactive": "bg0_s",
"hoverBackground": "#28282866",
"borderColor": "bg2",
"disabledBorderColor": "bg0_h",
"separatorColor": "bg2"
},
"ActionButton": {
"hoverBackground": "bg2"
},
"Button": {
"startBackground": "bg",
"endBackground": "bg",
"startBorderColor": "bg2",
"endBorderColor": "bg2",
"default": {
"foreground": "fg0",
"startBackground": "#32302F",
"endBackground": "#32302F",
"startBorderColor": "#4F4945",
"endBorderColor": "#4F4945",
"focusedBorderColor": "bg"
}
},
"ComboBox": {
"nonEditableBackground": "bg",
"ArrowButton": {
"iconColor": "fg0",
"disabledIconColor": "fg0",
"nonEditableBackground": "bg"
}
},
"EditorTabs": {
"selectedBackground": "bg0_s",
"underlineColor": "blue1",
"inactiveMaskColor": "#28282866"
},
"ToolWindow": {
"Header": {
"background": "bg0_s",
"inactiveBackground": "bg"
},
"HeaderTab": {
"selectedInactiveBackground": "bg0_h",
"hoverInactiveBackground": "bg0_h"
}
},
"Table": {
"stripeColor": "bg0_s",
"lightSelectionForeground": "fg0",
"lightSelectionInactiveForeground":"fg4",
"lightSelectionBackground": "bg2",
"lightSelectionInactiveBackground":"bg"
},
"FileColor": {
"Yellow": "#fabd2f22",
"Green": "#b8bb2622",
"Blue": "#83a59822",
"Violet": "#d3869b22",
"Orange": "#fe801922",
"Rose": "#cc241d22"
},
"Link": {
"activeForeground": "blue1",
"hoverForeground": "blue1",
"pressedForeground": "blue1",
"visitedForeground": "blue1"
}
},
"icons": {
"ColorPalette": {
"Actions.Grey": "#928374",
"Actions.Red": "#fb4934",
"Actions.Yellow": "#fabd2f",
"Actions.Green": "#98971a",
"Actions.Blue": "#458588",
"Actions.GreyInline.Dark": "#fbf1c7",
"Objects.Grey": "#928374FF",
"Objects.RedStatus": "#fb4934FF",
"Objects.Red": "#fb4934FF",
"Objects.Pink": "#d3869bFF",
"Objects.Yellow": "#fabd2fFF",
"Objects.Green": "#98971aFF",
"Objects.Blue": "#458588FF",
"Objects.Purple": "#b16286FF",
"Objects.BlackText": "#000000FF",
"Objects.YellowDark": "#d79921FF",
"Objects.GreenAndroid": "#b8bb26FF",
"Checkbox.Background.Default.Dark": "#282828",
"Checkbox.Border.Default.Dark": "#fbf1c7",
"Checkbox.Foreground.Selected.Dark": "#fbf1c7",
"Checkbox.Focus.Wide.Dark": "#458588",
"Checkbox.Focus.Thin.Default.Dark": "#458588",
"Checkbox.Focus.Thin.Selected.Dark": "#458588",
"Checkbox.Background.Disabled.Dark": "#282828",
"Checkbox.Border.Disabled.Dark": "#a89984",
"Checkbox.Foreground.Disabled.Dark": "#a89984"
}
}
}

View File

@@ -1,162 +0,0 @@
{
"name": "Gruvbox Dark Soft",
"dark": true,
"author": "Vincent Parizet",
"editorScheme": "/gruvbox_dark_soft.xml",
"colors": {
"bg0": "#282828",
"bg0_h": "#1d2021",
"bg0_s": "#32302f",
"bg1": "#3c3836",
"bg2": "#504945",
"bg3": "#665c54",
"bg4": "#7c6f64",
"bg": "#32302f",
"fg0": "#fbf1c7",
"fg1": "#ebdbb2",
"fg2": "#d5c4a1",
"fg3": "#bdae93",
"fg4": "#a89984",
"fg": "#ebdbb2",
"red0": "#cc241d",
"red1": "#fb4934",
"green0": "#98971a",
"green1": "#b8bb26",
"yellow0": "#d79921",
"yellow1": "#fabd2f",
"blue0": "#458588",
"blue1": "#83a598",
"purple0": "#b16286",
"purple1": "#d3869b",
"aqua0": "#689d6a",
"aqua1": "#8ec07c",
"gray0": "#a89984",
"gray1": "#928374",
"orange0": "#d65d0e",
"orange1": "#fe8019"
},
"ui": {
"*": {
"background": "bg",
"foreground": "fg",
"infoForeground": "fg",
"lightSelectionBackground": "bg1",
"selectionBackground": "#4F4945",
"selectionForeground": "fg0",
"selectionBackgroundInactive": "bg0_s",
"selectionInactiveBackground": "bg0_s",
"selectedBackground": "bg0_h",
"selectedForeground": "fg0",
"selectedInactiveBackground": "bg0_s",
"selectedBackgroundInactive": "bg0_s",
"hoverBackground": "#28282866",
"borderColor": "bg2",
"disabledBorderColor": "bg0_h",
"separatorColor": "bg2"
},
"ActionButton": {
"hoverBackground": "bg2"
},
"Button": {
"startBackground": "bg",
"endBackground": "bg",
"startBorderColor": "bg2",
"endBorderColor": "bg2",
"default": {
"foreground": "fg0",
"startBackground": "#32302F",
"endBackground": "#32302F",
"startBorderColor": "#4F4945",
"endBorderColor": "#4F4945",
"focusedBorderColor": "bg"
}
},
"ComboBox": {
"nonEditableBackground": "bg",
"ArrowButton": {
"iconColor": "fg0",
"disabledIconColor": "fg0",
"nonEditableBackground": "bg"
}
},
"EditorTabs": {
"selectedBackground": "bg0_s",
"underlineColor": "blue1",
"inactiveMaskColor": "#28282866"
},
"ToolWindow": {
"Header": {
"background": "bg0_s",
"inactiveBackground": "bg"
},
"HeaderTab": {
"selectedInactiveBackground": "bg0_h",
"hoverInactiveBackground": "bg0_h"
}
},
"Table": {
"stripeColor": "bg0_s",
"lightSelectionForeground": "fg0",
"lightSelectionInactiveForeground":"fg4",
"lightSelectionBackground": "bg2",
"lightSelectionInactiveBackground":"bg"
},
"FileColor": {
"Yellow": "#fabd2f22",
"Green": "#b8bb2622",
"Blue": "#83a59822",
"Violet": "#d3869b22",
"Orange": "#fe801922",
"Rose": "#cc241d22"
},
"Link": {
"activeForeground": "blue1",
"hoverForeground": "blue1",
"pressedForeground": "blue1",
"visitedForeground": "blue1"
}
},
"icons": {
"ColorPalette": {
"Actions.Grey": "#928374",
"Actions.Red": "#fb4934",
"Actions.Yellow": "#fabd2f",
"Actions.Green": "#98971a",
"Actions.Blue": "#458588",
"Actions.GreyInline.Dark": "#fbf1c7",
"Objects.Grey": "#928374FF",
"Objects.RedStatus": "#fb4934FF",
"Objects.Red": "#fb4934FF",
"Objects.Pink": "#d3869bFF",
"Objects.Yellow": "#fabd2fFF",
"Objects.Green": "#98971aFF",
"Objects.Blue": "#458588FF",
"Objects.Purple": "#b16286FF",
"Objects.BlackText": "#000000FF",
"Objects.YellowDark": "#d79921FF",
"Objects.GreenAndroid": "#b8bb26FF",
"Checkbox.Background.Default.Dark": "#282828",
"Checkbox.Border.Default.Dark": "#fbf1c7",
"Checkbox.Foreground.Selected.Dark": "#fbf1c7",
"Checkbox.Focus.Wide.Dark": "#458588",
"Checkbox.Focus.Thin.Default.Dark": "#458588",
"Checkbox.Focus.Thin.Selected.Dark": "#458588",
"Checkbox.Background.Disabled.Dark": "#282828",
"Checkbox.Border.Disabled.Dark": "#a89984",
"Checkbox.Foreground.Disabled.Dark": "#a89984"
}
}
}

View File

@@ -1,21 +0,0 @@
MIT License
Copyright (c) 2019 Vincent Parizet
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -1,917 +0,0 @@
{
"name": "Arc Dark Contrast",
"dark": true,
"author": "Mallowigi",
"editorScheme": "/colors/Arc Dark.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#8b9eb5",
"background": "#2f343f",
"borderColor": "#404552",
"disabledBackground": "#37373d",
"disabledForeground": "#D3DAE3",
"disabledText": "#D3DAE3",
"focusColor": "#08507C",
"focusedBorderColor": "#42A5F5",
"foreground": "#D3DAE3",
"inactiveBackground": "#37373d",
"inactiveForeground": "#8b9eb5",
"infoForeground": "#8b9eb5",
"selectionBackground": "#8888FF",
"selectionBackgroundInactive": "#393f4c",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#393f4c",
"separatorColor": "#404552"
},
"activeCaption": "#2f343f",
"ActionButton": {
"hoverBackground": "#42A5F550",
"hoverBorderColor": "#42A5F550",
"hoverSeparatorColor": "#383C4A",
"focusedBorderColor": "#42A5F550",
"pressedBackground": "#42A5F550",
"pressedBorderColor": "#42A5F550"
},
"Autocomplete": {
"selectionBackground": "#8888FF"
},
"Borders.ContrastBorderColor": "#2f343f",
"Borders.color": "#404552",
"Button": {
"arc": 0,
"background": "#2f343f",
"default": {
"endBackground": "#41416A",
"endBorderColor": "#41416A",
"foreground": "#FFFFFF",
"focusColor": "#42A5F5",
"focusedBorderColor": "#42A5F5",
"shadowColor": "#41416A",
"startBackground": "#41416A",
"startBorderColor": "#41416A"
},
"disabledBorderColor": "#383C4A",
"disabledText": "#D3DAE3",
"endBackground": "#383C4A",
"endBorderColor": "#383C4A",
"focus": "#08507C",
"focusedBorderColor": "#42A5F5",
"foreground": "#8b9eb5",
"highlight": "#FFFFFF",
"mt.background": "#383C4A",
"mt.foreground": "#8b9eb5",
"mt.selectedForeground": "#FFFFFF",
"mt.selection.color1": "#41416A",
"mt.selection.color2": "#41416A",
"startBackground": "#383C4A",
"startBorderColor": "#383C4A",
"shadowColor": "#383C4A",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#404552",
"Tooltip.background": "#262a33"
},
"Content.background": "#262b33",
"CheckBox": {
"background": "#2f343f",
"disabledText": "#D3DAE3",
"foreground": "#D3DAE3",
"select": "#42A5F5"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#8b9eb5",
"acceleratorSelectionForeground": "#8b9eb5",
"background": "#2f343f",
"disabledBackground": "#2f343f",
"disabledForeground": "#D3DAE3",
"foreground": "#D3DAE3",
"selectionBackground": "#8888FF",
"selectionForeground": "#FFFFFF"
},
"ColorChooser": {
"background": "#2f343f",
"foreground": "#D3DAE3",
"swatchesDefaultRecentColor": "#D3DAE3"
},
"ComboBoxButton.background": "#383C4A",
"ComboBox": {
"ArrowButton": {
"background": "#383C4A",
"disabledIconColor": "#D3DAE3",
"iconColor": "#D3DAE3",
"nonEditableBackground": "#2f343f"
},
"background": "#262b33",
"buttonBackground": "#383C4A",
"disabledForeground": "#D3DAE3",
"foreground": "#D3DAE3",
"modifiedItemForeground": "#42A5F5",
"nonEditableBackground": "#393f4c",
"padding": "5,5,5,5",
"selectionBackground": "#41416A",
"selectionForeground": "#FFFFFF"
},
"ComboPopup.border": "#404552",
"CompletionPopup": {
"background": "#393f4c",
"foreground": "#D3DAE3",
"infoForeground": "#8b9eb5",
"matchForeground": "#42A5F5",
"matchSelectionForeground": "#42A5F5",
"nonFocusedState": "false",
"selectedGrayedForeground": "#FFFFFF",
"selectionGrayForeground": "#FFFFFF",
"selectionInactiveInfoForeground": "#8b9eb5",
"selectionInactiveBackground": "#8888FF50",
"selectionBackground": "#8888FF80",
"selectionForeground": "#FFFFFF",
"selectionInfoForeground": "#FFFFFF"
},
"Component": {
"arc": 4,
"borderColor": "#08507C",
"disabledBorderColor": "#383C4A",
"focusColor": "#42A5F5",
"focusedBorderColor": "#42A5F5",
"hoverIconColor": "#42A5F5",
"infoForeground": "#8b9eb5",
"iconColor": "#D3DAE3"
},
"control": "#2f343f",
"controlText": "#8b9eb5",
"Counter": {
"background": "#42A5F5",
"foreground": "#FFFFFF"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#8b9eb5",
"changedValueForeground": "#42A5F5",
"errorMessageForeground": "#CF6A4C",
"evaluatingExpressionForeground": "#8b9eb5",
"exceptionForeground": "#F9EE98",
"modifyingValueForeground": "#42A5F5",
"valueForeground": "#42A5F5"
}
},
"DebuggerTabs": {
"selectedBackground": "#08507C",
"underlinedTabBackground": "#08507C"
},
"DebuggerPopup": {
"borderColor": "#08507C"
},
"DefaultTabs": {
"background": "#2f343f",
"borderColor": "#2f343f",
"hoverBackground": "#41416A",
"hoverColor": "#262b33",
"hoverMaskColor": "#08507C",
"inactiveColoredFileBackground": "#383C4A",
"inactiveUnderlineColor": "#D3DAE3",
"inactiveMaskColor": "#262b33",
"underlineColor": "#42A5F5",
"underlinedTabBackground": "#41416A"
},
"Desktop.background": "#2f343f",
"DialogWrapper.southPanelBackground": "#2f343f",
"DialogWrapper.southPanelDivider": "#2f343f",
"DragAndDrop": {
"areaBackground": "#2f343f",
"areaBorderColor": "#2f343f",
"areaForeground": "#D3DAE3"
},
"Editor": {
"background": "#262b33",
"foreground": "#D3DAE3",
"shortcutForeground": "#8b9eb5"
},
"EditorPane": {
"background": "#262b33",
"caretForeground": "#42A5F5",
"foreground": "#D3DAE3",
"inactiveBackground": "#2f343f",
"inactiveForeground": "#D3DAE3",
"selectionBackground": "#8888FF",
"selectionForeground": "#FFFFFF"
},
"EditorTabs": {
"borderColor": "#393f4c",
"hoverColor": "#08507C",
"hoverMaskColor": "#08507C",
"inactiveMaskColor": "#2f343f",
"inactiveColoredFileBackground": "#2f343f2",
"inactiveUnderlineColor": "#D3DAE3",
"selectedForeground": "#D3DAE3",
"selectedBackground": "#41416A",
"underlineColor": "#42A5F5",
"underlinedTabBackground": "#41416A"
},
"EditorGroupsTabs": {
"background": "#2f343f",
"borderColor": "#393f4c",
"hoverBackground": "#08507C",
"hoverColor": "#08507C",
"inactiveUnderlineColor": "#42A5F5",
"underlineColor": "#42A5F5",
"underlinedTabBackground": "#41416A",
"underlinedTabForeground": "#D3DAE3"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#37373d",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#404552",
"FormattedTextField": {
"background": "#262b33",
"caretForeground": "#42A5F5",
"foreground": "#D3DAE3",
"inactiveBackground": "#383C4A",
"inactiveForeground": "#D3DAE3",
"selectionForeground": "#FFFFFF",
"selectionBackground": "#41416A"
},
"Group": {
"disabledSeparatorColor": "#404552",
"separatorColor": "#404552"
},
"GutterTooltip": {
"infoForeground": "#D3DAE3",
"lineSeparatorColor": "#2f343f"
},
"HeaderColor": {
"active": "#2f343f",
"inactive": "#262b33"
},
"HelpTooltip": {
"background": "#2f343f",
"borderColor": "#404552",
"foreground": "#D3DAE3",
"infoForeground": "#8b9eb5",
"shortcutForeground": "#8b9eb5"
},
"Hyperlink.linkColor": "#42A5F5",
"inactiveCaption": "#393f4c",
"inactiveCaptionBorder": "#2f343f",
"inactiveCaptionText": "#8b9eb5",
"info": "#8b9eb5",
"infoText": "#8b9eb5",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#404552",
"InplaceRefactoringPopup": {
"borderColor": "#2f343f"
},
"InternalFrame": {
"activeTitleForeground": "#D3DAE3",
"background": "#2f343f",
"inactiveTitleForeground": "#8b9eb5"
},
"Label": {
"background": "#2f343f",
"disabledForeground": "#D3DAE3",
"disabledShadow": "#2f343f",
"disabledText": "#D3DAE3",
"foreground": "#D3DAE3",
"infoForeground": "#8b9eb5",
"selectedForeground": "#FFFFFF"
},
"Link": {
"activeForeground": "#42A5F5",
"hoverForeground": "#42A5F5",
"pressedForeground": "#42A5F5",
"secondaryForeground": "#8b9eb5",
"visitedForeground": "#42A5F5"
},
"link.foreground": "#42A5F5",
"List": {
"background": "#393f4c",
"foreground": "#D3DAE3",
"selectionBackground": "#8888FF50",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#09477170"
},
"material": {
"background": "#2f343f",
"branchColor": "#D3DAE3",
"contrast": "#262b33",
"foreground": "#D3DAE3",
"mergeCommits": "#383C4A",
"primaryColor": "#8b9eb5",
"selectionForeground": "#FFFFFF",
"tab.backgroundColor": "#2f343f",
"tab.borderColor": "#42A5F5",
"tagColor": "#8b9eb5"
},
"MemoryIndicator": {
"allocatedBackground": "#393f4c",
"usedColor": "#08507C",
"usedBackground": "#08507C"
},
"Menu": {
"acceleratorForeground": "#8b9eb5",
"acceleratorSelectionForeground": "#FFFFFF",
"background": "#2f343f",
"border": "4,2,4,2",
"borderColor": "#393f4c",
"disabledBackground": "#393f4c",
"disabledForeground": "#D3DAE3",
"foreground": "#D3DAE3",
"selectionBackground": "#8888FF",
"selectionForeground": "#FFFFFF",
"separatorColor": "#404552"
},
"MenuBar": {
"background": "#262b33",
"borderColor": "#2f343f",
"disabledBackground": "#2f343f",
"disabledForeground": "#D3DAE3",
"foreground": "#D3DAE3",
"highlight": "#2f343f",
"selectionBackground": "#8888FF",
"selectionForeground": "#FFFFFF",
"shadow": "#262b33"
},
"MenuItem": {
"acceleratorForeground": "#8b9eb5",
"acceleratorSelectionForeground": "#FFFFFF",
"border": "4,2,4,2",
"background": "#2f343f",
"disabledBackground": "#2f343f",
"disabledForeground": "#D3DAE3",
"foreground": "#D3DAE3",
"selectionBackground": "#8888FF",
"selectionForeground": "#FFFFFF"
},
"NavBar": {
"arrowColor": "#D3DAE3",
"borderColor": "#2f343f"
},
"NewClass": {
"Panel": {
"background": "#2f343f"
},
"SearchField": {
"background": "#262b33"
}
},
"NewPSD.warning": "#42A5F5",
"Notification": {
"background": "#262a33",
"borderColor": "#262a33",
"errorBackground": "#262a33",
"errorBorderColor": "#262a33",
"foreground": "#D3DAE3",
"MoreButton": {
"background": "#383C4A",
"foreground": "#D3DAE3",
"innerBorderColor": "#383C4A"
},
"ToolWindow": {
"errorBackground": "#262a33",
"errorBorderColor": "#262a33",
"informativeBackground": "#262a33",
"informativeBorderColor": "#262a33",
"warningBackground": "#262a33",
"warningBorderColor": "#262a33"
}
},
"OnePixelDivider.background": "#404552",
"OptionPane": {
"background": "#2f343f",
"foreground": "#D3DAE3",
"messageForeground": "#D3DAE3"
},
"Outline": {
"color": "#383C4A",
"focusedColor": "#42A5F5",
"disabledColor": "#D3DAE3"
},
"Panel": {
"background": "#2f343f",
"foreground": "#D3DAE3"
},
"ParameterInfo": {
"background": "#393f4c",
"borderColor": "#41416A",
"currentOverloadBackground": "#41416A",
"currentParameterForeground": "#42A5F5",
"disabledForeground": "#D3DAE3",
"foreground": "#D3DAE3",
"infoForeground": "#8b9eb5",
"lineSeparatorColor": "#41416A"
},
"PasswordField": {
"background": "#262b33",
"capsLockIconColor": "#42A5F5",
"caretForeground": "#42A5F5",
"foreground": "#D3DAE3",
"inactiveForeground": "#D3DAE3",
"selectionBackground": "#41416A",
"selectionForeground": "#FFFFFF"
},
"Plugins": {
"background": "#2f343f",
"disabledForeground": "#D3DAE3",
"eapTagBackground": "#08507C",
"lightSelectionBackground": "#8888FF",
"paidTagBackground": "#08507C",
"selectionBackground": "#8888FF",
"tagForeground": "#42A5F5",
"tagBackground": "#08507C",
"trialTagBackground": "#08507C",
"Button": {
"installBackground": "#383C4A",
"installBorderColor": "#383C4A",
"installForeground": "#D3DAE3",
"installFocusedBackground": "#08507C",
"installFillForeground": "#D3DAE3",
"installFillBackground": "#383C4A",
"updateBackground": "#383C4A",
"updateBorderColor": "#383C4A",
"updateForeground": "#D3DAE3"
},
"SearchField": {
"background": "#262b33",
"borderColor": "#404552"
},
"SectionHeader": {
"background": "#393f4c",
"foreground": "#D3DAE3"
},
"Tab": {
"hoverBackground": "#41416A",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#41416A"
}
},
"Popup": {
"Advertiser": {
"background": "#2f343f",
"borderColor": "#2f343f",
"foreground": "#42A5F5"
},
"borderColor": "#262b33",
"inactiveBorderColor": "#2f343f",
"innerBorderColor": "#393f4c",
"Header": {
"activeBackground": "#2f343f",
"inactiveBackground": "#262b33"
},
"paintBorder": true,
"separatorForeground": "#D3DAE3",
"separatorColor": "#393f4c",
"Toolbar": {
"Floating.background": "#262b33",
"background": "#262b33",
"borderColor": "#262b33"
}
},
"PopupMenu": {
"background": "#2f343f",
"border": "2,0,2,0",
"foreground": "#D3DAE3",
"translucentBackground": "#2f343f"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#2f343f",
"foreground": "#42A5F5",
"indeterminateEndColor": "#42A5F5",
"indeterminateStartColor": "#42A5F5",
"progressColor": "#42A5F5",
"selectionBackground": "#08507C",
"trackColor": "#08507C"
},
"PsiViewer": {
"referenceHighlightColor": "#42A5F5"
},
"RadioButton": {
"background": "#2f343f",
"disabledText": "#D3DAE3",
"foreground": "#D3DAE3"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#8b9eb5",
"acceleratorSelectionForeground": "#8b9eb5",
"background": "#2f343f",
"disabledBackground": "#2f343f",
"disabledForeground": "#D3DAE3",
"foreground": "#D3DAE3",
"selectionBackground": "#8888FF",
"selectionForeground": "#FFFFFF"
},
"ScrollBar": {
"background": "#2f343f",
"hoverThumbBorderColor": "#42A5F5",
"hoverThumbColor": "#42A5F5",
"hoverTrackColor": "#2f343f30",
"Mac": {
"hoverThumbBorderColor": "#42A5F5",
"hoverThumbColor": "#42A5F5",
"hoverTrackColor": "#2f343f30",
"thumbBorderColor": "#42A5F570",
"thumbColor": "#42A5F570",
"trackColor": "#2f343f30",
"Transparent": {
"hoverThumbBorderColor": "#42A5F5",
"hoverThumbColor": "#42A5F5",
"hoverTrackColor": "#2f343f30",
"thumbBorderColor": "#42A5F570",
"thumbColor": "#42A5F570",
"trackColor": "#2f343f30"
}
},
"thumb": "#08507C",
"thumbBorderColor": "#42A5F570",
"thumbColor": "#42A5F570",
"trackColor": "#2f343f30",
"Transparent": {
"hoverThumbBorderColor": "#42A5F5",
"hoverThumbColor": "#42A5F5",
"hoverTrackColor": "#2f343f30",
"thumbBorderColor": "#42A5F570",
"thumbColor": "#42A5F570",
"trackColor": "#2f343f30"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#262b33",
"foreground": "#8b9eb5"
},
"Header": {
"background": "#2f343f"
},
"List": {
"separatorForeground": "#8b9eb5",
"separatorColor": "#404552"
},
"SearchField": {
"background": "#2f343f",
"borderColor": "#262b33",
"infoForeground": "#8b9eb5"
},
"Tab": {
"active.foreground": "#FFFFFF",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#08507C"
}
},
"SearchMatch": {
"endBackground": "#42A5F5",
"startBackground": "#42A5F5"
},
"SearchField.errorBackground": "#262a33",
"Separator": {
"background": "#393f4c",
"foreground": "#393f4c",
"separatorColor": "#393f4c"
},
"SidePanel": {
"background": "#262b33"
},
"Slider": {
"background": "#2f343f",
"buttonBorderColor": "#42A5F5",
"buttonColor": "#42A5F5",
"foreground": "#D3DAE3",
"majorTickLength": 6,
"tickColor": "#393f4c",
"trackColor": "#41416A",
"trackWidth": 7,
"thumb": "#42A5F5"
},
"SpeedSearch": {
"background": "#08507C",
"borderColor": "#404552",
"foreground": "#D3DAE3",
"errorForeground": "#D3DAE3"
},
"Spinner": {
"background": "#2f343f",
"border": "3,3,3,3",
"foreground": "#D3DAE3",
"selectionForeground": "#FFFFFF"
},
"SplitPane": {
"background": "#2f343f",
"highlight": "#262b33"
},
"SplitPaneDivider.draggingColor": "#393f4c",
"StatusBar": {
"borderColor": "#2f343f"
},
"TabbedPane": {
"background": "#2f343f",
"contentAreaColor": "#08507C",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#404552",
"disabledForeground": "#D3DAE3",
"disabledUnderlineColor": "#D3DAE3",
"focus": "#41416A",
"focusColor": "#41416A",
"fontSizeOffset": 0,
"foreground": "#D3DAE3",
"highlight": "#404552",
"hoverColor": "#08507C",
"labelShift": 0,
"selectedForeground": "#FFFFFF",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#42A5F5"
},
"TabbedPane.mt.tab.background": "#262b33",
"Table": {
"background": "#2f343f",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#42A5F5",
"dropLineShortColor": "#42A5F5",
"focusCellBackground": "#41416A",
"focusCellForeground": "#FFFFFF",
"foreground": "#D3DAE3",
"gridColor": "#2f343f",
"highlightOuter": "#41416A",
"lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#8b9eb5",
"lightSelectionInactiveBackground": "#393f4c",
"selectionBackground": "#41416A",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#41416A",
"selectionInactiveForeground": "#FFFFFF",
"sortIconColor": "#D3DAE3",
"stripeColor": "#262b33"
},
"TableHeader": {
"background": "#2f343f",
"borderColor": "#2f343f",
"bottomSeparatorColor": "#393f4c",
"cellBorder": "4,0,4,0",
"disabledForeground": "#D3DAE3",
"foreground": "#D3DAE3",
"focusCellBackground": "#41416A",
"focusCellForeground": "#FFFFFF",
"height": 25,
"separatorColor": "#393f4c"
},
"text": "#8b9eb5",
"textInactiveText": "#8b9eb5",
"textText": "#8b9eb5",
"TextArea": {
"background": "#262b33",
"caretForeground": "#42A5F5",
"foreground": "#D3DAE3",
"inactiveForeground": "#D3DAE3",
"selectionBackground": "#41416A",
"selectionForeground": "#FFFFFF"
},
"TextField": {
"background": "#262b33",
"caretForeground": "#42A5F5",
"foreground": "#D3DAE3",
"inactiveForeground": "#D3DAE3",
"selectionBackground": "#41416A",
"selectionForeground": "#FFFFFF"
},
"TextPane": {
"background": "#262b33",
"caretForeground": "#42A5F5",
"foreground": "#D3DAE3",
"inactiveForeground": "#D3DAE3",
"selectionBackground": "#41416A",
"selectionForeground": "#FFFFFF"
},
"TitlePane": {
"background": "#262b33",
"Button.hoverBackground": "#08507C",
"inactiveBackground": "#2f343f",
"infoForeground": "#8b9eb5",
"inactiveInfoForeground": "#8b9eb5"
},
"TitledBorder.titleColor": "#D3DAE3",
"ToggleButton": {
"borderColor": "#383C4A",
"buttonColor": "#D3DAE3",
"disabledText": "#D3DAE3",
"foreground": "#D3DAE3",
"offForeground": "#2f343f",
"offBackground": "#2f343f",
"onBackground": "#42A5F5",
"onForeground": "#42A5F5"
},
"ToolBar": {
"background": "#262b33",
"borderHandleColor": "#8b9eb5",
"floatingForeground": "#8b9eb5",
"foreground": "#D3DAE3"
},
"ToolTip": {
"Actions.background": "#2f343f",
"Actions.infoForeground": "#8b9eb5",
"background": "#2f343f",
"borderColor": "#08507C",
"foreground": "#D3DAE3",
"infoForeground": "#8b9eb5",
"separatorColor": "#404552",
"shortcutForeground": "#8b9eb5"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#41416A",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#262b33"
},
"Header": {
"background": "#2f343f",
"borderColor": "#393f4c",
"inactiveBackground": "#2f343f"
},
"HeaderCloseButton": {
"background": "#2f343f"
},
"HeaderTab": {
"hoverBackground": "#08507C",
"hoverInactiveBackground": "#393f4c",
"inactiveUnderlineColor": "#42A5F5",
"selectedBackground": "#262b33",
"selectedInactiveBackground": "#262b33",
"underlineColor": "#42A5F5",
"underlinedTabBackground": "#08507C",
"underlinedTabInactiveBackground": "#393f4c"
}
},
"Tree": {
"background": "#262b33",
"foreground": "#8b9eb5",
"hash": "#404552",
"modifiedItemForeground": "#42A5F5",
"rowHeight": 28,
"selectionBackground": "#09477170",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#09477170",
"textBackground": "#262b33"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#404552",
"ColorPicker.background": "#2f343f",
"ColorPicker.foreground": "#D3DAE3",
"Component.borderColor": "#404552",
"Component.background": "#2f343f",
"Component.foreground": "#D3DAE3",
"Connector.borderColor": "#404552",
"Connector.hoverBorderColor": "#08507C",
"Canvas.background": "#262b33",
"highStroke.foreground": "#D3DAE3",
"Label.foreground": "#8b9eb5",
"List.selectionBackground": "#09477170",
"Panel.borderColor": "#404552",
"Panel.background": "#2f343f",
"percent.foreground": "#D3DAE3",
"Placeholder.background": "#2f343f",
"Placeholder.borderColor": "#404552",
"Placeholder.foreground": "#D3DAE3",
"Placeholder.selectedForeground": "#FFFFFF",
"Preview.background": "#2f343f",
"stroke.acceleratorForeground": "#8b9eb5"
},
"ValidationTooltip": {
"errorBackground": "#262a33",
"errorBorderColor": "#262a33",
"warningBackground": "#262a33",
"warningBorderColor": "#262a33"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#2f343f"
},
"GitCommits": {
"graphColor": "#08507C"
},
"GitLog": {
"localBranchIconColor": "#42A5F5",
"otherIconColor": "#8b9eb5",
"remoteBranchIconColor": "#D3DAE3",
"tagIconColor": "#8b9eb5"
},
"HgLog": {
"branchIconColor": "#42A5F5",
"bookmarkIconColor": "#FFFFFF",
"closedBranchIconColor": "#D3DAE3",
"localTagIconColor": "#8b9eb5",
"mqTagIconColor": "#8b9eb5",
"tagIconColor": "#8b9eb5",
"tipIconColor": "#8b9eb5"
},
"Log": {
"Commit.unmatchedForeground": "#8b9eb5",
"Commit.currentBranchBackground": "#393f4c"
},
"RefLabel": {
"foreground": "#FFFFFF",
"backgroundBase": "#08507C"
}
},
"Viewport": {
"background": "#262b33",
"foreground": "#D3DAE3"
},
"WelcomeScreen": {
"background": "#2f343f",
"borderColor": "#2f343f",
"captionBackground": "#262b33",
"captionForeground": "#D3DAE3",
"footerBackground": "#262b33",
"footerForeground": "#D3DAE3",
"headerBackground": "#2f343f",
"headerForeground": "#D3DAE3",
"separatorColor": "#404552",
"Projects": {
"background": "#393f4c",
"selectionBackground": "#8888FF",
"selectionInactiveBackground": "#393f4c"
}
},
"window": "#262b33",
"windowBorder": "#404552",
"windowText": "#8b9eb5",
"Window.border": "#404552"
},
"icons": {
"ColorPalette": {
"#43494A": "#262b33",
"#6B6B6B": "#8b9eb5",
"#A7A7A7": "#2f343f",
"#3D6185": "#42A5F5",
"#466D94": "#42A5F5",
"#3C3F41": "#2f343f",
"#545556": "#D3DAE3",
"#606060": "#D3DAE3",
"#9AA7B0": "#D3DAE3",
"#675133": "#42A5F5",
"Actions.Blue": "#7587A6",
"Actions.Green": "#8F9D6A",
"Actions.Grey": "#8b9eb5",
"Actions.GreyInline": "#747C84",
"Actions.GreyInline.Dark": "#D3DAE3",
"Actions.Red": "#CF6A4C",
"Actions.Yellow": "#F9EE98",
"Checkbox.Background.Default": "#262b33",
"Checkbox.Background.Default.Dark": "#262b33",
"Checkbox.Background.Disabled": "#37373d",
"Checkbox.Background.Disabled.Dark": "#37373d",
"Checkbox.Border.Default": "#404552",
"Checkbox.Border.Default.Dark": "#404552",
"Checkbox.Border.Disabled": "#D3DAE3",
"Checkbox.Border.Disabled.Dark": "#D3DAE3",
"Checkbox.Focus.Thin.Default": "#42A5F5",
"Checkbox.Focus.Thin.Default.Dark": "#42A5F5",
"Checkbox.Focus.Wide": "#42A5F5",
"Checkbox.Focus.Wide.Dark": "#42A5F5",
"Checkbox.Foreground.Disabled": "#D3DAE3",
"Checkbox.Foreground.Disabled.Dark": "#D3DAE3",
"Checkbox.Background.Selected": "#42A5F5",
"Checkbox.Background.Selected.Dark": "#2f343f",
"Checkbox.Border.Selected": "#42A5F5",
"Checkbox.Border.Selected.Dark": "#42A5F5",
"Checkbox.Foreground.Selected": "#42A5F5",
"Checkbox.Foreground.Selected.Dark": "#42A5F5",
"Checkbox.Focus.Thin.Selected": "#D3DAE3",
"Checkbox.Focus.Thin.Selected.Dark": "#D3DAE3",
"Objects.Grey": "#747C84",
"Objects.Blue": "#7587A6",
"Objects.RedStatus": "#CF6A4C",
"Objects.Red": "#CF6A4C",
"Objects.Pink": "#9B859D",
"Objects.Yellow": "#F9EE98",
"Objects.Green": "#8F9D6A",
"Objects.Purple": "#9B859D",
"Objects.BlackText": "#D3DAE3",
"Objects.YellowDark": "#CDA869",
"Objects.GreenAndroid": "#8F9D6A"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "Arc Dark",
"dark": true,
"author": "Mallowigi",
"editorScheme": "/colors/Arc Dark.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#8b9eb5",
"background": "#2f343f",
"borderColor": "#404552",
"disabledBackground": "#37373d",
"disabledForeground": "#D3DAE3",
"disabledText": "#D3DAE3",
"focusColor": "#08507C",
"focusedBorderColor": "#42A5F5",
"foreground": "#D3DAE3",
"inactiveBackground": "#37373d",
"inactiveForeground": "#8b9eb5",
"infoForeground": "#8b9eb5",
"selectionBackground": "#8888FF",
"selectionBackgroundInactive": "#393f4c",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#393f4c",
"separatorColor": "#404552"
},
"activeCaption": "#2f343f",
"ActionButton": {
"hoverBackground": "#42A5F550",
"hoverBorderColor": "#42A5F550",
"hoverSeparatorColor": "#383C4A",
"focusedBorderColor": "#42A5F550",
"pressedBackground": "#42A5F550",
"pressedBorderColor": "#42A5F550"
},
"Autocomplete": {
"selectionBackground": "#8888FF"
},
"Borders.ContrastBorderColor": "#2f343f",
"Borders.color": "#404552",
"Button": {
"arc": 0,
"background": "#2f343f",
"default": {
"endBackground": "#41416A",
"endBorderColor": "#41416A",
"foreground": "#FFFFFF",
"focusColor": "#42A5F5",
"focusedBorderColor": "#42A5F5",
"shadowColor": "#41416A",
"startBackground": "#41416A",
"startBorderColor": "#41416A"
},
"disabledBorderColor": "#383C4A",
"disabledText": "#D3DAE3",
"endBackground": "#383C4A",
"endBorderColor": "#383C4A",
"focus": "#08507C",
"focusedBorderColor": "#42A5F5",
"foreground": "#8b9eb5",
"highlight": "#FFFFFF",
"mt.background": "#383C4A",
"mt.foreground": "#8b9eb5",
"mt.selectedForeground": "#FFFFFF",
"mt.selection.color1": "#41416A",
"mt.selection.color2": "#41416A",
"startBackground": "#383C4A",
"startBorderColor": "#383C4A",
"shadowColor": "#383C4A",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#404552",
"Tooltip.background": "#262a33"
},
"Content.background": "#262b33",
"CheckBox": {
"background": "#2f343f",
"disabledText": "#D3DAE3",
"foreground": "#D3DAE3",
"select": "#42A5F5"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#8b9eb5",
"acceleratorSelectionForeground": "#8b9eb5",
"background": "#2f343f",
"disabledBackground": "#2f343f",
"disabledForeground": "#D3DAE3",
"foreground": "#D3DAE3",
"selectionBackground": "#8888FF",
"selectionForeground": "#FFFFFF"
},
"ColorChooser": {
"background": "#2f343f",
"foreground": "#D3DAE3",
"swatchesDefaultRecentColor": "#D3DAE3"
},
"ComboBoxButton.background": "#383C4A",
"ComboBox": {
"ArrowButton": {
"background": "#383C4A",
"disabledIconColor": "#D3DAE3",
"iconColor": "#D3DAE3",
"nonEditableBackground": "#2f343f"
},
"background": "#2f343f",
"buttonBackground": "#383C4A",
"disabledForeground": "#D3DAE3",
"foreground": "#D3DAE3",
"modifiedItemForeground": "#42A5F5",
"nonEditableBackground": "#393f4c",
"padding": "5,5,5,5",
"selectionBackground": "#41416A",
"selectionForeground": "#FFFFFF"
},
"ComboPopup.border": "#404552",
"CompletionPopup": {
"background": "#393f4c",
"foreground": "#D3DAE3",
"infoForeground": "#8b9eb5",
"matchForeground": "#42A5F5",
"matchSelectionForeground": "#42A5F5",
"nonFocusedState": "false",
"selectedGrayedForeground": "#FFFFFF",
"selectionGrayForeground": "#FFFFFF",
"selectionInactiveInfoForeground": "#8b9eb5",
"selectionInactiveBackground": "#8888FF50",
"selectionBackground": "#8888FF80",
"selectionForeground": "#FFFFFF",
"selectionInfoForeground": "#FFFFFF"
},
"Component": {
"arc": 4,
"borderColor": "#08507C",
"disabledBorderColor": "#383C4A",
"focusColor": "#42A5F5",
"focusedBorderColor": "#42A5F5",
"hoverIconColor": "#42A5F5",
"infoForeground": "#8b9eb5",
"iconColor": "#D3DAE3"
},
"control": "#2f343f",
"controlText": "#8b9eb5",
"Counter": {
"background": "#42A5F5",
"foreground": "#FFFFFF"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#8b9eb5",
"changedValueForeground": "#42A5F5",
"errorMessageForeground": "#CF6A4C",
"evaluatingExpressionForeground": "#8b9eb5",
"exceptionForeground": "#F9EE98",
"modifyingValueForeground": "#42A5F5",
"valueForeground": "#42A5F5"
}
},
"DebuggerTabs": {
"selectedBackground": "#08507C",
"underlinedTabBackground": "#08507C"
},
"DebuggerPopup": {
"borderColor": "#08507C"
},
"DefaultTabs": {
"background": "#2f343f",
"borderColor": "#2f343f",
"hoverBackground": "#41416A",
"hoverColor": "#2f343f",
"hoverMaskColor": "#08507C",
"inactiveColoredFileBackground": "#383C4A",
"inactiveUnderlineColor": "#D3DAE3",
"inactiveMaskColor": "#2f343f",
"underlineColor": "#42A5F5",
"underlinedTabBackground": "#41416A"
},
"Desktop.background": "#2f343f",
"DialogWrapper.southPanelBackground": "#2f343f",
"DialogWrapper.southPanelDivider": "#2f343f",
"DragAndDrop": {
"areaBackground": "#2f343f",
"areaBorderColor": "#2f343f",
"areaForeground": "#D3DAE3"
},
"Editor": {
"background": "#2f343f",
"foreground": "#D3DAE3",
"shortcutForeground": "#8b9eb5"
},
"EditorPane": {
"background": "#2f343f",
"caretForeground": "#42A5F5",
"foreground": "#D3DAE3",
"inactiveBackground": "#2f343f",
"inactiveForeground": "#D3DAE3",
"selectionBackground": "#8888FF",
"selectionForeground": "#FFFFFF"
},
"EditorTabs": {
"borderColor": "#393f4c",
"hoverColor": "#08507C",
"hoverMaskColor": "#08507C",
"inactiveMaskColor": "#2f343f",
"inactiveColoredFileBackground": "#2f343f2",
"inactiveUnderlineColor": "#D3DAE3",
"selectedForeground": "#D3DAE3",
"selectedBackground": "#41416A",
"underlineColor": "#42A5F5",
"underlinedTabBackground": "#41416A"
},
"EditorGroupsTabs": {
"background": "#2f343f",
"borderColor": "#393f4c",
"hoverBackground": "#08507C",
"hoverColor": "#08507C",
"inactiveUnderlineColor": "#42A5F5",
"underlineColor": "#42A5F5",
"underlinedTabBackground": "#41416A",
"underlinedTabForeground": "#D3DAE3"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#37373d",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#404552",
"FormattedTextField": {
"background": "#2f343f",
"caretForeground": "#42A5F5",
"foreground": "#D3DAE3",
"inactiveBackground": "#383C4A",
"inactiveForeground": "#D3DAE3",
"selectionForeground": "#FFFFFF",
"selectionBackground": "#41416A"
},
"Group": {
"disabledSeparatorColor": "#404552",
"separatorColor": "#404552"
},
"GutterTooltip": {
"infoForeground": "#D3DAE3",
"lineSeparatorColor": "#2f343f"
},
"HeaderColor": {
"active": "#2f343f",
"inactive": "#262b33"
},
"HelpTooltip": {
"background": "#2f343f",
"borderColor": "#404552",
"foreground": "#D3DAE3",
"infoForeground": "#8b9eb5",
"shortcutForeground": "#8b9eb5"
},
"Hyperlink.linkColor": "#42A5F5",
"inactiveCaption": "#393f4c",
"inactiveCaptionBorder": "#2f343f",
"inactiveCaptionText": "#8b9eb5",
"info": "#8b9eb5",
"infoText": "#8b9eb5",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#404552",
"InplaceRefactoringPopup": {
"borderColor": "#2f343f"
},
"InternalFrame": {
"activeTitleForeground": "#D3DAE3",
"background": "#2f343f",
"inactiveTitleForeground": "#8b9eb5"
},
"Label": {
"background": "#2f343f",
"disabledForeground": "#D3DAE3",
"disabledShadow": "#2f343f",
"disabledText": "#D3DAE3",
"foreground": "#D3DAE3",
"infoForeground": "#8b9eb5",
"selectedForeground": "#FFFFFF"
},
"Link": {
"activeForeground": "#42A5F5",
"hoverForeground": "#42A5F5",
"pressedForeground": "#42A5F5",
"secondaryForeground": "#8b9eb5",
"visitedForeground": "#42A5F5"
},
"link.foreground": "#42A5F5",
"List": {
"background": "#393f4c",
"foreground": "#D3DAE3",
"selectionBackground": "#8888FF50",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#09477170"
},
"material": {
"background": "#2f343f",
"branchColor": "#D3DAE3",
"contrast": "#262b33",
"foreground": "#D3DAE3",
"mergeCommits": "#383C4A",
"primaryColor": "#8b9eb5",
"selectionForeground": "#FFFFFF",
"tab.backgroundColor": "#2f343f",
"tab.borderColor": "#42A5F5",
"tagColor": "#8b9eb5"
},
"MemoryIndicator": {
"allocatedBackground": "#393f4c",
"usedColor": "#08507C",
"usedBackground": "#08507C"
},
"Menu": {
"acceleratorForeground": "#8b9eb5",
"acceleratorSelectionForeground": "#FFFFFF",
"background": "#2f343f",
"border": "4,2,4,2",
"borderColor": "#393f4c",
"disabledBackground": "#393f4c",
"disabledForeground": "#D3DAE3",
"foreground": "#D3DAE3",
"selectionBackground": "#8888FF",
"selectionForeground": "#FFFFFF",
"separatorColor": "#404552"
},
"MenuBar": {
"background": "#2f343f",
"borderColor": "#2f343f",
"disabledBackground": "#2f343f",
"disabledForeground": "#D3DAE3",
"foreground": "#D3DAE3",
"highlight": "#2f343f",
"selectionBackground": "#8888FF",
"selectionForeground": "#FFFFFF",
"shadow": "#2f343f"
},
"MenuItem": {
"acceleratorForeground": "#8b9eb5",
"acceleratorSelectionForeground": "#FFFFFF",
"border": "4,2,4,2",
"background": "#2f343f",
"disabledBackground": "#2f343f",
"disabledForeground": "#D3DAE3",
"foreground": "#D3DAE3",
"selectionBackground": "#8888FF",
"selectionForeground": "#FFFFFF"
},
"NavBar": {
"arrowColor": "#D3DAE3",
"borderColor": "#2f343f"
},
"NewClass": {
"Panel": {
"background": "#2f343f"
},
"SearchField": {
"background": "#2f343f"
}
},
"NewPSD.warning": "#42A5F5",
"Notification": {
"background": "#262a33",
"borderColor": "#262a33",
"errorBackground": "#262a33",
"errorBorderColor": "#262a33",
"foreground": "#D3DAE3",
"MoreButton": {
"background": "#383C4A",
"foreground": "#D3DAE3",
"innerBorderColor": "#383C4A"
},
"ToolWindow": {
"errorBackground": "#262a33",
"errorBorderColor": "#262a33",
"informativeBackground": "#262a33",
"informativeBorderColor": "#262a33",
"warningBackground": "#262a33",
"warningBorderColor": "#262a33"
}
},
"OnePixelDivider.background": "#404552",
"OptionPane": {
"background": "#2f343f",
"foreground": "#D3DAE3",
"messageForeground": "#D3DAE3"
},
"Outline": {
"color": "#383C4A",
"focusedColor": "#42A5F5",
"disabledColor": "#D3DAE3"
},
"Panel": {
"background": "#2f343f",
"foreground": "#D3DAE3"
},
"ParameterInfo": {
"background": "#393f4c",
"borderColor": "#41416A",
"currentOverloadBackground": "#41416A",
"currentParameterForeground": "#42A5F5",
"disabledForeground": "#D3DAE3",
"foreground": "#D3DAE3",
"infoForeground": "#8b9eb5",
"lineSeparatorColor": "#41416A"
},
"PasswordField": {
"background": "#2f343f",
"capsLockIconColor": "#42A5F5",
"caretForeground": "#42A5F5",
"foreground": "#D3DAE3",
"inactiveForeground": "#D3DAE3",
"selectionBackground": "#41416A",
"selectionForeground": "#FFFFFF"
},
"Plugins": {
"background": "#2f343f",
"disabledForeground": "#D3DAE3",
"eapTagBackground": "#08507C",
"lightSelectionBackground": "#8888FF",
"paidTagBackground": "#08507C",
"selectionBackground": "#8888FF",
"tagForeground": "#42A5F5",
"tagBackground": "#08507C",
"trialTagBackground": "#08507C",
"Button": {
"installBackground": "#383C4A",
"installBorderColor": "#383C4A",
"installForeground": "#D3DAE3",
"installFocusedBackground": "#08507C",
"installFillForeground": "#D3DAE3",
"installFillBackground": "#383C4A",
"updateBackground": "#383C4A",
"updateBorderColor": "#383C4A",
"updateForeground": "#D3DAE3"
},
"SearchField": {
"background": "#2f343f",
"borderColor": "#404552"
},
"SectionHeader": {
"background": "#393f4c",
"foreground": "#D3DAE3"
},
"Tab": {
"hoverBackground": "#41416A",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#41416A"
}
},
"Popup": {
"Advertiser": {
"background": "#2f343f",
"borderColor": "#2f343f",
"foreground": "#42A5F5"
},
"borderColor": "#262b33",
"inactiveBorderColor": "#2f343f",
"innerBorderColor": "#393f4c",
"Header": {
"activeBackground": "#2f343f",
"inactiveBackground": "#262b33"
},
"paintBorder": true,
"separatorForeground": "#D3DAE3",
"separatorColor": "#393f4c",
"Toolbar": {
"Floating.background": "#262b33",
"background": "#262b33",
"borderColor": "#262b33"
}
},
"PopupMenu": {
"background": "#2f343f",
"border": "2,0,2,0",
"foreground": "#D3DAE3",
"translucentBackground": "#2f343f"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#2f343f",
"foreground": "#42A5F5",
"indeterminateEndColor": "#42A5F5",
"indeterminateStartColor": "#42A5F5",
"progressColor": "#42A5F5",
"selectionBackground": "#08507C",
"trackColor": "#08507C"
},
"PsiViewer": {
"referenceHighlightColor": "#42A5F5"
},
"RadioButton": {
"background": "#2f343f",
"disabledText": "#D3DAE3",
"foreground": "#D3DAE3"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#8b9eb5",
"acceleratorSelectionForeground": "#8b9eb5",
"background": "#2f343f",
"disabledBackground": "#2f343f",
"disabledForeground": "#D3DAE3",
"foreground": "#D3DAE3",
"selectionBackground": "#8888FF",
"selectionForeground": "#FFFFFF"
},
"ScrollBar": {
"background": "#2f343f",
"hoverThumbBorderColor": "#42A5F5",
"hoverThumbColor": "#42A5F5",
"hoverTrackColor": "#2f343f30",
"Mac": {
"hoverThumbBorderColor": "#42A5F5",
"hoverThumbColor": "#42A5F5",
"hoverTrackColor": "#2f343f30",
"thumbBorderColor": "#42A5F570",
"thumbColor": "#42A5F570",
"trackColor": "#2f343f30",
"Transparent": {
"hoverThumbBorderColor": "#42A5F5",
"hoverThumbColor": "#42A5F5",
"hoverTrackColor": "#2f343f30",
"thumbBorderColor": "#42A5F570",
"thumbColor": "#42A5F570",
"trackColor": "#2f343f30"
}
},
"thumb": "#08507C",
"thumbBorderColor": "#42A5F570",
"thumbColor": "#42A5F570",
"trackColor": "#2f343f30",
"Transparent": {
"hoverThumbBorderColor": "#42A5F5",
"hoverThumbColor": "#42A5F5",
"hoverTrackColor": "#2f343f30",
"thumbBorderColor": "#42A5F570",
"thumbColor": "#42A5F570",
"trackColor": "#2f343f30"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#262b33",
"foreground": "#8b9eb5"
},
"Header": {
"background": "#2f343f"
},
"List": {
"separatorForeground": "#8b9eb5",
"separatorColor": "#404552"
},
"SearchField": {
"background": "#2f343f",
"borderColor": "#262b33",
"infoForeground": "#8b9eb5"
},
"Tab": {
"active.foreground": "#FFFFFF",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#08507C"
}
},
"SearchMatch": {
"endBackground": "#42A5F5",
"startBackground": "#42A5F5"
},
"SearchField.errorBackground": "#262a33",
"Separator": {
"background": "#393f4c",
"foreground": "#393f4c",
"separatorColor": "#393f4c"
},
"SidePanel": {
"background": "#2f343f"
},
"Slider": {
"background": "#2f343f",
"buttonBorderColor": "#42A5F5",
"buttonColor": "#42A5F5",
"foreground": "#D3DAE3",
"majorTickLength": 6,
"tickColor": "#393f4c",
"trackColor": "#41416A",
"trackWidth": 7,
"thumb": "#42A5F5"
},
"SpeedSearch": {
"background": "#08507C",
"borderColor": "#404552",
"foreground": "#D3DAE3",
"errorForeground": "#D3DAE3"
},
"Spinner": {
"background": "#2f343f",
"border": "3,3,3,3",
"foreground": "#D3DAE3",
"selectionForeground": "#FFFFFF"
},
"SplitPane": {
"background": "#2f343f",
"highlight": "#2f343f"
},
"SplitPaneDivider.draggingColor": "#393f4c",
"StatusBar": {
"borderColor": "#2f343f"
},
"TabbedPane": {
"background": "#2f343f",
"contentAreaColor": "#08507C",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#404552",
"disabledForeground": "#D3DAE3",
"disabledUnderlineColor": "#D3DAE3",
"focus": "#41416A",
"focusColor": "#41416A",
"fontSizeOffset": 0,
"foreground": "#D3DAE3",
"highlight": "#404552",
"hoverColor": "#08507C",
"labelShift": 0,
"selectedForeground": "#FFFFFF",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#42A5F5"
},
"TabbedPane.mt.tab.background": "#2f343f",
"Table": {
"background": "#2f343f",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#42A5F5",
"dropLineShortColor": "#42A5F5",
"focusCellBackground": "#41416A",
"focusCellForeground": "#FFFFFF",
"foreground": "#D3DAE3",
"gridColor": "#2f343f",
"highlightOuter": "#41416A",
"lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#8b9eb5",
"lightSelectionInactiveBackground": "#393f4c",
"selectionBackground": "#41416A",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#41416A",
"selectionInactiveForeground": "#FFFFFF",
"sortIconColor": "#D3DAE3",
"stripeColor": "#262b33"
},
"TableHeader": {
"background": "#2f343f",
"borderColor": "#2f343f",
"bottomSeparatorColor": "#393f4c",
"cellBorder": "4,0,4,0",
"disabledForeground": "#D3DAE3",
"foreground": "#D3DAE3",
"focusCellBackground": "#41416A",
"focusCellForeground": "#FFFFFF",
"height": 25,
"separatorColor": "#393f4c"
},
"text": "#8b9eb5",
"textInactiveText": "#8b9eb5",
"textText": "#8b9eb5",
"TextArea": {
"background": "#2f343f",
"caretForeground": "#42A5F5",
"foreground": "#D3DAE3",
"inactiveForeground": "#D3DAE3",
"selectionBackground": "#41416A",
"selectionForeground": "#FFFFFF"
},
"TextField": {
"background": "#2f343f",
"caretForeground": "#42A5F5",
"foreground": "#D3DAE3",
"inactiveForeground": "#D3DAE3",
"selectionBackground": "#41416A",
"selectionForeground": "#FFFFFF"
},
"TextPane": {
"background": "#2f343f",
"caretForeground": "#42A5F5",
"foreground": "#D3DAE3",
"inactiveForeground": "#D3DAE3",
"selectionBackground": "#41416A",
"selectionForeground": "#FFFFFF"
},
"TitlePane": {
"background": "#262b33",
"Button.hoverBackground": "#08507C",
"inactiveBackground": "#2f343f",
"infoForeground": "#8b9eb5",
"inactiveInfoForeground": "#8b9eb5"
},
"TitledBorder.titleColor": "#D3DAE3",
"ToggleButton": {
"borderColor": "#383C4A",
"buttonColor": "#D3DAE3",
"disabledText": "#D3DAE3",
"foreground": "#D3DAE3",
"offForeground": "#2f343f",
"offBackground": "#2f343f",
"onBackground": "#42A5F5",
"onForeground": "#42A5F5"
},
"ToolBar": {
"background": "#2f343f",
"borderHandleColor": "#8b9eb5",
"floatingForeground": "#8b9eb5",
"foreground": "#D3DAE3"
},
"ToolTip": {
"Actions.background": "#2f343f",
"Actions.infoForeground": "#8b9eb5",
"background": "#2f343f",
"borderColor": "#08507C",
"foreground": "#D3DAE3",
"infoForeground": "#8b9eb5",
"separatorColor": "#404552",
"shortcutForeground": "#8b9eb5"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#41416A",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#262b33"
},
"Header": {
"background": "#2f343f",
"borderColor": "#393f4c",
"inactiveBackground": "#2f343f"
},
"HeaderCloseButton": {
"background": "#2f343f"
},
"HeaderTab": {
"hoverBackground": "#08507C",
"hoverInactiveBackground": "#393f4c",
"inactiveUnderlineColor": "#42A5F5",
"selectedBackground": "#262b33",
"selectedInactiveBackground": "#262b33",
"underlineColor": "#42A5F5",
"underlinedTabBackground": "#08507C",
"underlinedTabInactiveBackground": "#393f4c"
}
},
"Tree": {
"background": "#2f343f",
"foreground": "#8b9eb5",
"hash": "#404552",
"modifiedItemForeground": "#42A5F5",
"rowHeight": 28,
"selectionBackground": "#09477170",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#09477170",
"textBackground": "#2f343f"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#404552",
"ColorPicker.background": "#2f343f",
"ColorPicker.foreground": "#D3DAE3",
"Component.borderColor": "#404552",
"Component.background": "#2f343f",
"Component.foreground": "#D3DAE3",
"Connector.borderColor": "#404552",
"Connector.hoverBorderColor": "#08507C",
"Canvas.background": "#262b33",
"highStroke.foreground": "#D3DAE3",
"Label.foreground": "#8b9eb5",
"List.selectionBackground": "#09477170",
"Panel.borderColor": "#404552",
"Panel.background": "#2f343f",
"percent.foreground": "#D3DAE3",
"Placeholder.background": "#2f343f",
"Placeholder.borderColor": "#404552",
"Placeholder.foreground": "#D3DAE3",
"Placeholder.selectedForeground": "#FFFFFF",
"Preview.background": "#2f343f",
"stroke.acceleratorForeground": "#8b9eb5"
},
"ValidationTooltip": {
"errorBackground": "#262a33",
"errorBorderColor": "#262a33",
"warningBackground": "#262a33",
"warningBorderColor": "#262a33"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#2f343f"
},
"GitCommits": {
"graphColor": "#08507C"
},
"GitLog": {
"localBranchIconColor": "#42A5F5",
"otherIconColor": "#8b9eb5",
"remoteBranchIconColor": "#D3DAE3",
"tagIconColor": "#8b9eb5"
},
"HgLog": {
"branchIconColor": "#42A5F5",
"bookmarkIconColor": "#FFFFFF",
"closedBranchIconColor": "#D3DAE3",
"localTagIconColor": "#8b9eb5",
"mqTagIconColor": "#8b9eb5",
"tagIconColor": "#8b9eb5",
"tipIconColor": "#8b9eb5"
},
"Log": {
"Commit.unmatchedForeground": "#8b9eb5",
"Commit.currentBranchBackground": "#393f4c"
},
"RefLabel": {
"foreground": "#FFFFFF",
"backgroundBase": "#08507C"
}
},
"Viewport": {
"background": "#2f343f",
"foreground": "#D3DAE3"
},
"WelcomeScreen": {
"background": "#2f343f",
"borderColor": "#2f343f",
"captionBackground": "#262b33",
"captionForeground": "#D3DAE3",
"footerBackground": "#262b33",
"footerForeground": "#D3DAE3",
"headerBackground": "#2f343f",
"headerForeground": "#D3DAE3",
"separatorColor": "#404552",
"Projects": {
"background": "#393f4c",
"selectionBackground": "#8888FF",
"selectionInactiveBackground": "#393f4c"
}
},
"window": "#2f343f",
"windowBorder": "#404552",
"windowText": "#8b9eb5",
"Window.border": "#404552"
},
"icons": {
"ColorPalette": {
"#43494A": "#262b33",
"#6B6B6B": "#8b9eb5",
"#A7A7A7": "#2f343f",
"#3D6185": "#42A5F5",
"#466D94": "#42A5F5",
"#3C3F41": "#2f343f",
"#545556": "#D3DAE3",
"#606060": "#D3DAE3",
"#9AA7B0": "#D3DAE3",
"#675133": "#42A5F5",
"Actions.Blue": "#7587A6",
"Actions.Green": "#8F9D6A",
"Actions.Grey": "#8b9eb5",
"Actions.GreyInline": "#747C84",
"Actions.GreyInline.Dark": "#D3DAE3",
"Actions.Red": "#CF6A4C",
"Actions.Yellow": "#F9EE98",
"Checkbox.Background.Default": "#262b33",
"Checkbox.Background.Default.Dark": "#262b33",
"Checkbox.Background.Disabled": "#37373d",
"Checkbox.Background.Disabled.Dark": "#37373d",
"Checkbox.Border.Default": "#404552",
"Checkbox.Border.Default.Dark": "#404552",
"Checkbox.Border.Disabled": "#D3DAE3",
"Checkbox.Border.Disabled.Dark": "#D3DAE3",
"Checkbox.Focus.Thin.Default": "#42A5F5",
"Checkbox.Focus.Thin.Default.Dark": "#42A5F5",
"Checkbox.Focus.Wide": "#42A5F5",
"Checkbox.Focus.Wide.Dark": "#42A5F5",
"Checkbox.Foreground.Disabled": "#D3DAE3",
"Checkbox.Foreground.Disabled.Dark": "#D3DAE3",
"Checkbox.Background.Selected": "#42A5F5",
"Checkbox.Background.Selected.Dark": "#2f343f",
"Checkbox.Border.Selected": "#42A5F5",
"Checkbox.Border.Selected.Dark": "#42A5F5",
"Checkbox.Foreground.Selected": "#42A5F5",
"Checkbox.Foreground.Selected.Dark": "#42A5F5",
"Checkbox.Focus.Thin.Selected": "#D3DAE3",
"Checkbox.Focus.Thin.Selected.Dark": "#D3DAE3",
"Objects.Grey": "#747C84",
"Objects.Blue": "#7587A6",
"Objects.RedStatus": "#CF6A4C",
"Objects.Red": "#CF6A4C",
"Objects.Pink": "#9B859D",
"Objects.Yellow": "#F9EE98",
"Objects.Green": "#8F9D6A",
"Objects.Purple": "#9B859D",
"Objects.BlackText": "#D3DAE3",
"Objects.YellowDark": "#CDA869",
"Objects.GreenAndroid": "#8F9D6A"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "Atom One Dark Contrast",
"dark": true,
"author": "Mallowigi",
"editorScheme": "/colors/Atom One Dark.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#979FAD",
"background": "#282C34",
"borderColor": "#282C34",
"disabledBackground": "#3c4150",
"disabledForeground": "#6B727D",
"disabledText": "#6B727D",
"focusColor": "#383D48",
"focusedBorderColor": "#2979ff",
"foreground": "#979FAD",
"inactiveBackground": "#3c4150",
"inactiveForeground": "#979FAD",
"infoForeground": "#979FAD",
"selectionBackground": "#4D515D",
"selectionBackgroundInactive": "#2F333D",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#2F333D",
"separatorColor": "#282C34"
},
"activeCaption": "#282C34",
"ActionButton": {
"hoverBackground": "#2979ff50",
"hoverBorderColor": "#2979ff50",
"hoverSeparatorColor": "#3A3F4B",
"focusedBorderColor": "#2979ff50",
"pressedBackground": "#2979ff50",
"pressedBorderColor": "#2979ff50"
},
"Autocomplete": {
"selectionBackground": "#4D515D"
},
"Borders.ContrastBorderColor": "#282C34",
"Borders.color": "#282C34",
"Button": {
"arc": 0,
"background": "#282C34",
"default": {
"endBackground": "#383E49",
"endBorderColor": "#383E49",
"foreground": "#FFFFFF",
"focusColor": "#2979ff",
"focusedBorderColor": "#2979ff",
"shadowColor": "#383E49",
"startBackground": "#383E49",
"startBorderColor": "#383E49"
},
"disabledBorderColor": "#3A3F4B",
"disabledText": "#6B727D",
"endBackground": "#3A3F4B",
"endBorderColor": "#3A3F4B",
"focus": "#383D48",
"focusedBorderColor": "#2979ff",
"foreground": "#979FAD",
"highlight": "#FFFFFF",
"mt.background": "#3A3F4B",
"mt.foreground": "#979FAD",
"mt.selectedForeground": "#FFFFFF",
"mt.selection.color1": "#383E49",
"mt.selection.color2": "#383E49",
"startBackground": "#3A3F4B",
"startBorderColor": "#3A3F4B",
"shadowColor": "#3A3F4B",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#282C34",
"Tooltip.background": "#282C34"
},
"Content.background": "#21252B",
"CheckBox": {
"background": "#282C34",
"disabledText": "#6B727D",
"foreground": "#979FAD",
"select": "#2979ff"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#979FAD",
"acceleratorSelectionForeground": "#979FAD",
"background": "#282C34",
"disabledBackground": "#282C34",
"disabledForeground": "#6B727D",
"foreground": "#979FAD",
"selectionBackground": "#4D515D",
"selectionForeground": "#FFFFFF"
},
"ColorChooser": {
"background": "#282C34",
"foreground": "#979FAD",
"swatchesDefaultRecentColor": "#979FAD"
},
"ComboBoxButton.background": "#3A3F4B",
"ComboBox": {
"ArrowButton": {
"background": "#3A3F4B",
"disabledIconColor": "#6B727D",
"iconColor": "#979FAD",
"nonEditableBackground": "#282C34"
},
"background": "#21252B",
"buttonBackground": "#3A3F4B",
"disabledForeground": "#6B727D",
"foreground": "#979FAD",
"modifiedItemForeground": "#2979ff",
"nonEditableBackground": "#2F333D",
"padding": "5,5,5,5",
"selectionBackground": "#383E49",
"selectionForeground": "#FFFFFF"
},
"ComboPopup.border": "#282C34",
"CompletionPopup": {
"background": "#2F333D",
"foreground": "#979FAD",
"infoForeground": "#979FAD",
"matchForeground": "#2979ff",
"matchSelectionForeground": "#2979ff",
"nonFocusedState": "false",
"selectedGrayedForeground": "#FFFFFF",
"selectionGrayForeground": "#FFFFFF",
"selectionInactiveInfoForeground": "#979FAD",
"selectionInactiveBackground": "#4D515D50",
"selectionBackground": "#4D515D80",
"selectionForeground": "#FFFFFF",
"selectionInfoForeground": "#FFFFFF"
},
"Component": {
"arc": 4,
"borderColor": "#383D48",
"disabledBorderColor": "#3A3F4B",
"focusColor": "#2979ff",
"focusedBorderColor": "#2979ff",
"hoverIconColor": "#2979ff",
"infoForeground": "#979FAD",
"iconColor": "#979FAD"
},
"control": "#282C34",
"controlText": "#979FAD",
"Counter": {
"background": "#2979ff",
"foreground": "#FFFFFF"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#979FAD",
"changedValueForeground": "#2979ff",
"errorMessageForeground": "#F07178",
"evaluatingExpressionForeground": "#979FAD",
"exceptionForeground": "#E5C17C",
"modifyingValueForeground": "#2979ff",
"valueForeground": "#2979ff"
}
},
"DebuggerTabs": {
"selectedBackground": "#383D48",
"underlinedTabBackground": "#383D48"
},
"DebuggerPopup": {
"borderColor": "#383D48"
},
"DefaultTabs": {
"background": "#282C34",
"borderColor": "#282C34",
"hoverBackground": "#383E49",
"hoverColor": "#21252B",
"hoverMaskColor": "#383D48",
"inactiveColoredFileBackground": "#3A3F4B",
"inactiveUnderlineColor": "#6B727D",
"inactiveMaskColor": "#21252B",
"underlineColor": "#2979ff",
"underlinedTabBackground": "#383E49"
},
"Desktop.background": "#282C34",
"DialogWrapper.southPanelBackground": "#282C34",
"DialogWrapper.southPanelDivider": "#282C34",
"DragAndDrop": {
"areaBackground": "#282C34",
"areaBorderColor": "#282C34",
"areaForeground": "#979FAD"
},
"Editor": {
"background": "#21252B",
"foreground": "#979FAD",
"shortcutForeground": "#979FAD"
},
"EditorPane": {
"background": "#21252B",
"caretForeground": "#2979ff",
"foreground": "#979FAD",
"inactiveBackground": "#282C34",
"inactiveForeground": "#6B727D",
"selectionBackground": "#4D515D",
"selectionForeground": "#FFFFFF"
},
"EditorTabs": {
"borderColor": "#2F333D",
"hoverColor": "#383D48",
"hoverMaskColor": "#383D48",
"inactiveMaskColor": "#282C34",
"inactiveColoredFileBackground": "#282C342",
"inactiveUnderlineColor": "#6B727D",
"selectedForeground": "#979FAD",
"selectedBackground": "#383E49",
"underlineColor": "#2979ff",
"underlinedTabBackground": "#383E49"
},
"EditorGroupsTabs": {
"background": "#282C34",
"borderColor": "#2F333D",
"hoverBackground": "#383D48",
"hoverColor": "#383D48",
"inactiveUnderlineColor": "#2979ff",
"underlineColor": "#2979ff",
"underlinedTabBackground": "#383E49",
"underlinedTabForeground": "#979FAD"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#3c4150",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#282C34",
"FormattedTextField": {
"background": "#21252B",
"caretForeground": "#2979ff",
"foreground": "#979FAD",
"inactiveBackground": "#3A3F4B",
"inactiveForeground": "#6B727D",
"selectionForeground": "#FFFFFF",
"selectionBackground": "#383E49"
},
"Group": {
"disabledSeparatorColor": "#282C34",
"separatorColor": "#282C34"
},
"GutterTooltip": {
"infoForeground": "#979FAD",
"lineSeparatorColor": "#282C34"
},
"HeaderColor": {
"active": "#282C34",
"inactive": "#21252B"
},
"HelpTooltip": {
"background": "#282C34",
"borderColor": "#282C34",
"foreground": "#979FAD",
"infoForeground": "#979FAD",
"shortcutForeground": "#979FAD"
},
"Hyperlink.linkColor": "#2979ff",
"inactiveCaption": "#2F333D",
"inactiveCaptionBorder": "#282C34",
"inactiveCaptionText": "#979FAD",
"info": "#979FAD",
"infoText": "#979FAD",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#282C34",
"InplaceRefactoringPopup": {
"borderColor": "#282C34"
},
"InternalFrame": {
"activeTitleForeground": "#979FAD",
"background": "#282C34",
"inactiveTitleForeground": "#979FAD"
},
"Label": {
"background": "#282C34",
"disabledForeground": "#6B727D",
"disabledShadow": "#282C34",
"disabledText": "#6B727D",
"foreground": "#979FAD",
"infoForeground": "#979FAD",
"selectedForeground": "#FFFFFF"
},
"Link": {
"activeForeground": "#2979ff",
"hoverForeground": "#2979ff",
"pressedForeground": "#2979ff",
"secondaryForeground": "#979FAD",
"visitedForeground": "#2979ff"
},
"link.foreground": "#2979ff",
"List": {
"background": "#2F333D",
"foreground": "#979FAD",
"selectionBackground": "#4D515D50",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#3A3F4B80"
},
"material": {
"background": "#282C34",
"branchColor": "#979FAD",
"contrast": "#21252B",
"foreground": "#979FAD",
"mergeCommits": "#3A3F4B",
"primaryColor": "#979FAD",
"selectionForeground": "#FFFFFF",
"tab.backgroundColor": "#282C34",
"tab.borderColor": "#2979ff",
"tagColor": "#979FAD"
},
"MemoryIndicator": {
"allocatedBackground": "#2F333D",
"usedColor": "#383D48",
"usedBackground": "#383D48"
},
"Menu": {
"acceleratorForeground": "#979FAD",
"acceleratorSelectionForeground": "#FFFFFF",
"background": "#282C34",
"border": "4,2,4,2",
"borderColor": "#2F333D",
"disabledBackground": "#2F333D",
"disabledForeground": "#6B727D",
"foreground": "#979FAD",
"selectionBackground": "#4D515D",
"selectionForeground": "#FFFFFF",
"separatorColor": "#282C34"
},
"MenuBar": {
"background": "#21252B",
"borderColor": "#282C34",
"disabledBackground": "#282C34",
"disabledForeground": "#6B727D",
"foreground": "#979FAD",
"highlight": "#282C34",
"selectionBackground": "#4D515D",
"selectionForeground": "#FFFFFF",
"shadow": "#21252B"
},
"MenuItem": {
"acceleratorForeground": "#979FAD",
"acceleratorSelectionForeground": "#FFFFFF",
"border": "4,2,4,2",
"background": "#282C34",
"disabledBackground": "#282C34",
"disabledForeground": "#6B727D",
"foreground": "#979FAD",
"selectionBackground": "#4D515D",
"selectionForeground": "#FFFFFF"
},
"NavBar": {
"arrowColor": "#979FAD",
"borderColor": "#282C34"
},
"NewClass": {
"Panel": {
"background": "#282C34"
},
"SearchField": {
"background": "#21252B"
}
},
"NewPSD.warning": "#2979ff",
"Notification": {
"background": "#282C34",
"borderColor": "#282C34",
"errorBackground": "#282C34",
"errorBorderColor": "#282C34",
"foreground": "#979FAD",
"MoreButton": {
"background": "#3A3F4B",
"foreground": "#979FAD",
"innerBorderColor": "#3A3F4B"
},
"ToolWindow": {
"errorBackground": "#282C34",
"errorBorderColor": "#282C34",
"informativeBackground": "#282C34",
"informativeBorderColor": "#282C34",
"warningBackground": "#282C34",
"warningBorderColor": "#282C34"
}
},
"OnePixelDivider.background": "#282C34",
"OptionPane": {
"background": "#282C34",
"foreground": "#979FAD",
"messageForeground": "#979FAD"
},
"Outline": {
"color": "#3A3F4B",
"focusedColor": "#2979ff",
"disabledColor": "#6B727D"
},
"Panel": {
"background": "#282C34",
"foreground": "#979FAD"
},
"ParameterInfo": {
"background": "#2F333D",
"borderColor": "#383E49",
"currentOverloadBackground": "#383E49",
"currentParameterForeground": "#2979ff",
"disabledForeground": "#6B727D",
"foreground": "#979FAD",
"infoForeground": "#979FAD",
"lineSeparatorColor": "#383E49"
},
"PasswordField": {
"background": "#21252B",
"capsLockIconColor": "#2979ff",
"caretForeground": "#2979ff",
"foreground": "#979FAD",
"inactiveForeground": "#6B727D",
"selectionBackground": "#383E49",
"selectionForeground": "#FFFFFF"
},
"Plugins": {
"background": "#282C34",
"disabledForeground": "#6B727D",
"eapTagBackground": "#383D48",
"lightSelectionBackground": "#4D515D",
"paidTagBackground": "#383D48",
"selectionBackground": "#4D515D",
"tagForeground": "#2979ff",
"tagBackground": "#383D48",
"trialTagBackground": "#383D48",
"Button": {
"installBackground": "#3A3F4B",
"installBorderColor": "#3A3F4B",
"installForeground": "#979FAD",
"installFocusedBackground": "#383D48",
"installFillForeground": "#6B727D",
"installFillBackground": "#3A3F4B",
"updateBackground": "#3A3F4B",
"updateBorderColor": "#3A3F4B",
"updateForeground": "#979FAD"
},
"SearchField": {
"background": "#21252B",
"borderColor": "#282C34"
},
"SectionHeader": {
"background": "#2F333D",
"foreground": "#979FAD"
},
"Tab": {
"hoverBackground": "#383E49",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#383E49"
}
},
"Popup": {
"Advertiser": {
"background": "#282C34",
"borderColor": "#282C34",
"foreground": "#2979ff"
},
"borderColor": "#21252B",
"inactiveBorderColor": "#282C34",
"innerBorderColor": "#2F333D",
"Header": {
"activeBackground": "#282C34",
"inactiveBackground": "#21252B"
},
"paintBorder": true,
"separatorForeground": "#979FAD",
"separatorColor": "#2F333D",
"Toolbar": {
"Floating.background": "#21252B",
"background": "#21252B",
"borderColor": "#21252B"
}
},
"PopupMenu": {
"background": "#282C34",
"border": "2,0,2,0",
"foreground": "#979FAD",
"translucentBackground": "#282C34"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#282C34",
"foreground": "#2979ff",
"indeterminateEndColor": "#2979ff",
"indeterminateStartColor": "#2979ff",
"progressColor": "#2979ff",
"selectionBackground": "#383D48",
"trackColor": "#383D48"
},
"PsiViewer": {
"referenceHighlightColor": "#2979ff"
},
"RadioButton": {
"background": "#282C34",
"disabledText": "#6B727D",
"foreground": "#979FAD"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#979FAD",
"acceleratorSelectionForeground": "#979FAD",
"background": "#282C34",
"disabledBackground": "#282C34",
"disabledForeground": "#6B727D",
"foreground": "#979FAD",
"selectionBackground": "#4D515D",
"selectionForeground": "#FFFFFF"
},
"ScrollBar": {
"background": "#282C34",
"hoverThumbBorderColor": "#2979ff",
"hoverThumbColor": "#2979ff",
"hoverTrackColor": "#282C3430",
"Mac": {
"hoverThumbBorderColor": "#2979ff",
"hoverThumbColor": "#2979ff",
"hoverTrackColor": "#282C3430",
"thumbBorderColor": "#2979ff70",
"thumbColor": "#2979ff70",
"trackColor": "#282C3430",
"Transparent": {
"hoverThumbBorderColor": "#2979ff",
"hoverThumbColor": "#2979ff",
"hoverTrackColor": "#282C3430",
"thumbBorderColor": "#2979ff70",
"thumbColor": "#2979ff70",
"trackColor": "#282C3430"
}
},
"thumb": "#383D48",
"thumbBorderColor": "#2979ff70",
"thumbColor": "#2979ff70",
"trackColor": "#282C3430",
"Transparent": {
"hoverThumbBorderColor": "#2979ff",
"hoverThumbColor": "#2979ff",
"hoverTrackColor": "#282C3430",
"thumbBorderColor": "#2979ff70",
"thumbColor": "#2979ff70",
"trackColor": "#282C3430"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#21252B",
"foreground": "#979FAD"
},
"Header": {
"background": "#282C34"
},
"List": {
"separatorForeground": "#979FAD",
"separatorColor": "#282C34"
},
"SearchField": {
"background": "#282C34",
"borderColor": "#21252B",
"infoForeground": "#979FAD"
},
"Tab": {
"active.foreground": "#FFFFFF",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#383D48"
}
},
"SearchMatch": {
"endBackground": "#2979ff",
"startBackground": "#2979ff"
},
"SearchField.errorBackground": "#282C34",
"Separator": {
"background": "#2F333D",
"foreground": "#2F333D",
"separatorColor": "#2F333D"
},
"SidePanel": {
"background": "#21252B"
},
"Slider": {
"background": "#282C34",
"buttonBorderColor": "#2979ff",
"buttonColor": "#2979ff",
"foreground": "#979FAD",
"majorTickLength": 6,
"tickColor": "#2F333D",
"trackColor": "#383E49",
"trackWidth": 7,
"thumb": "#2979ff"
},
"SpeedSearch": {
"background": "#383D48",
"borderColor": "#282C34",
"foreground": "#979FAD",
"errorForeground": "#979FAD"
},
"Spinner": {
"background": "#282C34",
"border": "3,3,3,3",
"foreground": "#979FAD",
"selectionForeground": "#FFFFFF"
},
"SplitPane": {
"background": "#282C34",
"highlight": "#21252B"
},
"SplitPaneDivider.draggingColor": "#2F333D",
"StatusBar": {
"borderColor": "#282C34"
},
"TabbedPane": {
"background": "#282C34",
"contentAreaColor": "#383D48",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#282C34",
"disabledForeground": "#6B727D",
"disabledUnderlineColor": "#6B727D",
"focus": "#383E49",
"focusColor": "#383E49",
"fontSizeOffset": 0,
"foreground": "#979FAD",
"highlight": "#282C34",
"hoverColor": "#383D48",
"labelShift": 0,
"selectedForeground": "#FFFFFF",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#2979ff"
},
"TabbedPane.mt.tab.background": "#21252B",
"Table": {
"background": "#282C34",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#2979ff",
"dropLineShortColor": "#2979ff",
"focusCellBackground": "#383E49",
"focusCellForeground": "#FFFFFF",
"foreground": "#979FAD",
"gridColor": "#282C34",
"highlightOuter": "#383E49",
"lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#979FAD",
"lightSelectionInactiveBackground": "#2F333D",
"selectionBackground": "#383E49",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#383E49",
"selectionInactiveForeground": "#FFFFFF",
"sortIconColor": "#979FAD",
"stripeColor": "#21252B"
},
"TableHeader": {
"background": "#282C34",
"borderColor": "#282C34",
"bottomSeparatorColor": "#2F333D",
"cellBorder": "4,0,4,0",
"disabledForeground": "#6B727D",
"foreground": "#979FAD",
"focusCellBackground": "#383E49",
"focusCellForeground": "#FFFFFF",
"height": 25,
"separatorColor": "#2F333D"
},
"text": "#979FAD",
"textInactiveText": "#979FAD",
"textText": "#979FAD",
"TextArea": {
"background": "#21252B",
"caretForeground": "#2979ff",
"foreground": "#979FAD",
"inactiveForeground": "#6B727D",
"selectionBackground": "#383E49",
"selectionForeground": "#FFFFFF"
},
"TextField": {
"background": "#21252B",
"caretForeground": "#2979ff",
"foreground": "#979FAD",
"inactiveForeground": "#6B727D",
"selectionBackground": "#383E49",
"selectionForeground": "#FFFFFF"
},
"TextPane": {
"background": "#21252B",
"caretForeground": "#2979ff",
"foreground": "#979FAD",
"inactiveForeground": "#6B727D",
"selectionBackground": "#383E49",
"selectionForeground": "#FFFFFF"
},
"TitlePane": {
"background": "#21252B",
"Button.hoverBackground": "#383D48",
"inactiveBackground": "#282C34",
"infoForeground": "#979FAD",
"inactiveInfoForeground": "#979FAD"
},
"TitledBorder.titleColor": "#979FAD",
"ToggleButton": {
"borderColor": "#3A3F4B",
"buttonColor": "#979FAD",
"disabledText": "#6B727D",
"foreground": "#979FAD",
"offForeground": "#282C34",
"offBackground": "#282C34",
"onBackground": "#2979ff",
"onForeground": "#2979ff"
},
"ToolBar": {
"background": "#21252B",
"borderHandleColor": "#979FAD",
"floatingForeground": "#979FAD",
"foreground": "#979FAD"
},
"ToolTip": {
"Actions.background": "#282C34",
"Actions.infoForeground": "#979FAD",
"background": "#282C34",
"borderColor": "#383D48",
"foreground": "#979FAD",
"infoForeground": "#979FAD",
"separatorColor": "#282C34",
"shortcutForeground": "#979FAD"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#383E49",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#21252B"
},
"Header": {
"background": "#282C34",
"borderColor": "#2F333D",
"inactiveBackground": "#282C34"
},
"HeaderCloseButton": {
"background": "#282C34"
},
"HeaderTab": {
"hoverBackground": "#383D48",
"hoverInactiveBackground": "#2F333D",
"inactiveUnderlineColor": "#2979ff",
"selectedBackground": "#21252B",
"selectedInactiveBackground": "#21252B",
"underlineColor": "#2979ff",
"underlinedTabBackground": "#383D48",
"underlinedTabInactiveBackground": "#2F333D"
}
},
"Tree": {
"background": "#21252B",
"foreground": "#979FAD",
"hash": "#282C34",
"modifiedItemForeground": "#2979ff",
"rowHeight": 28,
"selectionBackground": "#3A3F4B80",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#3A3F4B80",
"textBackground": "#21252B"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#282C34",
"ColorPicker.background": "#282C34",
"ColorPicker.foreground": "#979FAD",
"Component.borderColor": "#282C34",
"Component.background": "#282C34",
"Component.foreground": "#979FAD",
"Connector.borderColor": "#282C34",
"Connector.hoverBorderColor": "#383D48",
"Canvas.background": "#21252B",
"highStroke.foreground": "#979FAD",
"Label.foreground": "#979FAD",
"List.selectionBackground": "#3A3F4B80",
"Panel.borderColor": "#282C34",
"Panel.background": "#282C34",
"percent.foreground": "#979FAD",
"Placeholder.background": "#282C34",
"Placeholder.borderColor": "#282C34",
"Placeholder.foreground": "#979FAD",
"Placeholder.selectedForeground": "#FFFFFF",
"Preview.background": "#282C34",
"stroke.acceleratorForeground": "#979FAD"
},
"ValidationTooltip": {
"errorBackground": "#282C34",
"errorBorderColor": "#282C34",
"warningBackground": "#282C34",
"warningBorderColor": "#282C34"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#282C34"
},
"GitCommits": {
"graphColor": "#383D48"
},
"GitLog": {
"localBranchIconColor": "#2979ff",
"otherIconColor": "#979FAD",
"remoteBranchIconColor": "#979FAD",
"tagIconColor": "#979FAD"
},
"HgLog": {
"branchIconColor": "#2979ff",
"bookmarkIconColor": "#FFFFFF",
"closedBranchIconColor": "#6B727D",
"localTagIconColor": "#979FAD",
"mqTagIconColor": "#979FAD",
"tagIconColor": "#979FAD",
"tipIconColor": "#979FAD"
},
"Log": {
"Commit.unmatchedForeground": "#979FAD",
"Commit.currentBranchBackground": "#2F333D"
},
"RefLabel": {
"foreground": "#FFFFFF",
"backgroundBase": "#383D48"
}
},
"Viewport": {
"background": "#21252B",
"foreground": "#979FAD"
},
"WelcomeScreen": {
"background": "#282C34",
"borderColor": "#282C34",
"captionBackground": "#21252B",
"captionForeground": "#979FAD",
"footerBackground": "#21252B",
"footerForeground": "#979FAD",
"headerBackground": "#282C34",
"headerForeground": "#979FAD",
"separatorColor": "#282C34",
"Projects": {
"background": "#2F333D",
"selectionBackground": "#4D515D",
"selectionInactiveBackground": "#2F333D"
}
},
"window": "#21252B",
"windowBorder": "#282C34",
"windowText": "#979FAD",
"Window.border": "#282C34"
},
"icons": {
"ColorPalette": {
"#43494A": "#21252B",
"#6B6B6B": "#979FAD",
"#A7A7A7": "#282C34",
"#3D6185": "#2979ff",
"#466D94": "#2979ff",
"#3C3F41": "#282C34",
"#545556": "#6B727D",
"#606060": "#6B727D",
"#9AA7B0": "#979FAD",
"#675133": "#2979ff",
"Actions.Blue": "#61AEEF",
"Actions.Green": "#98C379",
"Actions.Grey": "#979FAD",
"Actions.GreyInline": "#59626F",
"Actions.GreyInline.Dark": "#979FAD",
"Actions.Red": "#F07178",
"Actions.Yellow": "#E5C17C",
"Checkbox.Background.Default": "#21252B",
"Checkbox.Background.Default.Dark": "#21252B",
"Checkbox.Background.Disabled": "#3c4150",
"Checkbox.Background.Disabled.Dark": "#3c4150",
"Checkbox.Border.Default": "#282C34",
"Checkbox.Border.Default.Dark": "#282C34",
"Checkbox.Border.Disabled": "#6B727D",
"Checkbox.Border.Disabled.Dark": "#6B727D",
"Checkbox.Focus.Thin.Default": "#2979ff",
"Checkbox.Focus.Thin.Default.Dark": "#2979ff",
"Checkbox.Focus.Wide": "#2979ff",
"Checkbox.Focus.Wide.Dark": "#2979ff",
"Checkbox.Foreground.Disabled": "#6B727D",
"Checkbox.Foreground.Disabled.Dark": "#6B727D",
"Checkbox.Background.Selected": "#2979ff",
"Checkbox.Background.Selected.Dark": "#282C34",
"Checkbox.Border.Selected": "#2979ff",
"Checkbox.Border.Selected.Dark": "#2979ff",
"Checkbox.Foreground.Selected": "#2979ff",
"Checkbox.Foreground.Selected.Dark": "#2979ff",
"Checkbox.Focus.Thin.Selected": "#979FAD",
"Checkbox.Focus.Thin.Selected.Dark": "#979FAD",
"Objects.Grey": "#59626F",
"Objects.Blue": "#61AEEF",
"Objects.RedStatus": "#F07178",
"Objects.Red": "#F07178",
"Objects.Pink": "#C679DD",
"Objects.Yellow": "#E5C17C",
"Objects.Green": "#98C379",
"Objects.Purple": "#C679DD",
"Objects.BlackText": "#979FAD",
"Objects.YellowDark": "#D19A66",
"Objects.GreenAndroid": "#98C379"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "Atom One Dark",
"dark": true,
"author": "Mallowigi",
"editorScheme": "/colors/Atom One Dark.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#979FAD",
"background": "#282C34",
"borderColor": "#282C34",
"disabledBackground": "#3c4150",
"disabledForeground": "#6B727D",
"disabledText": "#6B727D",
"focusColor": "#383D48",
"focusedBorderColor": "#2979ff",
"foreground": "#979FAD",
"inactiveBackground": "#3c4150",
"inactiveForeground": "#979FAD",
"infoForeground": "#979FAD",
"selectionBackground": "#4D515D",
"selectionBackgroundInactive": "#2F333D",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#2F333D",
"separatorColor": "#282C34"
},
"activeCaption": "#282C34",
"ActionButton": {
"hoverBackground": "#2979ff50",
"hoverBorderColor": "#2979ff50",
"hoverSeparatorColor": "#3A3F4B",
"focusedBorderColor": "#2979ff50",
"pressedBackground": "#2979ff50",
"pressedBorderColor": "#2979ff50"
},
"Autocomplete": {
"selectionBackground": "#4D515D"
},
"Borders.ContrastBorderColor": "#282C34",
"Borders.color": "#282C34",
"Button": {
"arc": 0,
"background": "#282C34",
"default": {
"endBackground": "#383E49",
"endBorderColor": "#383E49",
"foreground": "#FFFFFF",
"focusColor": "#2979ff",
"focusedBorderColor": "#2979ff",
"shadowColor": "#383E49",
"startBackground": "#383E49",
"startBorderColor": "#383E49"
},
"disabledBorderColor": "#3A3F4B",
"disabledText": "#6B727D",
"endBackground": "#3A3F4B",
"endBorderColor": "#3A3F4B",
"focus": "#383D48",
"focusedBorderColor": "#2979ff",
"foreground": "#979FAD",
"highlight": "#FFFFFF",
"mt.background": "#3A3F4B",
"mt.foreground": "#979FAD",
"mt.selectedForeground": "#FFFFFF",
"mt.selection.color1": "#383E49",
"mt.selection.color2": "#383E49",
"startBackground": "#3A3F4B",
"startBorderColor": "#3A3F4B",
"shadowColor": "#3A3F4B",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#282C34",
"Tooltip.background": "#282C34"
},
"Content.background": "#21252B",
"CheckBox": {
"background": "#282C34",
"disabledText": "#6B727D",
"foreground": "#979FAD",
"select": "#2979ff"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#979FAD",
"acceleratorSelectionForeground": "#979FAD",
"background": "#282C34",
"disabledBackground": "#282C34",
"disabledForeground": "#6B727D",
"foreground": "#979FAD",
"selectionBackground": "#4D515D",
"selectionForeground": "#FFFFFF"
},
"ColorChooser": {
"background": "#282C34",
"foreground": "#979FAD",
"swatchesDefaultRecentColor": "#979FAD"
},
"ComboBoxButton.background": "#3A3F4B",
"ComboBox": {
"ArrowButton": {
"background": "#3A3F4B",
"disabledIconColor": "#6B727D",
"iconColor": "#979FAD",
"nonEditableBackground": "#282C34"
},
"background": "#282C34",
"buttonBackground": "#3A3F4B",
"disabledForeground": "#6B727D",
"foreground": "#979FAD",
"modifiedItemForeground": "#2979ff",
"nonEditableBackground": "#2F333D",
"padding": "5,5,5,5",
"selectionBackground": "#383E49",
"selectionForeground": "#FFFFFF"
},
"ComboPopup.border": "#282C34",
"CompletionPopup": {
"background": "#2F333D",
"foreground": "#979FAD",
"infoForeground": "#979FAD",
"matchForeground": "#2979ff",
"matchSelectionForeground": "#2979ff",
"nonFocusedState": "false",
"selectedGrayedForeground": "#FFFFFF",
"selectionGrayForeground": "#FFFFFF",
"selectionInactiveInfoForeground": "#979FAD",
"selectionInactiveBackground": "#4D515D50",
"selectionBackground": "#4D515D80",
"selectionForeground": "#FFFFFF",
"selectionInfoForeground": "#FFFFFF"
},
"Component": {
"arc": 4,
"borderColor": "#383D48",
"disabledBorderColor": "#3A3F4B",
"focusColor": "#2979ff",
"focusedBorderColor": "#2979ff",
"hoverIconColor": "#2979ff",
"infoForeground": "#979FAD",
"iconColor": "#979FAD"
},
"control": "#282C34",
"controlText": "#979FAD",
"Counter": {
"background": "#2979ff",
"foreground": "#FFFFFF"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#979FAD",
"changedValueForeground": "#2979ff",
"errorMessageForeground": "#F07178",
"evaluatingExpressionForeground": "#979FAD",
"exceptionForeground": "#E5C17C",
"modifyingValueForeground": "#2979ff",
"valueForeground": "#2979ff"
}
},
"DebuggerTabs": {
"selectedBackground": "#383D48",
"underlinedTabBackground": "#383D48"
},
"DebuggerPopup": {
"borderColor": "#383D48"
},
"DefaultTabs": {
"background": "#282C34",
"borderColor": "#282C34",
"hoverBackground": "#383E49",
"hoverColor": "#282C34",
"hoverMaskColor": "#383D48",
"inactiveColoredFileBackground": "#3A3F4B",
"inactiveUnderlineColor": "#6B727D",
"inactiveMaskColor": "#282C34",
"underlineColor": "#2979ff",
"underlinedTabBackground": "#383E49"
},
"Desktop.background": "#282C34",
"DialogWrapper.southPanelBackground": "#282C34",
"DialogWrapper.southPanelDivider": "#282C34",
"DragAndDrop": {
"areaBackground": "#282C34",
"areaBorderColor": "#282C34",
"areaForeground": "#979FAD"
},
"Editor": {
"background": "#282C34",
"foreground": "#979FAD",
"shortcutForeground": "#979FAD"
},
"EditorPane": {
"background": "#282C34",
"caretForeground": "#2979ff",
"foreground": "#979FAD",
"inactiveBackground": "#282C34",
"inactiveForeground": "#6B727D",
"selectionBackground": "#4D515D",
"selectionForeground": "#FFFFFF"
},
"EditorTabs": {
"borderColor": "#2F333D",
"hoverColor": "#383D48",
"hoverMaskColor": "#383D48",
"inactiveMaskColor": "#282C34",
"inactiveColoredFileBackground": "#282C342",
"inactiveUnderlineColor": "#6B727D",
"selectedForeground": "#979FAD",
"selectedBackground": "#383E49",
"underlineColor": "#2979ff",
"underlinedTabBackground": "#383E49"
},
"EditorGroupsTabs": {
"background": "#282C34",
"borderColor": "#2F333D",
"hoverBackground": "#383D48",
"hoverColor": "#383D48",
"inactiveUnderlineColor": "#2979ff",
"underlineColor": "#2979ff",
"underlinedTabBackground": "#383E49",
"underlinedTabForeground": "#979FAD"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#3c4150",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#282C34",
"FormattedTextField": {
"background": "#282C34",
"caretForeground": "#2979ff",
"foreground": "#979FAD",
"inactiveBackground": "#3A3F4B",
"inactiveForeground": "#6B727D",
"selectionForeground": "#FFFFFF",
"selectionBackground": "#383E49"
},
"Group": {
"disabledSeparatorColor": "#282C34",
"separatorColor": "#282C34"
},
"GutterTooltip": {
"infoForeground": "#979FAD",
"lineSeparatorColor": "#282C34"
},
"HeaderColor": {
"active": "#282C34",
"inactive": "#21252B"
},
"HelpTooltip": {
"background": "#282C34",
"borderColor": "#282C34",
"foreground": "#979FAD",
"infoForeground": "#979FAD",
"shortcutForeground": "#979FAD"
},
"Hyperlink.linkColor": "#2979ff",
"inactiveCaption": "#2F333D",
"inactiveCaptionBorder": "#282C34",
"inactiveCaptionText": "#979FAD",
"info": "#979FAD",
"infoText": "#979FAD",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#282C34",
"InplaceRefactoringPopup": {
"borderColor": "#282C34"
},
"InternalFrame": {
"activeTitleForeground": "#979FAD",
"background": "#282C34",
"inactiveTitleForeground": "#979FAD"
},
"Label": {
"background": "#282C34",
"disabledForeground": "#6B727D",
"disabledShadow": "#282C34",
"disabledText": "#6B727D",
"foreground": "#979FAD",
"infoForeground": "#979FAD",
"selectedForeground": "#FFFFFF"
},
"Link": {
"activeForeground": "#2979ff",
"hoverForeground": "#2979ff",
"pressedForeground": "#2979ff",
"secondaryForeground": "#979FAD",
"visitedForeground": "#2979ff"
},
"link.foreground": "#2979ff",
"List": {
"background": "#2F333D",
"foreground": "#979FAD",
"selectionBackground": "#4D515D50",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#3A3F4B80"
},
"material": {
"background": "#282C34",
"branchColor": "#979FAD",
"contrast": "#21252B",
"foreground": "#979FAD",
"mergeCommits": "#3A3F4B",
"primaryColor": "#979FAD",
"selectionForeground": "#FFFFFF",
"tab.backgroundColor": "#282C34",
"tab.borderColor": "#2979ff",
"tagColor": "#979FAD"
},
"MemoryIndicator": {
"allocatedBackground": "#2F333D",
"usedColor": "#383D48",
"usedBackground": "#383D48"
},
"Menu": {
"acceleratorForeground": "#979FAD",
"acceleratorSelectionForeground": "#FFFFFF",
"background": "#282C34",
"border": "4,2,4,2",
"borderColor": "#2F333D",
"disabledBackground": "#2F333D",
"disabledForeground": "#6B727D",
"foreground": "#979FAD",
"selectionBackground": "#4D515D",
"selectionForeground": "#FFFFFF",
"separatorColor": "#282C34"
},
"MenuBar": {
"background": "#282C34",
"borderColor": "#282C34",
"disabledBackground": "#282C34",
"disabledForeground": "#6B727D",
"foreground": "#979FAD",
"highlight": "#282C34",
"selectionBackground": "#4D515D",
"selectionForeground": "#FFFFFF",
"shadow": "#282C34"
},
"MenuItem": {
"acceleratorForeground": "#979FAD",
"acceleratorSelectionForeground": "#FFFFFF",
"border": "4,2,4,2",
"background": "#282C34",
"disabledBackground": "#282C34",
"disabledForeground": "#6B727D",
"foreground": "#979FAD",
"selectionBackground": "#4D515D",
"selectionForeground": "#FFFFFF"
},
"NavBar": {
"arrowColor": "#979FAD",
"borderColor": "#282C34"
},
"NewClass": {
"Panel": {
"background": "#282C34"
},
"SearchField": {
"background": "#282C34"
}
},
"NewPSD.warning": "#2979ff",
"Notification": {
"background": "#282C34",
"borderColor": "#282C34",
"errorBackground": "#282C34",
"errorBorderColor": "#282C34",
"foreground": "#979FAD",
"MoreButton": {
"background": "#3A3F4B",
"foreground": "#979FAD",
"innerBorderColor": "#3A3F4B"
},
"ToolWindow": {
"errorBackground": "#282C34",
"errorBorderColor": "#282C34",
"informativeBackground": "#282C34",
"informativeBorderColor": "#282C34",
"warningBackground": "#282C34",
"warningBorderColor": "#282C34"
}
},
"OnePixelDivider.background": "#282C34",
"OptionPane": {
"background": "#282C34",
"foreground": "#979FAD",
"messageForeground": "#979FAD"
},
"Outline": {
"color": "#3A3F4B",
"focusedColor": "#2979ff",
"disabledColor": "#6B727D"
},
"Panel": {
"background": "#282C34",
"foreground": "#979FAD"
},
"ParameterInfo": {
"background": "#2F333D",
"borderColor": "#383E49",
"currentOverloadBackground": "#383E49",
"currentParameterForeground": "#2979ff",
"disabledForeground": "#6B727D",
"foreground": "#979FAD",
"infoForeground": "#979FAD",
"lineSeparatorColor": "#383E49"
},
"PasswordField": {
"background": "#282C34",
"capsLockIconColor": "#2979ff",
"caretForeground": "#2979ff",
"foreground": "#979FAD",
"inactiveForeground": "#6B727D",
"selectionBackground": "#383E49",
"selectionForeground": "#FFFFFF"
},
"Plugins": {
"background": "#282C34",
"disabledForeground": "#6B727D",
"eapTagBackground": "#383D48",
"lightSelectionBackground": "#4D515D",
"paidTagBackground": "#383D48",
"selectionBackground": "#4D515D",
"tagForeground": "#2979ff",
"tagBackground": "#383D48",
"trialTagBackground": "#383D48",
"Button": {
"installBackground": "#3A3F4B",
"installBorderColor": "#3A3F4B",
"installForeground": "#979FAD",
"installFocusedBackground": "#383D48",
"installFillForeground": "#6B727D",
"installFillBackground": "#3A3F4B",
"updateBackground": "#3A3F4B",
"updateBorderColor": "#3A3F4B",
"updateForeground": "#979FAD"
},
"SearchField": {
"background": "#282C34",
"borderColor": "#282C34"
},
"SectionHeader": {
"background": "#2F333D",
"foreground": "#979FAD"
},
"Tab": {
"hoverBackground": "#383E49",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#383E49"
}
},
"Popup": {
"Advertiser": {
"background": "#282C34",
"borderColor": "#282C34",
"foreground": "#2979ff"
},
"borderColor": "#21252B",
"inactiveBorderColor": "#282C34",
"innerBorderColor": "#2F333D",
"Header": {
"activeBackground": "#282C34",
"inactiveBackground": "#21252B"
},
"paintBorder": true,
"separatorForeground": "#979FAD",
"separatorColor": "#2F333D",
"Toolbar": {
"Floating.background": "#21252B",
"background": "#21252B",
"borderColor": "#21252B"
}
},
"PopupMenu": {
"background": "#282C34",
"border": "2,0,2,0",
"foreground": "#979FAD",
"translucentBackground": "#282C34"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#282C34",
"foreground": "#2979ff",
"indeterminateEndColor": "#2979ff",
"indeterminateStartColor": "#2979ff",
"progressColor": "#2979ff",
"selectionBackground": "#383D48",
"trackColor": "#383D48"
},
"PsiViewer": {
"referenceHighlightColor": "#2979ff"
},
"RadioButton": {
"background": "#282C34",
"disabledText": "#6B727D",
"foreground": "#979FAD"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#979FAD",
"acceleratorSelectionForeground": "#979FAD",
"background": "#282C34",
"disabledBackground": "#282C34",
"disabledForeground": "#6B727D",
"foreground": "#979FAD",
"selectionBackground": "#4D515D",
"selectionForeground": "#FFFFFF"
},
"ScrollBar": {
"background": "#282C34",
"hoverThumbBorderColor": "#2979ff",
"hoverThumbColor": "#2979ff",
"hoverTrackColor": "#282C3430",
"Mac": {
"hoverThumbBorderColor": "#2979ff",
"hoverThumbColor": "#2979ff",
"hoverTrackColor": "#282C3430",
"thumbBorderColor": "#2979ff70",
"thumbColor": "#2979ff70",
"trackColor": "#282C3430",
"Transparent": {
"hoverThumbBorderColor": "#2979ff",
"hoverThumbColor": "#2979ff",
"hoverTrackColor": "#282C3430",
"thumbBorderColor": "#2979ff70",
"thumbColor": "#2979ff70",
"trackColor": "#282C3430"
}
},
"thumb": "#383D48",
"thumbBorderColor": "#2979ff70",
"thumbColor": "#2979ff70",
"trackColor": "#282C3430",
"Transparent": {
"hoverThumbBorderColor": "#2979ff",
"hoverThumbColor": "#2979ff",
"hoverTrackColor": "#282C3430",
"thumbBorderColor": "#2979ff70",
"thumbColor": "#2979ff70",
"trackColor": "#282C3430"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#21252B",
"foreground": "#979FAD"
},
"Header": {
"background": "#282C34"
},
"List": {
"separatorForeground": "#979FAD",
"separatorColor": "#282C34"
},
"SearchField": {
"background": "#282C34",
"borderColor": "#21252B",
"infoForeground": "#979FAD"
},
"Tab": {
"active.foreground": "#FFFFFF",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#383D48"
}
},
"SearchMatch": {
"endBackground": "#2979ff",
"startBackground": "#2979ff"
},
"SearchField.errorBackground": "#282C34",
"Separator": {
"background": "#2F333D",
"foreground": "#2F333D",
"separatorColor": "#2F333D"
},
"SidePanel": {
"background": "#282C34"
},
"Slider": {
"background": "#282C34",
"buttonBorderColor": "#2979ff",
"buttonColor": "#2979ff",
"foreground": "#979FAD",
"majorTickLength": 6,
"tickColor": "#2F333D",
"trackColor": "#383E49",
"trackWidth": 7,
"thumb": "#2979ff"
},
"SpeedSearch": {
"background": "#383D48",
"borderColor": "#282C34",
"foreground": "#979FAD",
"errorForeground": "#979FAD"
},
"Spinner": {
"background": "#282C34",
"border": "3,3,3,3",
"foreground": "#979FAD",
"selectionForeground": "#FFFFFF"
},
"SplitPane": {
"background": "#282C34",
"highlight": "#282C34"
},
"SplitPaneDivider.draggingColor": "#2F333D",
"StatusBar": {
"borderColor": "#282C34"
},
"TabbedPane": {
"background": "#282C34",
"contentAreaColor": "#383D48",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#282C34",
"disabledForeground": "#6B727D",
"disabledUnderlineColor": "#6B727D",
"focus": "#383E49",
"focusColor": "#383E49",
"fontSizeOffset": 0,
"foreground": "#979FAD",
"highlight": "#282C34",
"hoverColor": "#383D48",
"labelShift": 0,
"selectedForeground": "#FFFFFF",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#2979ff"
},
"TabbedPane.mt.tab.background": "#282C34",
"Table": {
"background": "#282C34",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#2979ff",
"dropLineShortColor": "#2979ff",
"focusCellBackground": "#383E49",
"focusCellForeground": "#FFFFFF",
"foreground": "#979FAD",
"gridColor": "#282C34",
"highlightOuter": "#383E49",
"lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#979FAD",
"lightSelectionInactiveBackground": "#2F333D",
"selectionBackground": "#383E49",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#383E49",
"selectionInactiveForeground": "#FFFFFF",
"sortIconColor": "#979FAD",
"stripeColor": "#21252B"
},
"TableHeader": {
"background": "#282C34",
"borderColor": "#282C34",
"bottomSeparatorColor": "#2F333D",
"cellBorder": "4,0,4,0",
"disabledForeground": "#6B727D",
"foreground": "#979FAD",
"focusCellBackground": "#383E49",
"focusCellForeground": "#FFFFFF",
"height": 25,
"separatorColor": "#2F333D"
},
"text": "#979FAD",
"textInactiveText": "#979FAD",
"textText": "#979FAD",
"TextArea": {
"background": "#282C34",
"caretForeground": "#2979ff",
"foreground": "#979FAD",
"inactiveForeground": "#6B727D",
"selectionBackground": "#383E49",
"selectionForeground": "#FFFFFF"
},
"TextField": {
"background": "#282C34",
"caretForeground": "#2979ff",
"foreground": "#979FAD",
"inactiveForeground": "#6B727D",
"selectionBackground": "#383E49",
"selectionForeground": "#FFFFFF"
},
"TextPane": {
"background": "#282C34",
"caretForeground": "#2979ff",
"foreground": "#979FAD",
"inactiveForeground": "#6B727D",
"selectionBackground": "#383E49",
"selectionForeground": "#FFFFFF"
},
"TitlePane": {
"background": "#21252B",
"Button.hoverBackground": "#383D48",
"inactiveBackground": "#282C34",
"infoForeground": "#979FAD",
"inactiveInfoForeground": "#979FAD"
},
"TitledBorder.titleColor": "#979FAD",
"ToggleButton": {
"borderColor": "#3A3F4B",
"buttonColor": "#979FAD",
"disabledText": "#6B727D",
"foreground": "#979FAD",
"offForeground": "#282C34",
"offBackground": "#282C34",
"onBackground": "#2979ff",
"onForeground": "#2979ff"
},
"ToolBar": {
"background": "#282C34",
"borderHandleColor": "#979FAD",
"floatingForeground": "#979FAD",
"foreground": "#979FAD"
},
"ToolTip": {
"Actions.background": "#282C34",
"Actions.infoForeground": "#979FAD",
"background": "#282C34",
"borderColor": "#383D48",
"foreground": "#979FAD",
"infoForeground": "#979FAD",
"separatorColor": "#282C34",
"shortcutForeground": "#979FAD"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#383E49",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#21252B"
},
"Header": {
"background": "#282C34",
"borderColor": "#2F333D",
"inactiveBackground": "#282C34"
},
"HeaderCloseButton": {
"background": "#282C34"
},
"HeaderTab": {
"hoverBackground": "#383D48",
"hoverInactiveBackground": "#2F333D",
"inactiveUnderlineColor": "#2979ff",
"selectedBackground": "#21252B",
"selectedInactiveBackground": "#21252B",
"underlineColor": "#2979ff",
"underlinedTabBackground": "#383D48",
"underlinedTabInactiveBackground": "#2F333D"
}
},
"Tree": {
"background": "#282C34",
"foreground": "#979FAD",
"hash": "#282C34",
"modifiedItemForeground": "#2979ff",
"rowHeight": 28,
"selectionBackground": "#3A3F4B80",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#3A3F4B80",
"textBackground": "#282C34"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#282C34",
"ColorPicker.background": "#282C34",
"ColorPicker.foreground": "#979FAD",
"Component.borderColor": "#282C34",
"Component.background": "#282C34",
"Component.foreground": "#979FAD",
"Connector.borderColor": "#282C34",
"Connector.hoverBorderColor": "#383D48",
"Canvas.background": "#21252B",
"highStroke.foreground": "#979FAD",
"Label.foreground": "#979FAD",
"List.selectionBackground": "#3A3F4B80",
"Panel.borderColor": "#282C34",
"Panel.background": "#282C34",
"percent.foreground": "#979FAD",
"Placeholder.background": "#282C34",
"Placeholder.borderColor": "#282C34",
"Placeholder.foreground": "#979FAD",
"Placeholder.selectedForeground": "#FFFFFF",
"Preview.background": "#282C34",
"stroke.acceleratorForeground": "#979FAD"
},
"ValidationTooltip": {
"errorBackground": "#282C34",
"errorBorderColor": "#282C34",
"warningBackground": "#282C34",
"warningBorderColor": "#282C34"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#282C34"
},
"GitCommits": {
"graphColor": "#383D48"
},
"GitLog": {
"localBranchIconColor": "#2979ff",
"otherIconColor": "#979FAD",
"remoteBranchIconColor": "#979FAD",
"tagIconColor": "#979FAD"
},
"HgLog": {
"branchIconColor": "#2979ff",
"bookmarkIconColor": "#FFFFFF",
"closedBranchIconColor": "#6B727D",
"localTagIconColor": "#979FAD",
"mqTagIconColor": "#979FAD",
"tagIconColor": "#979FAD",
"tipIconColor": "#979FAD"
},
"Log": {
"Commit.unmatchedForeground": "#979FAD",
"Commit.currentBranchBackground": "#2F333D"
},
"RefLabel": {
"foreground": "#FFFFFF",
"backgroundBase": "#383D48"
}
},
"Viewport": {
"background": "#282C34",
"foreground": "#979FAD"
},
"WelcomeScreen": {
"background": "#282C34",
"borderColor": "#282C34",
"captionBackground": "#21252B",
"captionForeground": "#979FAD",
"footerBackground": "#21252B",
"footerForeground": "#979FAD",
"headerBackground": "#282C34",
"headerForeground": "#979FAD",
"separatorColor": "#282C34",
"Projects": {
"background": "#2F333D",
"selectionBackground": "#4D515D",
"selectionInactiveBackground": "#2F333D"
}
},
"window": "#282C34",
"windowBorder": "#282C34",
"windowText": "#979FAD",
"Window.border": "#282C34"
},
"icons": {
"ColorPalette": {
"#43494A": "#21252B",
"#6B6B6B": "#979FAD",
"#A7A7A7": "#282C34",
"#3D6185": "#2979ff",
"#466D94": "#2979ff",
"#3C3F41": "#282C34",
"#545556": "#6B727D",
"#606060": "#6B727D",
"#9AA7B0": "#979FAD",
"#675133": "#2979ff",
"Actions.Blue": "#61AEEF",
"Actions.Green": "#98C379",
"Actions.Grey": "#979FAD",
"Actions.GreyInline": "#59626F",
"Actions.GreyInline.Dark": "#979FAD",
"Actions.Red": "#F07178",
"Actions.Yellow": "#E5C17C",
"Checkbox.Background.Default": "#21252B",
"Checkbox.Background.Default.Dark": "#21252B",
"Checkbox.Background.Disabled": "#3c4150",
"Checkbox.Background.Disabled.Dark": "#3c4150",
"Checkbox.Border.Default": "#282C34",
"Checkbox.Border.Default.Dark": "#282C34",
"Checkbox.Border.Disabled": "#6B727D",
"Checkbox.Border.Disabled.Dark": "#6B727D",
"Checkbox.Focus.Thin.Default": "#2979ff",
"Checkbox.Focus.Thin.Default.Dark": "#2979ff",
"Checkbox.Focus.Wide": "#2979ff",
"Checkbox.Focus.Wide.Dark": "#2979ff",
"Checkbox.Foreground.Disabled": "#6B727D",
"Checkbox.Foreground.Disabled.Dark": "#6B727D",
"Checkbox.Background.Selected": "#2979ff",
"Checkbox.Background.Selected.Dark": "#282C34",
"Checkbox.Border.Selected": "#2979ff",
"Checkbox.Border.Selected.Dark": "#2979ff",
"Checkbox.Foreground.Selected": "#2979ff",
"Checkbox.Foreground.Selected.Dark": "#2979ff",
"Checkbox.Focus.Thin.Selected": "#979FAD",
"Checkbox.Focus.Thin.Selected.Dark": "#979FAD",
"Objects.Grey": "#59626F",
"Objects.Blue": "#61AEEF",
"Objects.RedStatus": "#F07178",
"Objects.Red": "#F07178",
"Objects.Pink": "#C679DD",
"Objects.Yellow": "#E5C17C",
"Objects.Green": "#98C379",
"Objects.Purple": "#C679DD",
"Objects.BlackText": "#979FAD",
"Objects.YellowDark": "#D19A66",
"Objects.GreenAndroid": "#98C379"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "Atom One Light",
"dark": false,
"author": "Mallowigi",
"editorScheme": "/colors/Atom One Light.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#7f7f7f",
"background": "#F4F4F4",
"borderColor": "#DBDBDC",
"disabledBackground": "#CACACB",
"disabledForeground": "#b8b8b9",
"disabledText": "#b8b8b9",
"focusColor": "#FFFFFF",
"focusedBorderColor": "#2979ff",
"foreground": "#232324",
"inactiveBackground": "#CACACB",
"inactiveForeground": "#7f7f7f",
"infoForeground": "#7f7f7f",
"selectionBackground": "#FFFFFF",
"selectionBackgroundInactive": "#EAEAEB",
"selectionForeground": "#232324",
"selectionInactiveBackground": "#EAEAEB",
"separatorColor": "#DBDBDC"
},
"activeCaption": "#F4F4F4",
"ActionButton": {
"hoverBackground": "#2979ff50",
"hoverBorderColor": "#2979ff50",
"hoverSeparatorColor": "#DBDBDC",
"focusedBorderColor": "#2979ff50",
"pressedBackground": "#2979ff50",
"pressedBorderColor": "#2979ff50"
},
"Autocomplete": {
"selectionBackground": "#FFFFFF"
},
"Borders.ContrastBorderColor": "#F4F4F4",
"Borders.color": "#DBDBDC",
"Button": {
"arc": 0,
"background": "#F4F4F4",
"default": {
"endBackground": "#DBDBDC",
"endBorderColor": "#DBDBDC",
"foreground": "#232324",
"focusColor": "#2979ff",
"focusedBorderColor": "#2979ff",
"shadowColor": "#DBDBDC",
"startBackground": "#DBDBDC",
"startBorderColor": "#DBDBDC"
},
"disabledBorderColor": "#DBDBDC",
"disabledText": "#b8b8b9",
"endBackground": "#DBDBDC",
"endBorderColor": "#DBDBDC",
"focus": "#FFFFFF",
"focusedBorderColor": "#2979ff",
"foreground": "#7f7f7f",
"highlight": "#232324",
"mt.background": "#DBDBDC",
"mt.foreground": "#7f7f7f",
"mt.selectedForeground": "#232324",
"mt.selection.color1": "#DBDBDC",
"mt.selection.color2": "#DBDBDC",
"startBackground": "#DBDBDC",
"startBorderColor": "#DBDBDC",
"shadowColor": "#DBDBDC",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#DBDBDC",
"Tooltip.background": "#F2F2F2"
},
"Content.background": "#eaeaeb",
"CheckBox": {
"background": "#F4F4F4",
"disabledText": "#b8b8b9",
"foreground": "#232324",
"select": "#2979ff"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#7f7f7f",
"acceleratorSelectionForeground": "#7f7f7f",
"background": "#F4F4F4",
"disabledBackground": "#F4F4F4",
"disabledForeground": "#b8b8b9",
"foreground": "#232324",
"selectionBackground": "#FFFFFF",
"selectionForeground": "#232324"
},
"ColorChooser": {
"background": "#F4F4F4",
"foreground": "#232324",
"swatchesDefaultRecentColor": "#232324"
},
"ComboBoxButton.background": "#DBDBDC",
"ComboBox": {
"ArrowButton": {
"background": "#DBDBDC",
"disabledIconColor": "#b8b8b9",
"iconColor": "#232324",
"nonEditableBackground": "#F4F4F4"
},
"background": "#eaeaeb",
"buttonBackground": "#DBDBDC",
"disabledForeground": "#b8b8b9",
"foreground": "#232324",
"modifiedItemForeground": "#2979ff",
"nonEditableBackground": "#EAEAEB",
"padding": "5,5,5,5",
"selectionBackground": "#DBDBDC",
"selectionForeground": "#232324"
},
"ComboPopup.border": "#DBDBDC",
"CompletionPopup": {
"background": "#EAEAEB",
"foreground": "#232324",
"infoForeground": "#7f7f7f",
"matchForeground": "#2979ff",
"matchSelectionForeground": "#2979ff",
"nonFocusedState": "false",
"selectedGrayedForeground": "#232324",
"selectionGrayForeground": "#232324",
"selectionInactiveInfoForeground": "#7f7f7f",
"selectionInactiveBackground": "#FFFFFF50",
"selectionBackground": "#FFFFFF80",
"selectionForeground": "#232324",
"selectionInfoForeground": "#232324"
},
"Component": {
"arc": 4,
"borderColor": "#FFFFFF",
"disabledBorderColor": "#DBDBDC",
"focusColor": "#2979ff",
"focusedBorderColor": "#2979ff",
"hoverIconColor": "#2979ff",
"infoForeground": "#7f7f7f",
"iconColor": "#232324"
},
"control": "#F4F4F4",
"controlText": "#7f7f7f",
"Counter": {
"background": "#2979ff",
"foreground": "#232324"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#7f7f7f",
"changedValueForeground": "#2979ff",
"errorMessageForeground": "#E4564A",
"evaluatingExpressionForeground": "#7f7f7f",
"exceptionForeground": "#C18401",
"modifyingValueForeground": "#2979ff",
"valueForeground": "#2979ff"
}
},
"DebuggerTabs": {
"selectedBackground": "#FFFFFF",
"underlinedTabBackground": "#FFFFFF"
},
"DebuggerPopup": {
"borderColor": "#FFFFFF"
},
"DefaultTabs": {
"background": "#F4F4F4",
"borderColor": "#F4F4F4",
"hoverBackground": "#DBDBDC",
"hoverColor": "#eaeaeb",
"hoverMaskColor": "#FFFFFF",
"inactiveColoredFileBackground": "#DBDBDC",
"inactiveUnderlineColor": "#b8b8b9",
"inactiveMaskColor": "#eaeaeb",
"underlineColor": "#2979ff",
"underlinedTabBackground": "#DBDBDC"
},
"Desktop.background": "#F4F4F4",
"DialogWrapper.southPanelBackground": "#F4F4F4",
"DialogWrapper.southPanelDivider": "#F4F4F4",
"DragAndDrop": {
"areaBackground": "#F4F4F4",
"areaBorderColor": "#F4F4F4",
"areaForeground": "#232324"
},
"Editor": {
"background": "#eaeaeb",
"foreground": "#232324",
"shortcutForeground": "#7f7f7f"
},
"EditorPane": {
"background": "#eaeaeb",
"caretForeground": "#2979ff",
"foreground": "#232324",
"inactiveBackground": "#F4F4F4",
"inactiveForeground": "#b8b8b9",
"selectionBackground": "#FFFFFF",
"selectionForeground": "#232324"
},
"EditorTabs": {
"borderColor": "#EAEAEB",
"hoverColor": "#FFFFFF",
"hoverMaskColor": "#FFFFFF",
"inactiveMaskColor": "#F4F4F4",
"inactiveColoredFileBackground": "#F4F4F42",
"inactiveUnderlineColor": "#b8b8b9",
"selectedForeground": "#232324",
"selectedBackground": "#DBDBDC",
"underlineColor": "#2979ff",
"underlinedTabBackground": "#DBDBDC"
},
"EditorGroupsTabs": {
"background": "#F4F4F4",
"borderColor": "#EAEAEB",
"hoverBackground": "#FFFFFF",
"hoverColor": "#FFFFFF",
"inactiveUnderlineColor": "#2979ff",
"underlineColor": "#2979ff",
"underlinedTabBackground": "#DBDBDC",
"underlinedTabForeground": "#232324"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#CACACB",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#DBDBDC",
"FormattedTextField": {
"background": "#eaeaeb",
"caretForeground": "#2979ff",
"foreground": "#232324",
"inactiveBackground": "#DBDBDC",
"inactiveForeground": "#b8b8b9",
"selectionForeground": "#232324",
"selectionBackground": "#DBDBDC"
},
"Group": {
"disabledSeparatorColor": "#DBDBDC",
"separatorColor": "#DBDBDC"
},
"GutterTooltip": {
"infoForeground": "#232324",
"lineSeparatorColor": "#F4F4F4"
},
"HeaderColor": {
"active": "#F4F4F4",
"inactive": "#eaeaeb"
},
"HelpTooltip": {
"background": "#F4F4F4",
"borderColor": "#DBDBDC",
"foreground": "#232324",
"infoForeground": "#7f7f7f",
"shortcutForeground": "#7f7f7f"
},
"Hyperlink.linkColor": "#2979ff",
"inactiveCaption": "#EAEAEB",
"inactiveCaptionBorder": "#F4F4F4",
"inactiveCaptionText": "#7f7f7f",
"info": "#7f7f7f",
"infoText": "#7f7f7f",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#DBDBDC",
"InplaceRefactoringPopup": {
"borderColor": "#F4F4F4"
},
"InternalFrame": {
"activeTitleForeground": "#232324",
"background": "#F4F4F4",
"inactiveTitleForeground": "#7f7f7f"
},
"Label": {
"background": "#F4F4F4",
"disabledForeground": "#b8b8b9",
"disabledShadow": "#F4F4F4",
"disabledText": "#b8b8b9",
"foreground": "#232324",
"infoForeground": "#7f7f7f",
"selectedForeground": "#232324"
},
"Link": {
"activeForeground": "#2979ff",
"hoverForeground": "#2979ff",
"pressedForeground": "#2979ff",
"secondaryForeground": "#7f7f7f",
"visitedForeground": "#2979ff"
},
"link.foreground": "#2979ff",
"List": {
"background": "#EAEAEB",
"foreground": "#232324",
"selectionBackground": "#FFFFFF50",
"selectionForeground": "#232324",
"selectionInactiveForeground": "#232324",
"selectionInactiveBackground": "#DBDBDC80"
},
"material": {
"background": "#F4F4F4",
"branchColor": "#232324",
"contrast": "#eaeaeb",
"foreground": "#232324",
"mergeCommits": "#DBDBDC",
"primaryColor": "#7f7f7f",
"selectionForeground": "#232324",
"tab.backgroundColor": "#F4F4F4",
"tab.borderColor": "#2979ff",
"tagColor": "#7f7f7f"
},
"MemoryIndicator": {
"allocatedBackground": "#EAEAEB",
"usedColor": "#FFFFFF",
"usedBackground": "#FFFFFF"
},
"Menu": {
"acceleratorForeground": "#7f7f7f",
"acceleratorSelectionForeground": "#232324",
"background": "#F4F4F4",
"border": "4,2,4,2",
"borderColor": "#EAEAEB",
"disabledBackground": "#EAEAEB",
"disabledForeground": "#b8b8b9",
"foreground": "#232324",
"selectionBackground": "#FFFFFF",
"selectionForeground": "#232324",
"separatorColor": "#DBDBDC"
},
"MenuBar": {
"background": "#eaeaeb",
"borderColor": "#F4F4F4",
"disabledBackground": "#F4F4F4",
"disabledForeground": "#b8b8b9",
"foreground": "#232324",
"highlight": "#F4F4F4",
"selectionBackground": "#FFFFFF",
"selectionForeground": "#232324",
"shadow": "#eaeaeb"
},
"MenuItem": {
"acceleratorForeground": "#7f7f7f",
"acceleratorSelectionForeground": "#232324",
"border": "4,2,4,2",
"background": "#F4F4F4",
"disabledBackground": "#F4F4F4",
"disabledForeground": "#b8b8b9",
"foreground": "#232324",
"selectionBackground": "#FFFFFF",
"selectionForeground": "#232324"
},
"NavBar": {
"arrowColor": "#232324",
"borderColor": "#F4F4F4"
},
"NewClass": {
"Panel": {
"background": "#F4F4F4"
},
"SearchField": {
"background": "#eaeaeb"
}
},
"NewPSD.warning": "#2979ff",
"Notification": {
"background": "#F2F2F2",
"borderColor": "#F2F2F2",
"errorBackground": "#F2F2F2",
"errorBorderColor": "#F2F2F2",
"foreground": "#232324",
"MoreButton": {
"background": "#DBDBDC",
"foreground": "#232324",
"innerBorderColor": "#DBDBDC"
},
"ToolWindow": {
"errorBackground": "#F2F2F2",
"errorBorderColor": "#F2F2F2",
"informativeBackground": "#F2F2F2",
"informativeBorderColor": "#F2F2F2",
"warningBackground": "#F2F2F2",
"warningBorderColor": "#F2F2F2"
}
},
"OnePixelDivider.background": "#DBDBDC",
"OptionPane": {
"background": "#F4F4F4",
"foreground": "#232324",
"messageForeground": "#232324"
},
"Outline": {
"color": "#DBDBDC",
"focusedColor": "#2979ff",
"disabledColor": "#b8b8b9"
},
"Panel": {
"background": "#F4F4F4",
"foreground": "#232324"
},
"ParameterInfo": {
"background": "#EAEAEB",
"borderColor": "#DBDBDC",
"currentOverloadBackground": "#DBDBDC",
"currentParameterForeground": "#2979ff",
"disabledForeground": "#b8b8b9",
"foreground": "#232324",
"infoForeground": "#7f7f7f",
"lineSeparatorColor": "#DBDBDC"
},
"PasswordField": {
"background": "#eaeaeb",
"capsLockIconColor": "#2979ff",
"caretForeground": "#2979ff",
"foreground": "#232324",
"inactiveForeground": "#b8b8b9",
"selectionBackground": "#DBDBDC",
"selectionForeground": "#232324"
},
"Plugins": {
"background": "#F4F4F4",
"disabledForeground": "#b8b8b9",
"eapTagBackground": "#FFFFFF",
"lightSelectionBackground": "#FFFFFF",
"paidTagBackground": "#FFFFFF",
"selectionBackground": "#FFFFFF",
"tagForeground": "#2979ff",
"tagBackground": "#FFFFFF",
"trialTagBackground": "#FFFFFF",
"Button": {
"installBackground": "#DBDBDC",
"installBorderColor": "#DBDBDC",
"installForeground": "#232324",
"installFocusedBackground": "#FFFFFF",
"installFillForeground": "#b8b8b9",
"installFillBackground": "#DBDBDC",
"updateBackground": "#DBDBDC",
"updateBorderColor": "#DBDBDC",
"updateForeground": "#232324"
},
"SearchField": {
"background": "#eaeaeb",
"borderColor": "#DBDBDC"
},
"SectionHeader": {
"background": "#EAEAEB",
"foreground": "#232324"
},
"Tab": {
"hoverBackground": "#DBDBDC",
"selectedForeground": "#232324",
"selectedBackground": "#DBDBDC"
}
},
"Popup": {
"Advertiser": {
"background": "#F4F4F4",
"borderColor": "#F4F4F4",
"foreground": "#2979ff"
},
"borderColor": "#eaeaeb",
"inactiveBorderColor": "#F4F4F4",
"innerBorderColor": "#EAEAEB",
"Header": {
"activeBackground": "#F4F4F4",
"inactiveBackground": "#eaeaeb"
},
"paintBorder": true,
"separatorForeground": "#232324",
"separatorColor": "#EAEAEB",
"Toolbar": {
"Floating.background": "#eaeaeb",
"background": "#eaeaeb",
"borderColor": "#eaeaeb"
}
},
"PopupMenu": {
"background": "#F4F4F4",
"border": "2,0,2,0",
"foreground": "#232324",
"translucentBackground": "#F4F4F4"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#F4F4F4",
"foreground": "#2979ff",
"indeterminateEndColor": "#2979ff",
"indeterminateStartColor": "#2979ff",
"progressColor": "#2979ff",
"selectionBackground": "#FFFFFF",
"trackColor": "#FFFFFF"
},
"PsiViewer": {
"referenceHighlightColor": "#2979ff"
},
"RadioButton": {
"background": "#F4F4F4",
"disabledText": "#b8b8b9",
"foreground": "#232324"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#7f7f7f",
"acceleratorSelectionForeground": "#7f7f7f",
"background": "#F4F4F4",
"disabledBackground": "#F4F4F4",
"disabledForeground": "#b8b8b9",
"foreground": "#232324",
"selectionBackground": "#FFFFFF",
"selectionForeground": "#232324"
},
"ScrollBar": {
"background": "#F4F4F4",
"hoverThumbBorderColor": "#2979ff",
"hoverThumbColor": "#2979ff",
"hoverTrackColor": "#F4F4F430",
"Mac": {
"hoverThumbBorderColor": "#2979ff",
"hoverThumbColor": "#2979ff",
"hoverTrackColor": "#F4F4F430",
"thumbBorderColor": "#2979ff70",
"thumbColor": "#2979ff70",
"trackColor": "#F4F4F430",
"Transparent": {
"hoverThumbBorderColor": "#2979ff",
"hoverThumbColor": "#2979ff",
"hoverTrackColor": "#F4F4F430",
"thumbBorderColor": "#2979ff70",
"thumbColor": "#2979ff70",
"trackColor": "#F4F4F430"
}
},
"thumb": "#FFFFFF",
"thumbBorderColor": "#2979ff70",
"thumbColor": "#2979ff70",
"trackColor": "#F4F4F430",
"Transparent": {
"hoverThumbBorderColor": "#2979ff",
"hoverThumbColor": "#2979ff",
"hoverTrackColor": "#F4F4F430",
"thumbBorderColor": "#2979ff70",
"thumbColor": "#2979ff70",
"trackColor": "#F4F4F430"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#eaeaeb",
"foreground": "#7f7f7f"
},
"Header": {
"background": "#F4F4F4"
},
"List": {
"separatorForeground": "#7f7f7f",
"separatorColor": "#DBDBDC"
},
"SearchField": {
"background": "#F4F4F4",
"borderColor": "#eaeaeb",
"infoForeground": "#7f7f7f"
},
"Tab": {
"active.foreground": "#232324",
"selectedForeground": "#232324",
"selectedBackground": "#FFFFFF"
}
},
"SearchMatch": {
"endBackground": "#2979ff",
"startBackground": "#2979ff"
},
"SearchField.errorBackground": "#F2F2F2",
"Separator": {
"background": "#EAEAEB",
"foreground": "#EAEAEB",
"separatorColor": "#EAEAEB"
},
"SidePanel": {
"background": "#eaeaeb"
},
"Slider": {
"background": "#F4F4F4",
"buttonBorderColor": "#2979ff",
"buttonColor": "#2979ff",
"foreground": "#232324",
"majorTickLength": 6,
"tickColor": "#EAEAEB",
"trackColor": "#DBDBDC",
"trackWidth": 7,
"thumb": "#2979ff"
},
"SpeedSearch": {
"background": "#FFFFFF",
"borderColor": "#DBDBDC",
"foreground": "#232324",
"errorForeground": "#232324"
},
"Spinner": {
"background": "#F4F4F4",
"border": "3,3,3,3",
"foreground": "#232324",
"selectionForeground": "#232324"
},
"SplitPane": {
"background": "#F4F4F4",
"highlight": "#eaeaeb"
},
"SplitPaneDivider.draggingColor": "#EAEAEB",
"StatusBar": {
"borderColor": "#F4F4F4"
},
"TabbedPane": {
"background": "#F4F4F4",
"contentAreaColor": "#FFFFFF",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#DBDBDC",
"disabledForeground": "#b8b8b9",
"disabledUnderlineColor": "#b8b8b9",
"focus": "#DBDBDC",
"focusColor": "#DBDBDC",
"fontSizeOffset": 0,
"foreground": "#232324",
"highlight": "#DBDBDC",
"hoverColor": "#FFFFFF",
"labelShift": 0,
"selectedForeground": "#232324",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#2979ff"
},
"TabbedPane.mt.tab.background": "#eaeaeb",
"Table": {
"background": "#F4F4F4",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#2979ff",
"dropLineShortColor": "#2979ff",
"focusCellBackground": "#DBDBDC",
"focusCellForeground": "#232324",
"foreground": "#232324",
"gridColor": "#F4F4F4",
"highlightOuter": "#DBDBDC",
"lightSelectionForeground": "#232324",
"lightSelectionInactiveForeground": "#7f7f7f",
"lightSelectionInactiveBackground": "#EAEAEB",
"selectionBackground": "#DBDBDC",
"selectionForeground": "#232324",
"selectionInactiveBackground": "#DBDBDC",
"selectionInactiveForeground": "#232324",
"sortIconColor": "#232324",
"stripeColor": "#eaeaeb"
},
"TableHeader": {
"background": "#F4F4F4",
"borderColor": "#F4F4F4",
"bottomSeparatorColor": "#EAEAEB",
"cellBorder": "4,0,4,0",
"disabledForeground": "#b8b8b9",
"foreground": "#232324",
"focusCellBackground": "#DBDBDC",
"focusCellForeground": "#232324",
"height": 25,
"separatorColor": "#EAEAEB"
},
"text": "#7f7f7f",
"textInactiveText": "#7f7f7f",
"textText": "#7f7f7f",
"TextArea": {
"background": "#eaeaeb",
"caretForeground": "#2979ff",
"foreground": "#232324",
"inactiveForeground": "#b8b8b9",
"selectionBackground": "#DBDBDC",
"selectionForeground": "#232324"
},
"TextField": {
"background": "#eaeaeb",
"caretForeground": "#2979ff",
"foreground": "#232324",
"inactiveForeground": "#b8b8b9",
"selectionBackground": "#DBDBDC",
"selectionForeground": "#232324"
},
"TextPane": {
"background": "#eaeaeb",
"caretForeground": "#2979ff",
"foreground": "#232324",
"inactiveForeground": "#b8b8b9",
"selectionBackground": "#DBDBDC",
"selectionForeground": "#232324"
},
"TitlePane": {
"background": "#eaeaeb",
"Button.hoverBackground": "#FFFFFF",
"inactiveBackground": "#F4F4F4",
"infoForeground": "#7f7f7f",
"inactiveInfoForeground": "#7f7f7f"
},
"TitledBorder.titleColor": "#232324",
"ToggleButton": {
"borderColor": "#DBDBDC",
"buttonColor": "#232324",
"disabledText": "#b8b8b9",
"foreground": "#232324",
"offForeground": "#F4F4F4",
"offBackground": "#F4F4F4",
"onBackground": "#2979ff",
"onForeground": "#2979ff"
},
"ToolBar": {
"background": "#eaeaeb",
"borderHandleColor": "#7f7f7f",
"floatingForeground": "#7f7f7f",
"foreground": "#232324"
},
"ToolTip": {
"Actions.background": "#F4F4F4",
"Actions.infoForeground": "#7f7f7f",
"background": "#F4F4F4",
"borderColor": "#FFFFFF",
"foreground": "#232324",
"infoForeground": "#7f7f7f",
"separatorColor": "#DBDBDC",
"shortcutForeground": "#7f7f7f"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#DBDBDC",
"selectedForeground": "#232324",
"selectedBackground": "#eaeaeb"
},
"Header": {
"background": "#F4F4F4",
"borderColor": "#EAEAEB",
"inactiveBackground": "#F4F4F4"
},
"HeaderCloseButton": {
"background": "#F4F4F4"
},
"HeaderTab": {
"hoverBackground": "#FFFFFF",
"hoverInactiveBackground": "#EAEAEB",
"inactiveUnderlineColor": "#2979ff",
"selectedBackground": "#eaeaeb",
"selectedInactiveBackground": "#eaeaeb",
"underlineColor": "#2979ff",
"underlinedTabBackground": "#FFFFFF",
"underlinedTabInactiveBackground": "#EAEAEB"
}
},
"Tree": {
"background": "#eaeaeb",
"foreground": "#7f7f7f",
"hash": "#DBDBDC",
"modifiedItemForeground": "#2979ff",
"rowHeight": 28,
"selectionBackground": "#DBDBDC80",
"selectionForeground": "#232324",
"selectionInactiveForeground": "#232324",
"selectionInactiveBackground": "#DBDBDC80",
"textBackground": "#eaeaeb"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#DBDBDC",
"ColorPicker.background": "#F4F4F4",
"ColorPicker.foreground": "#232324",
"Component.borderColor": "#DBDBDC",
"Component.background": "#F4F4F4",
"Component.foreground": "#232324",
"Connector.borderColor": "#DBDBDC",
"Connector.hoverBorderColor": "#FFFFFF",
"Canvas.background": "#eaeaeb",
"highStroke.foreground": "#232324",
"Label.foreground": "#7f7f7f",
"List.selectionBackground": "#DBDBDC80",
"Panel.borderColor": "#DBDBDC",
"Panel.background": "#F4F4F4",
"percent.foreground": "#232324",
"Placeholder.background": "#F4F4F4",
"Placeholder.borderColor": "#DBDBDC",
"Placeholder.foreground": "#232324",
"Placeholder.selectedForeground": "#232324",
"Preview.background": "#F4F4F4",
"stroke.acceleratorForeground": "#7f7f7f"
},
"ValidationTooltip": {
"errorBackground": "#F2F2F2",
"errorBorderColor": "#F2F2F2",
"warningBackground": "#F2F2F2",
"warningBorderColor": "#F2F2F2"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#F4F4F4"
},
"GitCommits": {
"graphColor": "#FFFFFF"
},
"GitLog": {
"localBranchIconColor": "#2979ff",
"otherIconColor": "#7f7f7f",
"remoteBranchIconColor": "#232324",
"tagIconColor": "#7f7f7f"
},
"HgLog": {
"branchIconColor": "#2979ff",
"bookmarkIconColor": "#232324",
"closedBranchIconColor": "#b8b8b9",
"localTagIconColor": "#7f7f7f",
"mqTagIconColor": "#7f7f7f",
"tagIconColor": "#7f7f7f",
"tipIconColor": "#7f7f7f"
},
"Log": {
"Commit.unmatchedForeground": "#7f7f7f",
"Commit.currentBranchBackground": "#EAEAEB"
},
"RefLabel": {
"foreground": "#232324",
"backgroundBase": "#FFFFFF"
}
},
"Viewport": {
"background": "#eaeaeb",
"foreground": "#232324"
},
"WelcomeScreen": {
"background": "#F4F4F4",
"borderColor": "#F4F4F4",
"captionBackground": "#eaeaeb",
"captionForeground": "#232324",
"footerBackground": "#eaeaeb",
"footerForeground": "#232324",
"headerBackground": "#F4F4F4",
"headerForeground": "#232324",
"separatorColor": "#DBDBDC",
"Projects": {
"background": "#EAEAEB",
"selectionBackground": "#FFFFFF",
"selectionInactiveBackground": "#EAEAEB"
}
},
"window": "#eaeaeb",
"windowBorder": "#DBDBDC",
"windowText": "#7f7f7f",
"Window.border": "#DBDBDC"
},
"icons": {
"ColorPalette": {
"#43494A": "#eaeaeb",
"#6B6B6B": "#7f7f7f",
"#A7A7A7": "#F4F4F4",
"#3D6185": "#2979ff",
"#466D94": "#2979ff",
"#3C3F41": "#F4F4F4",
"#545556": "#b8b8b9",
"#606060": "#b8b8b9",
"#9AA7B0": "#232324",
"#675133": "#2979ff",
"Actions.Blue": "#4078F2",
"Actions.Green": "#50A14E",
"Actions.Grey": "#7f7f7f",
"Actions.GreyInline": "#A0A1A7",
"Actions.GreyInline.Dark": "#232324",
"Actions.Red": "#E4564A",
"Actions.Yellow": "#C18401",
"Checkbox.Background.Default": "#eaeaeb",
"Checkbox.Background.Default.Dark": "#eaeaeb",
"Checkbox.Background.Disabled": "#CACACB",
"Checkbox.Background.Disabled.Dark": "#CACACB",
"Checkbox.Border.Default": "#DBDBDC",
"Checkbox.Border.Default.Dark": "#DBDBDC",
"Checkbox.Border.Disabled": "#b8b8b9",
"Checkbox.Border.Disabled.Dark": "#b8b8b9",
"Checkbox.Focus.Thin.Default": "#2979ff",
"Checkbox.Focus.Thin.Default.Dark": "#2979ff",
"Checkbox.Focus.Wide": "#2979ff",
"Checkbox.Focus.Wide.Dark": "#2979ff",
"Checkbox.Foreground.Disabled": "#b8b8b9",
"Checkbox.Foreground.Disabled.Dark": "#b8b8b9",
"Checkbox.Background.Selected": "#2979ff",
"Checkbox.Background.Selected.Dark": "#F4F4F4",
"Checkbox.Border.Selected": "#2979ff",
"Checkbox.Border.Selected.Dark": "#2979ff",
"Checkbox.Foreground.Selected": "#2979ff",
"Checkbox.Foreground.Selected.Dark": "#2979ff",
"Checkbox.Focus.Thin.Selected": "#232324",
"Checkbox.Focus.Thin.Selected.Dark": "#232324",
"Objects.Grey": "#A0A1A7",
"Objects.Blue": "#4078F2",
"Objects.RedStatus": "#E4564A",
"Objects.Red": "#E4564A",
"Objects.Pink": "#A626A4",
"Objects.Yellow": "#C18401",
"Objects.Green": "#50A14E",
"Objects.Purple": "#A626A4",
"Objects.BlackText": "#232324",
"Objects.YellowDark": "#986801",
"Objects.GreenAndroid": "#50A14E"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "Atom One Light",
"dark": false,
"author": "Mallowigi",
"editorScheme": "/colors/Atom One Light.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#7f7f7f",
"background": "#F4F4F4",
"borderColor": "#DBDBDC",
"disabledBackground": "#CACACB",
"disabledForeground": "#b8b8b9",
"disabledText": "#b8b8b9",
"focusColor": "#FFFFFF",
"focusedBorderColor": "#2979ff",
"foreground": "#232324",
"inactiveBackground": "#CACACB",
"inactiveForeground": "#7f7f7f",
"infoForeground": "#7f7f7f",
"selectionBackground": "#FFFFFF",
"selectionBackgroundInactive": "#EAEAEB",
"selectionForeground": "#232324",
"selectionInactiveBackground": "#EAEAEB",
"separatorColor": "#DBDBDC"
},
"activeCaption": "#F4F4F4",
"ActionButton": {
"hoverBackground": "#2979ff50",
"hoverBorderColor": "#2979ff50",
"hoverSeparatorColor": "#DBDBDC",
"focusedBorderColor": "#2979ff50",
"pressedBackground": "#2979ff50",
"pressedBorderColor": "#2979ff50"
},
"Autocomplete": {
"selectionBackground": "#FFFFFF"
},
"Borders.ContrastBorderColor": "#F4F4F4",
"Borders.color": "#DBDBDC",
"Button": {
"arc": 0,
"background": "#F4F4F4",
"default": {
"endBackground": "#DBDBDC",
"endBorderColor": "#DBDBDC",
"foreground": "#232324",
"focusColor": "#2979ff",
"focusedBorderColor": "#2979ff",
"shadowColor": "#DBDBDC",
"startBackground": "#DBDBDC",
"startBorderColor": "#DBDBDC"
},
"disabledBorderColor": "#DBDBDC",
"disabledText": "#b8b8b9",
"endBackground": "#DBDBDC",
"endBorderColor": "#DBDBDC",
"focus": "#FFFFFF",
"focusedBorderColor": "#2979ff",
"foreground": "#7f7f7f",
"highlight": "#232324",
"mt.background": "#DBDBDC",
"mt.foreground": "#7f7f7f",
"mt.selectedForeground": "#232324",
"mt.selection.color1": "#DBDBDC",
"mt.selection.color2": "#DBDBDC",
"startBackground": "#DBDBDC",
"startBorderColor": "#DBDBDC",
"shadowColor": "#DBDBDC",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#DBDBDC",
"Tooltip.background": "#F2F2F2"
},
"Content.background": "#eaeaeb",
"CheckBox": {
"background": "#F4F4F4",
"disabledText": "#b8b8b9",
"foreground": "#232324",
"select": "#2979ff"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#7f7f7f",
"acceleratorSelectionForeground": "#7f7f7f",
"background": "#F4F4F4",
"disabledBackground": "#F4F4F4",
"disabledForeground": "#b8b8b9",
"foreground": "#232324",
"selectionBackground": "#FFFFFF",
"selectionForeground": "#232324"
},
"ColorChooser": {
"background": "#F4F4F4",
"foreground": "#232324",
"swatchesDefaultRecentColor": "#232324"
},
"ComboBoxButton.background": "#DBDBDC",
"ComboBox": {
"ArrowButton": {
"background": "#DBDBDC",
"disabledIconColor": "#b8b8b9",
"iconColor": "#232324",
"nonEditableBackground": "#F4F4F4"
},
"background": "#F4F4F4",
"buttonBackground": "#DBDBDC",
"disabledForeground": "#b8b8b9",
"foreground": "#232324",
"modifiedItemForeground": "#2979ff",
"nonEditableBackground": "#EAEAEB",
"padding": "5,5,5,5",
"selectionBackground": "#DBDBDC",
"selectionForeground": "#232324"
},
"ComboPopup.border": "#DBDBDC",
"CompletionPopup": {
"background": "#EAEAEB",
"foreground": "#232324",
"infoForeground": "#7f7f7f",
"matchForeground": "#2979ff",
"matchSelectionForeground": "#2979ff",
"nonFocusedState": "false",
"selectedGrayedForeground": "#232324",
"selectionGrayForeground": "#232324",
"selectionInactiveInfoForeground": "#7f7f7f",
"selectionInactiveBackground": "#FFFFFF50",
"selectionBackground": "#FFFFFF80",
"selectionForeground": "#232324",
"selectionInfoForeground": "#232324"
},
"Component": {
"arc": 4,
"borderColor": "#FFFFFF",
"disabledBorderColor": "#DBDBDC",
"focusColor": "#2979ff",
"focusedBorderColor": "#2979ff",
"hoverIconColor": "#2979ff",
"infoForeground": "#7f7f7f",
"iconColor": "#232324"
},
"control": "#F4F4F4",
"controlText": "#7f7f7f",
"Counter": {
"background": "#2979ff",
"foreground": "#232324"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#7f7f7f",
"changedValueForeground": "#2979ff",
"errorMessageForeground": "#E4564A",
"evaluatingExpressionForeground": "#7f7f7f",
"exceptionForeground": "#C18401",
"modifyingValueForeground": "#2979ff",
"valueForeground": "#2979ff"
}
},
"DebuggerTabs": {
"selectedBackground": "#FFFFFF",
"underlinedTabBackground": "#FFFFFF"
},
"DebuggerPopup": {
"borderColor": "#FFFFFF"
},
"DefaultTabs": {
"background": "#F4F4F4",
"borderColor": "#F4F4F4",
"hoverBackground": "#DBDBDC",
"hoverColor": "#F4F4F4",
"hoverMaskColor": "#FFFFFF",
"inactiveColoredFileBackground": "#DBDBDC",
"inactiveUnderlineColor": "#b8b8b9",
"inactiveMaskColor": "#F4F4F4",
"underlineColor": "#2979ff",
"underlinedTabBackground": "#DBDBDC"
},
"Desktop.background": "#F4F4F4",
"DialogWrapper.southPanelBackground": "#F4F4F4",
"DialogWrapper.southPanelDivider": "#F4F4F4",
"DragAndDrop": {
"areaBackground": "#F4F4F4",
"areaBorderColor": "#F4F4F4",
"areaForeground": "#232324"
},
"Editor": {
"background": "#F4F4F4",
"foreground": "#232324",
"shortcutForeground": "#7f7f7f"
},
"EditorPane": {
"background": "#F4F4F4",
"caretForeground": "#2979ff",
"foreground": "#232324",
"inactiveBackground": "#F4F4F4",
"inactiveForeground": "#b8b8b9",
"selectionBackground": "#FFFFFF",
"selectionForeground": "#232324"
},
"EditorTabs": {
"borderColor": "#EAEAEB",
"hoverColor": "#FFFFFF",
"hoverMaskColor": "#FFFFFF",
"inactiveMaskColor": "#F4F4F4",
"inactiveColoredFileBackground": "#F4F4F42",
"inactiveUnderlineColor": "#b8b8b9",
"selectedForeground": "#232324",
"selectedBackground": "#DBDBDC",
"underlineColor": "#2979ff",
"underlinedTabBackground": "#DBDBDC"
},
"EditorGroupsTabs": {
"background": "#F4F4F4",
"borderColor": "#EAEAEB",
"hoverBackground": "#FFFFFF",
"hoverColor": "#FFFFFF",
"inactiveUnderlineColor": "#2979ff",
"underlineColor": "#2979ff",
"underlinedTabBackground": "#DBDBDC",
"underlinedTabForeground": "#232324"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#CACACB",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#DBDBDC",
"FormattedTextField": {
"background": "#F4F4F4",
"caretForeground": "#2979ff",
"foreground": "#232324",
"inactiveBackground": "#DBDBDC",
"inactiveForeground": "#b8b8b9",
"selectionForeground": "#232324",
"selectionBackground": "#DBDBDC"
},
"Group": {
"disabledSeparatorColor": "#DBDBDC",
"separatorColor": "#DBDBDC"
},
"GutterTooltip": {
"infoForeground": "#232324",
"lineSeparatorColor": "#F4F4F4"
},
"HeaderColor": {
"active": "#F4F4F4",
"inactive": "#eaeaeb"
},
"HelpTooltip": {
"background": "#F4F4F4",
"borderColor": "#DBDBDC",
"foreground": "#232324",
"infoForeground": "#7f7f7f",
"shortcutForeground": "#7f7f7f"
},
"Hyperlink.linkColor": "#2979ff",
"inactiveCaption": "#EAEAEB",
"inactiveCaptionBorder": "#F4F4F4",
"inactiveCaptionText": "#7f7f7f",
"info": "#7f7f7f",
"infoText": "#7f7f7f",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#DBDBDC",
"InplaceRefactoringPopup": {
"borderColor": "#F4F4F4"
},
"InternalFrame": {
"activeTitleForeground": "#232324",
"background": "#F4F4F4",
"inactiveTitleForeground": "#7f7f7f"
},
"Label": {
"background": "#F4F4F4",
"disabledForeground": "#b8b8b9",
"disabledShadow": "#F4F4F4",
"disabledText": "#b8b8b9",
"foreground": "#232324",
"infoForeground": "#7f7f7f",
"selectedForeground": "#232324"
},
"Link": {
"activeForeground": "#2979ff",
"hoverForeground": "#2979ff",
"pressedForeground": "#2979ff",
"secondaryForeground": "#7f7f7f",
"visitedForeground": "#2979ff"
},
"link.foreground": "#2979ff",
"List": {
"background": "#EAEAEB",
"foreground": "#232324",
"selectionBackground": "#FFFFFF50",
"selectionForeground": "#232324",
"selectionInactiveForeground": "#232324",
"selectionInactiveBackground": "#DBDBDC80"
},
"material": {
"background": "#F4F4F4",
"branchColor": "#232324",
"contrast": "#eaeaeb",
"foreground": "#232324",
"mergeCommits": "#DBDBDC",
"primaryColor": "#7f7f7f",
"selectionForeground": "#232324",
"tab.backgroundColor": "#F4F4F4",
"tab.borderColor": "#2979ff",
"tagColor": "#7f7f7f"
},
"MemoryIndicator": {
"allocatedBackground": "#EAEAEB",
"usedColor": "#FFFFFF",
"usedBackground": "#FFFFFF"
},
"Menu": {
"acceleratorForeground": "#7f7f7f",
"acceleratorSelectionForeground": "#232324",
"background": "#F4F4F4",
"border": "4,2,4,2",
"borderColor": "#EAEAEB",
"disabledBackground": "#EAEAEB",
"disabledForeground": "#b8b8b9",
"foreground": "#232324",
"selectionBackground": "#FFFFFF",
"selectionForeground": "#232324",
"separatorColor": "#DBDBDC"
},
"MenuBar": {
"background": "#F4F4F4",
"borderColor": "#F4F4F4",
"disabledBackground": "#F4F4F4",
"disabledForeground": "#b8b8b9",
"foreground": "#232324",
"highlight": "#F4F4F4",
"selectionBackground": "#FFFFFF",
"selectionForeground": "#232324",
"shadow": "#F4F4F4"
},
"MenuItem": {
"acceleratorForeground": "#7f7f7f",
"acceleratorSelectionForeground": "#232324",
"border": "4,2,4,2",
"background": "#F4F4F4",
"disabledBackground": "#F4F4F4",
"disabledForeground": "#b8b8b9",
"foreground": "#232324",
"selectionBackground": "#FFFFFF",
"selectionForeground": "#232324"
},
"NavBar": {
"arrowColor": "#232324",
"borderColor": "#F4F4F4"
},
"NewClass": {
"Panel": {
"background": "#F4F4F4"
},
"SearchField": {
"background": "#F4F4F4"
}
},
"NewPSD.warning": "#2979ff",
"Notification": {
"background": "#F2F2F2",
"borderColor": "#F2F2F2",
"errorBackground": "#F2F2F2",
"errorBorderColor": "#F2F2F2",
"foreground": "#232324",
"MoreButton": {
"background": "#DBDBDC",
"foreground": "#232324",
"innerBorderColor": "#DBDBDC"
},
"ToolWindow": {
"errorBackground": "#F2F2F2",
"errorBorderColor": "#F2F2F2",
"informativeBackground": "#F2F2F2",
"informativeBorderColor": "#F2F2F2",
"warningBackground": "#F2F2F2",
"warningBorderColor": "#F2F2F2"
}
},
"OnePixelDivider.background": "#DBDBDC",
"OptionPane": {
"background": "#F4F4F4",
"foreground": "#232324",
"messageForeground": "#232324"
},
"Outline": {
"color": "#DBDBDC",
"focusedColor": "#2979ff",
"disabledColor": "#b8b8b9"
},
"Panel": {
"background": "#F4F4F4",
"foreground": "#232324"
},
"ParameterInfo": {
"background": "#EAEAEB",
"borderColor": "#DBDBDC",
"currentOverloadBackground": "#DBDBDC",
"currentParameterForeground": "#2979ff",
"disabledForeground": "#b8b8b9",
"foreground": "#232324",
"infoForeground": "#7f7f7f",
"lineSeparatorColor": "#DBDBDC"
},
"PasswordField": {
"background": "#F4F4F4",
"capsLockIconColor": "#2979ff",
"caretForeground": "#2979ff",
"foreground": "#232324",
"inactiveForeground": "#b8b8b9",
"selectionBackground": "#DBDBDC",
"selectionForeground": "#232324"
},
"Plugins": {
"background": "#F4F4F4",
"disabledForeground": "#b8b8b9",
"eapTagBackground": "#FFFFFF",
"lightSelectionBackground": "#FFFFFF",
"paidTagBackground": "#FFFFFF",
"selectionBackground": "#FFFFFF",
"tagForeground": "#2979ff",
"tagBackground": "#FFFFFF",
"trialTagBackground": "#FFFFFF",
"Button": {
"installBackground": "#DBDBDC",
"installBorderColor": "#DBDBDC",
"installForeground": "#232324",
"installFocusedBackground": "#FFFFFF",
"installFillForeground": "#b8b8b9",
"installFillBackground": "#DBDBDC",
"updateBackground": "#DBDBDC",
"updateBorderColor": "#DBDBDC",
"updateForeground": "#232324"
},
"SearchField": {
"background": "#F4F4F4",
"borderColor": "#DBDBDC"
},
"SectionHeader": {
"background": "#EAEAEB",
"foreground": "#232324"
},
"Tab": {
"hoverBackground": "#DBDBDC",
"selectedForeground": "#232324",
"selectedBackground": "#DBDBDC"
}
},
"Popup": {
"Advertiser": {
"background": "#F4F4F4",
"borderColor": "#F4F4F4",
"foreground": "#2979ff"
},
"borderColor": "#eaeaeb",
"inactiveBorderColor": "#F4F4F4",
"innerBorderColor": "#EAEAEB",
"Header": {
"activeBackground": "#F4F4F4",
"inactiveBackground": "#eaeaeb"
},
"paintBorder": true,
"separatorForeground": "#232324",
"separatorColor": "#EAEAEB",
"Toolbar": {
"Floating.background": "#eaeaeb",
"background": "#eaeaeb",
"borderColor": "#eaeaeb"
}
},
"PopupMenu": {
"background": "#F4F4F4",
"border": "2,0,2,0",
"foreground": "#232324",
"translucentBackground": "#F4F4F4"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#F4F4F4",
"foreground": "#2979ff",
"indeterminateEndColor": "#2979ff",
"indeterminateStartColor": "#2979ff",
"progressColor": "#2979ff",
"selectionBackground": "#FFFFFF",
"trackColor": "#FFFFFF"
},
"PsiViewer": {
"referenceHighlightColor": "#2979ff"
},
"RadioButton": {
"background": "#F4F4F4",
"disabledText": "#b8b8b9",
"foreground": "#232324"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#7f7f7f",
"acceleratorSelectionForeground": "#7f7f7f",
"background": "#F4F4F4",
"disabledBackground": "#F4F4F4",
"disabledForeground": "#b8b8b9",
"foreground": "#232324",
"selectionBackground": "#FFFFFF",
"selectionForeground": "#232324"
},
"ScrollBar": {
"background": "#F4F4F4",
"hoverThumbBorderColor": "#2979ff",
"hoverThumbColor": "#2979ff",
"hoverTrackColor": "#F4F4F430",
"Mac": {
"hoverThumbBorderColor": "#2979ff",
"hoverThumbColor": "#2979ff",
"hoverTrackColor": "#F4F4F430",
"thumbBorderColor": "#2979ff70",
"thumbColor": "#2979ff70",
"trackColor": "#F4F4F430",
"Transparent": {
"hoverThumbBorderColor": "#2979ff",
"hoverThumbColor": "#2979ff",
"hoverTrackColor": "#F4F4F430",
"thumbBorderColor": "#2979ff70",
"thumbColor": "#2979ff70",
"trackColor": "#F4F4F430"
}
},
"thumb": "#FFFFFF",
"thumbBorderColor": "#2979ff70",
"thumbColor": "#2979ff70",
"trackColor": "#F4F4F430",
"Transparent": {
"hoverThumbBorderColor": "#2979ff",
"hoverThumbColor": "#2979ff",
"hoverTrackColor": "#F4F4F430",
"thumbBorderColor": "#2979ff70",
"thumbColor": "#2979ff70",
"trackColor": "#F4F4F430"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#eaeaeb",
"foreground": "#7f7f7f"
},
"Header": {
"background": "#F4F4F4"
},
"List": {
"separatorForeground": "#7f7f7f",
"separatorColor": "#DBDBDC"
},
"SearchField": {
"background": "#F4F4F4",
"borderColor": "#eaeaeb",
"infoForeground": "#7f7f7f"
},
"Tab": {
"active.foreground": "#232324",
"selectedForeground": "#232324",
"selectedBackground": "#FFFFFF"
}
},
"SearchMatch": {
"endBackground": "#2979ff",
"startBackground": "#2979ff"
},
"SearchField.errorBackground": "#F2F2F2",
"Separator": {
"background": "#EAEAEB",
"foreground": "#EAEAEB",
"separatorColor": "#EAEAEB"
},
"SidePanel": {
"background": "#F4F4F4"
},
"Slider": {
"background": "#F4F4F4",
"buttonBorderColor": "#2979ff",
"buttonColor": "#2979ff",
"foreground": "#232324",
"majorTickLength": 6,
"tickColor": "#EAEAEB",
"trackColor": "#DBDBDC",
"trackWidth": 7,
"thumb": "#2979ff"
},
"SpeedSearch": {
"background": "#FFFFFF",
"borderColor": "#DBDBDC",
"foreground": "#232324",
"errorForeground": "#232324"
},
"Spinner": {
"background": "#F4F4F4",
"border": "3,3,3,3",
"foreground": "#232324",
"selectionForeground": "#232324"
},
"SplitPane": {
"background": "#F4F4F4",
"highlight": "#F4F4F4"
},
"SplitPaneDivider.draggingColor": "#EAEAEB",
"StatusBar": {
"borderColor": "#F4F4F4"
},
"TabbedPane": {
"background": "#F4F4F4",
"contentAreaColor": "#FFFFFF",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#DBDBDC",
"disabledForeground": "#b8b8b9",
"disabledUnderlineColor": "#b8b8b9",
"focus": "#DBDBDC",
"focusColor": "#DBDBDC",
"fontSizeOffset": 0,
"foreground": "#232324",
"highlight": "#DBDBDC",
"hoverColor": "#FFFFFF",
"labelShift": 0,
"selectedForeground": "#232324",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#2979ff"
},
"TabbedPane.mt.tab.background": "#F4F4F4",
"Table": {
"background": "#F4F4F4",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#2979ff",
"dropLineShortColor": "#2979ff",
"focusCellBackground": "#DBDBDC",
"focusCellForeground": "#232324",
"foreground": "#232324",
"gridColor": "#F4F4F4",
"highlightOuter": "#DBDBDC",
"lightSelectionForeground": "#232324",
"lightSelectionInactiveForeground": "#7f7f7f",
"lightSelectionInactiveBackground": "#EAEAEB",
"selectionBackground": "#DBDBDC",
"selectionForeground": "#232324",
"selectionInactiveBackground": "#DBDBDC",
"selectionInactiveForeground": "#232324",
"sortIconColor": "#232324",
"stripeColor": "#eaeaeb"
},
"TableHeader": {
"background": "#F4F4F4",
"borderColor": "#F4F4F4",
"bottomSeparatorColor": "#EAEAEB",
"cellBorder": "4,0,4,0",
"disabledForeground": "#b8b8b9",
"foreground": "#232324",
"focusCellBackground": "#DBDBDC",
"focusCellForeground": "#232324",
"height": 25,
"separatorColor": "#EAEAEB"
},
"text": "#7f7f7f",
"textInactiveText": "#7f7f7f",
"textText": "#7f7f7f",
"TextArea": {
"background": "#F4F4F4",
"caretForeground": "#2979ff",
"foreground": "#232324",
"inactiveForeground": "#b8b8b9",
"selectionBackground": "#DBDBDC",
"selectionForeground": "#232324"
},
"TextField": {
"background": "#F4F4F4",
"caretForeground": "#2979ff",
"foreground": "#232324",
"inactiveForeground": "#b8b8b9",
"selectionBackground": "#DBDBDC",
"selectionForeground": "#232324"
},
"TextPane": {
"background": "#F4F4F4",
"caretForeground": "#2979ff",
"foreground": "#232324",
"inactiveForeground": "#b8b8b9",
"selectionBackground": "#DBDBDC",
"selectionForeground": "#232324"
},
"TitlePane": {
"background": "#eaeaeb",
"Button.hoverBackground": "#FFFFFF",
"inactiveBackground": "#F4F4F4",
"infoForeground": "#7f7f7f",
"inactiveInfoForeground": "#7f7f7f"
},
"TitledBorder.titleColor": "#232324",
"ToggleButton": {
"borderColor": "#DBDBDC",
"buttonColor": "#232324",
"disabledText": "#b8b8b9",
"foreground": "#232324",
"offForeground": "#F4F4F4",
"offBackground": "#F4F4F4",
"onBackground": "#2979ff",
"onForeground": "#2979ff"
},
"ToolBar": {
"background": "#F4F4F4",
"borderHandleColor": "#7f7f7f",
"floatingForeground": "#7f7f7f",
"foreground": "#232324"
},
"ToolTip": {
"Actions.background": "#F4F4F4",
"Actions.infoForeground": "#7f7f7f",
"background": "#F4F4F4",
"borderColor": "#FFFFFF",
"foreground": "#232324",
"infoForeground": "#7f7f7f",
"separatorColor": "#DBDBDC",
"shortcutForeground": "#7f7f7f"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#DBDBDC",
"selectedForeground": "#232324",
"selectedBackground": "#eaeaeb"
},
"Header": {
"background": "#F4F4F4",
"borderColor": "#EAEAEB",
"inactiveBackground": "#F4F4F4"
},
"HeaderCloseButton": {
"background": "#F4F4F4"
},
"HeaderTab": {
"hoverBackground": "#FFFFFF",
"hoverInactiveBackground": "#EAEAEB",
"inactiveUnderlineColor": "#2979ff",
"selectedBackground": "#eaeaeb",
"selectedInactiveBackground": "#eaeaeb",
"underlineColor": "#2979ff",
"underlinedTabBackground": "#FFFFFF",
"underlinedTabInactiveBackground": "#EAEAEB"
}
},
"Tree": {
"background": "#F4F4F4",
"foreground": "#7f7f7f",
"hash": "#DBDBDC",
"modifiedItemForeground": "#2979ff",
"rowHeight": 28,
"selectionBackground": "#DBDBDC80",
"selectionForeground": "#232324",
"selectionInactiveForeground": "#232324",
"selectionInactiveBackground": "#DBDBDC80",
"textBackground": "#F4F4F4"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#DBDBDC",
"ColorPicker.background": "#F4F4F4",
"ColorPicker.foreground": "#232324",
"Component.borderColor": "#DBDBDC",
"Component.background": "#F4F4F4",
"Component.foreground": "#232324",
"Connector.borderColor": "#DBDBDC",
"Connector.hoverBorderColor": "#FFFFFF",
"Canvas.background": "#eaeaeb",
"highStroke.foreground": "#232324",
"Label.foreground": "#7f7f7f",
"List.selectionBackground": "#DBDBDC80",
"Panel.borderColor": "#DBDBDC",
"Panel.background": "#F4F4F4",
"percent.foreground": "#232324",
"Placeholder.background": "#F4F4F4",
"Placeholder.borderColor": "#DBDBDC",
"Placeholder.foreground": "#232324",
"Placeholder.selectedForeground": "#232324",
"Preview.background": "#F4F4F4",
"stroke.acceleratorForeground": "#7f7f7f"
},
"ValidationTooltip": {
"errorBackground": "#F2F2F2",
"errorBorderColor": "#F2F2F2",
"warningBackground": "#F2F2F2",
"warningBorderColor": "#F2F2F2"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#F4F4F4"
},
"GitCommits": {
"graphColor": "#FFFFFF"
},
"GitLog": {
"localBranchIconColor": "#2979ff",
"otherIconColor": "#7f7f7f",
"remoteBranchIconColor": "#232324",
"tagIconColor": "#7f7f7f"
},
"HgLog": {
"branchIconColor": "#2979ff",
"bookmarkIconColor": "#232324",
"closedBranchIconColor": "#b8b8b9",
"localTagIconColor": "#7f7f7f",
"mqTagIconColor": "#7f7f7f",
"tagIconColor": "#7f7f7f",
"tipIconColor": "#7f7f7f"
},
"Log": {
"Commit.unmatchedForeground": "#7f7f7f",
"Commit.currentBranchBackground": "#EAEAEB"
},
"RefLabel": {
"foreground": "#232324",
"backgroundBase": "#FFFFFF"
}
},
"Viewport": {
"background": "#F4F4F4",
"foreground": "#232324"
},
"WelcomeScreen": {
"background": "#F4F4F4",
"borderColor": "#F4F4F4",
"captionBackground": "#eaeaeb",
"captionForeground": "#232324",
"footerBackground": "#eaeaeb",
"footerForeground": "#232324",
"headerBackground": "#F4F4F4",
"headerForeground": "#232324",
"separatorColor": "#DBDBDC",
"Projects": {
"background": "#EAEAEB",
"selectionBackground": "#FFFFFF",
"selectionInactiveBackground": "#EAEAEB"
}
},
"window": "#F4F4F4",
"windowBorder": "#DBDBDC",
"windowText": "#7f7f7f",
"Window.border": "#DBDBDC"
},
"icons": {
"ColorPalette": {
"#43494A": "#eaeaeb",
"#6B6B6B": "#7f7f7f",
"#A7A7A7": "#F4F4F4",
"#3D6185": "#2979ff",
"#466D94": "#2979ff",
"#3C3F41": "#F4F4F4",
"#545556": "#b8b8b9",
"#606060": "#b8b8b9",
"#9AA7B0": "#232324",
"#675133": "#2979ff",
"Actions.Blue": "#4078F2",
"Actions.Green": "#50A14E",
"Actions.Grey": "#7f7f7f",
"Actions.GreyInline": "#A0A1A7",
"Actions.GreyInline.Dark": "#232324",
"Actions.Red": "#E4564A",
"Actions.Yellow": "#C18401",
"Checkbox.Background.Default": "#eaeaeb",
"Checkbox.Background.Default.Dark": "#eaeaeb",
"Checkbox.Background.Disabled": "#CACACB",
"Checkbox.Background.Disabled.Dark": "#CACACB",
"Checkbox.Border.Default": "#DBDBDC",
"Checkbox.Border.Default.Dark": "#DBDBDC",
"Checkbox.Border.Disabled": "#b8b8b9",
"Checkbox.Border.Disabled.Dark": "#b8b8b9",
"Checkbox.Focus.Thin.Default": "#2979ff",
"Checkbox.Focus.Thin.Default.Dark": "#2979ff",
"Checkbox.Focus.Wide": "#2979ff",
"Checkbox.Focus.Wide.Dark": "#2979ff",
"Checkbox.Foreground.Disabled": "#b8b8b9",
"Checkbox.Foreground.Disabled.Dark": "#b8b8b9",
"Checkbox.Background.Selected": "#2979ff",
"Checkbox.Background.Selected.Dark": "#F4F4F4",
"Checkbox.Border.Selected": "#2979ff",
"Checkbox.Border.Selected.Dark": "#2979ff",
"Checkbox.Foreground.Selected": "#2979ff",
"Checkbox.Foreground.Selected.Dark": "#2979ff",
"Checkbox.Focus.Thin.Selected": "#232324",
"Checkbox.Focus.Thin.Selected.Dark": "#232324",
"Objects.Grey": "#A0A1A7",
"Objects.Blue": "#4078F2",
"Objects.RedStatus": "#E4564A",
"Objects.Red": "#E4564A",
"Objects.Pink": "#A626A4",
"Objects.Yellow": "#C18401",
"Objects.Green": "#50A14E",
"Objects.Purple": "#A626A4",
"Objects.BlackText": "#232324",
"Objects.YellowDark": "#986801",
"Objects.GreenAndroid": "#50A14E"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "Dracula Contrast",
"dark": true,
"author": "Mallowigi",
"editorScheme": "/colors/Dracula.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#6272A4",
"background": "#282A36",
"borderColor": "#21222C",
"disabledBackground": "#313341",
"disabledForeground": "#6272A4",
"disabledText": "#6272A4",
"focusColor": "#6272A4",
"focusedBorderColor": "#FF79C5",
"foreground": "#F8F8F2",
"inactiveBackground": "#313341",
"inactiveForeground": "#6272A4",
"infoForeground": "#6272A4",
"selectionBackground": "#44475A",
"selectionBackgroundInactive": "#282A36",
"selectionForeground": "#8BE9FD",
"selectionInactiveBackground": "#282A36",
"separatorColor": "#21222C"
},
"activeCaption": "#282A36",
"ActionButton": {
"hoverBackground": "#FF79C550",
"hoverBorderColor": "#FF79C550",
"hoverSeparatorColor": "#393C4B",
"focusedBorderColor": "#FF79C550",
"pressedBackground": "#FF79C550",
"pressedBorderColor": "#FF79C550"
},
"Autocomplete": {
"selectionBackground": "#44475A"
},
"Borders.ContrastBorderColor": "#282A36",
"Borders.color": "#21222C",
"Button": {
"arc": 0,
"background": "#282A36",
"default": {
"endBackground": "#44475A",
"endBorderColor": "#44475A",
"foreground": "#8BE9FD",
"focusColor": "#FF79C5",
"focusedBorderColor": "#FF79C5",
"shadowColor": "#44475A",
"startBackground": "#44475A",
"startBorderColor": "#44475A"
},
"disabledBorderColor": "#393C4B",
"disabledText": "#6272A4",
"endBackground": "#393C4B",
"endBorderColor": "#393C4B",
"focus": "#6272A4",
"focusedBorderColor": "#FF79C5",
"foreground": "#6272A4",
"highlight": "#8BE9FD",
"mt.background": "#393C4B",
"mt.foreground": "#6272A4",
"mt.selectedForeground": "#8BE9FD",
"mt.selection.color1": "#44475A",
"mt.selection.color2": "#44475A",
"startBackground": "#393C4B",
"startBorderColor": "#393C4B",
"shadowColor": "#393C4B",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#21222C",
"Tooltip.background": "#1D2228"
},
"Content.background": "#191A21",
"CheckBox": {
"background": "#282A36",
"disabledText": "#6272A4",
"foreground": "#F8F8F2",
"select": "#FF79C5"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#6272A4",
"acceleratorSelectionForeground": "#6272A4",
"background": "#282A36",
"disabledBackground": "#282A36",
"disabledForeground": "#6272A4",
"foreground": "#F8F8F2",
"selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD"
},
"ColorChooser": {
"background": "#282A36",
"foreground": "#F8F8F2",
"swatchesDefaultRecentColor": "#F8F8F2"
},
"ComboBoxButton.background": "#393C4B",
"ComboBox": {
"ArrowButton": {
"background": "#393C4B",
"disabledIconColor": "#6272A4",
"iconColor": "#F8F8F2",
"nonEditableBackground": "#282A36"
},
"background": "#191A21",
"buttonBackground": "#393C4B",
"disabledForeground": "#6272A4",
"foreground": "#F8F8F2",
"modifiedItemForeground": "#FF79C5",
"nonEditableBackground": "#282A36",
"padding": "5,5,5,5",
"selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD"
},
"ComboPopup.border": "#21222C",
"CompletionPopup": {
"background": "#282A36",
"foreground": "#F8F8F2",
"infoForeground": "#6272A4",
"matchForeground": "#FF79C5",
"matchSelectionForeground": "#FF79C5",
"nonFocusedState": "false",
"selectedGrayedForeground": "#8BE9FD",
"selectionGrayForeground": "#8BE9FD",
"selectionInactiveInfoForeground": "#6272A4",
"selectionInactiveBackground": "#44475A50",
"selectionBackground": "#44475A80",
"selectionForeground": "#8BE9FD",
"selectionInfoForeground": "#8BE9FD"
},
"Component": {
"arc": 4,
"borderColor": "#6272A4",
"disabledBorderColor": "#393C4B",
"focusColor": "#FF79C5",
"focusedBorderColor": "#FF79C5",
"hoverIconColor": "#FF79C5",
"infoForeground": "#6272A4",
"iconColor": "#F8F8F2"
},
"control": "#282A36",
"controlText": "#6272A4",
"Counter": {
"background": "#FF79C5",
"foreground": "#8BE9FD"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#6272A4",
"changedValueForeground": "#FF79C5",
"errorMessageForeground": "#FF79C6",
"evaluatingExpressionForeground": "#6272A4",
"exceptionForeground": "#50FA7B",
"modifyingValueForeground": "#FF79C5",
"valueForeground": "#FF79C5"
}
},
"DebuggerTabs": {
"selectedBackground": "#6272A4",
"underlinedTabBackground": "#6272A4"
},
"DebuggerPopup": {
"borderColor": "#6272A4"
},
"DefaultTabs": {
"background": "#282A36",
"borderColor": "#282A36",
"hoverBackground": "#44475A",
"hoverColor": "#191A21",
"hoverMaskColor": "#6272A4",
"inactiveColoredFileBackground": "#393C4B",
"inactiveUnderlineColor": "#6272A4",
"inactiveMaskColor": "#191A21",
"underlineColor": "#FF79C5",
"underlinedTabBackground": "#44475A"
},
"Desktop.background": "#282A36",
"DialogWrapper.southPanelBackground": "#282A36",
"DialogWrapper.southPanelDivider": "#282A36",
"DragAndDrop": {
"areaBackground": "#282A36",
"areaBorderColor": "#282A36",
"areaForeground": "#F8F8F2"
},
"Editor": {
"background": "#191A21",
"foreground": "#F8F8F2",
"shortcutForeground": "#6272A4"
},
"EditorPane": {
"background": "#191A21",
"caretForeground": "#FF79C5",
"foreground": "#F8F8F2",
"inactiveBackground": "#282A36",
"inactiveForeground": "#6272A4",
"selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD"
},
"EditorTabs": {
"borderColor": "#282A36",
"hoverColor": "#6272A4",
"hoverMaskColor": "#6272A4",
"inactiveMaskColor": "#282A36",
"inactiveColoredFileBackground": "#282A362",
"inactiveUnderlineColor": "#6272A4",
"selectedForeground": "#F8F8F2",
"selectedBackground": "#44475A",
"underlineColor": "#FF79C5",
"underlinedTabBackground": "#44475A"
},
"EditorGroupsTabs": {
"background": "#282A36",
"borderColor": "#282A36",
"hoverBackground": "#6272A4",
"hoverColor": "#6272A4",
"inactiveUnderlineColor": "#FF79C5",
"underlineColor": "#FF79C5",
"underlinedTabBackground": "#44475A",
"underlinedTabForeground": "#F8F8F2"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#313341",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#21222C",
"FormattedTextField": {
"background": "#191A21",
"caretForeground": "#FF79C5",
"foreground": "#F8F8F2",
"inactiveBackground": "#393C4B",
"inactiveForeground": "#6272A4",
"selectionForeground": "#8BE9FD",
"selectionBackground": "#44475A"
},
"Group": {
"disabledSeparatorColor": "#21222C",
"separatorColor": "#21222C"
},
"GutterTooltip": {
"infoForeground": "#F8F8F2",
"lineSeparatorColor": "#282A36"
},
"HeaderColor": {
"active": "#282A36",
"inactive": "#191A21"
},
"HelpTooltip": {
"background": "#282A36",
"borderColor": "#21222C",
"foreground": "#F8F8F2",
"infoForeground": "#6272A4",
"shortcutForeground": "#6272A4"
},
"Hyperlink.linkColor": "#FF79C5",
"inactiveCaption": "#282A36",
"inactiveCaptionBorder": "#282A36",
"inactiveCaptionText": "#6272A4",
"info": "#6272A4",
"infoText": "#6272A4",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#21222C",
"InplaceRefactoringPopup": {
"borderColor": "#282A36"
},
"InternalFrame": {
"activeTitleForeground": "#F8F8F2",
"background": "#282A36",
"inactiveTitleForeground": "#6272A4"
},
"Label": {
"background": "#282A36",
"disabledForeground": "#6272A4",
"disabledShadow": "#282A36",
"disabledText": "#6272A4",
"foreground": "#F8F8F2",
"infoForeground": "#6272A4",
"selectedForeground": "#8BE9FD"
},
"Link": {
"activeForeground": "#FF79C5",
"hoverForeground": "#FF79C5",
"pressedForeground": "#FF79C5",
"secondaryForeground": "#6272A4",
"visitedForeground": "#FF79C5"
},
"link.foreground": "#FF79C5",
"List": {
"background": "#282A36",
"foreground": "#F8F8F2",
"selectionBackground": "#44475A50",
"selectionForeground": "#8BE9FD",
"selectionInactiveForeground": "#8BE9FD",
"selectionInactiveBackground": "#44475A50"
},
"material": {
"background": "#282A36",
"branchColor": "#F8F8F2",
"contrast": "#191A21",
"foreground": "#F8F8F2",
"mergeCommits": "#393C4B",
"primaryColor": "#6272A4",
"selectionForeground": "#8BE9FD",
"tab.backgroundColor": "#282A36",
"tab.borderColor": "#FF79C5",
"tagColor": "#6272A4"
},
"MemoryIndicator": {
"allocatedBackground": "#282A36",
"usedColor": "#6272A4",
"usedBackground": "#6272A4"
},
"Menu": {
"acceleratorForeground": "#6272A4",
"acceleratorSelectionForeground": "#8BE9FD",
"background": "#282A36",
"border": "4,2,4,2",
"borderColor": "#282A36",
"disabledBackground": "#282A36",
"disabledForeground": "#6272A4",
"foreground": "#F8F8F2",
"selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD",
"separatorColor": "#21222C"
},
"MenuBar": {
"background": "#191A21",
"borderColor": "#282A36",
"disabledBackground": "#282A36",
"disabledForeground": "#6272A4",
"foreground": "#F8F8F2",
"highlight": "#282A36",
"selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD",
"shadow": "#191A21"
},
"MenuItem": {
"acceleratorForeground": "#6272A4",
"acceleratorSelectionForeground": "#8BE9FD",
"border": "4,2,4,2",
"background": "#282A36",
"disabledBackground": "#282A36",
"disabledForeground": "#6272A4",
"foreground": "#F8F8F2",
"selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD"
},
"NavBar": {
"arrowColor": "#F8F8F2",
"borderColor": "#282A36"
},
"NewClass": {
"Panel": {
"background": "#282A36"
},
"SearchField": {
"background": "#191A21"
}
},
"NewPSD.warning": "#FF79C5",
"Notification": {
"background": "#1D2228",
"borderColor": "#1D2228",
"errorBackground": "#1D2228",
"errorBorderColor": "#1D2228",
"foreground": "#F8F8F2",
"MoreButton": {
"background": "#393C4B",
"foreground": "#F8F8F2",
"innerBorderColor": "#393C4B"
},
"ToolWindow": {
"errorBackground": "#1D2228",
"errorBorderColor": "#1D2228",
"informativeBackground": "#1D2228",
"informativeBorderColor": "#1D2228",
"warningBackground": "#1D2228",
"warningBorderColor": "#1D2228"
}
},
"OnePixelDivider.background": "#21222C",
"OptionPane": {
"background": "#282A36",
"foreground": "#F8F8F2",
"messageForeground": "#F8F8F2"
},
"Outline": {
"color": "#393C4B",
"focusedColor": "#FF79C5",
"disabledColor": "#6272A4"
},
"Panel": {
"background": "#282A36",
"foreground": "#F8F8F2"
},
"ParameterInfo": {
"background": "#282A36",
"borderColor": "#44475A",
"currentOverloadBackground": "#44475A",
"currentParameterForeground": "#FF79C5",
"disabledForeground": "#6272A4",
"foreground": "#F8F8F2",
"infoForeground": "#6272A4",
"lineSeparatorColor": "#44475A"
},
"PasswordField": {
"background": "#191A21",
"capsLockIconColor": "#FF79C5",
"caretForeground": "#FF79C5",
"foreground": "#F8F8F2",
"inactiveForeground": "#6272A4",
"selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD"
},
"Plugins": {
"background": "#282A36",
"disabledForeground": "#6272A4",
"eapTagBackground": "#6272A4",
"lightSelectionBackground": "#44475A",
"paidTagBackground": "#6272A4",
"selectionBackground": "#44475A",
"tagForeground": "#FF79C5",
"tagBackground": "#6272A4",
"trialTagBackground": "#6272A4",
"Button": {
"installBackground": "#393C4B",
"installBorderColor": "#393C4B",
"installForeground": "#F8F8F2",
"installFocusedBackground": "#6272A4",
"installFillForeground": "#6272A4",
"installFillBackground": "#393C4B",
"updateBackground": "#393C4B",
"updateBorderColor": "#393C4B",
"updateForeground": "#F8F8F2"
},
"SearchField": {
"background": "#191A21",
"borderColor": "#21222C"
},
"SectionHeader": {
"background": "#282A36",
"foreground": "#F8F8F2"
},
"Tab": {
"hoverBackground": "#44475A",
"selectedForeground": "#8BE9FD",
"selectedBackground": "#44475A"
}
},
"Popup": {
"Advertiser": {
"background": "#282A36",
"borderColor": "#282A36",
"foreground": "#FF79C5"
},
"borderColor": "#191A21",
"inactiveBorderColor": "#282A36",
"innerBorderColor": "#282A36",
"Header": {
"activeBackground": "#282A36",
"inactiveBackground": "#191A21"
},
"paintBorder": true,
"separatorForeground": "#F8F8F2",
"separatorColor": "#282A36",
"Toolbar": {
"Floating.background": "#191A21",
"background": "#191A21",
"borderColor": "#191A21"
}
},
"PopupMenu": {
"background": "#282A36",
"border": "2,0,2,0",
"foreground": "#F8F8F2",
"translucentBackground": "#282A36"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#282A36",
"foreground": "#FF79C5",
"indeterminateEndColor": "#FF79C5",
"indeterminateStartColor": "#FF79C5",
"progressColor": "#FF79C5",
"selectionBackground": "#6272A4",
"trackColor": "#6272A4"
},
"PsiViewer": {
"referenceHighlightColor": "#FF79C5"
},
"RadioButton": {
"background": "#282A36",
"disabledText": "#6272A4",
"foreground": "#F8F8F2"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#6272A4",
"acceleratorSelectionForeground": "#6272A4",
"background": "#282A36",
"disabledBackground": "#282A36",
"disabledForeground": "#6272A4",
"foreground": "#F8F8F2",
"selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD"
},
"ScrollBar": {
"background": "#282A36",
"hoverThumbBorderColor": "#FF79C5",
"hoverThumbColor": "#FF79C5",
"hoverTrackColor": "#282A3630",
"Mac": {
"hoverThumbBorderColor": "#FF79C5",
"hoverThumbColor": "#FF79C5",
"hoverTrackColor": "#282A3630",
"thumbBorderColor": "#FF79C570",
"thumbColor": "#FF79C570",
"trackColor": "#282A3630",
"Transparent": {
"hoverThumbBorderColor": "#FF79C5",
"hoverThumbColor": "#FF79C5",
"hoverTrackColor": "#282A3630",
"thumbBorderColor": "#FF79C570",
"thumbColor": "#FF79C570",
"trackColor": "#282A3630"
}
},
"thumb": "#6272A4",
"thumbBorderColor": "#FF79C570",
"thumbColor": "#FF79C570",
"trackColor": "#282A3630",
"Transparent": {
"hoverThumbBorderColor": "#FF79C5",
"hoverThumbColor": "#FF79C5",
"hoverTrackColor": "#282A3630",
"thumbBorderColor": "#FF79C570",
"thumbColor": "#FF79C570",
"trackColor": "#282A3630"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#191A21",
"foreground": "#6272A4"
},
"Header": {
"background": "#282A36"
},
"List": {
"separatorForeground": "#6272A4",
"separatorColor": "#21222C"
},
"SearchField": {
"background": "#282A36",
"borderColor": "#191A21",
"infoForeground": "#6272A4"
},
"Tab": {
"active.foreground": "#8BE9FD",
"selectedForeground": "#8BE9FD",
"selectedBackground": "#6272A4"
}
},
"SearchMatch": {
"endBackground": "#FF79C5",
"startBackground": "#FF79C5"
},
"SearchField.errorBackground": "#1D2228",
"Separator": {
"background": "#282A36",
"foreground": "#282A36",
"separatorColor": "#282A36"
},
"SidePanel": {
"background": "#191A21"
},
"Slider": {
"background": "#282A36",
"buttonBorderColor": "#FF79C5",
"buttonColor": "#FF79C5",
"foreground": "#F8F8F2",
"majorTickLength": 6,
"tickColor": "#282A36",
"trackColor": "#44475A",
"trackWidth": 7,
"thumb": "#FF79C5"
},
"SpeedSearch": {
"background": "#6272A4",
"borderColor": "#21222C",
"foreground": "#F8F8F2",
"errorForeground": "#F8F8F2"
},
"Spinner": {
"background": "#282A36",
"border": "3,3,3,3",
"foreground": "#F8F8F2",
"selectionForeground": "#8BE9FD"
},
"SplitPane": {
"background": "#282A36",
"highlight": "#191A21"
},
"SplitPaneDivider.draggingColor": "#282A36",
"StatusBar": {
"borderColor": "#282A36"
},
"TabbedPane": {
"background": "#282A36",
"contentAreaColor": "#6272A4",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#21222C",
"disabledForeground": "#6272A4",
"disabledUnderlineColor": "#6272A4",
"focus": "#44475A",
"focusColor": "#44475A",
"fontSizeOffset": 0,
"foreground": "#F8F8F2",
"highlight": "#21222C",
"hoverColor": "#6272A4",
"labelShift": 0,
"selectedForeground": "#8BE9FD",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#FF79C5"
},
"TabbedPane.mt.tab.background": "#191A21",
"Table": {
"background": "#282A36",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#FF79C5",
"dropLineShortColor": "#FF79C5",
"focusCellBackground": "#44475A",
"focusCellForeground": "#8BE9FD",
"foreground": "#F8F8F2",
"gridColor": "#282A36",
"highlightOuter": "#44475A",
"lightSelectionForeground": "#8BE9FD",
"lightSelectionInactiveForeground": "#6272A4",
"lightSelectionInactiveBackground": "#282A36",
"selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD",
"selectionInactiveBackground": "#44475A",
"selectionInactiveForeground": "#8BE9FD",
"sortIconColor": "#F8F8F2",
"stripeColor": "#191A21"
},
"TableHeader": {
"background": "#282A36",
"borderColor": "#282A36",
"bottomSeparatorColor": "#282A36",
"cellBorder": "4,0,4,0",
"disabledForeground": "#6272A4",
"foreground": "#F8F8F2",
"focusCellBackground": "#44475A",
"focusCellForeground": "#8BE9FD",
"height": 25,
"separatorColor": "#282A36"
},
"text": "#6272A4",
"textInactiveText": "#6272A4",
"textText": "#6272A4",
"TextArea": {
"background": "#191A21",
"caretForeground": "#FF79C5",
"foreground": "#F8F8F2",
"inactiveForeground": "#6272A4",
"selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD"
},
"TextField": {
"background": "#191A21",
"caretForeground": "#FF79C5",
"foreground": "#F8F8F2",
"inactiveForeground": "#6272A4",
"selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD"
},
"TextPane": {
"background": "#191A21",
"caretForeground": "#FF79C5",
"foreground": "#F8F8F2",
"inactiveForeground": "#6272A4",
"selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD"
},
"TitlePane": {
"background": "#191A21",
"Button.hoverBackground": "#6272A4",
"inactiveBackground": "#282A36",
"infoForeground": "#6272A4",
"inactiveInfoForeground": "#6272A4"
},
"TitledBorder.titleColor": "#F8F8F2",
"ToggleButton": {
"borderColor": "#393C4B",
"buttonColor": "#F8F8F2",
"disabledText": "#6272A4",
"foreground": "#F8F8F2",
"offForeground": "#282A36",
"offBackground": "#282A36",
"onBackground": "#FF79C5",
"onForeground": "#FF79C5"
},
"ToolBar": {
"background": "#191A21",
"borderHandleColor": "#6272A4",
"floatingForeground": "#6272A4",
"foreground": "#F8F8F2"
},
"ToolTip": {
"Actions.background": "#282A36",
"Actions.infoForeground": "#6272A4",
"background": "#282A36",
"borderColor": "#6272A4",
"foreground": "#F8F8F2",
"infoForeground": "#6272A4",
"separatorColor": "#21222C",
"shortcutForeground": "#6272A4"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#44475A",
"selectedForeground": "#8BE9FD",
"selectedBackground": "#191A21"
},
"Header": {
"background": "#282A36",
"borderColor": "#282A36",
"inactiveBackground": "#282A36"
},
"HeaderCloseButton": {
"background": "#282A36"
},
"HeaderTab": {
"hoverBackground": "#6272A4",
"hoverInactiveBackground": "#282A36",
"inactiveUnderlineColor": "#FF79C5",
"selectedBackground": "#191A21",
"selectedInactiveBackground": "#191A21",
"underlineColor": "#FF79C5",
"underlinedTabBackground": "#6272A4",
"underlinedTabInactiveBackground": "#282A36"
}
},
"Tree": {
"background": "#191A21",
"foreground": "#6272A4",
"hash": "#21222C",
"modifiedItemForeground": "#FF79C5",
"rowHeight": 28,
"selectionBackground": "#44475A50",
"selectionForeground": "#8BE9FD",
"selectionInactiveForeground": "#8BE9FD",
"selectionInactiveBackground": "#44475A50",
"textBackground": "#191A21"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#21222C",
"ColorPicker.background": "#282A36",
"ColorPicker.foreground": "#F8F8F2",
"Component.borderColor": "#21222C",
"Component.background": "#282A36",
"Component.foreground": "#F8F8F2",
"Connector.borderColor": "#21222C",
"Connector.hoverBorderColor": "#6272A4",
"Canvas.background": "#191A21",
"highStroke.foreground": "#F8F8F2",
"Label.foreground": "#6272A4",
"List.selectionBackground": "#44475A50",
"Panel.borderColor": "#21222C",
"Panel.background": "#282A36",
"percent.foreground": "#F8F8F2",
"Placeholder.background": "#282A36",
"Placeholder.borderColor": "#21222C",
"Placeholder.foreground": "#F8F8F2",
"Placeholder.selectedForeground": "#8BE9FD",
"Preview.background": "#282A36",
"stroke.acceleratorForeground": "#6272A4"
},
"ValidationTooltip": {
"errorBackground": "#1D2228",
"errorBorderColor": "#1D2228",
"warningBackground": "#1D2228",
"warningBorderColor": "#1D2228"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#282A36"
},
"GitCommits": {
"graphColor": "#6272A4"
},
"GitLog": {
"localBranchIconColor": "#FF79C5",
"otherIconColor": "#6272A4",
"remoteBranchIconColor": "#F8F8F2",
"tagIconColor": "#6272A4"
},
"HgLog": {
"branchIconColor": "#FF79C5",
"bookmarkIconColor": "#8BE9FD",
"closedBranchIconColor": "#6272A4",
"localTagIconColor": "#6272A4",
"mqTagIconColor": "#6272A4",
"tagIconColor": "#6272A4",
"tipIconColor": "#6272A4"
},
"Log": {
"Commit.unmatchedForeground": "#6272A4",
"Commit.currentBranchBackground": "#282A36"
},
"RefLabel": {
"foreground": "#8BE9FD",
"backgroundBase": "#6272A4"
}
},
"Viewport": {
"background": "#191A21",
"foreground": "#F8F8F2"
},
"WelcomeScreen": {
"background": "#282A36",
"borderColor": "#282A36",
"captionBackground": "#191A21",
"captionForeground": "#F8F8F2",
"footerBackground": "#191A21",
"footerForeground": "#F8F8F2",
"headerBackground": "#282A36",
"headerForeground": "#F8F8F2",
"separatorColor": "#21222C",
"Projects": {
"background": "#282A36",
"selectionBackground": "#44475A",
"selectionInactiveBackground": "#282A36"
}
},
"window": "#191A21",
"windowBorder": "#21222C",
"windowText": "#6272A4",
"Window.border": "#21222C"
},
"icons": {
"ColorPalette": {
"#43494A": "#191A21",
"#6B6B6B": "#6272A4",
"#A7A7A7": "#282A36",
"#3D6185": "#FF79C5",
"#466D94": "#FF79C5",
"#3C3F41": "#282A36",
"#545556": "#6272A4",
"#606060": "#6272A4",
"#9AA7B0": "#F8F8F2",
"#675133": "#FF79C5",
"Actions.Blue": "#50FA78",
"Actions.Green": "#F1FA8C",
"Actions.Grey": "#6272A4",
"Actions.GreyInline": "#6272A4",
"Actions.GreyInline.Dark": "#F8F8F2",
"Actions.Red": "#FF79C6",
"Actions.Yellow": "#50FA7B",
"Checkbox.Background.Default": "#191A21",
"Checkbox.Background.Default.Dark": "#191A21",
"Checkbox.Background.Disabled": "#313341",
"Checkbox.Background.Disabled.Dark": "#313341",
"Checkbox.Border.Default": "#21222C",
"Checkbox.Border.Default.Dark": "#21222C",
"Checkbox.Border.Disabled": "#6272A4",
"Checkbox.Border.Disabled.Dark": "#6272A4",
"Checkbox.Focus.Thin.Default": "#FF79C5",
"Checkbox.Focus.Thin.Default.Dark": "#FF79C5",
"Checkbox.Focus.Wide": "#FF79C5",
"Checkbox.Focus.Wide.Dark": "#FF79C5",
"Checkbox.Foreground.Disabled": "#6272A4",
"Checkbox.Foreground.Disabled.Dark": "#6272A4",
"Checkbox.Background.Selected": "#FF79C5",
"Checkbox.Background.Selected.Dark": "#282A36",
"Checkbox.Border.Selected": "#FF79C5",
"Checkbox.Border.Selected.Dark": "#FF79C5",
"Checkbox.Foreground.Selected": "#FF79C5",
"Checkbox.Foreground.Selected.Dark": "#FF79C5",
"Checkbox.Focus.Thin.Selected": "#F8F8F2",
"Checkbox.Focus.Thin.Selected.Dark": "#F8F8F2",
"Objects.Grey": "#6272A4",
"Objects.Blue": "#50FA78",
"Objects.RedStatus": "#FF79C6",
"Objects.Red": "#FF79C6",
"Objects.Pink": "#FF79C6",
"Objects.Yellow": "#50FA7B",
"Objects.Green": "#F1FA8C",
"Objects.Purple": "#FF79C6",
"Objects.BlackText": "#F8F8F2",
"Objects.YellowDark": "#BD93F9",
"Objects.GreenAndroid": "#F1FA8C"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "Dracula",
"dark": true,
"author": "Mallowigi",
"editorScheme": "/colors/Dracula.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#6272A4",
"background": "#282A36",
"borderColor": "#21222C",
"disabledBackground": "#313341",
"disabledForeground": "#6272A4",
"disabledText": "#6272A4",
"focusColor": "#6272A4",
"focusedBorderColor": "#FF79C5",
"foreground": "#F8F8F2",
"inactiveBackground": "#313341",
"inactiveForeground": "#6272A4",
"infoForeground": "#6272A4",
"selectionBackground": "#44475A",
"selectionBackgroundInactive": "#282A36",
"selectionForeground": "#8BE9FD",
"selectionInactiveBackground": "#282A36",
"separatorColor": "#21222C"
},
"activeCaption": "#282A36",
"ActionButton": {
"hoverBackground": "#FF79C550",
"hoverBorderColor": "#FF79C550",
"hoverSeparatorColor": "#393C4B",
"focusedBorderColor": "#FF79C550",
"pressedBackground": "#FF79C550",
"pressedBorderColor": "#FF79C550"
},
"Autocomplete": {
"selectionBackground": "#44475A"
},
"Borders.ContrastBorderColor": "#282A36",
"Borders.color": "#21222C",
"Button": {
"arc": 0,
"background": "#282A36",
"default": {
"endBackground": "#44475A",
"endBorderColor": "#44475A",
"foreground": "#8BE9FD",
"focusColor": "#FF79C5",
"focusedBorderColor": "#FF79C5",
"shadowColor": "#44475A",
"startBackground": "#44475A",
"startBorderColor": "#44475A"
},
"disabledBorderColor": "#393C4B",
"disabledText": "#6272A4",
"endBackground": "#393C4B",
"endBorderColor": "#393C4B",
"focus": "#6272A4",
"focusedBorderColor": "#FF79C5",
"foreground": "#6272A4",
"highlight": "#8BE9FD",
"mt.background": "#393C4B",
"mt.foreground": "#6272A4",
"mt.selectedForeground": "#8BE9FD",
"mt.selection.color1": "#44475A",
"mt.selection.color2": "#44475A",
"startBackground": "#393C4B",
"startBorderColor": "#393C4B",
"shadowColor": "#393C4B",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#21222C",
"Tooltip.background": "#1D2228"
},
"Content.background": "#191A21",
"CheckBox": {
"background": "#282A36",
"disabledText": "#6272A4",
"foreground": "#F8F8F2",
"select": "#FF79C5"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#6272A4",
"acceleratorSelectionForeground": "#6272A4",
"background": "#282A36",
"disabledBackground": "#282A36",
"disabledForeground": "#6272A4",
"foreground": "#F8F8F2",
"selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD"
},
"ColorChooser": {
"background": "#282A36",
"foreground": "#F8F8F2",
"swatchesDefaultRecentColor": "#F8F8F2"
},
"ComboBoxButton.background": "#393C4B",
"ComboBox": {
"ArrowButton": {
"background": "#393C4B",
"disabledIconColor": "#6272A4",
"iconColor": "#F8F8F2",
"nonEditableBackground": "#282A36"
},
"background": "#282A36",
"buttonBackground": "#393C4B",
"disabledForeground": "#6272A4",
"foreground": "#F8F8F2",
"modifiedItemForeground": "#FF79C5",
"nonEditableBackground": "#282A36",
"padding": "5,5,5,5",
"selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD"
},
"ComboPopup.border": "#21222C",
"CompletionPopup": {
"background": "#282A36",
"foreground": "#F8F8F2",
"infoForeground": "#6272A4",
"matchForeground": "#FF79C5",
"matchSelectionForeground": "#FF79C5",
"nonFocusedState": "false",
"selectedGrayedForeground": "#8BE9FD",
"selectionGrayForeground": "#8BE9FD",
"selectionInactiveInfoForeground": "#6272A4",
"selectionInactiveBackground": "#44475A50",
"selectionBackground": "#44475A80",
"selectionForeground": "#8BE9FD",
"selectionInfoForeground": "#8BE9FD"
},
"Component": {
"arc": 4,
"borderColor": "#6272A4",
"disabledBorderColor": "#393C4B",
"focusColor": "#FF79C5",
"focusedBorderColor": "#FF79C5",
"hoverIconColor": "#FF79C5",
"infoForeground": "#6272A4",
"iconColor": "#F8F8F2"
},
"control": "#282A36",
"controlText": "#6272A4",
"Counter": {
"background": "#FF79C5",
"foreground": "#8BE9FD"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#6272A4",
"changedValueForeground": "#FF79C5",
"errorMessageForeground": "#FF79C6",
"evaluatingExpressionForeground": "#6272A4",
"exceptionForeground": "#50FA7B",
"modifyingValueForeground": "#FF79C5",
"valueForeground": "#FF79C5"
}
},
"DebuggerTabs": {
"selectedBackground": "#6272A4",
"underlinedTabBackground": "#6272A4"
},
"DebuggerPopup": {
"borderColor": "#6272A4"
},
"DefaultTabs": {
"background": "#282A36",
"borderColor": "#282A36",
"hoverBackground": "#44475A",
"hoverColor": "#282A36",
"hoverMaskColor": "#6272A4",
"inactiveColoredFileBackground": "#393C4B",
"inactiveUnderlineColor": "#6272A4",
"inactiveMaskColor": "#282A36",
"underlineColor": "#FF79C5",
"underlinedTabBackground": "#44475A"
},
"Desktop.background": "#282A36",
"DialogWrapper.southPanelBackground": "#282A36",
"DialogWrapper.southPanelDivider": "#282A36",
"DragAndDrop": {
"areaBackground": "#282A36",
"areaBorderColor": "#282A36",
"areaForeground": "#F8F8F2"
},
"Editor": {
"background": "#282A36",
"foreground": "#F8F8F2",
"shortcutForeground": "#6272A4"
},
"EditorPane": {
"background": "#282A36",
"caretForeground": "#FF79C5",
"foreground": "#F8F8F2",
"inactiveBackground": "#282A36",
"inactiveForeground": "#6272A4",
"selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD"
},
"EditorTabs": {
"borderColor": "#282A36",
"hoverColor": "#6272A4",
"hoverMaskColor": "#6272A4",
"inactiveMaskColor": "#282A36",
"inactiveColoredFileBackground": "#282A362",
"inactiveUnderlineColor": "#6272A4",
"selectedForeground": "#F8F8F2",
"selectedBackground": "#44475A",
"underlineColor": "#FF79C5",
"underlinedTabBackground": "#44475A"
},
"EditorGroupsTabs": {
"background": "#282A36",
"borderColor": "#282A36",
"hoverBackground": "#6272A4",
"hoverColor": "#6272A4",
"inactiveUnderlineColor": "#FF79C5",
"underlineColor": "#FF79C5",
"underlinedTabBackground": "#44475A",
"underlinedTabForeground": "#F8F8F2"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#313341",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#21222C",
"FormattedTextField": {
"background": "#282A36",
"caretForeground": "#FF79C5",
"foreground": "#F8F8F2",
"inactiveBackground": "#393C4B",
"inactiveForeground": "#6272A4",
"selectionForeground": "#8BE9FD",
"selectionBackground": "#44475A"
},
"Group": {
"disabledSeparatorColor": "#21222C",
"separatorColor": "#21222C"
},
"GutterTooltip": {
"infoForeground": "#F8F8F2",
"lineSeparatorColor": "#282A36"
},
"HeaderColor": {
"active": "#282A36",
"inactive": "#191A21"
},
"HelpTooltip": {
"background": "#282A36",
"borderColor": "#21222C",
"foreground": "#F8F8F2",
"infoForeground": "#6272A4",
"shortcutForeground": "#6272A4"
},
"Hyperlink.linkColor": "#FF79C5",
"inactiveCaption": "#282A36",
"inactiveCaptionBorder": "#282A36",
"inactiveCaptionText": "#6272A4",
"info": "#6272A4",
"infoText": "#6272A4",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#21222C",
"InplaceRefactoringPopup": {
"borderColor": "#282A36"
},
"InternalFrame": {
"activeTitleForeground": "#F8F8F2",
"background": "#282A36",
"inactiveTitleForeground": "#6272A4"
},
"Label": {
"background": "#282A36",
"disabledForeground": "#6272A4",
"disabledShadow": "#282A36",
"disabledText": "#6272A4",
"foreground": "#F8F8F2",
"infoForeground": "#6272A4",
"selectedForeground": "#8BE9FD"
},
"Link": {
"activeForeground": "#FF79C5",
"hoverForeground": "#FF79C5",
"pressedForeground": "#FF79C5",
"secondaryForeground": "#6272A4",
"visitedForeground": "#FF79C5"
},
"link.foreground": "#FF79C5",
"List": {
"background": "#282A36",
"foreground": "#F8F8F2",
"selectionBackground": "#44475A50",
"selectionForeground": "#8BE9FD",
"selectionInactiveForeground": "#8BE9FD",
"selectionInactiveBackground": "#44475A50"
},
"material": {
"background": "#282A36",
"branchColor": "#F8F8F2",
"contrast": "#191A21",
"foreground": "#F8F8F2",
"mergeCommits": "#393C4B",
"primaryColor": "#6272A4",
"selectionForeground": "#8BE9FD",
"tab.backgroundColor": "#282A36",
"tab.borderColor": "#FF79C5",
"tagColor": "#6272A4"
},
"MemoryIndicator": {
"allocatedBackground": "#282A36",
"usedColor": "#6272A4",
"usedBackground": "#6272A4"
},
"Menu": {
"acceleratorForeground": "#6272A4",
"acceleratorSelectionForeground": "#8BE9FD",
"background": "#282A36",
"border": "4,2,4,2",
"borderColor": "#282A36",
"disabledBackground": "#282A36",
"disabledForeground": "#6272A4",
"foreground": "#F8F8F2",
"selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD",
"separatorColor": "#21222C"
},
"MenuBar": {
"background": "#282A36",
"borderColor": "#282A36",
"disabledBackground": "#282A36",
"disabledForeground": "#6272A4",
"foreground": "#F8F8F2",
"highlight": "#282A36",
"selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD",
"shadow": "#282A36"
},
"MenuItem": {
"acceleratorForeground": "#6272A4",
"acceleratorSelectionForeground": "#8BE9FD",
"border": "4,2,4,2",
"background": "#282A36",
"disabledBackground": "#282A36",
"disabledForeground": "#6272A4",
"foreground": "#F8F8F2",
"selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD"
},
"NavBar": {
"arrowColor": "#F8F8F2",
"borderColor": "#282A36"
},
"NewClass": {
"Panel": {
"background": "#282A36"
},
"SearchField": {
"background": "#282A36"
}
},
"NewPSD.warning": "#FF79C5",
"Notification": {
"background": "#1D2228",
"borderColor": "#1D2228",
"errorBackground": "#1D2228",
"errorBorderColor": "#1D2228",
"foreground": "#F8F8F2",
"MoreButton": {
"background": "#393C4B",
"foreground": "#F8F8F2",
"innerBorderColor": "#393C4B"
},
"ToolWindow": {
"errorBackground": "#1D2228",
"errorBorderColor": "#1D2228",
"informativeBackground": "#1D2228",
"informativeBorderColor": "#1D2228",
"warningBackground": "#1D2228",
"warningBorderColor": "#1D2228"
}
},
"OnePixelDivider.background": "#21222C",
"OptionPane": {
"background": "#282A36",
"foreground": "#F8F8F2",
"messageForeground": "#F8F8F2"
},
"Outline": {
"color": "#393C4B",
"focusedColor": "#FF79C5",
"disabledColor": "#6272A4"
},
"Panel": {
"background": "#282A36",
"foreground": "#F8F8F2"
},
"ParameterInfo": {
"background": "#282A36",
"borderColor": "#44475A",
"currentOverloadBackground": "#44475A",
"currentParameterForeground": "#FF79C5",
"disabledForeground": "#6272A4",
"foreground": "#F8F8F2",
"infoForeground": "#6272A4",
"lineSeparatorColor": "#44475A"
},
"PasswordField": {
"background": "#282A36",
"capsLockIconColor": "#FF79C5",
"caretForeground": "#FF79C5",
"foreground": "#F8F8F2",
"inactiveForeground": "#6272A4",
"selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD"
},
"Plugins": {
"background": "#282A36",
"disabledForeground": "#6272A4",
"eapTagBackground": "#6272A4",
"lightSelectionBackground": "#44475A",
"paidTagBackground": "#6272A4",
"selectionBackground": "#44475A",
"tagForeground": "#FF79C5",
"tagBackground": "#6272A4",
"trialTagBackground": "#6272A4",
"Button": {
"installBackground": "#393C4B",
"installBorderColor": "#393C4B",
"installForeground": "#F8F8F2",
"installFocusedBackground": "#6272A4",
"installFillForeground": "#6272A4",
"installFillBackground": "#393C4B",
"updateBackground": "#393C4B",
"updateBorderColor": "#393C4B",
"updateForeground": "#F8F8F2"
},
"SearchField": {
"background": "#282A36",
"borderColor": "#21222C"
},
"SectionHeader": {
"background": "#282A36",
"foreground": "#F8F8F2"
},
"Tab": {
"hoverBackground": "#44475A",
"selectedForeground": "#8BE9FD",
"selectedBackground": "#44475A"
}
},
"Popup": {
"Advertiser": {
"background": "#282A36",
"borderColor": "#282A36",
"foreground": "#FF79C5"
},
"borderColor": "#191A21",
"inactiveBorderColor": "#282A36",
"innerBorderColor": "#282A36",
"Header": {
"activeBackground": "#282A36",
"inactiveBackground": "#191A21"
},
"paintBorder": true,
"separatorForeground": "#F8F8F2",
"separatorColor": "#282A36",
"Toolbar": {
"Floating.background": "#191A21",
"background": "#191A21",
"borderColor": "#191A21"
}
},
"PopupMenu": {
"background": "#282A36",
"border": "2,0,2,0",
"foreground": "#F8F8F2",
"translucentBackground": "#282A36"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#282A36",
"foreground": "#FF79C5",
"indeterminateEndColor": "#FF79C5",
"indeterminateStartColor": "#FF79C5",
"progressColor": "#FF79C5",
"selectionBackground": "#6272A4",
"trackColor": "#6272A4"
},
"PsiViewer": {
"referenceHighlightColor": "#FF79C5"
},
"RadioButton": {
"background": "#282A36",
"disabledText": "#6272A4",
"foreground": "#F8F8F2"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#6272A4",
"acceleratorSelectionForeground": "#6272A4",
"background": "#282A36",
"disabledBackground": "#282A36",
"disabledForeground": "#6272A4",
"foreground": "#F8F8F2",
"selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD"
},
"ScrollBar": {
"background": "#282A36",
"hoverThumbBorderColor": "#FF79C5",
"hoverThumbColor": "#FF79C5",
"hoverTrackColor": "#282A3630",
"Mac": {
"hoverThumbBorderColor": "#FF79C5",
"hoverThumbColor": "#FF79C5",
"hoverTrackColor": "#282A3630",
"thumbBorderColor": "#FF79C570",
"thumbColor": "#FF79C570",
"trackColor": "#282A3630",
"Transparent": {
"hoverThumbBorderColor": "#FF79C5",
"hoverThumbColor": "#FF79C5",
"hoverTrackColor": "#282A3630",
"thumbBorderColor": "#FF79C570",
"thumbColor": "#FF79C570",
"trackColor": "#282A3630"
}
},
"thumb": "#6272A4",
"thumbBorderColor": "#FF79C570",
"thumbColor": "#FF79C570",
"trackColor": "#282A3630",
"Transparent": {
"hoverThumbBorderColor": "#FF79C5",
"hoverThumbColor": "#FF79C5",
"hoverTrackColor": "#282A3630",
"thumbBorderColor": "#FF79C570",
"thumbColor": "#FF79C570",
"trackColor": "#282A3630"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#191A21",
"foreground": "#6272A4"
},
"Header": {
"background": "#282A36"
},
"List": {
"separatorForeground": "#6272A4",
"separatorColor": "#21222C"
},
"SearchField": {
"background": "#282A36",
"borderColor": "#191A21",
"infoForeground": "#6272A4"
},
"Tab": {
"active.foreground": "#8BE9FD",
"selectedForeground": "#8BE9FD",
"selectedBackground": "#6272A4"
}
},
"SearchMatch": {
"endBackground": "#FF79C5",
"startBackground": "#FF79C5"
},
"SearchField.errorBackground": "#1D2228",
"Separator": {
"background": "#282A36",
"foreground": "#282A36",
"separatorColor": "#282A36"
},
"SidePanel": {
"background": "#282A36"
},
"Slider": {
"background": "#282A36",
"buttonBorderColor": "#FF79C5",
"buttonColor": "#FF79C5",
"foreground": "#F8F8F2",
"majorTickLength": 6,
"tickColor": "#282A36",
"trackColor": "#44475A",
"trackWidth": 7,
"thumb": "#FF79C5"
},
"SpeedSearch": {
"background": "#6272A4",
"borderColor": "#21222C",
"foreground": "#F8F8F2",
"errorForeground": "#F8F8F2"
},
"Spinner": {
"background": "#282A36",
"border": "3,3,3,3",
"foreground": "#F8F8F2",
"selectionForeground": "#8BE9FD"
},
"SplitPane": {
"background": "#282A36",
"highlight": "#282A36"
},
"SplitPaneDivider.draggingColor": "#282A36",
"StatusBar": {
"borderColor": "#282A36"
},
"TabbedPane": {
"background": "#282A36",
"contentAreaColor": "#6272A4",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#21222C",
"disabledForeground": "#6272A4",
"disabledUnderlineColor": "#6272A4",
"focus": "#44475A",
"focusColor": "#44475A",
"fontSizeOffset": 0,
"foreground": "#F8F8F2",
"highlight": "#21222C",
"hoverColor": "#6272A4",
"labelShift": 0,
"selectedForeground": "#8BE9FD",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#FF79C5"
},
"TabbedPane.mt.tab.background": "#282A36",
"Table": {
"background": "#282A36",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#FF79C5",
"dropLineShortColor": "#FF79C5",
"focusCellBackground": "#44475A",
"focusCellForeground": "#8BE9FD",
"foreground": "#F8F8F2",
"gridColor": "#282A36",
"highlightOuter": "#44475A",
"lightSelectionForeground": "#8BE9FD",
"lightSelectionInactiveForeground": "#6272A4",
"lightSelectionInactiveBackground": "#282A36",
"selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD",
"selectionInactiveBackground": "#44475A",
"selectionInactiveForeground": "#8BE9FD",
"sortIconColor": "#F8F8F2",
"stripeColor": "#191A21"
},
"TableHeader": {
"background": "#282A36",
"borderColor": "#282A36",
"bottomSeparatorColor": "#282A36",
"cellBorder": "4,0,4,0",
"disabledForeground": "#6272A4",
"foreground": "#F8F8F2",
"focusCellBackground": "#44475A",
"focusCellForeground": "#8BE9FD",
"height": 25,
"separatorColor": "#282A36"
},
"text": "#6272A4",
"textInactiveText": "#6272A4",
"textText": "#6272A4",
"TextArea": {
"background": "#282A36",
"caretForeground": "#FF79C5",
"foreground": "#F8F8F2",
"inactiveForeground": "#6272A4",
"selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD"
},
"TextField": {
"background": "#282A36",
"caretForeground": "#FF79C5",
"foreground": "#F8F8F2",
"inactiveForeground": "#6272A4",
"selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD"
},
"TextPane": {
"background": "#282A36",
"caretForeground": "#FF79C5",
"foreground": "#F8F8F2",
"inactiveForeground": "#6272A4",
"selectionBackground": "#44475A",
"selectionForeground": "#8BE9FD"
},
"TitlePane": {
"background": "#191A21",
"Button.hoverBackground": "#6272A4",
"inactiveBackground": "#282A36",
"infoForeground": "#6272A4",
"inactiveInfoForeground": "#6272A4"
},
"TitledBorder.titleColor": "#F8F8F2",
"ToggleButton": {
"borderColor": "#393C4B",
"buttonColor": "#F8F8F2",
"disabledText": "#6272A4",
"foreground": "#F8F8F2",
"offForeground": "#282A36",
"offBackground": "#282A36",
"onBackground": "#FF79C5",
"onForeground": "#FF79C5"
},
"ToolBar": {
"background": "#282A36",
"borderHandleColor": "#6272A4",
"floatingForeground": "#6272A4",
"foreground": "#F8F8F2"
},
"ToolTip": {
"Actions.background": "#282A36",
"Actions.infoForeground": "#6272A4",
"background": "#282A36",
"borderColor": "#6272A4",
"foreground": "#F8F8F2",
"infoForeground": "#6272A4",
"separatorColor": "#21222C",
"shortcutForeground": "#6272A4"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#44475A",
"selectedForeground": "#8BE9FD",
"selectedBackground": "#191A21"
},
"Header": {
"background": "#282A36",
"borderColor": "#282A36",
"inactiveBackground": "#282A36"
},
"HeaderCloseButton": {
"background": "#282A36"
},
"HeaderTab": {
"hoverBackground": "#6272A4",
"hoverInactiveBackground": "#282A36",
"inactiveUnderlineColor": "#FF79C5",
"selectedBackground": "#191A21",
"selectedInactiveBackground": "#191A21",
"underlineColor": "#FF79C5",
"underlinedTabBackground": "#6272A4",
"underlinedTabInactiveBackground": "#282A36"
}
},
"Tree": {
"background": "#282A36",
"foreground": "#6272A4",
"hash": "#21222C",
"modifiedItemForeground": "#FF79C5",
"rowHeight": 28,
"selectionBackground": "#44475A50",
"selectionForeground": "#8BE9FD",
"selectionInactiveForeground": "#8BE9FD",
"selectionInactiveBackground": "#44475A50",
"textBackground": "#282A36"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#21222C",
"ColorPicker.background": "#282A36",
"ColorPicker.foreground": "#F8F8F2",
"Component.borderColor": "#21222C",
"Component.background": "#282A36",
"Component.foreground": "#F8F8F2",
"Connector.borderColor": "#21222C",
"Connector.hoverBorderColor": "#6272A4",
"Canvas.background": "#191A21",
"highStroke.foreground": "#F8F8F2",
"Label.foreground": "#6272A4",
"List.selectionBackground": "#44475A50",
"Panel.borderColor": "#21222C",
"Panel.background": "#282A36",
"percent.foreground": "#F8F8F2",
"Placeholder.background": "#282A36",
"Placeholder.borderColor": "#21222C",
"Placeholder.foreground": "#F8F8F2",
"Placeholder.selectedForeground": "#8BE9FD",
"Preview.background": "#282A36",
"stroke.acceleratorForeground": "#6272A4"
},
"ValidationTooltip": {
"errorBackground": "#1D2228",
"errorBorderColor": "#1D2228",
"warningBackground": "#1D2228",
"warningBorderColor": "#1D2228"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#282A36"
},
"GitCommits": {
"graphColor": "#6272A4"
},
"GitLog": {
"localBranchIconColor": "#FF79C5",
"otherIconColor": "#6272A4",
"remoteBranchIconColor": "#F8F8F2",
"tagIconColor": "#6272A4"
},
"HgLog": {
"branchIconColor": "#FF79C5",
"bookmarkIconColor": "#8BE9FD",
"closedBranchIconColor": "#6272A4",
"localTagIconColor": "#6272A4",
"mqTagIconColor": "#6272A4",
"tagIconColor": "#6272A4",
"tipIconColor": "#6272A4"
},
"Log": {
"Commit.unmatchedForeground": "#6272A4",
"Commit.currentBranchBackground": "#282A36"
},
"RefLabel": {
"foreground": "#8BE9FD",
"backgroundBase": "#6272A4"
}
},
"Viewport": {
"background": "#282A36",
"foreground": "#F8F8F2"
},
"WelcomeScreen": {
"background": "#282A36",
"borderColor": "#282A36",
"captionBackground": "#191A21",
"captionForeground": "#F8F8F2",
"footerBackground": "#191A21",
"footerForeground": "#F8F8F2",
"headerBackground": "#282A36",
"headerForeground": "#F8F8F2",
"separatorColor": "#21222C",
"Projects": {
"background": "#282A36",
"selectionBackground": "#44475A",
"selectionInactiveBackground": "#282A36"
}
},
"window": "#282A36",
"windowBorder": "#21222C",
"windowText": "#6272A4",
"Window.border": "#21222C"
},
"icons": {
"ColorPalette": {
"#43494A": "#191A21",
"#6B6B6B": "#6272A4",
"#A7A7A7": "#282A36",
"#3D6185": "#FF79C5",
"#466D94": "#FF79C5",
"#3C3F41": "#282A36",
"#545556": "#6272A4",
"#606060": "#6272A4",
"#9AA7B0": "#F8F8F2",
"#675133": "#FF79C5",
"Actions.Blue": "#50FA78",
"Actions.Green": "#F1FA8C",
"Actions.Grey": "#6272A4",
"Actions.GreyInline": "#6272A4",
"Actions.GreyInline.Dark": "#F8F8F2",
"Actions.Red": "#FF79C6",
"Actions.Yellow": "#50FA7B",
"Checkbox.Background.Default": "#191A21",
"Checkbox.Background.Default.Dark": "#191A21",
"Checkbox.Background.Disabled": "#313341",
"Checkbox.Background.Disabled.Dark": "#313341",
"Checkbox.Border.Default": "#21222C",
"Checkbox.Border.Default.Dark": "#21222C",
"Checkbox.Border.Disabled": "#6272A4",
"Checkbox.Border.Disabled.Dark": "#6272A4",
"Checkbox.Focus.Thin.Default": "#FF79C5",
"Checkbox.Focus.Thin.Default.Dark": "#FF79C5",
"Checkbox.Focus.Wide": "#FF79C5",
"Checkbox.Focus.Wide.Dark": "#FF79C5",
"Checkbox.Foreground.Disabled": "#6272A4",
"Checkbox.Foreground.Disabled.Dark": "#6272A4",
"Checkbox.Background.Selected": "#FF79C5",
"Checkbox.Background.Selected.Dark": "#282A36",
"Checkbox.Border.Selected": "#FF79C5",
"Checkbox.Border.Selected.Dark": "#FF79C5",
"Checkbox.Foreground.Selected": "#FF79C5",
"Checkbox.Foreground.Selected.Dark": "#FF79C5",
"Checkbox.Focus.Thin.Selected": "#F8F8F2",
"Checkbox.Focus.Thin.Selected.Dark": "#F8F8F2",
"Objects.Grey": "#6272A4",
"Objects.Blue": "#50FA78",
"Objects.RedStatus": "#FF79C6",
"Objects.Red": "#FF79C6",
"Objects.Pink": "#FF79C6",
"Objects.Yellow": "#50FA7B",
"Objects.Green": "#F1FA8C",
"Objects.Purple": "#FF79C6",
"Objects.BlackText": "#F8F8F2",
"Objects.YellowDark": "#BD93F9",
"Objects.GreenAndroid": "#F1FA8C"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "GitHub Contrast",
"dark": false,
"author": "Mallowigi",
"editorScheme": "/colors/Github.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#292D31",
"background": "#F7F8FA",
"borderColor": "#DFE1E4",
"disabledBackground": "#dcdcdc",
"disabledForeground": "#9ba0a3",
"disabledText": "#9ba0a3",
"focusColor": "#CCE5FF",
"focusedBorderColor": "#79CB60",
"foreground": "#5B6168",
"inactiveBackground": "#dcdcdc",
"inactiveForeground": "#292D31",
"infoForeground": "#292D31",
"selectionBackground": "#3A66D1",
"selectionBackgroundInactive": "#f3f3f3",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#f3f3f3",
"separatorColor": "#DFE1E4"
},
"activeCaption": "#F7F8FA",
"ActionButton": {
"hoverBackground": "#79CB6050",
"hoverBorderColor": "#79CB6050",
"hoverSeparatorColor": "#edf1f5",
"focusedBorderColor": "#79CB6050",
"pressedBackground": "#79CB6050",
"pressedBorderColor": "#79CB6050"
},
"Autocomplete": {
"selectionBackground": "#3A66D1"
},
"Borders.ContrastBorderColor": "#F7F8FA",
"Borders.color": "#DFE1E4",
"Button": {
"arc": 0,
"background": "#F7F8FA",
"default": {
"endBackground": "#cce5ff",
"endBorderColor": "#cce5ff",
"foreground": "#111111",
"focusColor": "#79CB60",
"focusedBorderColor": "#79CB60",
"shadowColor": "#cce5ff",
"startBackground": "#cce5ff",
"startBorderColor": "#cce5ff"
},
"disabledBorderColor": "#edf1f5",
"disabledText": "#9ba0a3",
"endBackground": "#edf1f5",
"endBorderColor": "#edf1f5",
"focus": "#CCE5FF",
"focusedBorderColor": "#79CB60",
"foreground": "#292D31",
"highlight": "#FFFFFF",
"mt.background": "#edf1f5",
"mt.foreground": "#292D31",
"mt.selectedForeground": "#FFFFFF",
"mt.selection.color1": "#cce5ff",
"mt.selection.color2": "#cce5ff",
"startBackground": "#edf1f5",
"startBorderColor": "#edf1f5",
"shadowColor": "#edf1f5",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#DFE1E4",
"Tooltip.background": "#DFECFE"
},
"Content.background": "#fafbfc",
"CheckBox": {
"background": "#F7F8FA",
"disabledText": "#9ba0a3",
"foreground": "#5B6168",
"select": "#79CB60"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#292D31",
"acceleratorSelectionForeground": "#292D31",
"background": "#F7F8FA",
"disabledBackground": "#F7F8FA",
"disabledForeground": "#9ba0a3",
"foreground": "#5B6168",
"selectionBackground": "#3A66D1",
"selectionForeground": "#111111"
},
"ColorChooser": {
"background": "#F7F8FA",
"foreground": "#5B6168",
"swatchesDefaultRecentColor": "#5B6168"
},
"ComboBoxButton.background": "#edf1f5",
"ComboBox": {
"ArrowButton": {
"background": "#edf1f5",
"disabledIconColor": "#9ba0a3",
"iconColor": "#5B6168",
"nonEditableBackground": "#F7F8FA"
},
"background": "#fafbfc",
"buttonBackground": "#edf1f5",
"disabledForeground": "#9ba0a3",
"foreground": "#5B6168",
"modifiedItemForeground": "#79CB60",
"nonEditableBackground": "#f3f3f3",
"padding": "5,5,5,5",
"selectionBackground": "#cce5ff",
"selectionForeground": "#111111"
},
"ComboPopup.border": "#DFE1E4",
"CompletionPopup": {
"background": "#f3f3f3",
"foreground": "#5B6168",
"infoForeground": "#292D31",
"matchForeground": "#79CB60",
"matchSelectionForeground": "#79CB60",
"nonFocusedState": "false",
"selectedGrayedForeground": "#FFFFFF",
"selectionGrayForeground": "#FFFFFF",
"selectionInactiveInfoForeground": "#292D31",
"selectionInactiveBackground": "#3A66D150",
"selectionBackground": "#3A66D180",
"selectionForeground": "#FFFFFF",
"selectionInfoForeground": "#FFFFFF"
},
"Component": {
"arc": 4,
"borderColor": "#CCE5FF",
"disabledBorderColor": "#edf1f5",
"focusColor": "#79CB60",
"focusedBorderColor": "#79CB60",
"hoverIconColor": "#79CB60",
"infoForeground": "#292D31",
"iconColor": "#5B6168"
},
"control": "#F7F8FA",
"controlText": "#292D31",
"Counter": {
"background": "#79CB60",
"foreground": "#FFFFFF"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#292D31",
"changedValueForeground": "#79CB60",
"errorMessageForeground": "#22863A",
"evaluatingExpressionForeground": "#292D31",
"exceptionForeground": "#6F42C1",
"modifyingValueForeground": "#79CB60",
"valueForeground": "#79CB60"
}
},
"DebuggerTabs": {
"selectedBackground": "#CCE5FF",
"underlinedTabBackground": "#CCE5FF"
},
"DebuggerPopup": {
"borderColor": "#CCE5FF"
},
"DefaultTabs": {
"background": "#F7F8FA",
"borderColor": "#F7F8FA",
"hoverBackground": "#cce5ff",
"hoverColor": "#fafbfc",
"hoverMaskColor": "#CCE5FF",
"inactiveColoredFileBackground": "#edf1f5",
"inactiveUnderlineColor": "#9ba0a3",
"inactiveMaskColor": "#fafbfc",
"underlineColor": "#79CB60",
"underlinedTabBackground": "#cce5ff"
},
"Desktop.background": "#F7F8FA",
"DialogWrapper.southPanelBackground": "#F7F8FA",
"DialogWrapper.southPanelDivider": "#F7F8FA",
"DragAndDrop": {
"areaBackground": "#F7F8FA",
"areaBorderColor": "#F7F8FA",
"areaForeground": "#5B6168"
},
"Editor": {
"background": "#fafbfc",
"foreground": "#5B6168",
"shortcutForeground": "#292D31"
},
"EditorPane": {
"background": "#fafbfc",
"caretForeground": "#79CB60",
"foreground": "#5B6168",
"inactiveBackground": "#F7F8FA",
"inactiveForeground": "#9ba0a3",
"selectionBackground": "#3A66D1",
"selectionForeground": "#111111"
},
"EditorTabs": {
"borderColor": "#f3f3f3",
"hoverColor": "#CCE5FF",
"hoverMaskColor": "#CCE5FF",
"inactiveMaskColor": "#F7F8FA",
"inactiveColoredFileBackground": "#F7F8FA2",
"inactiveUnderlineColor": "#9ba0a3",
"selectedForeground": "#5B6168",
"selectedBackground": "#cce5ff",
"underlineColor": "#79CB60",
"underlinedTabBackground": "#cce5ff"
},
"EditorGroupsTabs": {
"background": "#F7F8FA",
"borderColor": "#f3f3f3",
"hoverBackground": "#CCE5FF",
"hoverColor": "#CCE5FF",
"inactiveUnderlineColor": "#79CB60",
"underlineColor": "#79CB60",
"underlinedTabBackground": "#cce5ff",
"underlinedTabForeground": "#5B6168"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#dcdcdc",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#DFE1E4",
"FormattedTextField": {
"background": "#fafbfc",
"caretForeground": "#79CB60",
"foreground": "#5B6168",
"inactiveBackground": "#edf1f5",
"inactiveForeground": "#9ba0a3",
"selectionForeground": "#111111",
"selectionBackground": "#cce5ff"
},
"Group": {
"disabledSeparatorColor": "#DFE1E4",
"separatorColor": "#DFE1E4"
},
"GutterTooltip": {
"infoForeground": "#5B6168",
"lineSeparatorColor": "#F7F8FA"
},
"HeaderColor": {
"active": "#F7F8FA",
"inactive": "#fafbfc"
},
"HelpTooltip": {
"background": "#F7F8FA",
"borderColor": "#DFE1E4",
"foreground": "#5B6168",
"infoForeground": "#292D31",
"shortcutForeground": "#292D31"
},
"Hyperlink.linkColor": "#79CB60",
"inactiveCaption": "#f3f3f3",
"inactiveCaptionBorder": "#F7F8FA",
"inactiveCaptionText": "#292D31",
"info": "#292D31",
"infoText": "#292D31",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#DFE1E4",
"InplaceRefactoringPopup": {
"borderColor": "#F7F8FA"
},
"InternalFrame": {
"activeTitleForeground": "#5B6168",
"background": "#F7F8FA",
"inactiveTitleForeground": "#292D31"
},
"Label": {
"background": "#F7F8FA",
"disabledForeground": "#9ba0a3",
"disabledShadow": "#F7F8FA",
"disabledText": "#9ba0a3",
"foreground": "#5B6168",
"infoForeground": "#292D31",
"selectedForeground": "#111111"
},
"Link": {
"activeForeground": "#79CB60",
"hoverForeground": "#79CB60",
"pressedForeground": "#79CB60",
"secondaryForeground": "#292D31",
"visitedForeground": "#79CB60"
},
"link.foreground": "#79CB60",
"List": {
"background": "#f3f3f3",
"foreground": "#5B6168",
"selectionBackground": "#3A66D150",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#111111",
"selectionInactiveBackground": "#3A66D1"
},
"material": {
"background": "#F7F8FA",
"branchColor": "#5B6168",
"contrast": "#fafbfc",
"foreground": "#5B6168",
"mergeCommits": "#edf1f5",
"primaryColor": "#292D31",
"selectionForeground": "#FFFFFF",
"tab.backgroundColor": "#F7F8FA",
"tab.borderColor": "#79CB60",
"tagColor": "#292D31"
},
"MemoryIndicator": {
"allocatedBackground": "#f3f3f3",
"usedColor": "#CCE5FF",
"usedBackground": "#CCE5FF"
},
"Menu": {
"acceleratorForeground": "#292D31",
"acceleratorSelectionForeground": "#FFFFFF",
"background": "#F7F8FA",
"border": "4,2,4,2",
"borderColor": "#f3f3f3",
"disabledBackground": "#f3f3f3",
"disabledForeground": "#9ba0a3",
"foreground": "#5B6168",
"selectionBackground": "#3A66D1",
"selectionForeground": "#FFFFFF",
"separatorColor": "#DFE1E4"
},
"MenuBar": {
"background": "#fafbfc",
"borderColor": "#F7F8FA",
"disabledBackground": "#F7F8FA",
"disabledForeground": "#9ba0a3",
"foreground": "#5B6168",
"highlight": "#F7F8FA",
"selectionBackground": "#3A66D1",
"selectionForeground": "#FFFFFF",
"shadow": "#fafbfc"
},
"MenuItem": {
"acceleratorForeground": "#292D31",
"acceleratorSelectionForeground": "#FFFFFF",
"border": "4,2,4,2",
"background": "#F7F8FA",
"disabledBackground": "#F7F8FA",
"disabledForeground": "#9ba0a3",
"foreground": "#5B6168",
"selectionBackground": "#3A66D1",
"selectionForeground": "#FFFFFF"
},
"NavBar": {
"arrowColor": "#5B6168",
"borderColor": "#F7F8FA"
},
"NewClass": {
"Panel": {
"background": "#F7F8FA"
},
"SearchField": {
"background": "#fafbfc"
}
},
"NewPSD.warning": "#79CB60",
"Notification": {
"background": "#DFECFE",
"borderColor": "#DFECFE",
"errorBackground": "#DFECFE",
"errorBorderColor": "#DFECFE",
"foreground": "#5B6168",
"MoreButton": {
"background": "#edf1f5",
"foreground": "#5B6168",
"innerBorderColor": "#edf1f5"
},
"ToolWindow": {
"errorBackground": "#DFECFE",
"errorBorderColor": "#DFECFE",
"informativeBackground": "#DFECFE",
"informativeBorderColor": "#DFECFE",
"warningBackground": "#DFECFE",
"warningBorderColor": "#DFECFE"
}
},
"OnePixelDivider.background": "#DFE1E4",
"OptionPane": {
"background": "#F7F8FA",
"foreground": "#5B6168",
"messageForeground": "#5B6168"
},
"Outline": {
"color": "#edf1f5",
"focusedColor": "#79CB60",
"disabledColor": "#9ba0a3"
},
"Panel": {
"background": "#F7F8FA",
"foreground": "#5B6168"
},
"ParameterInfo": {
"background": "#f3f3f3",
"borderColor": "#cce5ff",
"currentOverloadBackground": "#cce5ff",
"currentParameterForeground": "#79CB60",
"disabledForeground": "#9ba0a3",
"foreground": "#5B6168",
"infoForeground": "#292D31",
"lineSeparatorColor": "#cce5ff"
},
"PasswordField": {
"background": "#fafbfc",
"capsLockIconColor": "#79CB60",
"caretForeground": "#79CB60",
"foreground": "#5B6168",
"inactiveForeground": "#9ba0a3",
"selectionBackground": "#cce5ff",
"selectionForeground": "#111111"
},
"Plugins": {
"background": "#F7F8FA",
"disabledForeground": "#9ba0a3",
"eapTagBackground": "#CCE5FF",
"lightSelectionBackground": "#3A66D1",
"paidTagBackground": "#CCE5FF",
"selectionBackground": "#3A66D1",
"tagForeground": "#79CB60",
"tagBackground": "#CCE5FF",
"trialTagBackground": "#CCE5FF",
"Button": {
"installBackground": "#edf1f5",
"installBorderColor": "#edf1f5",
"installForeground": "#5B6168",
"installFocusedBackground": "#CCE5FF",
"installFillForeground": "#9ba0a3",
"installFillBackground": "#edf1f5",
"updateBackground": "#edf1f5",
"updateBorderColor": "#edf1f5",
"updateForeground": "#5B6168"
},
"SearchField": {
"background": "#fafbfc",
"borderColor": "#DFE1E4"
},
"SectionHeader": {
"background": "#f3f3f3",
"foreground": "#5B6168"
},
"Tab": {
"hoverBackground": "#cce5ff",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#cce5ff"
}
},
"Popup": {
"Advertiser": {
"background": "#F7F8FA",
"borderColor": "#F7F8FA",
"foreground": "#79CB60"
},
"borderColor": "#fafbfc",
"inactiveBorderColor": "#F7F8FA",
"innerBorderColor": "#f3f3f3",
"Header": {
"activeBackground": "#F7F8FA",
"inactiveBackground": "#fafbfc"
},
"paintBorder": true,
"separatorForeground": "#5B6168",
"separatorColor": "#f3f3f3",
"Toolbar": {
"Floating.background": "#fafbfc",
"background": "#fafbfc",
"borderColor": "#fafbfc"
}
},
"PopupMenu": {
"background": "#F7F8FA",
"border": "2,0,2,0",
"foreground": "#5B6168",
"translucentBackground": "#F7F8FA"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#F7F8FA",
"foreground": "#79CB60",
"indeterminateEndColor": "#79CB60",
"indeterminateStartColor": "#79CB60",
"progressColor": "#79CB60",
"selectionBackground": "#CCE5FF",
"trackColor": "#CCE5FF"
},
"PsiViewer": {
"referenceHighlightColor": "#79CB60"
},
"RadioButton": {
"background": "#F7F8FA",
"disabledText": "#9ba0a3",
"foreground": "#5B6168"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#292D31",
"acceleratorSelectionForeground": "#292D31",
"background": "#F7F8FA",
"disabledBackground": "#F7F8FA",
"disabledForeground": "#9ba0a3",
"foreground": "#5B6168",
"selectionBackground": "#3A66D1",
"selectionForeground": "#FFFFFF"
},
"ScrollBar": {
"background": "#F7F8FA",
"hoverThumbBorderColor": "#79CB60",
"hoverThumbColor": "#79CB60",
"hoverTrackColor": "#F7F8FA30",
"Mac": {
"hoverThumbBorderColor": "#79CB60",
"hoverThumbColor": "#79CB60",
"hoverTrackColor": "#F7F8FA30",
"thumbBorderColor": "#79CB6070",
"thumbColor": "#79CB6070",
"trackColor": "#F7F8FA30",
"Transparent": {
"hoverThumbBorderColor": "#79CB60",
"hoverThumbColor": "#79CB60",
"hoverTrackColor": "#F7F8FA30",
"thumbBorderColor": "#79CB6070",
"thumbColor": "#79CB6070",
"trackColor": "#F7F8FA30"
}
},
"thumb": "#CCE5FF",
"thumbBorderColor": "#79CB6070",
"thumbColor": "#79CB6070",
"trackColor": "#F7F8FA30",
"Transparent": {
"hoverThumbBorderColor": "#79CB60",
"hoverThumbColor": "#79CB60",
"hoverTrackColor": "#F7F8FA30",
"thumbBorderColor": "#79CB6070",
"thumbColor": "#79CB6070",
"trackColor": "#F7F8FA30"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#fafbfc",
"foreground": "#292D31"
},
"Header": {
"background": "#F7F8FA"
},
"List": {
"separatorForeground": "#292D31",
"separatorColor": "#DFE1E4"
},
"SearchField": {
"background": "#F7F8FA",
"borderColor": "#fafbfc",
"infoForeground": "#292D31"
},
"Tab": {
"active.foreground": "#111111",
"selectedForeground": "#111111",
"selectedBackground": "#CCE5FF"
}
},
"SearchMatch": {
"endBackground": "#79CB60",
"startBackground": "#79CB60"
},
"SearchField.errorBackground": "#DFECFE",
"Separator": {
"background": "#f3f3f3",
"foreground": "#f3f3f3",
"separatorColor": "#f3f3f3"
},
"SidePanel": {
"background": "#fafbfc"
},
"Slider": {
"background": "#F7F8FA",
"buttonBorderColor": "#79CB60",
"buttonColor": "#79CB60",
"foreground": "#5B6168",
"majorTickLength": 6,
"tickColor": "#f3f3f3",
"trackColor": "#cce5ff",
"trackWidth": 7,
"thumb": "#79CB60"
},
"SpeedSearch": {
"background": "#CCE5FF",
"borderColor": "#DFE1E4",
"foreground": "#5B6168",
"errorForeground": "#5B6168"
},
"Spinner": {
"background": "#F7F8FA",
"border": "3,3,3,3",
"foreground": "#5B6168",
"selectionForeground": "#111111"
},
"SplitPane": {
"background": "#F7F8FA",
"highlight": "#fafbfc"
},
"SplitPaneDivider.draggingColor": "#f3f3f3",
"StatusBar": {
"borderColor": "#F7F8FA"
},
"TabbedPane": {
"background": "#F7F8FA",
"contentAreaColor": "#CCE5FF",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#DFE1E4",
"disabledForeground": "#9ba0a3",
"disabledUnderlineColor": "#9ba0a3",
"focus": "#cce5ff",
"focusColor": "#cce5ff",
"fontSizeOffset": 0,
"foreground": "#5B6168",
"highlight": "#DFE1E4",
"hoverColor": "#CCE5FF",
"labelShift": 0,
"selectedForeground": "#111111",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#79CB60"
},
"TabbedPane.mt.tab.background": "#fafbfc",
"Table": {
"background": "#F7F8FA",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#79CB60",
"dropLineShortColor": "#79CB60",
"focusCellBackground": "#cce5ff",
"focusCellForeground": "#111111",
"foreground": "#5B6168",
"gridColor": "#F7F8FA",
"highlightOuter": "#cce5ff",
"lightSelectionForeground": "#111111",
"lightSelectionInactiveForeground": "#292D31",
"lightSelectionInactiveBackground": "#f3f3f3",
"selectionBackground": "#cce5ff",
"selectionForeground": "#111111",
"selectionInactiveBackground": "#cce5ff",
"selectionInactiveForeground": "#FFFFFF",
"sortIconColor": "#5B6168",
"stripeColor": "#fafbfc"
},
"TableHeader": {
"background": "#F7F8FA",
"borderColor": "#F7F8FA",
"bottomSeparatorColor": "#f3f3f3",
"cellBorder": "4,0,4,0",
"disabledForeground": "#9ba0a3",
"foreground": "#5B6168",
"focusCellBackground": "#cce5ff",
"focusCellForeground": "#111111",
"height": 25,
"separatorColor": "#f3f3f3"
},
"text": "#292D31",
"textInactiveText": "#292D31",
"textText": "#292D31",
"TextArea": {
"background": "#fafbfc",
"caretForeground": "#79CB60",
"foreground": "#5B6168",
"inactiveForeground": "#9ba0a3",
"selectionBackground": "#cce5ff",
"selectionForeground": "#111111"
},
"TextField": {
"background": "#fafbfc",
"caretForeground": "#79CB60",
"foreground": "#5B6168",
"inactiveForeground": "#9ba0a3",
"selectionBackground": "#cce5ff",
"selectionForeground": "#111111"
},
"TextPane": {
"background": "#fafbfc",
"caretForeground": "#79CB60",
"foreground": "#5B6168",
"inactiveForeground": "#9ba0a3",
"selectionBackground": "#cce5ff",
"selectionForeground": "#111111"
},
"TitlePane": {
"background": "#fafbfc",
"Button.hoverBackground": "#CCE5FF",
"inactiveBackground": "#F7F8FA",
"infoForeground": "#292D31",
"inactiveInfoForeground": "#292D31"
},
"TitledBorder.titleColor": "#5B6168",
"ToggleButton": {
"borderColor": "#edf1f5",
"buttonColor": "#5B6168",
"disabledText": "#9ba0a3",
"foreground": "#5B6168",
"offForeground": "#F7F8FA",
"offBackground": "#F7F8FA",
"onBackground": "#79CB60",
"onForeground": "#79CB60"
},
"ToolBar": {
"background": "#fafbfc",
"borderHandleColor": "#292D31",
"floatingForeground": "#292D31",
"foreground": "#5B6168"
},
"ToolTip": {
"Actions.background": "#F7F8FA",
"Actions.infoForeground": "#292D31",
"background": "#F7F8FA",
"borderColor": "#CCE5FF",
"foreground": "#5B6168",
"infoForeground": "#292D31",
"separatorColor": "#DFE1E4",
"shortcutForeground": "#292D31"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#cce5ff",
"selectedForeground": "#111111",
"selectedBackground": "#fafbfc"
},
"Header": {
"background": "#F7F8FA",
"borderColor": "#f3f3f3",
"inactiveBackground": "#F7F8FA"
},
"HeaderCloseButton": {
"background": "#F7F8FA"
},
"HeaderTab": {
"hoverBackground": "#CCE5FF",
"hoverInactiveBackground": "#f3f3f3",
"inactiveUnderlineColor": "#79CB60",
"selectedBackground": "#fafbfc",
"selectedInactiveBackground": "#fafbfc",
"underlineColor": "#79CB60",
"underlinedTabBackground": "#CCE5FF",
"underlinedTabInactiveBackground": "#f3f3f3"
}
},
"Tree": {
"background": "#fafbfc",
"foreground": "#292D31",
"hash": "#DFE1E4",
"modifiedItemForeground": "#79CB60",
"rowHeight": 28,
"selectionBackground": "#3A66D1",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#3A66D1",
"textBackground": "#fafbfc"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#DFE1E4",
"ColorPicker.background": "#F7F8FA",
"ColorPicker.foreground": "#5B6168",
"Component.borderColor": "#DFE1E4",
"Component.background": "#F7F8FA",
"Component.foreground": "#5B6168",
"Connector.borderColor": "#DFE1E4",
"Connector.hoverBorderColor": "#CCE5FF",
"Canvas.background": "#fafbfc",
"highStroke.foreground": "#5B6168",
"Label.foreground": "#292D31",
"List.selectionBackground": "#3A66D1",
"Panel.borderColor": "#DFE1E4",
"Panel.background": "#F7F8FA",
"percent.foreground": "#5B6168",
"Placeholder.background": "#F7F8FA",
"Placeholder.borderColor": "#DFE1E4",
"Placeholder.foreground": "#5B6168",
"Placeholder.selectedForeground": "#FFFFFF",
"Preview.background": "#F7F8FA",
"stroke.acceleratorForeground": "#292D31"
},
"ValidationTooltip": {
"errorBackground": "#DFECFE",
"errorBorderColor": "#DFECFE",
"warningBackground": "#DFECFE",
"warningBorderColor": "#DFECFE"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#F7F8FA"
},
"GitCommits": {
"graphColor": "#CCE5FF"
},
"GitLog": {
"localBranchIconColor": "#79CB60",
"otherIconColor": "#292D31",
"remoteBranchIconColor": "#5B6168",
"tagIconColor": "#292D31"
},
"HgLog": {
"branchIconColor": "#79CB60",
"bookmarkIconColor": "#111111",
"closedBranchIconColor": "#9ba0a3",
"localTagIconColor": "#292D31",
"mqTagIconColor": "#292D31",
"tagIconColor": "#292D31",
"tipIconColor": "#292D31"
},
"Log": {
"Commit.unmatchedForeground": "#292D31",
"Commit.currentBranchBackground": "#f3f3f3"
},
"RefLabel": {
"foreground": "#111111",
"backgroundBase": "#CCE5FF"
}
},
"Viewport": {
"background": "#fafbfc",
"foreground": "#5B6168"
},
"WelcomeScreen": {
"background": "#F7F8FA",
"borderColor": "#F7F8FA",
"captionBackground": "#fafbfc",
"captionForeground": "#5B6168",
"footerBackground": "#fafbfc",
"footerForeground": "#5B6168",
"headerBackground": "#F7F8FA",
"headerForeground": "#5B6168",
"separatorColor": "#DFE1E4",
"Projects": {
"background": "#f3f3f3",
"selectionBackground": "#3A66D1",
"selectionInactiveBackground": "#f3f3f3"
}
},
"window": "#fafbfc",
"windowBorder": "#DFE1E4",
"windowText": "#292D31",
"Window.border": "#DFE1E4"
},
"icons": {
"ColorPalette": {
"#43494A": "#fafbfc",
"#6B6B6B": "#292D31",
"#A7A7A7": "#F7F8FA",
"#3D6185": "#79CB60",
"#466D94": "#79CB60",
"#3C3F41": "#F7F8FA",
"#545556": "#9ba0a3",
"#606060": "#9ba0a3",
"#9AA7B0": "#5B6168",
"#675133": "#79CB60",
"Actions.Blue": "#6F42C1",
"Actions.Green": "#032F62",
"Actions.Grey": "#292D31",
"Actions.GreyInline": "#6A737D",
"Actions.GreyInline.Dark": "#5B6168",
"Actions.Red": "#22863A",
"Actions.Yellow": "#6F42C1",
"Checkbox.Background.Default": "#fafbfc",
"Checkbox.Background.Default.Dark": "#fafbfc",
"Checkbox.Background.Disabled": "#dcdcdc",
"Checkbox.Background.Disabled.Dark": "#dcdcdc",
"Checkbox.Border.Default": "#DFE1E4",
"Checkbox.Border.Default.Dark": "#DFE1E4",
"Checkbox.Border.Disabled": "#9ba0a3",
"Checkbox.Border.Disabled.Dark": "#9ba0a3",
"Checkbox.Focus.Thin.Default": "#79CB60",
"Checkbox.Focus.Thin.Default.Dark": "#79CB60",
"Checkbox.Focus.Wide": "#79CB60",
"Checkbox.Focus.Wide.Dark": "#79CB60",
"Checkbox.Foreground.Disabled": "#9ba0a3",
"Checkbox.Foreground.Disabled.Dark": "#9ba0a3",
"Checkbox.Background.Selected": "#79CB60",
"Checkbox.Background.Selected.Dark": "#F7F8FA",
"Checkbox.Border.Selected": "#79CB60",
"Checkbox.Border.Selected.Dark": "#79CB60",
"Checkbox.Foreground.Selected": "#79CB60",
"Checkbox.Foreground.Selected.Dark": "#79CB60",
"Checkbox.Focus.Thin.Selected": "#5B6168",
"Checkbox.Focus.Thin.Selected.Dark": "#5B6168",
"Objects.Grey": "#6A737D",
"Objects.Blue": "#6F42C1",
"Objects.RedStatus": "#22863A",
"Objects.Red": "#22863A",
"Objects.Pink": "#D73A49",
"Objects.Yellow": "#6F42C1",
"Objects.Green": "#032F62",
"Objects.Purple": "#D73A49",
"Objects.BlackText": "#5B6168",
"Objects.YellowDark": "#005CC5",
"Objects.GreenAndroid": "#032F62"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "GitHub",
"dark": false,
"author": "Mallowigi",
"editorScheme": "/colors/Github.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#292D31",
"background": "#F7F8FA",
"borderColor": "#DFE1E4",
"disabledBackground": "#dcdcdc",
"disabledForeground": "#9ba0a3",
"disabledText": "#9ba0a3",
"focusColor": "#CCE5FF",
"focusedBorderColor": "#79CB60",
"foreground": "#5B6168",
"inactiveBackground": "#dcdcdc",
"inactiveForeground": "#292D31",
"infoForeground": "#292D31",
"selectionBackground": "#3A66D1",
"selectionBackgroundInactive": "#f3f3f3",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#f3f3f3",
"separatorColor": "#DFE1E4"
},
"activeCaption": "#F7F8FA",
"ActionButton": {
"hoverBackground": "#79CB6050",
"hoverBorderColor": "#79CB6050",
"hoverSeparatorColor": "#edf1f5",
"focusedBorderColor": "#79CB6050",
"pressedBackground": "#79CB6050",
"pressedBorderColor": "#79CB6050"
},
"Autocomplete": {
"selectionBackground": "#3A66D1"
},
"Borders.ContrastBorderColor": "#F7F8FA",
"Borders.color": "#DFE1E4",
"Button": {
"arc": 0,
"background": "#F7F8FA",
"default": {
"endBackground": "#cce5ff",
"endBorderColor": "#cce5ff",
"foreground": "#111111",
"focusColor": "#79CB60",
"focusedBorderColor": "#79CB60",
"shadowColor": "#cce5ff",
"startBackground": "#cce5ff",
"startBorderColor": "#cce5ff"
},
"disabledBorderColor": "#edf1f5",
"disabledText": "#9ba0a3",
"endBackground": "#edf1f5",
"endBorderColor": "#edf1f5",
"focus": "#CCE5FF",
"focusedBorderColor": "#79CB60",
"foreground": "#292D31",
"highlight": "#FFFFFF",
"mt.background": "#edf1f5",
"mt.foreground": "#292D31",
"mt.selectedForeground": "#FFFFFF",
"mt.selection.color1": "#cce5ff",
"mt.selection.color2": "#cce5ff",
"startBackground": "#edf1f5",
"startBorderColor": "#edf1f5",
"shadowColor": "#edf1f5",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#DFE1E4",
"Tooltip.background": "#DFECFE"
},
"Content.background": "#fafbfc",
"CheckBox": {
"background": "#F7F8FA",
"disabledText": "#9ba0a3",
"foreground": "#5B6168",
"select": "#79CB60"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#292D31",
"acceleratorSelectionForeground": "#292D31",
"background": "#F7F8FA",
"disabledBackground": "#F7F8FA",
"disabledForeground": "#9ba0a3",
"foreground": "#5B6168",
"selectionBackground": "#3A66D1",
"selectionForeground": "#111111"
},
"ColorChooser": {
"background": "#F7F8FA",
"foreground": "#5B6168",
"swatchesDefaultRecentColor": "#5B6168"
},
"ComboBoxButton.background": "#edf1f5",
"ComboBox": {
"ArrowButton": {
"background": "#edf1f5",
"disabledIconColor": "#9ba0a3",
"iconColor": "#5B6168",
"nonEditableBackground": "#F7F8FA"
},
"background": "#F7F8FA",
"buttonBackground": "#edf1f5",
"disabledForeground": "#9ba0a3",
"foreground": "#5B6168",
"modifiedItemForeground": "#79CB60",
"nonEditableBackground": "#f3f3f3",
"padding": "5,5,5,5",
"selectionBackground": "#cce5ff",
"selectionForeground": "#111111"
},
"ComboPopup.border": "#DFE1E4",
"CompletionPopup": {
"background": "#f3f3f3",
"foreground": "#5B6168",
"infoForeground": "#292D31",
"matchForeground": "#79CB60",
"matchSelectionForeground": "#79CB60",
"nonFocusedState": "false",
"selectedGrayedForeground": "#FFFFFF",
"selectionGrayForeground": "#FFFFFF",
"selectionInactiveInfoForeground": "#292D31",
"selectionInactiveBackground": "#3A66D150",
"selectionBackground": "#3A66D180",
"selectionForeground": "#FFFFFF",
"selectionInfoForeground": "#FFFFFF"
},
"Component": {
"arc": 4,
"borderColor": "#CCE5FF",
"disabledBorderColor": "#edf1f5",
"focusColor": "#79CB60",
"focusedBorderColor": "#79CB60",
"hoverIconColor": "#79CB60",
"infoForeground": "#292D31",
"iconColor": "#5B6168"
},
"control": "#F7F8FA",
"controlText": "#292D31",
"Counter": {
"background": "#79CB60",
"foreground": "#FFFFFF"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#292D31",
"changedValueForeground": "#79CB60",
"errorMessageForeground": "#22863A",
"evaluatingExpressionForeground": "#292D31",
"exceptionForeground": "#6F42C1",
"modifyingValueForeground": "#79CB60",
"valueForeground": "#79CB60"
}
},
"DebuggerTabs": {
"selectedBackground": "#CCE5FF",
"underlinedTabBackground": "#CCE5FF"
},
"DebuggerPopup": {
"borderColor": "#CCE5FF"
},
"DefaultTabs": {
"background": "#F7F8FA",
"borderColor": "#F7F8FA",
"hoverBackground": "#cce5ff",
"hoverColor": "#F7F8FA",
"hoverMaskColor": "#CCE5FF",
"inactiveColoredFileBackground": "#edf1f5",
"inactiveUnderlineColor": "#9ba0a3",
"inactiveMaskColor": "#F7F8FA",
"underlineColor": "#79CB60",
"underlinedTabBackground": "#cce5ff"
},
"Desktop.background": "#F7F8FA",
"DialogWrapper.southPanelBackground": "#F7F8FA",
"DialogWrapper.southPanelDivider": "#F7F8FA",
"DragAndDrop": {
"areaBackground": "#F7F8FA",
"areaBorderColor": "#F7F8FA",
"areaForeground": "#5B6168"
},
"Editor": {
"background": "#F7F8FA",
"foreground": "#5B6168",
"shortcutForeground": "#292D31"
},
"EditorPane": {
"background": "#F7F8FA",
"caretForeground": "#79CB60",
"foreground": "#5B6168",
"inactiveBackground": "#F7F8FA",
"inactiveForeground": "#9ba0a3",
"selectionBackground": "#3A66D1",
"selectionForeground": "#111111"
},
"EditorTabs": {
"borderColor": "#f3f3f3",
"hoverColor": "#CCE5FF",
"hoverMaskColor": "#CCE5FF",
"inactiveMaskColor": "#F7F8FA",
"inactiveColoredFileBackground": "#F7F8FA2",
"inactiveUnderlineColor": "#9ba0a3",
"selectedForeground": "#5B6168",
"selectedBackground": "#cce5ff",
"underlineColor": "#79CB60",
"underlinedTabBackground": "#cce5ff"
},
"EditorGroupsTabs": {
"background": "#F7F8FA",
"borderColor": "#f3f3f3",
"hoverBackground": "#CCE5FF",
"hoverColor": "#CCE5FF",
"inactiveUnderlineColor": "#79CB60",
"underlineColor": "#79CB60",
"underlinedTabBackground": "#cce5ff",
"underlinedTabForeground": "#5B6168"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#dcdcdc",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#DFE1E4",
"FormattedTextField": {
"background": "#F7F8FA",
"caretForeground": "#79CB60",
"foreground": "#5B6168",
"inactiveBackground": "#edf1f5",
"inactiveForeground": "#9ba0a3",
"selectionForeground": "#111111",
"selectionBackground": "#cce5ff"
},
"Group": {
"disabledSeparatorColor": "#DFE1E4",
"separatorColor": "#DFE1E4"
},
"GutterTooltip": {
"infoForeground": "#5B6168",
"lineSeparatorColor": "#F7F8FA"
},
"HeaderColor": {
"active": "#F7F8FA",
"inactive": "#fafbfc"
},
"HelpTooltip": {
"background": "#F7F8FA",
"borderColor": "#DFE1E4",
"foreground": "#5B6168",
"infoForeground": "#292D31",
"shortcutForeground": "#292D31"
},
"Hyperlink.linkColor": "#79CB60",
"inactiveCaption": "#f3f3f3",
"inactiveCaptionBorder": "#F7F8FA",
"inactiveCaptionText": "#292D31",
"info": "#292D31",
"infoText": "#292D31",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#DFE1E4",
"InplaceRefactoringPopup": {
"borderColor": "#F7F8FA"
},
"InternalFrame": {
"activeTitleForeground": "#5B6168",
"background": "#F7F8FA",
"inactiveTitleForeground": "#292D31"
},
"Label": {
"background": "#F7F8FA",
"disabledForeground": "#9ba0a3",
"disabledShadow": "#F7F8FA",
"disabledText": "#9ba0a3",
"foreground": "#5B6168",
"infoForeground": "#292D31",
"selectedForeground": "#111111"
},
"Link": {
"activeForeground": "#79CB60",
"hoverForeground": "#79CB60",
"pressedForeground": "#79CB60",
"secondaryForeground": "#292D31",
"visitedForeground": "#79CB60"
},
"link.foreground": "#79CB60",
"List": {
"background": "#f3f3f3",
"foreground": "#5B6168",
"selectionBackground": "#3A66D150",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#111111",
"selectionInactiveBackground": "#3A66D1"
},
"material": {
"background": "#F7F8FA",
"branchColor": "#5B6168",
"contrast": "#fafbfc",
"foreground": "#5B6168",
"mergeCommits": "#edf1f5",
"primaryColor": "#292D31",
"selectionForeground": "#FFFFFF",
"tab.backgroundColor": "#F7F8FA",
"tab.borderColor": "#79CB60",
"tagColor": "#292D31"
},
"MemoryIndicator": {
"allocatedBackground": "#f3f3f3",
"usedColor": "#CCE5FF",
"usedBackground": "#CCE5FF"
},
"Menu": {
"acceleratorForeground": "#292D31",
"acceleratorSelectionForeground": "#FFFFFF",
"background": "#F7F8FA",
"border": "4,2,4,2",
"borderColor": "#f3f3f3",
"disabledBackground": "#f3f3f3",
"disabledForeground": "#9ba0a3",
"foreground": "#5B6168",
"selectionBackground": "#3A66D1",
"selectionForeground": "#FFFFFF",
"separatorColor": "#DFE1E4"
},
"MenuBar": {
"background": "#F7F8FA",
"borderColor": "#F7F8FA",
"disabledBackground": "#F7F8FA",
"disabledForeground": "#9ba0a3",
"foreground": "#5B6168",
"highlight": "#F7F8FA",
"selectionBackground": "#3A66D1",
"selectionForeground": "#FFFFFF",
"shadow": "#F7F8FA"
},
"MenuItem": {
"acceleratorForeground": "#292D31",
"acceleratorSelectionForeground": "#FFFFFF",
"border": "4,2,4,2",
"background": "#F7F8FA",
"disabledBackground": "#F7F8FA",
"disabledForeground": "#9ba0a3",
"foreground": "#5B6168",
"selectionBackground": "#3A66D1",
"selectionForeground": "#FFFFFF"
},
"NavBar": {
"arrowColor": "#5B6168",
"borderColor": "#F7F8FA"
},
"NewClass": {
"Panel": {
"background": "#F7F8FA"
},
"SearchField": {
"background": "#F7F8FA"
}
},
"NewPSD.warning": "#79CB60",
"Notification": {
"background": "#DFECFE",
"borderColor": "#DFECFE",
"errorBackground": "#DFECFE",
"errorBorderColor": "#DFECFE",
"foreground": "#5B6168",
"MoreButton": {
"background": "#edf1f5",
"foreground": "#5B6168",
"innerBorderColor": "#edf1f5"
},
"ToolWindow": {
"errorBackground": "#DFECFE",
"errorBorderColor": "#DFECFE",
"informativeBackground": "#DFECFE",
"informativeBorderColor": "#DFECFE",
"warningBackground": "#DFECFE",
"warningBorderColor": "#DFECFE"
}
},
"OnePixelDivider.background": "#DFE1E4",
"OptionPane": {
"background": "#F7F8FA",
"foreground": "#5B6168",
"messageForeground": "#5B6168"
},
"Outline": {
"color": "#edf1f5",
"focusedColor": "#79CB60",
"disabledColor": "#9ba0a3"
},
"Panel": {
"background": "#F7F8FA",
"foreground": "#5B6168"
},
"ParameterInfo": {
"background": "#f3f3f3",
"borderColor": "#cce5ff",
"currentOverloadBackground": "#cce5ff",
"currentParameterForeground": "#79CB60",
"disabledForeground": "#9ba0a3",
"foreground": "#5B6168",
"infoForeground": "#292D31",
"lineSeparatorColor": "#cce5ff"
},
"PasswordField": {
"background": "#F7F8FA",
"capsLockIconColor": "#79CB60",
"caretForeground": "#79CB60",
"foreground": "#5B6168",
"inactiveForeground": "#9ba0a3",
"selectionBackground": "#cce5ff",
"selectionForeground": "#111111"
},
"Plugins": {
"background": "#F7F8FA",
"disabledForeground": "#9ba0a3",
"eapTagBackground": "#CCE5FF",
"lightSelectionBackground": "#3A66D1",
"paidTagBackground": "#CCE5FF",
"selectionBackground": "#3A66D1",
"tagForeground": "#79CB60",
"tagBackground": "#CCE5FF",
"trialTagBackground": "#CCE5FF",
"Button": {
"installBackground": "#edf1f5",
"installBorderColor": "#edf1f5",
"installForeground": "#5B6168",
"installFocusedBackground": "#CCE5FF",
"installFillForeground": "#9ba0a3",
"installFillBackground": "#edf1f5",
"updateBackground": "#edf1f5",
"updateBorderColor": "#edf1f5",
"updateForeground": "#5B6168"
},
"SearchField": {
"background": "#F7F8FA",
"borderColor": "#DFE1E4"
},
"SectionHeader": {
"background": "#f3f3f3",
"foreground": "#5B6168"
},
"Tab": {
"hoverBackground": "#cce5ff",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#cce5ff"
}
},
"Popup": {
"Advertiser": {
"background": "#F7F8FA",
"borderColor": "#F7F8FA",
"foreground": "#79CB60"
},
"borderColor": "#fafbfc",
"inactiveBorderColor": "#F7F8FA",
"innerBorderColor": "#f3f3f3",
"Header": {
"activeBackground": "#F7F8FA",
"inactiveBackground": "#fafbfc"
},
"paintBorder": true,
"separatorForeground": "#5B6168",
"separatorColor": "#f3f3f3",
"Toolbar": {
"Floating.background": "#fafbfc",
"background": "#fafbfc",
"borderColor": "#fafbfc"
}
},
"PopupMenu": {
"background": "#F7F8FA",
"border": "2,0,2,0",
"foreground": "#5B6168",
"translucentBackground": "#F7F8FA"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#F7F8FA",
"foreground": "#79CB60",
"indeterminateEndColor": "#79CB60",
"indeterminateStartColor": "#79CB60",
"progressColor": "#79CB60",
"selectionBackground": "#CCE5FF",
"trackColor": "#CCE5FF"
},
"PsiViewer": {
"referenceHighlightColor": "#79CB60"
},
"RadioButton": {
"background": "#F7F8FA",
"disabledText": "#9ba0a3",
"foreground": "#5B6168"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#292D31",
"acceleratorSelectionForeground": "#292D31",
"background": "#F7F8FA",
"disabledBackground": "#F7F8FA",
"disabledForeground": "#9ba0a3",
"foreground": "#5B6168",
"selectionBackground": "#3A66D1",
"selectionForeground": "#FFFFFF"
},
"ScrollBar": {
"background": "#F7F8FA",
"hoverThumbBorderColor": "#79CB60",
"hoverThumbColor": "#79CB60",
"hoverTrackColor": "#F7F8FA30",
"Mac": {
"hoverThumbBorderColor": "#79CB60",
"hoverThumbColor": "#79CB60",
"hoverTrackColor": "#F7F8FA30",
"thumbBorderColor": "#79CB6070",
"thumbColor": "#79CB6070",
"trackColor": "#F7F8FA30",
"Transparent": {
"hoverThumbBorderColor": "#79CB60",
"hoverThumbColor": "#79CB60",
"hoverTrackColor": "#F7F8FA30",
"thumbBorderColor": "#79CB6070",
"thumbColor": "#79CB6070",
"trackColor": "#F7F8FA30"
}
},
"thumb": "#CCE5FF",
"thumbBorderColor": "#79CB6070",
"thumbColor": "#79CB6070",
"trackColor": "#F7F8FA30",
"Transparent": {
"hoverThumbBorderColor": "#79CB60",
"hoverThumbColor": "#79CB60",
"hoverTrackColor": "#F7F8FA30",
"thumbBorderColor": "#79CB6070",
"thumbColor": "#79CB6070",
"trackColor": "#F7F8FA30"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#fafbfc",
"foreground": "#292D31"
},
"Header": {
"background": "#F7F8FA"
},
"List": {
"separatorForeground": "#292D31",
"separatorColor": "#DFE1E4"
},
"SearchField": {
"background": "#F7F8FA",
"borderColor": "#fafbfc",
"infoForeground": "#292D31"
},
"Tab": {
"active.foreground": "#111111",
"selectedForeground": "#111111",
"selectedBackground": "#CCE5FF"
}
},
"SearchMatch": {
"endBackground": "#79CB60",
"startBackground": "#79CB60"
},
"SearchField.errorBackground": "#DFECFE",
"Separator": {
"background": "#f3f3f3",
"foreground": "#f3f3f3",
"separatorColor": "#f3f3f3"
},
"SidePanel": {
"background": "#F7F8FA"
},
"Slider": {
"background": "#F7F8FA",
"buttonBorderColor": "#79CB60",
"buttonColor": "#79CB60",
"foreground": "#5B6168",
"majorTickLength": 6,
"tickColor": "#f3f3f3",
"trackColor": "#cce5ff",
"trackWidth": 7,
"thumb": "#79CB60"
},
"SpeedSearch": {
"background": "#CCE5FF",
"borderColor": "#DFE1E4",
"foreground": "#5B6168",
"errorForeground": "#5B6168"
},
"Spinner": {
"background": "#F7F8FA",
"border": "3,3,3,3",
"foreground": "#5B6168",
"selectionForeground": "#111111"
},
"SplitPane": {
"background": "#F7F8FA",
"highlight": "#F7F8FA"
},
"SplitPaneDivider.draggingColor": "#f3f3f3",
"StatusBar": {
"borderColor": "#F7F8FA"
},
"TabbedPane": {
"background": "#F7F8FA",
"contentAreaColor": "#CCE5FF",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#DFE1E4",
"disabledForeground": "#9ba0a3",
"disabledUnderlineColor": "#9ba0a3",
"focus": "#cce5ff",
"focusColor": "#cce5ff",
"fontSizeOffset": 0,
"foreground": "#5B6168",
"highlight": "#DFE1E4",
"hoverColor": "#CCE5FF",
"labelShift": 0,
"selectedForeground": "#111111",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#79CB60"
},
"TabbedPane.mt.tab.background": "#F7F8FA",
"Table": {
"background": "#F7F8FA",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#79CB60",
"dropLineShortColor": "#79CB60",
"focusCellBackground": "#cce5ff",
"focusCellForeground": "#111111",
"foreground": "#5B6168",
"gridColor": "#F7F8FA",
"highlightOuter": "#cce5ff",
"lightSelectionForeground": "#111111",
"lightSelectionInactiveForeground": "#292D31",
"lightSelectionInactiveBackground": "#f3f3f3",
"selectionBackground": "#cce5ff",
"selectionForeground": "#111111",
"selectionInactiveBackground": "#cce5ff",
"selectionInactiveForeground": "#FFFFFF",
"sortIconColor": "#5B6168",
"stripeColor": "#fafbfc"
},
"TableHeader": {
"background": "#F7F8FA",
"borderColor": "#F7F8FA",
"bottomSeparatorColor": "#f3f3f3",
"cellBorder": "4,0,4,0",
"disabledForeground": "#9ba0a3",
"foreground": "#5B6168",
"focusCellBackground": "#cce5ff",
"focusCellForeground": "#111111",
"height": 25,
"separatorColor": "#f3f3f3"
},
"text": "#292D31",
"textInactiveText": "#292D31",
"textText": "#292D31",
"TextArea": {
"background": "#F7F8FA",
"caretForeground": "#79CB60",
"foreground": "#5B6168",
"inactiveForeground": "#9ba0a3",
"selectionBackground": "#cce5ff",
"selectionForeground": "#111111"
},
"TextField": {
"background": "#F7F8FA",
"caretForeground": "#79CB60",
"foreground": "#5B6168",
"inactiveForeground": "#9ba0a3",
"selectionBackground": "#cce5ff",
"selectionForeground": "#111111"
},
"TextPane": {
"background": "#F7F8FA",
"caretForeground": "#79CB60",
"foreground": "#5B6168",
"inactiveForeground": "#9ba0a3",
"selectionBackground": "#cce5ff",
"selectionForeground": "#111111"
},
"TitlePane": {
"background": "#fafbfc",
"Button.hoverBackground": "#CCE5FF",
"inactiveBackground": "#F7F8FA",
"infoForeground": "#292D31",
"inactiveInfoForeground": "#292D31"
},
"TitledBorder.titleColor": "#5B6168",
"ToggleButton": {
"borderColor": "#edf1f5",
"buttonColor": "#5B6168",
"disabledText": "#9ba0a3",
"foreground": "#5B6168",
"offForeground": "#F7F8FA",
"offBackground": "#F7F8FA",
"onBackground": "#79CB60",
"onForeground": "#79CB60"
},
"ToolBar": {
"background": "#F7F8FA",
"borderHandleColor": "#292D31",
"floatingForeground": "#292D31",
"foreground": "#5B6168"
},
"ToolTip": {
"Actions.background": "#F7F8FA",
"Actions.infoForeground": "#292D31",
"background": "#F7F8FA",
"borderColor": "#CCE5FF",
"foreground": "#5B6168",
"infoForeground": "#292D31",
"separatorColor": "#DFE1E4",
"shortcutForeground": "#292D31"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#cce5ff",
"selectedForeground": "#111111",
"selectedBackground": "#fafbfc"
},
"Header": {
"background": "#F7F8FA",
"borderColor": "#f3f3f3",
"inactiveBackground": "#F7F8FA"
},
"HeaderCloseButton": {
"background": "#F7F8FA"
},
"HeaderTab": {
"hoverBackground": "#CCE5FF",
"hoverInactiveBackground": "#f3f3f3",
"inactiveUnderlineColor": "#79CB60",
"selectedBackground": "#fafbfc",
"selectedInactiveBackground": "#fafbfc",
"underlineColor": "#79CB60",
"underlinedTabBackground": "#CCE5FF",
"underlinedTabInactiveBackground": "#f3f3f3"
}
},
"Tree": {
"background": "#F7F8FA",
"foreground": "#292D31",
"hash": "#DFE1E4",
"modifiedItemForeground": "#79CB60",
"rowHeight": 28,
"selectionBackground": "#3A66D1",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#3A66D1",
"textBackground": "#F7F8FA"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#DFE1E4",
"ColorPicker.background": "#F7F8FA",
"ColorPicker.foreground": "#5B6168",
"Component.borderColor": "#DFE1E4",
"Component.background": "#F7F8FA",
"Component.foreground": "#5B6168",
"Connector.borderColor": "#DFE1E4",
"Connector.hoverBorderColor": "#CCE5FF",
"Canvas.background": "#fafbfc",
"highStroke.foreground": "#5B6168",
"Label.foreground": "#292D31",
"List.selectionBackground": "#3A66D1",
"Panel.borderColor": "#DFE1E4",
"Panel.background": "#F7F8FA",
"percent.foreground": "#5B6168",
"Placeholder.background": "#F7F8FA",
"Placeholder.borderColor": "#DFE1E4",
"Placeholder.foreground": "#5B6168",
"Placeholder.selectedForeground": "#FFFFFF",
"Preview.background": "#F7F8FA",
"stroke.acceleratorForeground": "#292D31"
},
"ValidationTooltip": {
"errorBackground": "#DFECFE",
"errorBorderColor": "#DFECFE",
"warningBackground": "#DFECFE",
"warningBorderColor": "#DFECFE"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#F7F8FA"
},
"GitCommits": {
"graphColor": "#CCE5FF"
},
"GitLog": {
"localBranchIconColor": "#79CB60",
"otherIconColor": "#292D31",
"remoteBranchIconColor": "#5B6168",
"tagIconColor": "#292D31"
},
"HgLog": {
"branchIconColor": "#79CB60",
"bookmarkIconColor": "#111111",
"closedBranchIconColor": "#9ba0a3",
"localTagIconColor": "#292D31",
"mqTagIconColor": "#292D31",
"tagIconColor": "#292D31",
"tipIconColor": "#292D31"
},
"Log": {
"Commit.unmatchedForeground": "#292D31",
"Commit.currentBranchBackground": "#f3f3f3"
},
"RefLabel": {
"foreground": "#111111",
"backgroundBase": "#CCE5FF"
}
},
"Viewport": {
"background": "#F7F8FA",
"foreground": "#5B6168"
},
"WelcomeScreen": {
"background": "#F7F8FA",
"borderColor": "#F7F8FA",
"captionBackground": "#fafbfc",
"captionForeground": "#5B6168",
"footerBackground": "#fafbfc",
"footerForeground": "#5B6168",
"headerBackground": "#F7F8FA",
"headerForeground": "#5B6168",
"separatorColor": "#DFE1E4",
"Projects": {
"background": "#f3f3f3",
"selectionBackground": "#3A66D1",
"selectionInactiveBackground": "#f3f3f3"
}
},
"window": "#F7F8FA",
"windowBorder": "#DFE1E4",
"windowText": "#292D31",
"Window.border": "#DFE1E4"
},
"icons": {
"ColorPalette": {
"#43494A": "#fafbfc",
"#6B6B6B": "#292D31",
"#A7A7A7": "#F7F8FA",
"#3D6185": "#79CB60",
"#466D94": "#79CB60",
"#3C3F41": "#F7F8FA",
"#545556": "#9ba0a3",
"#606060": "#9ba0a3",
"#9AA7B0": "#5B6168",
"#675133": "#79CB60",
"Actions.Blue": "#6F42C1",
"Actions.Green": "#032F62",
"Actions.Grey": "#292D31",
"Actions.GreyInline": "#6A737D",
"Actions.GreyInline.Dark": "#5B6168",
"Actions.Red": "#22863A",
"Actions.Yellow": "#6F42C1",
"Checkbox.Background.Default": "#fafbfc",
"Checkbox.Background.Default.Dark": "#fafbfc",
"Checkbox.Background.Disabled": "#dcdcdc",
"Checkbox.Background.Disabled.Dark": "#dcdcdc",
"Checkbox.Border.Default": "#DFE1E4",
"Checkbox.Border.Default.Dark": "#DFE1E4",
"Checkbox.Border.Disabled": "#9ba0a3",
"Checkbox.Border.Disabled.Dark": "#9ba0a3",
"Checkbox.Focus.Thin.Default": "#79CB60",
"Checkbox.Focus.Thin.Default.Dark": "#79CB60",
"Checkbox.Focus.Wide": "#79CB60",
"Checkbox.Focus.Wide.Dark": "#79CB60",
"Checkbox.Foreground.Disabled": "#9ba0a3",
"Checkbox.Foreground.Disabled.Dark": "#9ba0a3",
"Checkbox.Background.Selected": "#79CB60",
"Checkbox.Background.Selected.Dark": "#F7F8FA",
"Checkbox.Border.Selected": "#79CB60",
"Checkbox.Border.Selected.Dark": "#79CB60",
"Checkbox.Foreground.Selected": "#79CB60",
"Checkbox.Foreground.Selected.Dark": "#79CB60",
"Checkbox.Focus.Thin.Selected": "#5B6168",
"Checkbox.Focus.Thin.Selected.Dark": "#5B6168",
"Objects.Grey": "#6A737D",
"Objects.Blue": "#6F42C1",
"Objects.RedStatus": "#22863A",
"Objects.Red": "#22863A",
"Objects.Pink": "#D73A49",
"Objects.Yellow": "#6F42C1",
"Objects.Green": "#032F62",
"Objects.Purple": "#D73A49",
"Objects.BlackText": "#5B6168",
"Objects.YellowDark": "#005CC5",
"Objects.GreenAndroid": "#032F62"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "Light Owl Contrast",
"dark": false,
"author": "Mallowigi",
"editorScheme": "/colors/Light Owl.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#90A7B2",
"background": "#F0F0F0",
"borderColor": "#d9d9d9",
"disabledBackground": "#E0E7EA",
"disabledForeground": "#93A1A1",
"disabledText": "#93A1A1",
"focusColor": "#CCCCCC",
"focusedBorderColor": "#2AA298",
"foreground": "#403f53",
"inactiveBackground": "#E0E7EA",
"inactiveForeground": "#90A7B2",
"infoForeground": "#90A7B2",
"selectionBackground": "#d3e8f8",
"selectionBackgroundInactive": "#FBFBFB",
"selectionForeground": "#403f53",
"selectionInactiveBackground": "#FBFBFB",
"separatorColor": "#d9d9d9"
},
"activeCaption": "#F0F0F0",
"ActionButton": {
"hoverBackground": "#2AA29850",
"hoverBorderColor": "#2AA29850",
"hoverSeparatorColor": "#d9d9d9",
"focusedBorderColor": "#2AA29850",
"pressedBackground": "#2AA29850",
"pressedBorderColor": "#2AA29850"
},
"Autocomplete": {
"selectionBackground": "#d3e8f8"
},
"Borders.ContrastBorderColor": "#F0F0F0",
"Borders.color": "#d9d9d9",
"Button": {
"arc": 0,
"background": "#F0F0F0",
"default": {
"endBackground": "#d3e8f8",
"endBorderColor": "#d3e8f8",
"foreground": "#333333",
"focusColor": "#2AA298",
"focusedBorderColor": "#2AA298",
"shadowColor": "#d3e8f8",
"startBackground": "#d3e8f8",
"startBorderColor": "#d3e8f8"
},
"disabledBorderColor": "#d9d9d9",
"disabledText": "#93A1A1",
"endBackground": "#d9d9d9",
"endBorderColor": "#d9d9d9",
"focus": "#CCCCCC",
"focusedBorderColor": "#2AA298",
"foreground": "#90A7B2",
"highlight": "#403f53",
"mt.background": "#d9d9d9",
"mt.foreground": "#90A7B2",
"mt.selectedForeground": "#403f53",
"mt.selection.color1": "#d3e8f8",
"mt.selection.color2": "#d3e8f8",
"startBackground": "#d9d9d9",
"startBorderColor": "#d9d9d9",
"shadowColor": "#d9d9d9",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#d9d9d9",
"Tooltip.background": "#F0F0F0"
},
"Content.background": "#f0f0f0",
"CheckBox": {
"background": "#F0F0F0",
"disabledText": "#93A1A1",
"foreground": "#403f53",
"select": "#2AA298"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#90A7B2",
"acceleratorSelectionForeground": "#90A7B2",
"background": "#F0F0F0",
"disabledBackground": "#F0F0F0",
"disabledForeground": "#93A1A1",
"foreground": "#403f53",
"selectionBackground": "#d3e8f8",
"selectionForeground": "#333333"
},
"ColorChooser": {
"background": "#F0F0F0",
"foreground": "#403f53",
"swatchesDefaultRecentColor": "#403f53"
},
"ComboBoxButton.background": "#d9d9d9",
"ComboBox": {
"ArrowButton": {
"background": "#d9d9d9",
"disabledIconColor": "#93A1A1",
"iconColor": "#403f53",
"nonEditableBackground": "#F0F0F0"
},
"background": "#f0f0f0",
"buttonBackground": "#d9d9d9",
"disabledForeground": "#93A1A1",
"foreground": "#403f53",
"modifiedItemForeground": "#2AA298",
"nonEditableBackground": "#FBFBFB",
"padding": "5,5,5,5",
"selectionBackground": "#d3e8f8",
"selectionForeground": "#333333"
},
"ComboPopup.border": "#d9d9d9",
"CompletionPopup": {
"background": "#FBFBFB",
"foreground": "#403f53",
"infoForeground": "#90A7B2",
"matchForeground": "#2AA298",
"matchSelectionForeground": "#2AA298",
"nonFocusedState": "false",
"selectedGrayedForeground": "#403f53",
"selectionGrayForeground": "#403f53",
"selectionInactiveInfoForeground": "#90A7B2",
"selectionInactiveBackground": "#d3e8f850",
"selectionBackground": "#d3e8f880",
"selectionForeground": "#403f53",
"selectionInfoForeground": "#403f53"
},
"Component": {
"arc": 4,
"borderColor": "#CCCCCC",
"disabledBorderColor": "#d9d9d9",
"focusColor": "#2AA298",
"focusedBorderColor": "#2AA298",
"hoverIconColor": "#2AA298",
"infoForeground": "#90A7B2",
"iconColor": "#403f53"
},
"control": "#F0F0F0",
"controlText": "#90A7B2",
"Counter": {
"background": "#2AA298",
"foreground": "#403f53"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#90A7B2",
"changedValueForeground": "#2AA298",
"errorMessageForeground": "#994cc3",
"evaluatingExpressionForeground": "#90A7B2",
"exceptionForeground": "#4876d6",
"modifyingValueForeground": "#2AA298",
"valueForeground": "#2AA298"
}
},
"DebuggerTabs": {
"selectedBackground": "#CCCCCC",
"underlinedTabBackground": "#CCCCCC"
},
"DebuggerPopup": {
"borderColor": "#CCCCCC"
},
"DefaultTabs": {
"background": "#F0F0F0",
"borderColor": "#F0F0F0",
"hoverBackground": "#d3e8f8",
"hoverColor": "#f0f0f0",
"hoverMaskColor": "#CCCCCC",
"inactiveColoredFileBackground": "#d9d9d9",
"inactiveUnderlineColor": "#93A1A1",
"inactiveMaskColor": "#f0f0f0",
"underlineColor": "#2AA298",
"underlinedTabBackground": "#d3e8f8"
},
"Desktop.background": "#F0F0F0",
"DialogWrapper.southPanelBackground": "#F0F0F0",
"DialogWrapper.southPanelDivider": "#F0F0F0",
"DragAndDrop": {
"areaBackground": "#F0F0F0",
"areaBorderColor": "#F0F0F0",
"areaForeground": "#403f53"
},
"Editor": {
"background": "#f0f0f0",
"foreground": "#403f53",
"shortcutForeground": "#90A7B2"
},
"EditorPane": {
"background": "#f0f0f0",
"caretForeground": "#2AA298",
"foreground": "#403f53",
"inactiveBackground": "#F0F0F0",
"inactiveForeground": "#93A1A1",
"selectionBackground": "#d3e8f8",
"selectionForeground": "#333333"
},
"EditorTabs": {
"borderColor": "#FBFBFB",
"hoverColor": "#CCCCCC",
"hoverMaskColor": "#CCCCCC",
"inactiveMaskColor": "#F0F0F0",
"inactiveColoredFileBackground": "#F0F0F02",
"inactiveUnderlineColor": "#93A1A1",
"selectedForeground": "#403f53",
"selectedBackground": "#d3e8f8",
"underlineColor": "#2AA298",
"underlinedTabBackground": "#d3e8f8"
},
"EditorGroupsTabs": {
"background": "#F0F0F0",
"borderColor": "#FBFBFB",
"hoverBackground": "#CCCCCC",
"hoverColor": "#CCCCCC",
"inactiveUnderlineColor": "#2AA298",
"underlineColor": "#2AA298",
"underlinedTabBackground": "#d3e8f8",
"underlinedTabForeground": "#403f53"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#E0E7EA",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#d9d9d9",
"FormattedTextField": {
"background": "#f0f0f0",
"caretForeground": "#2AA298",
"foreground": "#403f53",
"inactiveBackground": "#d9d9d9",
"inactiveForeground": "#93A1A1",
"selectionForeground": "#333333",
"selectionBackground": "#d3e8f8"
},
"Group": {
"disabledSeparatorColor": "#d9d9d9",
"separatorColor": "#d9d9d9"
},
"GutterTooltip": {
"infoForeground": "#403f53",
"lineSeparatorColor": "#F0F0F0"
},
"HeaderColor": {
"active": "#F0F0F0",
"inactive": "#f0f0f0"
},
"HelpTooltip": {
"background": "#F0F0F0",
"borderColor": "#d9d9d9",
"foreground": "#403f53",
"infoForeground": "#90A7B2",
"shortcutForeground": "#90A7B2"
},
"Hyperlink.linkColor": "#2AA298",
"inactiveCaption": "#FBFBFB",
"inactiveCaptionBorder": "#F0F0F0",
"inactiveCaptionText": "#90A7B2",
"info": "#90A7B2",
"infoText": "#90A7B2",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#d9d9d9",
"InplaceRefactoringPopup": {
"borderColor": "#F0F0F0"
},
"InternalFrame": {
"activeTitleForeground": "#403f53",
"background": "#F0F0F0",
"inactiveTitleForeground": "#90A7B2"
},
"Label": {
"background": "#F0F0F0",
"disabledForeground": "#93A1A1",
"disabledShadow": "#F0F0F0",
"disabledText": "#93A1A1",
"foreground": "#403f53",
"infoForeground": "#90A7B2",
"selectedForeground": "#333333"
},
"Link": {
"activeForeground": "#2AA298",
"hoverForeground": "#2AA298",
"pressedForeground": "#2AA298",
"secondaryForeground": "#90A7B2",
"visitedForeground": "#2AA298"
},
"link.foreground": "#2AA298",
"List": {
"background": "#FBFBFB",
"foreground": "#403f53",
"selectionBackground": "#d3e8f850",
"selectionForeground": "#403f53",
"selectionInactiveForeground": "#333333",
"selectionInactiveBackground": "#d3e8f87c"
},
"material": {
"background": "#F0F0F0",
"branchColor": "#403f53",
"contrast": "#f0f0f0",
"foreground": "#403f53",
"mergeCommits": "#d9d9d9",
"primaryColor": "#90A7B2",
"selectionForeground": "#403f53",
"tab.backgroundColor": "#F0F0F0",
"tab.borderColor": "#2AA298",
"tagColor": "#90A7B2"
},
"MemoryIndicator": {
"allocatedBackground": "#FBFBFB",
"usedColor": "#CCCCCC",
"usedBackground": "#CCCCCC"
},
"Menu": {
"acceleratorForeground": "#90A7B2",
"acceleratorSelectionForeground": "#403f53",
"background": "#F0F0F0",
"border": "4,2,4,2",
"borderColor": "#FBFBFB",
"disabledBackground": "#FBFBFB",
"disabledForeground": "#93A1A1",
"foreground": "#403f53",
"selectionBackground": "#d3e8f8",
"selectionForeground": "#403f53",
"separatorColor": "#d9d9d9"
},
"MenuBar": {
"background": "#f0f0f0",
"borderColor": "#F0F0F0",
"disabledBackground": "#F0F0F0",
"disabledForeground": "#93A1A1",
"foreground": "#403f53",
"highlight": "#F0F0F0",
"selectionBackground": "#d3e8f8",
"selectionForeground": "#403f53",
"shadow": "#f0f0f0"
},
"MenuItem": {
"acceleratorForeground": "#90A7B2",
"acceleratorSelectionForeground": "#403f53",
"border": "4,2,4,2",
"background": "#F0F0F0",
"disabledBackground": "#F0F0F0",
"disabledForeground": "#93A1A1",
"foreground": "#403f53",
"selectionBackground": "#d3e8f8",
"selectionForeground": "#403f53"
},
"NavBar": {
"arrowColor": "#403f53",
"borderColor": "#F0F0F0"
},
"NewClass": {
"Panel": {
"background": "#F0F0F0"
},
"SearchField": {
"background": "#f0f0f0"
}
},
"NewPSD.warning": "#2AA298",
"Notification": {
"background": "#F0F0F0",
"borderColor": "#F0F0F0",
"errorBackground": "#F0F0F0",
"errorBorderColor": "#F0F0F0",
"foreground": "#403f53",
"MoreButton": {
"background": "#d9d9d9",
"foreground": "#403f53",
"innerBorderColor": "#d9d9d9"
},
"ToolWindow": {
"errorBackground": "#F0F0F0",
"errorBorderColor": "#F0F0F0",
"informativeBackground": "#F0F0F0",
"informativeBorderColor": "#F0F0F0",
"warningBackground": "#F0F0F0",
"warningBorderColor": "#F0F0F0"
}
},
"OnePixelDivider.background": "#d9d9d9",
"OptionPane": {
"background": "#F0F0F0",
"foreground": "#403f53",
"messageForeground": "#403f53"
},
"Outline": {
"color": "#d9d9d9",
"focusedColor": "#2AA298",
"disabledColor": "#93A1A1"
},
"Panel": {
"background": "#F0F0F0",
"foreground": "#403f53"
},
"ParameterInfo": {
"background": "#FBFBFB",
"borderColor": "#d3e8f8",
"currentOverloadBackground": "#d3e8f8",
"currentParameterForeground": "#2AA298",
"disabledForeground": "#93A1A1",
"foreground": "#403f53",
"infoForeground": "#90A7B2",
"lineSeparatorColor": "#d3e8f8"
},
"PasswordField": {
"background": "#f0f0f0",
"capsLockIconColor": "#2AA298",
"caretForeground": "#2AA298",
"foreground": "#403f53",
"inactiveForeground": "#93A1A1",
"selectionBackground": "#d3e8f8",
"selectionForeground": "#333333"
},
"Plugins": {
"background": "#F0F0F0",
"disabledForeground": "#93A1A1",
"eapTagBackground": "#CCCCCC",
"lightSelectionBackground": "#d3e8f8",
"paidTagBackground": "#CCCCCC",
"selectionBackground": "#d3e8f8",
"tagForeground": "#2AA298",
"tagBackground": "#CCCCCC",
"trialTagBackground": "#CCCCCC",
"Button": {
"installBackground": "#d9d9d9",
"installBorderColor": "#d9d9d9",
"installForeground": "#403f53",
"installFocusedBackground": "#CCCCCC",
"installFillForeground": "#93A1A1",
"installFillBackground": "#d9d9d9",
"updateBackground": "#d9d9d9",
"updateBorderColor": "#d9d9d9",
"updateForeground": "#403f53"
},
"SearchField": {
"background": "#f0f0f0",
"borderColor": "#d9d9d9"
},
"SectionHeader": {
"background": "#FBFBFB",
"foreground": "#403f53"
},
"Tab": {
"hoverBackground": "#d3e8f8",
"selectedForeground": "#403f53",
"selectedBackground": "#d3e8f8"
}
},
"Popup": {
"Advertiser": {
"background": "#F0F0F0",
"borderColor": "#F0F0F0",
"foreground": "#2AA298"
},
"borderColor": "#f0f0f0",
"inactiveBorderColor": "#F0F0F0",
"innerBorderColor": "#FBFBFB",
"Header": {
"activeBackground": "#F0F0F0",
"inactiveBackground": "#f0f0f0"
},
"paintBorder": true,
"separatorForeground": "#403f53",
"separatorColor": "#FBFBFB",
"Toolbar": {
"Floating.background": "#f0f0f0",
"background": "#f0f0f0",
"borderColor": "#f0f0f0"
}
},
"PopupMenu": {
"background": "#F0F0F0",
"border": "2,0,2,0",
"foreground": "#403f53",
"translucentBackground": "#F0F0F0"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#F0F0F0",
"foreground": "#2AA298",
"indeterminateEndColor": "#2AA298",
"indeterminateStartColor": "#2AA298",
"progressColor": "#2AA298",
"selectionBackground": "#CCCCCC",
"trackColor": "#CCCCCC"
},
"PsiViewer": {
"referenceHighlightColor": "#2AA298"
},
"RadioButton": {
"background": "#F0F0F0",
"disabledText": "#93A1A1",
"foreground": "#403f53"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#90A7B2",
"acceleratorSelectionForeground": "#90A7B2",
"background": "#F0F0F0",
"disabledBackground": "#F0F0F0",
"disabledForeground": "#93A1A1",
"foreground": "#403f53",
"selectionBackground": "#d3e8f8",
"selectionForeground": "#403f53"
},
"ScrollBar": {
"background": "#F0F0F0",
"hoverThumbBorderColor": "#2AA298",
"hoverThumbColor": "#2AA298",
"hoverTrackColor": "#F0F0F030",
"Mac": {
"hoverThumbBorderColor": "#2AA298",
"hoverThumbColor": "#2AA298",
"hoverTrackColor": "#F0F0F030",
"thumbBorderColor": "#2AA29870",
"thumbColor": "#2AA29870",
"trackColor": "#F0F0F030",
"Transparent": {
"hoverThumbBorderColor": "#2AA298",
"hoverThumbColor": "#2AA298",
"hoverTrackColor": "#F0F0F030",
"thumbBorderColor": "#2AA29870",
"thumbColor": "#2AA29870",
"trackColor": "#F0F0F030"
}
},
"thumb": "#CCCCCC",
"thumbBorderColor": "#2AA29870",
"thumbColor": "#2AA29870",
"trackColor": "#F0F0F030",
"Transparent": {
"hoverThumbBorderColor": "#2AA298",
"hoverThumbColor": "#2AA298",
"hoverTrackColor": "#F0F0F030",
"thumbBorderColor": "#2AA29870",
"thumbColor": "#2AA29870",
"trackColor": "#F0F0F030"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#f0f0f0",
"foreground": "#90A7B2"
},
"Header": {
"background": "#F0F0F0"
},
"List": {
"separatorForeground": "#90A7B2",
"separatorColor": "#d9d9d9"
},
"SearchField": {
"background": "#F0F0F0",
"borderColor": "#f0f0f0",
"infoForeground": "#90A7B2"
},
"Tab": {
"active.foreground": "#333333",
"selectedForeground": "#333333",
"selectedBackground": "#CCCCCC"
}
},
"SearchMatch": {
"endBackground": "#2AA298",
"startBackground": "#2AA298"
},
"SearchField.errorBackground": "#F0F0F0",
"Separator": {
"background": "#FBFBFB",
"foreground": "#FBFBFB",
"separatorColor": "#FBFBFB"
},
"SidePanel": {
"background": "#f0f0f0"
},
"Slider": {
"background": "#F0F0F0",
"buttonBorderColor": "#2AA298",
"buttonColor": "#2AA298",
"foreground": "#403f53",
"majorTickLength": 6,
"tickColor": "#FBFBFB",
"trackColor": "#d3e8f8",
"trackWidth": 7,
"thumb": "#2AA298"
},
"SpeedSearch": {
"background": "#CCCCCC",
"borderColor": "#d9d9d9",
"foreground": "#403f53",
"errorForeground": "#403f53"
},
"Spinner": {
"background": "#F0F0F0",
"border": "3,3,3,3",
"foreground": "#403f53",
"selectionForeground": "#333333"
},
"SplitPane": {
"background": "#F0F0F0",
"highlight": "#f0f0f0"
},
"SplitPaneDivider.draggingColor": "#FBFBFB",
"StatusBar": {
"borderColor": "#F0F0F0"
},
"TabbedPane": {
"background": "#F0F0F0",
"contentAreaColor": "#CCCCCC",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#d9d9d9",
"disabledForeground": "#93A1A1",
"disabledUnderlineColor": "#93A1A1",
"focus": "#d3e8f8",
"focusColor": "#d3e8f8",
"fontSizeOffset": 0,
"foreground": "#403f53",
"highlight": "#d9d9d9",
"hoverColor": "#CCCCCC",
"labelShift": 0,
"selectedForeground": "#333333",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#2AA298"
},
"TabbedPane.mt.tab.background": "#f0f0f0",
"Table": {
"background": "#F0F0F0",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#2AA298",
"dropLineShortColor": "#2AA298",
"focusCellBackground": "#d3e8f8",
"focusCellForeground": "#333333",
"foreground": "#403f53",
"gridColor": "#F0F0F0",
"highlightOuter": "#d3e8f8",
"lightSelectionForeground": "#333333",
"lightSelectionInactiveForeground": "#90A7B2",
"lightSelectionInactiveBackground": "#FBFBFB",
"selectionBackground": "#d3e8f8",
"selectionForeground": "#333333",
"selectionInactiveBackground": "#d3e8f8",
"selectionInactiveForeground": "#403f53",
"sortIconColor": "#403f53",
"stripeColor": "#f0f0f0"
},
"TableHeader": {
"background": "#F0F0F0",
"borderColor": "#F0F0F0",
"bottomSeparatorColor": "#FBFBFB",
"cellBorder": "4,0,4,0",
"disabledForeground": "#93A1A1",
"foreground": "#403f53",
"focusCellBackground": "#d3e8f8",
"focusCellForeground": "#333333",
"height": 25,
"separatorColor": "#FBFBFB"
},
"text": "#90A7B2",
"textInactiveText": "#90A7B2",
"textText": "#90A7B2",
"TextArea": {
"background": "#f0f0f0",
"caretForeground": "#2AA298",
"foreground": "#403f53",
"inactiveForeground": "#93A1A1",
"selectionBackground": "#d3e8f8",
"selectionForeground": "#333333"
},
"TextField": {
"background": "#f0f0f0",
"caretForeground": "#2AA298",
"foreground": "#403f53",
"inactiveForeground": "#93A1A1",
"selectionBackground": "#d3e8f8",
"selectionForeground": "#333333"
},
"TextPane": {
"background": "#f0f0f0",
"caretForeground": "#2AA298",
"foreground": "#403f53",
"inactiveForeground": "#93A1A1",
"selectionBackground": "#d3e8f8",
"selectionForeground": "#333333"
},
"TitlePane": {
"background": "#f0f0f0",
"Button.hoverBackground": "#CCCCCC",
"inactiveBackground": "#F0F0F0",
"infoForeground": "#90A7B2",
"inactiveInfoForeground": "#90A7B2"
},
"TitledBorder.titleColor": "#403f53",
"ToggleButton": {
"borderColor": "#d9d9d9",
"buttonColor": "#403f53",
"disabledText": "#93A1A1",
"foreground": "#403f53",
"offForeground": "#F0F0F0",
"offBackground": "#F0F0F0",
"onBackground": "#2AA298",
"onForeground": "#2AA298"
},
"ToolBar": {
"background": "#f0f0f0",
"borderHandleColor": "#90A7B2",
"floatingForeground": "#90A7B2",
"foreground": "#403f53"
},
"ToolTip": {
"Actions.background": "#F0F0F0",
"Actions.infoForeground": "#90A7B2",
"background": "#F0F0F0",
"borderColor": "#CCCCCC",
"foreground": "#403f53",
"infoForeground": "#90A7B2",
"separatorColor": "#d9d9d9",
"shortcutForeground": "#90A7B2"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#d3e8f8",
"selectedForeground": "#333333",
"selectedBackground": "#f0f0f0"
},
"Header": {
"background": "#F0F0F0",
"borderColor": "#FBFBFB",
"inactiveBackground": "#F0F0F0"
},
"HeaderCloseButton": {
"background": "#F0F0F0"
},
"HeaderTab": {
"hoverBackground": "#CCCCCC",
"hoverInactiveBackground": "#FBFBFB",
"inactiveUnderlineColor": "#2AA298",
"selectedBackground": "#f0f0f0",
"selectedInactiveBackground": "#f0f0f0",
"underlineColor": "#2AA298",
"underlinedTabBackground": "#CCCCCC",
"underlinedTabInactiveBackground": "#FBFBFB"
}
},
"Tree": {
"background": "#f0f0f0",
"foreground": "#90A7B2",
"hash": "#d9d9d9",
"modifiedItemForeground": "#2AA298",
"rowHeight": 28,
"selectionBackground": "#d3e8f87c",
"selectionForeground": "#403f53",
"selectionInactiveForeground": "#403f53",
"selectionInactiveBackground": "#d3e8f87c",
"textBackground": "#f0f0f0"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#d9d9d9",
"ColorPicker.background": "#F0F0F0",
"ColorPicker.foreground": "#403f53",
"Component.borderColor": "#d9d9d9",
"Component.background": "#F0F0F0",
"Component.foreground": "#403f53",
"Connector.borderColor": "#d9d9d9",
"Connector.hoverBorderColor": "#CCCCCC",
"Canvas.background": "#f0f0f0",
"highStroke.foreground": "#403f53",
"Label.foreground": "#90A7B2",
"List.selectionBackground": "#d3e8f87c",
"Panel.borderColor": "#d9d9d9",
"Panel.background": "#F0F0F0",
"percent.foreground": "#403f53",
"Placeholder.background": "#F0F0F0",
"Placeholder.borderColor": "#d9d9d9",
"Placeholder.foreground": "#403f53",
"Placeholder.selectedForeground": "#403f53",
"Preview.background": "#F0F0F0",
"stroke.acceleratorForeground": "#90A7B2"
},
"ValidationTooltip": {
"errorBackground": "#F0F0F0",
"errorBorderColor": "#F0F0F0",
"warningBackground": "#F0F0F0",
"warningBorderColor": "#F0F0F0"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#F0F0F0"
},
"GitCommits": {
"graphColor": "#CCCCCC"
},
"GitLog": {
"localBranchIconColor": "#2AA298",
"otherIconColor": "#90A7B2",
"remoteBranchIconColor": "#403f53",
"tagIconColor": "#90A7B2"
},
"HgLog": {
"branchIconColor": "#2AA298",
"bookmarkIconColor": "#333333",
"closedBranchIconColor": "#93A1A1",
"localTagIconColor": "#90A7B2",
"mqTagIconColor": "#90A7B2",
"tagIconColor": "#90A7B2",
"tipIconColor": "#90A7B2"
},
"Log": {
"Commit.unmatchedForeground": "#90A7B2",
"Commit.currentBranchBackground": "#FBFBFB"
},
"RefLabel": {
"foreground": "#333333",
"backgroundBase": "#CCCCCC"
}
},
"Viewport": {
"background": "#f0f0f0",
"foreground": "#403f53"
},
"WelcomeScreen": {
"background": "#F0F0F0",
"borderColor": "#F0F0F0",
"captionBackground": "#f0f0f0",
"captionForeground": "#403f53",
"footerBackground": "#f0f0f0",
"footerForeground": "#403f53",
"headerBackground": "#F0F0F0",
"headerForeground": "#403f53",
"separatorColor": "#d9d9d9",
"Projects": {
"background": "#FBFBFB",
"selectionBackground": "#d3e8f8",
"selectionInactiveBackground": "#FBFBFB"
}
},
"window": "#f0f0f0",
"windowBorder": "#d9d9d9",
"windowText": "#90A7B2",
"Window.border": "#d9d9d9"
},
"icons": {
"ColorPalette": {
"#43494A": "#f0f0f0",
"#6B6B6B": "#90A7B2",
"#A7A7A7": "#F0F0F0",
"#3D6185": "#2AA298",
"#466D94": "#2AA298",
"#3C3F41": "#F0F0F0",
"#545556": "#93A1A1",
"#606060": "#93A1A1",
"#9AA7B0": "#403f53",
"#675133": "#2AA298",
"Actions.Blue": "#4876d6",
"Actions.Green": "#c96765",
"Actions.Grey": "#90A7B2",
"Actions.GreyInline": "#637777",
"Actions.GreyInline.Dark": "#403f53",
"Actions.Red": "#994cc3",
"Actions.Yellow": "#4876d6",
"Checkbox.Background.Default": "#f0f0f0",
"Checkbox.Background.Default.Dark": "#f0f0f0",
"Checkbox.Background.Disabled": "#E0E7EA",
"Checkbox.Background.Disabled.Dark": "#E0E7EA",
"Checkbox.Border.Default": "#d9d9d9",
"Checkbox.Border.Default.Dark": "#d9d9d9",
"Checkbox.Border.Disabled": "#93A1A1",
"Checkbox.Border.Disabled.Dark": "#93A1A1",
"Checkbox.Focus.Thin.Default": "#2AA298",
"Checkbox.Focus.Thin.Default.Dark": "#2AA298",
"Checkbox.Focus.Wide": "#2AA298",
"Checkbox.Focus.Wide.Dark": "#2AA298",
"Checkbox.Foreground.Disabled": "#93A1A1",
"Checkbox.Foreground.Disabled.Dark": "#93A1A1",
"Checkbox.Background.Selected": "#2AA298",
"Checkbox.Background.Selected.Dark": "#F0F0F0",
"Checkbox.Border.Selected": "#2AA298",
"Checkbox.Border.Selected.Dark": "#2AA298",
"Checkbox.Foreground.Selected": "#2AA298",
"Checkbox.Foreground.Selected.Dark": "#2AA298",
"Checkbox.Focus.Thin.Selected": "#403f53",
"Checkbox.Focus.Thin.Selected.Dark": "#403f53",
"Objects.Grey": "#637777",
"Objects.Blue": "#4876d6",
"Objects.RedStatus": "#994cc3",
"Objects.Red": "#994cc3",
"Objects.Pink": "#994cc3",
"Objects.Yellow": "#4876d6",
"Objects.Green": "#c96765",
"Objects.Purple": "#994cc3",
"Objects.BlackText": "#403f53",
"Objects.YellowDark": "#aa0982",
"Objects.GreenAndroid": "#c96765"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "Light Owl",
"dark": false,
"author": "Mallowigi",
"editorScheme": "/colors/Light Owl.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#90A7B2",
"background": "#F0F0F0",
"borderColor": "#d9d9d9",
"disabledBackground": "#E0E7EA",
"disabledForeground": "#93A1A1",
"disabledText": "#93A1A1",
"focusColor": "#CCCCCC",
"focusedBorderColor": "#2AA298",
"foreground": "#403f53",
"inactiveBackground": "#E0E7EA",
"inactiveForeground": "#90A7B2",
"infoForeground": "#90A7B2",
"selectionBackground": "#d3e8f8",
"selectionBackgroundInactive": "#FBFBFB",
"selectionForeground": "#403f53",
"selectionInactiveBackground": "#FBFBFB",
"separatorColor": "#d9d9d9"
},
"activeCaption": "#F0F0F0",
"ActionButton": {
"hoverBackground": "#2AA29850",
"hoverBorderColor": "#2AA29850",
"hoverSeparatorColor": "#d9d9d9",
"focusedBorderColor": "#2AA29850",
"pressedBackground": "#2AA29850",
"pressedBorderColor": "#2AA29850"
},
"Autocomplete": {
"selectionBackground": "#d3e8f8"
},
"Borders.ContrastBorderColor": "#F0F0F0",
"Borders.color": "#d9d9d9",
"Button": {
"arc": 0,
"background": "#F0F0F0",
"default": {
"endBackground": "#d3e8f8",
"endBorderColor": "#d3e8f8",
"foreground": "#333333",
"focusColor": "#2AA298",
"focusedBorderColor": "#2AA298",
"shadowColor": "#d3e8f8",
"startBackground": "#d3e8f8",
"startBorderColor": "#d3e8f8"
},
"disabledBorderColor": "#d9d9d9",
"disabledText": "#93A1A1",
"endBackground": "#d9d9d9",
"endBorderColor": "#d9d9d9",
"focus": "#CCCCCC",
"focusedBorderColor": "#2AA298",
"foreground": "#90A7B2",
"highlight": "#403f53",
"mt.background": "#d9d9d9",
"mt.foreground": "#90A7B2",
"mt.selectedForeground": "#403f53",
"mt.selection.color1": "#d3e8f8",
"mt.selection.color2": "#d3e8f8",
"startBackground": "#d9d9d9",
"startBorderColor": "#d9d9d9",
"shadowColor": "#d9d9d9",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#d9d9d9",
"Tooltip.background": "#F0F0F0"
},
"Content.background": "#f0f0f0",
"CheckBox": {
"background": "#F0F0F0",
"disabledText": "#93A1A1",
"foreground": "#403f53",
"select": "#2AA298"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#90A7B2",
"acceleratorSelectionForeground": "#90A7B2",
"background": "#F0F0F0",
"disabledBackground": "#F0F0F0",
"disabledForeground": "#93A1A1",
"foreground": "#403f53",
"selectionBackground": "#d3e8f8",
"selectionForeground": "#333333"
},
"ColorChooser": {
"background": "#F0F0F0",
"foreground": "#403f53",
"swatchesDefaultRecentColor": "#403f53"
},
"ComboBoxButton.background": "#d9d9d9",
"ComboBox": {
"ArrowButton": {
"background": "#d9d9d9",
"disabledIconColor": "#93A1A1",
"iconColor": "#403f53",
"nonEditableBackground": "#F0F0F0"
},
"background": "#F0F0F0",
"buttonBackground": "#d9d9d9",
"disabledForeground": "#93A1A1",
"foreground": "#403f53",
"modifiedItemForeground": "#2AA298",
"nonEditableBackground": "#FBFBFB",
"padding": "5,5,5,5",
"selectionBackground": "#d3e8f8",
"selectionForeground": "#333333"
},
"ComboPopup.border": "#d9d9d9",
"CompletionPopup": {
"background": "#FBFBFB",
"foreground": "#403f53",
"infoForeground": "#90A7B2",
"matchForeground": "#2AA298",
"matchSelectionForeground": "#2AA298",
"nonFocusedState": "false",
"selectedGrayedForeground": "#403f53",
"selectionGrayForeground": "#403f53",
"selectionInactiveInfoForeground": "#90A7B2",
"selectionInactiveBackground": "#d3e8f850",
"selectionBackground": "#d3e8f880",
"selectionForeground": "#403f53",
"selectionInfoForeground": "#403f53"
},
"Component": {
"arc": 4,
"borderColor": "#CCCCCC",
"disabledBorderColor": "#d9d9d9",
"focusColor": "#2AA298",
"focusedBorderColor": "#2AA298",
"hoverIconColor": "#2AA298",
"infoForeground": "#90A7B2",
"iconColor": "#403f53"
},
"control": "#F0F0F0",
"controlText": "#90A7B2",
"Counter": {
"background": "#2AA298",
"foreground": "#403f53"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#90A7B2",
"changedValueForeground": "#2AA298",
"errorMessageForeground": "#994cc3",
"evaluatingExpressionForeground": "#90A7B2",
"exceptionForeground": "#4876d6",
"modifyingValueForeground": "#2AA298",
"valueForeground": "#2AA298"
}
},
"DebuggerTabs": {
"selectedBackground": "#CCCCCC",
"underlinedTabBackground": "#CCCCCC"
},
"DebuggerPopup": {
"borderColor": "#CCCCCC"
},
"DefaultTabs": {
"background": "#F0F0F0",
"borderColor": "#F0F0F0",
"hoverBackground": "#d3e8f8",
"hoverColor": "#F0F0F0",
"hoverMaskColor": "#CCCCCC",
"inactiveColoredFileBackground": "#d9d9d9",
"inactiveUnderlineColor": "#93A1A1",
"inactiveMaskColor": "#F0F0F0",
"underlineColor": "#2AA298",
"underlinedTabBackground": "#d3e8f8"
},
"Desktop.background": "#F0F0F0",
"DialogWrapper.southPanelBackground": "#F0F0F0",
"DialogWrapper.southPanelDivider": "#F0F0F0",
"DragAndDrop": {
"areaBackground": "#F0F0F0",
"areaBorderColor": "#F0F0F0",
"areaForeground": "#403f53"
},
"Editor": {
"background": "#F0F0F0",
"foreground": "#403f53",
"shortcutForeground": "#90A7B2"
},
"EditorPane": {
"background": "#F0F0F0",
"caretForeground": "#2AA298",
"foreground": "#403f53",
"inactiveBackground": "#F0F0F0",
"inactiveForeground": "#93A1A1",
"selectionBackground": "#d3e8f8",
"selectionForeground": "#333333"
},
"EditorTabs": {
"borderColor": "#FBFBFB",
"hoverColor": "#CCCCCC",
"hoverMaskColor": "#CCCCCC",
"inactiveMaskColor": "#F0F0F0",
"inactiveColoredFileBackground": "#F0F0F02",
"inactiveUnderlineColor": "#93A1A1",
"selectedForeground": "#403f53",
"selectedBackground": "#d3e8f8",
"underlineColor": "#2AA298",
"underlinedTabBackground": "#d3e8f8"
},
"EditorGroupsTabs": {
"background": "#F0F0F0",
"borderColor": "#FBFBFB",
"hoverBackground": "#CCCCCC",
"hoverColor": "#CCCCCC",
"inactiveUnderlineColor": "#2AA298",
"underlineColor": "#2AA298",
"underlinedTabBackground": "#d3e8f8",
"underlinedTabForeground": "#403f53"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#E0E7EA",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#d9d9d9",
"FormattedTextField": {
"background": "#F0F0F0",
"caretForeground": "#2AA298",
"foreground": "#403f53",
"inactiveBackground": "#d9d9d9",
"inactiveForeground": "#93A1A1",
"selectionForeground": "#333333",
"selectionBackground": "#d3e8f8"
},
"Group": {
"disabledSeparatorColor": "#d9d9d9",
"separatorColor": "#d9d9d9"
},
"GutterTooltip": {
"infoForeground": "#403f53",
"lineSeparatorColor": "#F0F0F0"
},
"HeaderColor": {
"active": "#F0F0F0",
"inactive": "#f0f0f0"
},
"HelpTooltip": {
"background": "#F0F0F0",
"borderColor": "#d9d9d9",
"foreground": "#403f53",
"infoForeground": "#90A7B2",
"shortcutForeground": "#90A7B2"
},
"Hyperlink.linkColor": "#2AA298",
"inactiveCaption": "#FBFBFB",
"inactiveCaptionBorder": "#F0F0F0",
"inactiveCaptionText": "#90A7B2",
"info": "#90A7B2",
"infoText": "#90A7B2",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#d9d9d9",
"InplaceRefactoringPopup": {
"borderColor": "#F0F0F0"
},
"InternalFrame": {
"activeTitleForeground": "#403f53",
"background": "#F0F0F0",
"inactiveTitleForeground": "#90A7B2"
},
"Label": {
"background": "#F0F0F0",
"disabledForeground": "#93A1A1",
"disabledShadow": "#F0F0F0",
"disabledText": "#93A1A1",
"foreground": "#403f53",
"infoForeground": "#90A7B2",
"selectedForeground": "#333333"
},
"Link": {
"activeForeground": "#2AA298",
"hoverForeground": "#2AA298",
"pressedForeground": "#2AA298",
"secondaryForeground": "#90A7B2",
"visitedForeground": "#2AA298"
},
"link.foreground": "#2AA298",
"List": {
"background": "#FBFBFB",
"foreground": "#403f53",
"selectionBackground": "#d3e8f850",
"selectionForeground": "#403f53",
"selectionInactiveForeground": "#333333",
"selectionInactiveBackground": "#d3e8f87c"
},
"material": {
"background": "#F0F0F0",
"branchColor": "#403f53",
"contrast": "#f0f0f0",
"foreground": "#403f53",
"mergeCommits": "#d9d9d9",
"primaryColor": "#90A7B2",
"selectionForeground": "#403f53",
"tab.backgroundColor": "#F0F0F0",
"tab.borderColor": "#2AA298",
"tagColor": "#90A7B2"
},
"MemoryIndicator": {
"allocatedBackground": "#FBFBFB",
"usedColor": "#CCCCCC",
"usedBackground": "#CCCCCC"
},
"Menu": {
"acceleratorForeground": "#90A7B2",
"acceleratorSelectionForeground": "#403f53",
"background": "#F0F0F0",
"border": "4,2,4,2",
"borderColor": "#FBFBFB",
"disabledBackground": "#FBFBFB",
"disabledForeground": "#93A1A1",
"foreground": "#403f53",
"selectionBackground": "#d3e8f8",
"selectionForeground": "#403f53",
"separatorColor": "#d9d9d9"
},
"MenuBar": {
"background": "#F0F0F0",
"borderColor": "#F0F0F0",
"disabledBackground": "#F0F0F0",
"disabledForeground": "#93A1A1",
"foreground": "#403f53",
"highlight": "#F0F0F0",
"selectionBackground": "#d3e8f8",
"selectionForeground": "#403f53",
"shadow": "#F0F0F0"
},
"MenuItem": {
"acceleratorForeground": "#90A7B2",
"acceleratorSelectionForeground": "#403f53",
"border": "4,2,4,2",
"background": "#F0F0F0",
"disabledBackground": "#F0F0F0",
"disabledForeground": "#93A1A1",
"foreground": "#403f53",
"selectionBackground": "#d3e8f8",
"selectionForeground": "#403f53"
},
"NavBar": {
"arrowColor": "#403f53",
"borderColor": "#F0F0F0"
},
"NewClass": {
"Panel": {
"background": "#F0F0F0"
},
"SearchField": {
"background": "#F0F0F0"
}
},
"NewPSD.warning": "#2AA298",
"Notification": {
"background": "#F0F0F0",
"borderColor": "#F0F0F0",
"errorBackground": "#F0F0F0",
"errorBorderColor": "#F0F0F0",
"foreground": "#403f53",
"MoreButton": {
"background": "#d9d9d9",
"foreground": "#403f53",
"innerBorderColor": "#d9d9d9"
},
"ToolWindow": {
"errorBackground": "#F0F0F0",
"errorBorderColor": "#F0F0F0",
"informativeBackground": "#F0F0F0",
"informativeBorderColor": "#F0F0F0",
"warningBackground": "#F0F0F0",
"warningBorderColor": "#F0F0F0"
}
},
"OnePixelDivider.background": "#d9d9d9",
"OptionPane": {
"background": "#F0F0F0",
"foreground": "#403f53",
"messageForeground": "#403f53"
},
"Outline": {
"color": "#d9d9d9",
"focusedColor": "#2AA298",
"disabledColor": "#93A1A1"
},
"Panel": {
"background": "#F0F0F0",
"foreground": "#403f53"
},
"ParameterInfo": {
"background": "#FBFBFB",
"borderColor": "#d3e8f8",
"currentOverloadBackground": "#d3e8f8",
"currentParameterForeground": "#2AA298",
"disabledForeground": "#93A1A1",
"foreground": "#403f53",
"infoForeground": "#90A7B2",
"lineSeparatorColor": "#d3e8f8"
},
"PasswordField": {
"background": "#F0F0F0",
"capsLockIconColor": "#2AA298",
"caretForeground": "#2AA298",
"foreground": "#403f53",
"inactiveForeground": "#93A1A1",
"selectionBackground": "#d3e8f8",
"selectionForeground": "#333333"
},
"Plugins": {
"background": "#F0F0F0",
"disabledForeground": "#93A1A1",
"eapTagBackground": "#CCCCCC",
"lightSelectionBackground": "#d3e8f8",
"paidTagBackground": "#CCCCCC",
"selectionBackground": "#d3e8f8",
"tagForeground": "#2AA298",
"tagBackground": "#CCCCCC",
"trialTagBackground": "#CCCCCC",
"Button": {
"installBackground": "#d9d9d9",
"installBorderColor": "#d9d9d9",
"installForeground": "#403f53",
"installFocusedBackground": "#CCCCCC",
"installFillForeground": "#93A1A1",
"installFillBackground": "#d9d9d9",
"updateBackground": "#d9d9d9",
"updateBorderColor": "#d9d9d9",
"updateForeground": "#403f53"
},
"SearchField": {
"background": "#F0F0F0",
"borderColor": "#d9d9d9"
},
"SectionHeader": {
"background": "#FBFBFB",
"foreground": "#403f53"
},
"Tab": {
"hoverBackground": "#d3e8f8",
"selectedForeground": "#403f53",
"selectedBackground": "#d3e8f8"
}
},
"Popup": {
"Advertiser": {
"background": "#F0F0F0",
"borderColor": "#F0F0F0",
"foreground": "#2AA298"
},
"borderColor": "#f0f0f0",
"inactiveBorderColor": "#F0F0F0",
"innerBorderColor": "#FBFBFB",
"Header": {
"activeBackground": "#F0F0F0",
"inactiveBackground": "#f0f0f0"
},
"paintBorder": true,
"separatorForeground": "#403f53",
"separatorColor": "#FBFBFB",
"Toolbar": {
"Floating.background": "#f0f0f0",
"background": "#f0f0f0",
"borderColor": "#f0f0f0"
}
},
"PopupMenu": {
"background": "#F0F0F0",
"border": "2,0,2,0",
"foreground": "#403f53",
"translucentBackground": "#F0F0F0"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#F0F0F0",
"foreground": "#2AA298",
"indeterminateEndColor": "#2AA298",
"indeterminateStartColor": "#2AA298",
"progressColor": "#2AA298",
"selectionBackground": "#CCCCCC",
"trackColor": "#CCCCCC"
},
"PsiViewer": {
"referenceHighlightColor": "#2AA298"
},
"RadioButton": {
"background": "#F0F0F0",
"disabledText": "#93A1A1",
"foreground": "#403f53"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#90A7B2",
"acceleratorSelectionForeground": "#90A7B2",
"background": "#F0F0F0",
"disabledBackground": "#F0F0F0",
"disabledForeground": "#93A1A1",
"foreground": "#403f53",
"selectionBackground": "#d3e8f8",
"selectionForeground": "#403f53"
},
"ScrollBar": {
"background": "#F0F0F0",
"hoverThumbBorderColor": "#2AA298",
"hoverThumbColor": "#2AA298",
"hoverTrackColor": "#F0F0F030",
"Mac": {
"hoverThumbBorderColor": "#2AA298",
"hoverThumbColor": "#2AA298",
"hoverTrackColor": "#F0F0F030",
"thumbBorderColor": "#2AA29870",
"thumbColor": "#2AA29870",
"trackColor": "#F0F0F030",
"Transparent": {
"hoverThumbBorderColor": "#2AA298",
"hoverThumbColor": "#2AA298",
"hoverTrackColor": "#F0F0F030",
"thumbBorderColor": "#2AA29870",
"thumbColor": "#2AA29870",
"trackColor": "#F0F0F030"
}
},
"thumb": "#CCCCCC",
"thumbBorderColor": "#2AA29870",
"thumbColor": "#2AA29870",
"trackColor": "#F0F0F030",
"Transparent": {
"hoverThumbBorderColor": "#2AA298",
"hoverThumbColor": "#2AA298",
"hoverTrackColor": "#F0F0F030",
"thumbBorderColor": "#2AA29870",
"thumbColor": "#2AA29870",
"trackColor": "#F0F0F030"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#f0f0f0",
"foreground": "#90A7B2"
},
"Header": {
"background": "#F0F0F0"
},
"List": {
"separatorForeground": "#90A7B2",
"separatorColor": "#d9d9d9"
},
"SearchField": {
"background": "#F0F0F0",
"borderColor": "#f0f0f0",
"infoForeground": "#90A7B2"
},
"Tab": {
"active.foreground": "#333333",
"selectedForeground": "#333333",
"selectedBackground": "#CCCCCC"
}
},
"SearchMatch": {
"endBackground": "#2AA298",
"startBackground": "#2AA298"
},
"SearchField.errorBackground": "#F0F0F0",
"Separator": {
"background": "#FBFBFB",
"foreground": "#FBFBFB",
"separatorColor": "#FBFBFB"
},
"SidePanel": {
"background": "#F0F0F0"
},
"Slider": {
"background": "#F0F0F0",
"buttonBorderColor": "#2AA298",
"buttonColor": "#2AA298",
"foreground": "#403f53",
"majorTickLength": 6,
"tickColor": "#FBFBFB",
"trackColor": "#d3e8f8",
"trackWidth": 7,
"thumb": "#2AA298"
},
"SpeedSearch": {
"background": "#CCCCCC",
"borderColor": "#d9d9d9",
"foreground": "#403f53",
"errorForeground": "#403f53"
},
"Spinner": {
"background": "#F0F0F0",
"border": "3,3,3,3",
"foreground": "#403f53",
"selectionForeground": "#333333"
},
"SplitPane": {
"background": "#F0F0F0",
"highlight": "#F0F0F0"
},
"SplitPaneDivider.draggingColor": "#FBFBFB",
"StatusBar": {
"borderColor": "#F0F0F0"
},
"TabbedPane": {
"background": "#F0F0F0",
"contentAreaColor": "#CCCCCC",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#d9d9d9",
"disabledForeground": "#93A1A1",
"disabledUnderlineColor": "#93A1A1",
"focus": "#d3e8f8",
"focusColor": "#d3e8f8",
"fontSizeOffset": 0,
"foreground": "#403f53",
"highlight": "#d9d9d9",
"hoverColor": "#CCCCCC",
"labelShift": 0,
"selectedForeground": "#333333",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#2AA298"
},
"TabbedPane.mt.tab.background": "#F0F0F0",
"Table": {
"background": "#F0F0F0",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#2AA298",
"dropLineShortColor": "#2AA298",
"focusCellBackground": "#d3e8f8",
"focusCellForeground": "#333333",
"foreground": "#403f53",
"gridColor": "#F0F0F0",
"highlightOuter": "#d3e8f8",
"lightSelectionForeground": "#333333",
"lightSelectionInactiveForeground": "#90A7B2",
"lightSelectionInactiveBackground": "#FBFBFB",
"selectionBackground": "#d3e8f8",
"selectionForeground": "#333333",
"selectionInactiveBackground": "#d3e8f8",
"selectionInactiveForeground": "#403f53",
"sortIconColor": "#403f53",
"stripeColor": "#f0f0f0"
},
"TableHeader": {
"background": "#F0F0F0",
"borderColor": "#F0F0F0",
"bottomSeparatorColor": "#FBFBFB",
"cellBorder": "4,0,4,0",
"disabledForeground": "#93A1A1",
"foreground": "#403f53",
"focusCellBackground": "#d3e8f8",
"focusCellForeground": "#333333",
"height": 25,
"separatorColor": "#FBFBFB"
},
"text": "#90A7B2",
"textInactiveText": "#90A7B2",
"textText": "#90A7B2",
"TextArea": {
"background": "#F0F0F0",
"caretForeground": "#2AA298",
"foreground": "#403f53",
"inactiveForeground": "#93A1A1",
"selectionBackground": "#d3e8f8",
"selectionForeground": "#333333"
},
"TextField": {
"background": "#F0F0F0",
"caretForeground": "#2AA298",
"foreground": "#403f53",
"inactiveForeground": "#93A1A1",
"selectionBackground": "#d3e8f8",
"selectionForeground": "#333333"
},
"TextPane": {
"background": "#F0F0F0",
"caretForeground": "#2AA298",
"foreground": "#403f53",
"inactiveForeground": "#93A1A1",
"selectionBackground": "#d3e8f8",
"selectionForeground": "#333333"
},
"TitlePane": {
"background": "#f0f0f0",
"Button.hoverBackground": "#CCCCCC",
"inactiveBackground": "#F0F0F0",
"infoForeground": "#90A7B2",
"inactiveInfoForeground": "#90A7B2"
},
"TitledBorder.titleColor": "#403f53",
"ToggleButton": {
"borderColor": "#d9d9d9",
"buttonColor": "#403f53",
"disabledText": "#93A1A1",
"foreground": "#403f53",
"offForeground": "#F0F0F0",
"offBackground": "#F0F0F0",
"onBackground": "#2AA298",
"onForeground": "#2AA298"
},
"ToolBar": {
"background": "#F0F0F0",
"borderHandleColor": "#90A7B2",
"floatingForeground": "#90A7B2",
"foreground": "#403f53"
},
"ToolTip": {
"Actions.background": "#F0F0F0",
"Actions.infoForeground": "#90A7B2",
"background": "#F0F0F0",
"borderColor": "#CCCCCC",
"foreground": "#403f53",
"infoForeground": "#90A7B2",
"separatorColor": "#d9d9d9",
"shortcutForeground": "#90A7B2"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#d3e8f8",
"selectedForeground": "#333333",
"selectedBackground": "#f0f0f0"
},
"Header": {
"background": "#F0F0F0",
"borderColor": "#FBFBFB",
"inactiveBackground": "#F0F0F0"
},
"HeaderCloseButton": {
"background": "#F0F0F0"
},
"HeaderTab": {
"hoverBackground": "#CCCCCC",
"hoverInactiveBackground": "#FBFBFB",
"inactiveUnderlineColor": "#2AA298",
"selectedBackground": "#f0f0f0",
"selectedInactiveBackground": "#f0f0f0",
"underlineColor": "#2AA298",
"underlinedTabBackground": "#CCCCCC",
"underlinedTabInactiveBackground": "#FBFBFB"
}
},
"Tree": {
"background": "#F0F0F0",
"foreground": "#90A7B2",
"hash": "#d9d9d9",
"modifiedItemForeground": "#2AA298",
"rowHeight": 28,
"selectionBackground": "#d3e8f87c",
"selectionForeground": "#403f53",
"selectionInactiveForeground": "#403f53",
"selectionInactiveBackground": "#d3e8f87c",
"textBackground": "#F0F0F0"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#d9d9d9",
"ColorPicker.background": "#F0F0F0",
"ColorPicker.foreground": "#403f53",
"Component.borderColor": "#d9d9d9",
"Component.background": "#F0F0F0",
"Component.foreground": "#403f53",
"Connector.borderColor": "#d9d9d9",
"Connector.hoverBorderColor": "#CCCCCC",
"Canvas.background": "#f0f0f0",
"highStroke.foreground": "#403f53",
"Label.foreground": "#90A7B2",
"List.selectionBackground": "#d3e8f87c",
"Panel.borderColor": "#d9d9d9",
"Panel.background": "#F0F0F0",
"percent.foreground": "#403f53",
"Placeholder.background": "#F0F0F0",
"Placeholder.borderColor": "#d9d9d9",
"Placeholder.foreground": "#403f53",
"Placeholder.selectedForeground": "#403f53",
"Preview.background": "#F0F0F0",
"stroke.acceleratorForeground": "#90A7B2"
},
"ValidationTooltip": {
"errorBackground": "#F0F0F0",
"errorBorderColor": "#F0F0F0",
"warningBackground": "#F0F0F0",
"warningBorderColor": "#F0F0F0"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#F0F0F0"
},
"GitCommits": {
"graphColor": "#CCCCCC"
},
"GitLog": {
"localBranchIconColor": "#2AA298",
"otherIconColor": "#90A7B2",
"remoteBranchIconColor": "#403f53",
"tagIconColor": "#90A7B2"
},
"HgLog": {
"branchIconColor": "#2AA298",
"bookmarkIconColor": "#333333",
"closedBranchIconColor": "#93A1A1",
"localTagIconColor": "#90A7B2",
"mqTagIconColor": "#90A7B2",
"tagIconColor": "#90A7B2",
"tipIconColor": "#90A7B2"
},
"Log": {
"Commit.unmatchedForeground": "#90A7B2",
"Commit.currentBranchBackground": "#FBFBFB"
},
"RefLabel": {
"foreground": "#333333",
"backgroundBase": "#CCCCCC"
}
},
"Viewport": {
"background": "#F0F0F0",
"foreground": "#403f53"
},
"WelcomeScreen": {
"background": "#F0F0F0",
"borderColor": "#F0F0F0",
"captionBackground": "#f0f0f0",
"captionForeground": "#403f53",
"footerBackground": "#f0f0f0",
"footerForeground": "#403f53",
"headerBackground": "#F0F0F0",
"headerForeground": "#403f53",
"separatorColor": "#d9d9d9",
"Projects": {
"background": "#FBFBFB",
"selectionBackground": "#d3e8f8",
"selectionInactiveBackground": "#FBFBFB"
}
},
"window": "#F0F0F0",
"windowBorder": "#d9d9d9",
"windowText": "#90A7B2",
"Window.border": "#d9d9d9"
},
"icons": {
"ColorPalette": {
"#43494A": "#f0f0f0",
"#6B6B6B": "#90A7B2",
"#A7A7A7": "#F0F0F0",
"#3D6185": "#2AA298",
"#466D94": "#2AA298",
"#3C3F41": "#F0F0F0",
"#545556": "#93A1A1",
"#606060": "#93A1A1",
"#9AA7B0": "#403f53",
"#675133": "#2AA298",
"Actions.Blue": "#4876d6",
"Actions.Green": "#c96765",
"Actions.Grey": "#90A7B2",
"Actions.GreyInline": "#637777",
"Actions.GreyInline.Dark": "#403f53",
"Actions.Red": "#994cc3",
"Actions.Yellow": "#4876d6",
"Checkbox.Background.Default": "#f0f0f0",
"Checkbox.Background.Default.Dark": "#f0f0f0",
"Checkbox.Background.Disabled": "#E0E7EA",
"Checkbox.Background.Disabled.Dark": "#E0E7EA",
"Checkbox.Border.Default": "#d9d9d9",
"Checkbox.Border.Default.Dark": "#d9d9d9",
"Checkbox.Border.Disabled": "#93A1A1",
"Checkbox.Border.Disabled.Dark": "#93A1A1",
"Checkbox.Focus.Thin.Default": "#2AA298",
"Checkbox.Focus.Thin.Default.Dark": "#2AA298",
"Checkbox.Focus.Wide": "#2AA298",
"Checkbox.Focus.Wide.Dark": "#2AA298",
"Checkbox.Foreground.Disabled": "#93A1A1",
"Checkbox.Foreground.Disabled.Dark": "#93A1A1",
"Checkbox.Background.Selected": "#2AA298",
"Checkbox.Background.Selected.Dark": "#F0F0F0",
"Checkbox.Border.Selected": "#2AA298",
"Checkbox.Border.Selected.Dark": "#2AA298",
"Checkbox.Foreground.Selected": "#2AA298",
"Checkbox.Foreground.Selected.Dark": "#2AA298",
"Checkbox.Focus.Thin.Selected": "#403f53",
"Checkbox.Focus.Thin.Selected.Dark": "#403f53",
"Objects.Grey": "#637777",
"Objects.Blue": "#4876d6",
"Objects.RedStatus": "#994cc3",
"Objects.Red": "#994cc3",
"Objects.Pink": "#994cc3",
"Objects.Yellow": "#4876d6",
"Objects.Green": "#c96765",
"Objects.Purple": "#994cc3",
"Objects.BlackText": "#403f53",
"Objects.YellowDark": "#aa0982",
"Objects.GreenAndroid": "#c96765"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "Material Darker Contrast",
"dark": true,
"author": "Mallowigi",
"editorScheme": "/colors/Material Darker.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#727272",
"background": "#212121",
"borderColor": "#292929",
"disabledBackground": "#323232",
"disabledForeground": "#474747",
"disabledText": "#474747",
"focusColor": "#3F3F3F",
"focusedBorderColor": "#FF9800",
"foreground": "#B0BEC5",
"inactiveBackground": "#323232",
"inactiveForeground": "#727272",
"infoForeground": "#727272",
"selectionBackground": "#404040",
"selectionBackgroundInactive": "#292929",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#292929",
"separatorColor": "#292929"
},
"activeCaption": "#212121",
"ActionButton": {
"hoverBackground": "#FF980050",
"hoverBorderColor": "#FF980050",
"hoverSeparatorColor": "#2A2A2A",
"focusedBorderColor": "#FF980050",
"pressedBackground": "#FF980050",
"pressedBorderColor": "#FF980050"
},
"Autocomplete": {
"selectionBackground": "#404040"
},
"Borders.ContrastBorderColor": "#212121",
"Borders.color": "#292929",
"Button": {
"arc": 0,
"background": "#212121",
"default": {
"endBackground": "#323232",
"endBorderColor": "#323232",
"foreground": "#FFFFFF",
"focusColor": "#FF9800",
"focusedBorderColor": "#FF9800",
"shadowColor": "#323232",
"startBackground": "#323232",
"startBorderColor": "#323232"
},
"disabledBorderColor": "#2A2A2A",
"disabledText": "#474747",
"endBackground": "#2A2A2A",
"endBorderColor": "#2A2A2A",
"focus": "#3F3F3F",
"focusedBorderColor": "#FF9800",
"foreground": "#727272",
"highlight": "#FFFFFF",
"mt.background": "#2A2A2A",
"mt.foreground": "#727272",
"mt.selectedForeground": "#FFFFFF",
"mt.selection.color1": "#323232",
"mt.selection.color2": "#323232",
"startBackground": "#2A2A2A",
"startBorderColor": "#2A2A2A",
"shadowColor": "#2A2A2A",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#292929",
"Tooltip.background": "#1A1A1A"
},
"Content.background": "#1A1A1A",
"CheckBox": {
"background": "#212121",
"disabledText": "#474747",
"foreground": "#B0BEC5",
"select": "#FF9800"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#727272",
"acceleratorSelectionForeground": "#727272",
"background": "#212121",
"disabledBackground": "#212121",
"disabledForeground": "#474747",
"foreground": "#B0BEC5",
"selectionBackground": "#404040",
"selectionForeground": "#FFFFFF"
},
"ColorChooser": {
"background": "#212121",
"foreground": "#B0BEC5",
"swatchesDefaultRecentColor": "#B0BEC5"
},
"ComboBoxButton.background": "#2A2A2A",
"ComboBox": {
"ArrowButton": {
"background": "#2A2A2A",
"disabledIconColor": "#474747",
"iconColor": "#B0BEC5",
"nonEditableBackground": "#212121"
},
"background": "#1A1A1A",
"buttonBackground": "#2A2A2A",
"disabledForeground": "#474747",
"foreground": "#B0BEC5",
"modifiedItemForeground": "#FF9800",
"nonEditableBackground": "#292929",
"padding": "5,5,5,5",
"selectionBackground": "#323232",
"selectionForeground": "#FFFFFF"
},
"ComboPopup.border": "#292929",
"CompletionPopup": {
"background": "#292929",
"foreground": "#B0BEC5",
"infoForeground": "#727272",
"matchForeground": "#FF9800",
"matchSelectionForeground": "#FF9800",
"nonFocusedState": "false",
"selectedGrayedForeground": "#FFFFFF",
"selectionGrayForeground": "#FFFFFF",
"selectionInactiveInfoForeground": "#727272",
"selectionInactiveBackground": "#40404050",
"selectionBackground": "#40404080",
"selectionForeground": "#FFFFFF",
"selectionInfoForeground": "#FFFFFF"
},
"Component": {
"arc": 4,
"borderColor": "#3F3F3F",
"disabledBorderColor": "#2A2A2A",
"focusColor": "#FF9800",
"focusedBorderColor": "#FF9800",
"hoverIconColor": "#FF9800",
"infoForeground": "#727272",
"iconColor": "#B0BEC5"
},
"control": "#212121",
"controlText": "#727272",
"Counter": {
"background": "#FF9800",
"foreground": "#FFFFFF"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#727272",
"changedValueForeground": "#FF9800",
"errorMessageForeground": "#f07178",
"evaluatingExpressionForeground": "#727272",
"exceptionForeground": "#ffcb6b",
"modifyingValueForeground": "#FF9800",
"valueForeground": "#FF9800"
}
},
"DebuggerTabs": {
"selectedBackground": "#3F3F3F",
"underlinedTabBackground": "#3F3F3F"
},
"DebuggerPopup": {
"borderColor": "#3F3F3F"
},
"DefaultTabs": {
"background": "#212121",
"borderColor": "#212121",
"hoverBackground": "#323232",
"hoverColor": "#1A1A1A",
"hoverMaskColor": "#3F3F3F",
"inactiveColoredFileBackground": "#2A2A2A",
"inactiveUnderlineColor": "#474747",
"inactiveMaskColor": "#1A1A1A",
"underlineColor": "#FF9800",
"underlinedTabBackground": "#323232"
},
"Desktop.background": "#212121",
"DialogWrapper.southPanelBackground": "#212121",
"DialogWrapper.southPanelDivider": "#212121",
"DragAndDrop": {
"areaBackground": "#212121",
"areaBorderColor": "#212121",
"areaForeground": "#B0BEC5"
},
"Editor": {
"background": "#1A1A1A",
"foreground": "#B0BEC5",
"shortcutForeground": "#727272"
},
"EditorPane": {
"background": "#1A1A1A",
"caretForeground": "#FF9800",
"foreground": "#B0BEC5",
"inactiveBackground": "#212121",
"inactiveForeground": "#474747",
"selectionBackground": "#404040",
"selectionForeground": "#FFFFFF"
},
"EditorTabs": {
"borderColor": "#292929",
"hoverColor": "#3F3F3F",
"hoverMaskColor": "#3F3F3F",
"inactiveMaskColor": "#212121",
"inactiveColoredFileBackground": "#2121212",
"inactiveUnderlineColor": "#474747",
"selectedForeground": "#B0BEC5",
"selectedBackground": "#323232",
"underlineColor": "#FF9800",
"underlinedTabBackground": "#323232"
},
"EditorGroupsTabs": {
"background": "#212121",
"borderColor": "#292929",
"hoverBackground": "#3F3F3F",
"hoverColor": "#3F3F3F",
"inactiveUnderlineColor": "#FF9800",
"underlineColor": "#FF9800",
"underlinedTabBackground": "#323232",
"underlinedTabForeground": "#B0BEC5"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#323232",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#292929",
"FormattedTextField": {
"background": "#1A1A1A",
"caretForeground": "#FF9800",
"foreground": "#B0BEC5",
"inactiveBackground": "#2A2A2A",
"inactiveForeground": "#474747",
"selectionForeground": "#FFFFFF",
"selectionBackground": "#323232"
},
"Group": {
"disabledSeparatorColor": "#292929",
"separatorColor": "#292929"
},
"GutterTooltip": {
"infoForeground": "#B0BEC5",
"lineSeparatorColor": "#212121"
},
"HeaderColor": {
"active": "#212121",
"inactive": "#1A1A1A"
},
"HelpTooltip": {
"background": "#212121",
"borderColor": "#292929",
"foreground": "#B0BEC5",
"infoForeground": "#727272",
"shortcutForeground": "#727272"
},
"Hyperlink.linkColor": "#FF9800",
"inactiveCaption": "#292929",
"inactiveCaptionBorder": "#212121",
"inactiveCaptionText": "#727272",
"info": "#727272",
"infoText": "#727272",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#292929",
"InplaceRefactoringPopup": {
"borderColor": "#212121"
},
"InternalFrame": {
"activeTitleForeground": "#B0BEC5",
"background": "#212121",
"inactiveTitleForeground": "#727272"
},
"Label": {
"background": "#212121",
"disabledForeground": "#474747",
"disabledShadow": "#212121",
"disabledText": "#474747",
"foreground": "#B0BEC5",
"infoForeground": "#727272",
"selectedForeground": "#FFFFFF"
},
"Link": {
"activeForeground": "#FF9800",
"hoverForeground": "#FF9800",
"pressedForeground": "#FF9800",
"secondaryForeground": "#727272",
"visitedForeground": "#FF9800"
},
"link.foreground": "#FF9800",
"List": {
"background": "#292929",
"foreground": "#B0BEC5",
"selectionBackground": "#40404050",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#323232c0"
},
"material": {
"background": "#212121",
"branchColor": "#B0BEC5",
"contrast": "#1A1A1A",
"foreground": "#B0BEC5",
"mergeCommits": "#2A2A2A",
"primaryColor": "#727272",
"selectionForeground": "#FFFFFF",
"tab.backgroundColor": "#212121",
"tab.borderColor": "#FF9800",
"tagColor": "#727272"
},
"MemoryIndicator": {
"allocatedBackground": "#292929",
"usedColor": "#3F3F3F",
"usedBackground": "#3F3F3F"
},
"Menu": {
"acceleratorForeground": "#727272",
"acceleratorSelectionForeground": "#FFFFFF",
"background": "#212121",
"border": "4,2,4,2",
"borderColor": "#292929",
"disabledBackground": "#292929",
"disabledForeground": "#474747",
"foreground": "#B0BEC5",
"selectionBackground": "#404040",
"selectionForeground": "#FFFFFF",
"separatorColor": "#292929"
},
"MenuBar": {
"background": "#1A1A1A",
"borderColor": "#212121",
"disabledBackground": "#212121",
"disabledForeground": "#474747",
"foreground": "#B0BEC5",
"highlight": "#212121",
"selectionBackground": "#404040",
"selectionForeground": "#FFFFFF",
"shadow": "#1A1A1A"
},
"MenuItem": {
"acceleratorForeground": "#727272",
"acceleratorSelectionForeground": "#FFFFFF",
"border": "4,2,4,2",
"background": "#212121",
"disabledBackground": "#212121",
"disabledForeground": "#474747",
"foreground": "#B0BEC5",
"selectionBackground": "#404040",
"selectionForeground": "#FFFFFF"
},
"NavBar": {
"arrowColor": "#B0BEC5",
"borderColor": "#212121"
},
"NewClass": {
"Panel": {
"background": "#212121"
},
"SearchField": {
"background": "#1A1A1A"
}
},
"NewPSD.warning": "#FF9800",
"Notification": {
"background": "#1A1A1A",
"borderColor": "#1A1A1A",
"errorBackground": "#1A1A1A",
"errorBorderColor": "#1A1A1A",
"foreground": "#B0BEC5",
"MoreButton": {
"background": "#2A2A2A",
"foreground": "#B0BEC5",
"innerBorderColor": "#2A2A2A"
},
"ToolWindow": {
"errorBackground": "#1A1A1A",
"errorBorderColor": "#1A1A1A",
"informativeBackground": "#1A1A1A",
"informativeBorderColor": "#1A1A1A",
"warningBackground": "#1A1A1A",
"warningBorderColor": "#1A1A1A"
}
},
"OnePixelDivider.background": "#292929",
"OptionPane": {
"background": "#212121",
"foreground": "#B0BEC5",
"messageForeground": "#B0BEC5"
},
"Outline": {
"color": "#2A2A2A",
"focusedColor": "#FF9800",
"disabledColor": "#474747"
},
"Panel": {
"background": "#212121",
"foreground": "#B0BEC5"
},
"ParameterInfo": {
"background": "#292929",
"borderColor": "#323232",
"currentOverloadBackground": "#323232",
"currentParameterForeground": "#FF9800",
"disabledForeground": "#474747",
"foreground": "#B0BEC5",
"infoForeground": "#727272",
"lineSeparatorColor": "#323232"
},
"PasswordField": {
"background": "#1A1A1A",
"capsLockIconColor": "#FF9800",
"caretForeground": "#FF9800",
"foreground": "#B0BEC5",
"inactiveForeground": "#474747",
"selectionBackground": "#323232",
"selectionForeground": "#FFFFFF"
},
"Plugins": {
"background": "#212121",
"disabledForeground": "#474747",
"eapTagBackground": "#3F3F3F",
"lightSelectionBackground": "#404040",
"paidTagBackground": "#3F3F3F",
"selectionBackground": "#404040",
"tagForeground": "#FF9800",
"tagBackground": "#3F3F3F",
"trialTagBackground": "#3F3F3F",
"Button": {
"installBackground": "#2A2A2A",
"installBorderColor": "#2A2A2A",
"installForeground": "#B0BEC5",
"installFocusedBackground": "#3F3F3F",
"installFillForeground": "#474747",
"installFillBackground": "#2A2A2A",
"updateBackground": "#2A2A2A",
"updateBorderColor": "#2A2A2A",
"updateForeground": "#B0BEC5"
},
"SearchField": {
"background": "#1A1A1A",
"borderColor": "#292929"
},
"SectionHeader": {
"background": "#292929",
"foreground": "#B0BEC5"
},
"Tab": {
"hoverBackground": "#323232",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#323232"
}
},
"Popup": {
"Advertiser": {
"background": "#212121",
"borderColor": "#212121",
"foreground": "#FF9800"
},
"borderColor": "#1A1A1A",
"inactiveBorderColor": "#212121",
"innerBorderColor": "#292929",
"Header": {
"activeBackground": "#212121",
"inactiveBackground": "#1A1A1A"
},
"paintBorder": true,
"separatorForeground": "#B0BEC5",
"separatorColor": "#292929",
"Toolbar": {
"Floating.background": "#1A1A1A",
"background": "#1A1A1A",
"borderColor": "#1A1A1A"
}
},
"PopupMenu": {
"background": "#212121",
"border": "2,0,2,0",
"foreground": "#B0BEC5",
"translucentBackground": "#212121"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#212121",
"foreground": "#FF9800",
"indeterminateEndColor": "#FF9800",
"indeterminateStartColor": "#FF9800",
"progressColor": "#FF9800",
"selectionBackground": "#3F3F3F",
"trackColor": "#3F3F3F"
},
"PsiViewer": {
"referenceHighlightColor": "#FF9800"
},
"RadioButton": {
"background": "#212121",
"disabledText": "#474747",
"foreground": "#B0BEC5"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#727272",
"acceleratorSelectionForeground": "#727272",
"background": "#212121",
"disabledBackground": "#212121",
"disabledForeground": "#474747",
"foreground": "#B0BEC5",
"selectionBackground": "#404040",
"selectionForeground": "#FFFFFF"
},
"ScrollBar": {
"background": "#212121",
"hoverThumbBorderColor": "#FF9800",
"hoverThumbColor": "#FF9800",
"hoverTrackColor": "#21212130",
"Mac": {
"hoverThumbBorderColor": "#FF9800",
"hoverThumbColor": "#FF9800",
"hoverTrackColor": "#21212130",
"thumbBorderColor": "#FF980070",
"thumbColor": "#FF980070",
"trackColor": "#21212130",
"Transparent": {
"hoverThumbBorderColor": "#FF9800",
"hoverThumbColor": "#FF9800",
"hoverTrackColor": "#21212130",
"thumbBorderColor": "#FF980070",
"thumbColor": "#FF980070",
"trackColor": "#21212130"
}
},
"thumb": "#3F3F3F",
"thumbBorderColor": "#FF980070",
"thumbColor": "#FF980070",
"trackColor": "#21212130",
"Transparent": {
"hoverThumbBorderColor": "#FF9800",
"hoverThumbColor": "#FF9800",
"hoverTrackColor": "#21212130",
"thumbBorderColor": "#FF980070",
"thumbColor": "#FF980070",
"trackColor": "#21212130"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#1A1A1A",
"foreground": "#727272"
},
"Header": {
"background": "#212121"
},
"List": {
"separatorForeground": "#727272",
"separatorColor": "#292929"
},
"SearchField": {
"background": "#212121",
"borderColor": "#1A1A1A",
"infoForeground": "#727272"
},
"Tab": {
"active.foreground": "#FFFFFF",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#3F3F3F"
}
},
"SearchMatch": {
"endBackground": "#FF9800",
"startBackground": "#FF9800"
},
"SearchField.errorBackground": "#1A1A1A",
"Separator": {
"background": "#292929",
"foreground": "#292929",
"separatorColor": "#292929"
},
"SidePanel": {
"background": "#1A1A1A"
},
"Slider": {
"background": "#212121",
"buttonBorderColor": "#FF9800",
"buttonColor": "#FF9800",
"foreground": "#B0BEC5",
"majorTickLength": 6,
"tickColor": "#292929",
"trackColor": "#323232",
"trackWidth": 7,
"thumb": "#FF9800"
},
"SpeedSearch": {
"background": "#3F3F3F",
"borderColor": "#292929",
"foreground": "#B0BEC5",
"errorForeground": "#B0BEC5"
},
"Spinner": {
"background": "#212121",
"border": "3,3,3,3",
"foreground": "#B0BEC5",
"selectionForeground": "#FFFFFF"
},
"SplitPane": {
"background": "#212121",
"highlight": "#1A1A1A"
},
"SplitPaneDivider.draggingColor": "#292929",
"StatusBar": {
"borderColor": "#212121"
},
"TabbedPane": {
"background": "#212121",
"contentAreaColor": "#3F3F3F",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#292929",
"disabledForeground": "#474747",
"disabledUnderlineColor": "#474747",
"focus": "#323232",
"focusColor": "#323232",
"fontSizeOffset": 0,
"foreground": "#B0BEC5",
"highlight": "#292929",
"hoverColor": "#3F3F3F",
"labelShift": 0,
"selectedForeground": "#FFFFFF",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#FF9800"
},
"TabbedPane.mt.tab.background": "#1A1A1A",
"Table": {
"background": "#212121",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#FF9800",
"dropLineShortColor": "#FF9800",
"focusCellBackground": "#323232",
"focusCellForeground": "#FFFFFF",
"foreground": "#B0BEC5",
"gridColor": "#212121",
"highlightOuter": "#323232",
"lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#727272",
"lightSelectionInactiveBackground": "#292929",
"selectionBackground": "#323232",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#323232",
"selectionInactiveForeground": "#FFFFFF",
"sortIconColor": "#B0BEC5",
"stripeColor": "#1A1A1A"
},
"TableHeader": {
"background": "#212121",
"borderColor": "#212121",
"bottomSeparatorColor": "#292929",
"cellBorder": "4,0,4,0",
"disabledForeground": "#474747",
"foreground": "#B0BEC5",
"focusCellBackground": "#323232",
"focusCellForeground": "#FFFFFF",
"height": 25,
"separatorColor": "#292929"
},
"text": "#727272",
"textInactiveText": "#727272",
"textText": "#727272",
"TextArea": {
"background": "#1A1A1A",
"caretForeground": "#FF9800",
"foreground": "#B0BEC5",
"inactiveForeground": "#474747",
"selectionBackground": "#323232",
"selectionForeground": "#FFFFFF"
},
"TextField": {
"background": "#1A1A1A",
"caretForeground": "#FF9800",
"foreground": "#B0BEC5",
"inactiveForeground": "#474747",
"selectionBackground": "#323232",
"selectionForeground": "#FFFFFF"
},
"TextPane": {
"background": "#1A1A1A",
"caretForeground": "#FF9800",
"foreground": "#B0BEC5",
"inactiveForeground": "#474747",
"selectionBackground": "#323232",
"selectionForeground": "#FFFFFF"
},
"TitlePane": {
"background": "#1A1A1A",
"Button.hoverBackground": "#3F3F3F",
"inactiveBackground": "#212121",
"infoForeground": "#727272",
"inactiveInfoForeground": "#727272"
},
"TitledBorder.titleColor": "#B0BEC5",
"ToggleButton": {
"borderColor": "#2A2A2A",
"buttonColor": "#B0BEC5",
"disabledText": "#474747",
"foreground": "#B0BEC5",
"offForeground": "#212121",
"offBackground": "#212121",
"onBackground": "#FF9800",
"onForeground": "#FF9800"
},
"ToolBar": {
"background": "#1A1A1A",
"borderHandleColor": "#727272",
"floatingForeground": "#727272",
"foreground": "#B0BEC5"
},
"ToolTip": {
"Actions.background": "#212121",
"Actions.infoForeground": "#727272",
"background": "#212121",
"borderColor": "#3F3F3F",
"foreground": "#B0BEC5",
"infoForeground": "#727272",
"separatorColor": "#292929",
"shortcutForeground": "#727272"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#323232",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#1A1A1A"
},
"Header": {
"background": "#212121",
"borderColor": "#292929",
"inactiveBackground": "#212121"
},
"HeaderCloseButton": {
"background": "#212121"
},
"HeaderTab": {
"hoverBackground": "#3F3F3F",
"hoverInactiveBackground": "#292929",
"inactiveUnderlineColor": "#FF9800",
"selectedBackground": "#1A1A1A",
"selectedInactiveBackground": "#1A1A1A",
"underlineColor": "#FF9800",
"underlinedTabBackground": "#3F3F3F",
"underlinedTabInactiveBackground": "#292929"
}
},
"Tree": {
"background": "#1A1A1A",
"foreground": "#727272",
"hash": "#292929",
"modifiedItemForeground": "#FF9800",
"rowHeight": 28,
"selectionBackground": "#323232c0",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#323232c0",
"textBackground": "#1A1A1A"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#292929",
"ColorPicker.background": "#212121",
"ColorPicker.foreground": "#B0BEC5",
"Component.borderColor": "#292929",
"Component.background": "#212121",
"Component.foreground": "#B0BEC5",
"Connector.borderColor": "#292929",
"Connector.hoverBorderColor": "#3F3F3F",
"Canvas.background": "#1A1A1A",
"highStroke.foreground": "#B0BEC5",
"Label.foreground": "#727272",
"List.selectionBackground": "#323232c0",
"Panel.borderColor": "#292929",
"Panel.background": "#212121",
"percent.foreground": "#B0BEC5",
"Placeholder.background": "#212121",
"Placeholder.borderColor": "#292929",
"Placeholder.foreground": "#B0BEC5",
"Placeholder.selectedForeground": "#FFFFFF",
"Preview.background": "#212121",
"stroke.acceleratorForeground": "#727272"
},
"ValidationTooltip": {
"errorBackground": "#1A1A1A",
"errorBorderColor": "#1A1A1A",
"warningBackground": "#1A1A1A",
"warningBorderColor": "#1A1A1A"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#212121"
},
"GitCommits": {
"graphColor": "#3F3F3F"
},
"GitLog": {
"localBranchIconColor": "#FF9800",
"otherIconColor": "#727272",
"remoteBranchIconColor": "#B0BEC5",
"tagIconColor": "#727272"
},
"HgLog": {
"branchIconColor": "#FF9800",
"bookmarkIconColor": "#FFFFFF",
"closedBranchIconColor": "#474747",
"localTagIconColor": "#727272",
"mqTagIconColor": "#727272",
"tagIconColor": "#727272",
"tipIconColor": "#727272"
},
"Log": {
"Commit.unmatchedForeground": "#727272",
"Commit.currentBranchBackground": "#292929"
},
"RefLabel": {
"foreground": "#FFFFFF",
"backgroundBase": "#3F3F3F"
}
},
"Viewport": {
"background": "#1A1A1A",
"foreground": "#B0BEC5"
},
"WelcomeScreen": {
"background": "#212121",
"borderColor": "#212121",
"captionBackground": "#1A1A1A",
"captionForeground": "#B0BEC5",
"footerBackground": "#1A1A1A",
"footerForeground": "#B0BEC5",
"headerBackground": "#212121",
"headerForeground": "#B0BEC5",
"separatorColor": "#292929",
"Projects": {
"background": "#292929",
"selectionBackground": "#404040",
"selectionInactiveBackground": "#292929"
}
},
"window": "#1A1A1A",
"windowBorder": "#292929",
"windowText": "#727272",
"Window.border": "#292929"
},
"icons": {
"ColorPalette": {
"#43494A": "#1A1A1A",
"#6B6B6B": "#727272",
"#A7A7A7": "#212121",
"#3D6185": "#FF9800",
"#466D94": "#FF9800",
"#3C3F41": "#212121",
"#545556": "#474747",
"#606060": "#474747",
"#9AA7B0": "#B0BEC5",
"#675133": "#FF9800",
"Actions.Blue": "#82aaff",
"Actions.Green": "#c3e88d",
"Actions.Grey": "#727272",
"Actions.GreyInline": "#616161",
"Actions.GreyInline.Dark": "#B0BEC5",
"Actions.Red": "#f07178",
"Actions.Yellow": "#ffcb6b",
"Checkbox.Background.Default": "#1A1A1A",
"Checkbox.Background.Default.Dark": "#1A1A1A",
"Checkbox.Background.Disabled": "#323232",
"Checkbox.Background.Disabled.Dark": "#323232",
"Checkbox.Border.Default": "#292929",
"Checkbox.Border.Default.Dark": "#292929",
"Checkbox.Border.Disabled": "#474747",
"Checkbox.Border.Disabled.Dark": "#474747",
"Checkbox.Focus.Thin.Default": "#FF9800",
"Checkbox.Focus.Thin.Default.Dark": "#FF9800",
"Checkbox.Focus.Wide": "#FF9800",
"Checkbox.Focus.Wide.Dark": "#FF9800",
"Checkbox.Foreground.Disabled": "#474747",
"Checkbox.Foreground.Disabled.Dark": "#474747",
"Checkbox.Background.Selected": "#FF9800",
"Checkbox.Background.Selected.Dark": "#212121",
"Checkbox.Border.Selected": "#FF9800",
"Checkbox.Border.Selected.Dark": "#FF9800",
"Checkbox.Foreground.Selected": "#FF9800",
"Checkbox.Foreground.Selected.Dark": "#FF9800",
"Checkbox.Focus.Thin.Selected": "#B0BEC5",
"Checkbox.Focus.Thin.Selected.Dark": "#B0BEC5",
"Objects.Grey": "#616161",
"Objects.Blue": "#82aaff",
"Objects.RedStatus": "#f07178",
"Objects.Red": "#f07178",
"Objects.Pink": "#c792ea",
"Objects.Yellow": "#ffcb6b",
"Objects.Green": "#c3e88d",
"Objects.Purple": "#c792ea",
"Objects.BlackText": "#B0BEC5",
"Objects.YellowDark": "#f78c6c",
"Objects.GreenAndroid": "#c3e88d"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "Material Darker",
"dark": true,
"author": "Mallowigi",
"editorScheme": "/colors/Material Darker.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#727272",
"background": "#212121",
"borderColor": "#292929",
"disabledBackground": "#323232",
"disabledForeground": "#474747",
"disabledText": "#474747",
"focusColor": "#3F3F3F",
"focusedBorderColor": "#FF9800",
"foreground": "#B0BEC5",
"inactiveBackground": "#323232",
"inactiveForeground": "#727272",
"infoForeground": "#727272",
"selectionBackground": "#404040",
"selectionBackgroundInactive": "#292929",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#292929",
"separatorColor": "#292929"
},
"activeCaption": "#212121",
"ActionButton": {
"hoverBackground": "#FF980050",
"hoverBorderColor": "#FF980050",
"hoverSeparatorColor": "#2A2A2A",
"focusedBorderColor": "#FF980050",
"pressedBackground": "#FF980050",
"pressedBorderColor": "#FF980050"
},
"Autocomplete": {
"selectionBackground": "#404040"
},
"Borders.ContrastBorderColor": "#212121",
"Borders.color": "#292929",
"Button": {
"arc": 0,
"background": "#212121",
"default": {
"endBackground": "#323232",
"endBorderColor": "#323232",
"foreground": "#FFFFFF",
"focusColor": "#FF9800",
"focusedBorderColor": "#FF9800",
"shadowColor": "#323232",
"startBackground": "#323232",
"startBorderColor": "#323232"
},
"disabledBorderColor": "#2A2A2A",
"disabledText": "#474747",
"endBackground": "#2A2A2A",
"endBorderColor": "#2A2A2A",
"focus": "#3F3F3F",
"focusedBorderColor": "#FF9800",
"foreground": "#727272",
"highlight": "#FFFFFF",
"mt.background": "#2A2A2A",
"mt.foreground": "#727272",
"mt.selectedForeground": "#FFFFFF",
"mt.selection.color1": "#323232",
"mt.selection.color2": "#323232",
"startBackground": "#2A2A2A",
"startBorderColor": "#2A2A2A",
"shadowColor": "#2A2A2A",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#292929",
"Tooltip.background": "#1A1A1A"
},
"Content.background": "#1A1A1A",
"CheckBox": {
"background": "#212121",
"disabledText": "#474747",
"foreground": "#B0BEC5",
"select": "#FF9800"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#727272",
"acceleratorSelectionForeground": "#727272",
"background": "#212121",
"disabledBackground": "#212121",
"disabledForeground": "#474747",
"foreground": "#B0BEC5",
"selectionBackground": "#404040",
"selectionForeground": "#FFFFFF"
},
"ColorChooser": {
"background": "#212121",
"foreground": "#B0BEC5",
"swatchesDefaultRecentColor": "#B0BEC5"
},
"ComboBoxButton.background": "#2A2A2A",
"ComboBox": {
"ArrowButton": {
"background": "#2A2A2A",
"disabledIconColor": "#474747",
"iconColor": "#B0BEC5",
"nonEditableBackground": "#212121"
},
"background": "#212121",
"buttonBackground": "#2A2A2A",
"disabledForeground": "#474747",
"foreground": "#B0BEC5",
"modifiedItemForeground": "#FF9800",
"nonEditableBackground": "#292929",
"padding": "5,5,5,5",
"selectionBackground": "#323232",
"selectionForeground": "#FFFFFF"
},
"ComboPopup.border": "#292929",
"CompletionPopup": {
"background": "#292929",
"foreground": "#B0BEC5",
"infoForeground": "#727272",
"matchForeground": "#FF9800",
"matchSelectionForeground": "#FF9800",
"nonFocusedState": "false",
"selectedGrayedForeground": "#FFFFFF",
"selectionGrayForeground": "#FFFFFF",
"selectionInactiveInfoForeground": "#727272",
"selectionInactiveBackground": "#40404050",
"selectionBackground": "#40404080",
"selectionForeground": "#FFFFFF",
"selectionInfoForeground": "#FFFFFF"
},
"Component": {
"arc": 4,
"borderColor": "#3F3F3F",
"disabledBorderColor": "#2A2A2A",
"focusColor": "#FF9800",
"focusedBorderColor": "#FF9800",
"hoverIconColor": "#FF9800",
"infoForeground": "#727272",
"iconColor": "#B0BEC5"
},
"control": "#212121",
"controlText": "#727272",
"Counter": {
"background": "#FF9800",
"foreground": "#FFFFFF"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#727272",
"changedValueForeground": "#FF9800",
"errorMessageForeground": "#f07178",
"evaluatingExpressionForeground": "#727272",
"exceptionForeground": "#ffcb6b",
"modifyingValueForeground": "#FF9800",
"valueForeground": "#FF9800"
}
},
"DebuggerTabs": {
"selectedBackground": "#3F3F3F",
"underlinedTabBackground": "#3F3F3F"
},
"DebuggerPopup": {
"borderColor": "#3F3F3F"
},
"DefaultTabs": {
"background": "#212121",
"borderColor": "#212121",
"hoverBackground": "#323232",
"hoverColor": "#212121",
"hoverMaskColor": "#3F3F3F",
"inactiveColoredFileBackground": "#2A2A2A",
"inactiveUnderlineColor": "#474747",
"inactiveMaskColor": "#212121",
"underlineColor": "#FF9800",
"underlinedTabBackground": "#323232"
},
"Desktop.background": "#212121",
"DialogWrapper.southPanelBackground": "#212121",
"DialogWrapper.southPanelDivider": "#212121",
"DragAndDrop": {
"areaBackground": "#212121",
"areaBorderColor": "#212121",
"areaForeground": "#B0BEC5"
},
"Editor": {
"background": "#212121",
"foreground": "#B0BEC5",
"shortcutForeground": "#727272"
},
"EditorPane": {
"background": "#212121",
"caretForeground": "#FF9800",
"foreground": "#B0BEC5",
"inactiveBackground": "#212121",
"inactiveForeground": "#474747",
"selectionBackground": "#404040",
"selectionForeground": "#FFFFFF"
},
"EditorTabs": {
"borderColor": "#292929",
"hoverColor": "#3F3F3F",
"hoverMaskColor": "#3F3F3F",
"inactiveMaskColor": "#212121",
"inactiveColoredFileBackground": "#2121212",
"inactiveUnderlineColor": "#474747",
"selectedForeground": "#B0BEC5",
"selectedBackground": "#323232",
"underlineColor": "#FF9800",
"underlinedTabBackground": "#323232"
},
"EditorGroupsTabs": {
"background": "#212121",
"borderColor": "#292929",
"hoverBackground": "#3F3F3F",
"hoverColor": "#3F3F3F",
"inactiveUnderlineColor": "#FF9800",
"underlineColor": "#FF9800",
"underlinedTabBackground": "#323232",
"underlinedTabForeground": "#B0BEC5"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#323232",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#292929",
"FormattedTextField": {
"background": "#212121",
"caretForeground": "#FF9800",
"foreground": "#B0BEC5",
"inactiveBackground": "#2A2A2A",
"inactiveForeground": "#474747",
"selectionForeground": "#FFFFFF",
"selectionBackground": "#323232"
},
"Group": {
"disabledSeparatorColor": "#292929",
"separatorColor": "#292929"
},
"GutterTooltip": {
"infoForeground": "#B0BEC5",
"lineSeparatorColor": "#212121"
},
"HeaderColor": {
"active": "#212121",
"inactive": "#1A1A1A"
},
"HelpTooltip": {
"background": "#212121",
"borderColor": "#292929",
"foreground": "#B0BEC5",
"infoForeground": "#727272",
"shortcutForeground": "#727272"
},
"Hyperlink.linkColor": "#FF9800",
"inactiveCaption": "#292929",
"inactiveCaptionBorder": "#212121",
"inactiveCaptionText": "#727272",
"info": "#727272",
"infoText": "#727272",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#292929",
"InplaceRefactoringPopup": {
"borderColor": "#212121"
},
"InternalFrame": {
"activeTitleForeground": "#B0BEC5",
"background": "#212121",
"inactiveTitleForeground": "#727272"
},
"Label": {
"background": "#212121",
"disabledForeground": "#474747",
"disabledShadow": "#212121",
"disabledText": "#474747",
"foreground": "#B0BEC5",
"infoForeground": "#727272",
"selectedForeground": "#FFFFFF"
},
"Link": {
"activeForeground": "#FF9800",
"hoverForeground": "#FF9800",
"pressedForeground": "#FF9800",
"secondaryForeground": "#727272",
"visitedForeground": "#FF9800"
},
"link.foreground": "#FF9800",
"List": {
"background": "#292929",
"foreground": "#B0BEC5",
"selectionBackground": "#40404050",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#323232c0"
},
"material": {
"background": "#212121",
"branchColor": "#B0BEC5",
"contrast": "#1A1A1A",
"foreground": "#B0BEC5",
"mergeCommits": "#2A2A2A",
"primaryColor": "#727272",
"selectionForeground": "#FFFFFF",
"tab.backgroundColor": "#212121",
"tab.borderColor": "#FF9800",
"tagColor": "#727272"
},
"MemoryIndicator": {
"allocatedBackground": "#292929",
"usedColor": "#3F3F3F",
"usedBackground": "#3F3F3F"
},
"Menu": {
"acceleratorForeground": "#727272",
"acceleratorSelectionForeground": "#FFFFFF",
"background": "#212121",
"border": "4,2,4,2",
"borderColor": "#292929",
"disabledBackground": "#292929",
"disabledForeground": "#474747",
"foreground": "#B0BEC5",
"selectionBackground": "#404040",
"selectionForeground": "#FFFFFF",
"separatorColor": "#292929"
},
"MenuBar": {
"background": "#212121",
"borderColor": "#212121",
"disabledBackground": "#212121",
"disabledForeground": "#474747",
"foreground": "#B0BEC5",
"highlight": "#212121",
"selectionBackground": "#404040",
"selectionForeground": "#FFFFFF",
"shadow": "#212121"
},
"MenuItem": {
"acceleratorForeground": "#727272",
"acceleratorSelectionForeground": "#FFFFFF",
"border": "4,2,4,2",
"background": "#212121",
"disabledBackground": "#212121",
"disabledForeground": "#474747",
"foreground": "#B0BEC5",
"selectionBackground": "#404040",
"selectionForeground": "#FFFFFF"
},
"NavBar": {
"arrowColor": "#B0BEC5",
"borderColor": "#212121"
},
"NewClass": {
"Panel": {
"background": "#212121"
},
"SearchField": {
"background": "#212121"
}
},
"NewPSD.warning": "#FF9800",
"Notification": {
"background": "#1A1A1A",
"borderColor": "#1A1A1A",
"errorBackground": "#1A1A1A",
"errorBorderColor": "#1A1A1A",
"foreground": "#B0BEC5",
"MoreButton": {
"background": "#2A2A2A",
"foreground": "#B0BEC5",
"innerBorderColor": "#2A2A2A"
},
"ToolWindow": {
"errorBackground": "#1A1A1A",
"errorBorderColor": "#1A1A1A",
"informativeBackground": "#1A1A1A",
"informativeBorderColor": "#1A1A1A",
"warningBackground": "#1A1A1A",
"warningBorderColor": "#1A1A1A"
}
},
"OnePixelDivider.background": "#292929",
"OptionPane": {
"background": "#212121",
"foreground": "#B0BEC5",
"messageForeground": "#B0BEC5"
},
"Outline": {
"color": "#2A2A2A",
"focusedColor": "#FF9800",
"disabledColor": "#474747"
},
"Panel": {
"background": "#212121",
"foreground": "#B0BEC5"
},
"ParameterInfo": {
"background": "#292929",
"borderColor": "#323232",
"currentOverloadBackground": "#323232",
"currentParameterForeground": "#FF9800",
"disabledForeground": "#474747",
"foreground": "#B0BEC5",
"infoForeground": "#727272",
"lineSeparatorColor": "#323232"
},
"PasswordField": {
"background": "#212121",
"capsLockIconColor": "#FF9800",
"caretForeground": "#FF9800",
"foreground": "#B0BEC5",
"inactiveForeground": "#474747",
"selectionBackground": "#323232",
"selectionForeground": "#FFFFFF"
},
"Plugins": {
"background": "#212121",
"disabledForeground": "#474747",
"eapTagBackground": "#3F3F3F",
"lightSelectionBackground": "#404040",
"paidTagBackground": "#3F3F3F",
"selectionBackground": "#404040",
"tagForeground": "#FF9800",
"tagBackground": "#3F3F3F",
"trialTagBackground": "#3F3F3F",
"Button": {
"installBackground": "#2A2A2A",
"installBorderColor": "#2A2A2A",
"installForeground": "#B0BEC5",
"installFocusedBackground": "#3F3F3F",
"installFillForeground": "#474747",
"installFillBackground": "#2A2A2A",
"updateBackground": "#2A2A2A",
"updateBorderColor": "#2A2A2A",
"updateForeground": "#B0BEC5"
},
"SearchField": {
"background": "#212121",
"borderColor": "#292929"
},
"SectionHeader": {
"background": "#292929",
"foreground": "#B0BEC5"
},
"Tab": {
"hoverBackground": "#323232",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#323232"
}
},
"Popup": {
"Advertiser": {
"background": "#212121",
"borderColor": "#212121",
"foreground": "#FF9800"
},
"borderColor": "#1A1A1A",
"inactiveBorderColor": "#212121",
"innerBorderColor": "#292929",
"Header": {
"activeBackground": "#212121",
"inactiveBackground": "#1A1A1A"
},
"paintBorder": true,
"separatorForeground": "#B0BEC5",
"separatorColor": "#292929",
"Toolbar": {
"Floating.background": "#1A1A1A",
"background": "#1A1A1A",
"borderColor": "#1A1A1A"
}
},
"PopupMenu": {
"background": "#212121",
"border": "2,0,2,0",
"foreground": "#B0BEC5",
"translucentBackground": "#212121"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#212121",
"foreground": "#FF9800",
"indeterminateEndColor": "#FF9800",
"indeterminateStartColor": "#FF9800",
"progressColor": "#FF9800",
"selectionBackground": "#3F3F3F",
"trackColor": "#3F3F3F"
},
"PsiViewer": {
"referenceHighlightColor": "#FF9800"
},
"RadioButton": {
"background": "#212121",
"disabledText": "#474747",
"foreground": "#B0BEC5"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#727272",
"acceleratorSelectionForeground": "#727272",
"background": "#212121",
"disabledBackground": "#212121",
"disabledForeground": "#474747",
"foreground": "#B0BEC5",
"selectionBackground": "#404040",
"selectionForeground": "#FFFFFF"
},
"ScrollBar": {
"background": "#212121",
"hoverThumbBorderColor": "#FF9800",
"hoverThumbColor": "#FF9800",
"hoverTrackColor": "#21212130",
"Mac": {
"hoverThumbBorderColor": "#FF9800",
"hoverThumbColor": "#FF9800",
"hoverTrackColor": "#21212130",
"thumbBorderColor": "#FF980070",
"thumbColor": "#FF980070",
"trackColor": "#21212130",
"Transparent": {
"hoverThumbBorderColor": "#FF9800",
"hoverThumbColor": "#FF9800",
"hoverTrackColor": "#21212130",
"thumbBorderColor": "#FF980070",
"thumbColor": "#FF980070",
"trackColor": "#21212130"
}
},
"thumb": "#3F3F3F",
"thumbBorderColor": "#FF980070",
"thumbColor": "#FF980070",
"trackColor": "#21212130",
"Transparent": {
"hoverThumbBorderColor": "#FF9800",
"hoverThumbColor": "#FF9800",
"hoverTrackColor": "#21212130",
"thumbBorderColor": "#FF980070",
"thumbColor": "#FF980070",
"trackColor": "#21212130"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#1A1A1A",
"foreground": "#727272"
},
"Header": {
"background": "#212121"
},
"List": {
"separatorForeground": "#727272",
"separatorColor": "#292929"
},
"SearchField": {
"background": "#212121",
"borderColor": "#1A1A1A",
"infoForeground": "#727272"
},
"Tab": {
"active.foreground": "#FFFFFF",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#3F3F3F"
}
},
"SearchMatch": {
"endBackground": "#FF9800",
"startBackground": "#FF9800"
},
"SearchField.errorBackground": "#1A1A1A",
"Separator": {
"background": "#292929",
"foreground": "#292929",
"separatorColor": "#292929"
},
"SidePanel": {
"background": "#212121"
},
"Slider": {
"background": "#212121",
"buttonBorderColor": "#FF9800",
"buttonColor": "#FF9800",
"foreground": "#B0BEC5",
"majorTickLength": 6,
"tickColor": "#292929",
"trackColor": "#323232",
"trackWidth": 7,
"thumb": "#FF9800"
},
"SpeedSearch": {
"background": "#3F3F3F",
"borderColor": "#292929",
"foreground": "#B0BEC5",
"errorForeground": "#B0BEC5"
},
"Spinner": {
"background": "#212121",
"border": "3,3,3,3",
"foreground": "#B0BEC5",
"selectionForeground": "#FFFFFF"
},
"SplitPane": {
"background": "#212121",
"highlight": "#212121"
},
"SplitPaneDivider.draggingColor": "#292929",
"StatusBar": {
"borderColor": "#212121"
},
"TabbedPane": {
"background": "#212121",
"contentAreaColor": "#3F3F3F",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#292929",
"disabledForeground": "#474747",
"disabledUnderlineColor": "#474747",
"focus": "#323232",
"focusColor": "#323232",
"fontSizeOffset": 0,
"foreground": "#B0BEC5",
"highlight": "#292929",
"hoverColor": "#3F3F3F",
"labelShift": 0,
"selectedForeground": "#FFFFFF",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#FF9800"
},
"TabbedPane.mt.tab.background": "#212121",
"Table": {
"background": "#212121",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#FF9800",
"dropLineShortColor": "#FF9800",
"focusCellBackground": "#323232",
"focusCellForeground": "#FFFFFF",
"foreground": "#B0BEC5",
"gridColor": "#212121",
"highlightOuter": "#323232",
"lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#727272",
"lightSelectionInactiveBackground": "#292929",
"selectionBackground": "#323232",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#323232",
"selectionInactiveForeground": "#FFFFFF",
"sortIconColor": "#B0BEC5",
"stripeColor": "#1A1A1A"
},
"TableHeader": {
"background": "#212121",
"borderColor": "#212121",
"bottomSeparatorColor": "#292929",
"cellBorder": "4,0,4,0",
"disabledForeground": "#474747",
"foreground": "#B0BEC5",
"focusCellBackground": "#323232",
"focusCellForeground": "#FFFFFF",
"height": 25,
"separatorColor": "#292929"
},
"text": "#727272",
"textInactiveText": "#727272",
"textText": "#727272",
"TextArea": {
"background": "#212121",
"caretForeground": "#FF9800",
"foreground": "#B0BEC5",
"inactiveForeground": "#474747",
"selectionBackground": "#323232",
"selectionForeground": "#FFFFFF"
},
"TextField": {
"background": "#212121",
"caretForeground": "#FF9800",
"foreground": "#B0BEC5",
"inactiveForeground": "#474747",
"selectionBackground": "#323232",
"selectionForeground": "#FFFFFF"
},
"TextPane": {
"background": "#212121",
"caretForeground": "#FF9800",
"foreground": "#B0BEC5",
"inactiveForeground": "#474747",
"selectionBackground": "#323232",
"selectionForeground": "#FFFFFF"
},
"TitlePane": {
"background": "#1A1A1A",
"Button.hoverBackground": "#3F3F3F",
"inactiveBackground": "#212121",
"infoForeground": "#727272",
"inactiveInfoForeground": "#727272"
},
"TitledBorder.titleColor": "#B0BEC5",
"ToggleButton": {
"borderColor": "#2A2A2A",
"buttonColor": "#B0BEC5",
"disabledText": "#474747",
"foreground": "#B0BEC5",
"offForeground": "#212121",
"offBackground": "#212121",
"onBackground": "#FF9800",
"onForeground": "#FF9800"
},
"ToolBar": {
"background": "#212121",
"borderHandleColor": "#727272",
"floatingForeground": "#727272",
"foreground": "#B0BEC5"
},
"ToolTip": {
"Actions.background": "#212121",
"Actions.infoForeground": "#727272",
"background": "#212121",
"borderColor": "#3F3F3F",
"foreground": "#B0BEC5",
"infoForeground": "#727272",
"separatorColor": "#292929",
"shortcutForeground": "#727272"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#323232",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#1A1A1A"
},
"Header": {
"background": "#212121",
"borderColor": "#292929",
"inactiveBackground": "#212121"
},
"HeaderCloseButton": {
"background": "#212121"
},
"HeaderTab": {
"hoverBackground": "#3F3F3F",
"hoverInactiveBackground": "#292929",
"inactiveUnderlineColor": "#FF9800",
"selectedBackground": "#1A1A1A",
"selectedInactiveBackground": "#1A1A1A",
"underlineColor": "#FF9800",
"underlinedTabBackground": "#3F3F3F",
"underlinedTabInactiveBackground": "#292929"
}
},
"Tree": {
"background": "#212121",
"foreground": "#727272",
"hash": "#292929",
"modifiedItemForeground": "#FF9800",
"rowHeight": 28,
"selectionBackground": "#323232c0",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#323232c0",
"textBackground": "#212121"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#292929",
"ColorPicker.background": "#212121",
"ColorPicker.foreground": "#B0BEC5",
"Component.borderColor": "#292929",
"Component.background": "#212121",
"Component.foreground": "#B0BEC5",
"Connector.borderColor": "#292929",
"Connector.hoverBorderColor": "#3F3F3F",
"Canvas.background": "#1A1A1A",
"highStroke.foreground": "#B0BEC5",
"Label.foreground": "#727272",
"List.selectionBackground": "#323232c0",
"Panel.borderColor": "#292929",
"Panel.background": "#212121",
"percent.foreground": "#B0BEC5",
"Placeholder.background": "#212121",
"Placeholder.borderColor": "#292929",
"Placeholder.foreground": "#B0BEC5",
"Placeholder.selectedForeground": "#FFFFFF",
"Preview.background": "#212121",
"stroke.acceleratorForeground": "#727272"
},
"ValidationTooltip": {
"errorBackground": "#1A1A1A",
"errorBorderColor": "#1A1A1A",
"warningBackground": "#1A1A1A",
"warningBorderColor": "#1A1A1A"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#212121"
},
"GitCommits": {
"graphColor": "#3F3F3F"
},
"GitLog": {
"localBranchIconColor": "#FF9800",
"otherIconColor": "#727272",
"remoteBranchIconColor": "#B0BEC5",
"tagIconColor": "#727272"
},
"HgLog": {
"branchIconColor": "#FF9800",
"bookmarkIconColor": "#FFFFFF",
"closedBranchIconColor": "#474747",
"localTagIconColor": "#727272",
"mqTagIconColor": "#727272",
"tagIconColor": "#727272",
"tipIconColor": "#727272"
},
"Log": {
"Commit.unmatchedForeground": "#727272",
"Commit.currentBranchBackground": "#292929"
},
"RefLabel": {
"foreground": "#FFFFFF",
"backgroundBase": "#3F3F3F"
}
},
"Viewport": {
"background": "#212121",
"foreground": "#B0BEC5"
},
"WelcomeScreen": {
"background": "#212121",
"borderColor": "#212121",
"captionBackground": "#1A1A1A",
"captionForeground": "#B0BEC5",
"footerBackground": "#1A1A1A",
"footerForeground": "#B0BEC5",
"headerBackground": "#212121",
"headerForeground": "#B0BEC5",
"separatorColor": "#292929",
"Projects": {
"background": "#292929",
"selectionBackground": "#404040",
"selectionInactiveBackground": "#292929"
}
},
"window": "#212121",
"windowBorder": "#292929",
"windowText": "#727272",
"Window.border": "#292929"
},
"icons": {
"ColorPalette": {
"#43494A": "#1A1A1A",
"#6B6B6B": "#727272",
"#A7A7A7": "#212121",
"#3D6185": "#FF9800",
"#466D94": "#FF9800",
"#3C3F41": "#212121",
"#545556": "#474747",
"#606060": "#474747",
"#9AA7B0": "#B0BEC5",
"#675133": "#FF9800",
"Actions.Blue": "#82aaff",
"Actions.Green": "#c3e88d",
"Actions.Grey": "#727272",
"Actions.GreyInline": "#616161",
"Actions.GreyInline.Dark": "#B0BEC5",
"Actions.Red": "#f07178",
"Actions.Yellow": "#ffcb6b",
"Checkbox.Background.Default": "#1A1A1A",
"Checkbox.Background.Default.Dark": "#1A1A1A",
"Checkbox.Background.Disabled": "#323232",
"Checkbox.Background.Disabled.Dark": "#323232",
"Checkbox.Border.Default": "#292929",
"Checkbox.Border.Default.Dark": "#292929",
"Checkbox.Border.Disabled": "#474747",
"Checkbox.Border.Disabled.Dark": "#474747",
"Checkbox.Focus.Thin.Default": "#FF9800",
"Checkbox.Focus.Thin.Default.Dark": "#FF9800",
"Checkbox.Focus.Wide": "#FF9800",
"Checkbox.Focus.Wide.Dark": "#FF9800",
"Checkbox.Foreground.Disabled": "#474747",
"Checkbox.Foreground.Disabled.Dark": "#474747",
"Checkbox.Background.Selected": "#FF9800",
"Checkbox.Background.Selected.Dark": "#212121",
"Checkbox.Border.Selected": "#FF9800",
"Checkbox.Border.Selected.Dark": "#FF9800",
"Checkbox.Foreground.Selected": "#FF9800",
"Checkbox.Foreground.Selected.Dark": "#FF9800",
"Checkbox.Focus.Thin.Selected": "#B0BEC5",
"Checkbox.Focus.Thin.Selected.Dark": "#B0BEC5",
"Objects.Grey": "#616161",
"Objects.Blue": "#82aaff",
"Objects.RedStatus": "#f07178",
"Objects.Red": "#f07178",
"Objects.Pink": "#c792ea",
"Objects.Yellow": "#ffcb6b",
"Objects.Green": "#c3e88d",
"Objects.Purple": "#c792ea",
"Objects.BlackText": "#B0BEC5",
"Objects.YellowDark": "#f78c6c",
"Objects.GreenAndroid": "#c3e88d"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "Material Deep Ocean Contrast",
"dark": true,
"author": "Mallowigi",
"editorScheme": "/colors/Material Deep Ocean.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#4B526D",
"background": "#0F111A",
"borderColor": "#0F111A",
"disabledBackground": "#292D3E",
"disabledForeground": "#464B5D",
"disabledText": "#464B5D",
"focusColor": "#1F2233",
"focusedBorderColor": "#84ffff",
"foreground": "#8F93A2",
"inactiveBackground": "#292D3E",
"inactiveForeground": "#4B526D",
"infoForeground": "#4B526D",
"selectionBackground": "#232632",
"selectionBackgroundInactive": "#181A1F",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#181A1F",
"separatorColor": "#0F111A"
},
"activeCaption": "#0F111A",
"ActionButton": {
"hoverBackground": "#84ffff50",
"hoverBorderColor": "#84ffff50",
"hoverSeparatorColor": "#191A21",
"focusedBorderColor": "#84ffff50",
"pressedBackground": "#84ffff50",
"pressedBorderColor": "#84ffff50"
},
"Autocomplete": {
"selectionBackground": "#232632"
},
"Borders.ContrastBorderColor": "#0F111A",
"Borders.color": "#0F111A",
"Button": {
"arc": 0,
"background": "#0F111A",
"default": {
"endBackground": "#1A1C25",
"endBorderColor": "#1A1C25",
"foreground": "#FFFFFF",
"focusColor": "#84ffff",
"focusedBorderColor": "#84ffff",
"shadowColor": "#1A1C25",
"startBackground": "#1A1C25",
"startBorderColor": "#1A1C25"
},
"disabledBorderColor": "#191A21",
"disabledText": "#464B5D",
"endBackground": "#191A21",
"endBorderColor": "#191A21",
"focus": "#1F2233",
"focusedBorderColor": "#84ffff",
"foreground": "#4B526D",
"highlight": "#FFFFFF",
"mt.background": "#191A21",
"mt.foreground": "#4B526D",
"mt.selectedForeground": "#FFFFFF",
"mt.selection.color1": "#1A1C25",
"mt.selection.color2": "#1A1C25",
"startBackground": "#191A21",
"startBorderColor": "#191A21",
"shadowColor": "#191A21",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#0F111A",
"Tooltip.background": "#090B10"
},
"Content.background": "#090B10",
"CheckBox": {
"background": "#0F111A",
"disabledText": "#464B5D",
"foreground": "#8F93A2",
"select": "#84ffff"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#4B526D",
"acceleratorSelectionForeground": "#4B526D",
"background": "#0F111A",
"disabledBackground": "#0F111A",
"disabledForeground": "#464B5D",
"foreground": "#8F93A2",
"selectionBackground": "#232632",
"selectionForeground": "#FFFFFF"
},
"ColorChooser": {
"background": "#0F111A",
"foreground": "#8F93A2",
"swatchesDefaultRecentColor": "#8F93A2"
},
"ComboBoxButton.background": "#191A21",
"ComboBox": {
"ArrowButton": {
"background": "#191A21",
"disabledIconColor": "#464B5D",
"iconColor": "#8F93A2",
"nonEditableBackground": "#0F111A"
},
"background": "#090B10",
"buttonBackground": "#191A21",
"disabledForeground": "#464B5D",
"foreground": "#8F93A2",
"modifiedItemForeground": "#84ffff",
"nonEditableBackground": "#181A1F",
"padding": "5,5,5,5",
"selectionBackground": "#1A1C25",
"selectionForeground": "#FFFFFF"
},
"ComboPopup.border": "#0F111A",
"CompletionPopup": {
"background": "#181A1F",
"foreground": "#8F93A2",
"infoForeground": "#4B526D",
"matchForeground": "#84ffff",
"matchSelectionForeground": "#84ffff",
"nonFocusedState": "false",
"selectedGrayedForeground": "#FFFFFF",
"selectionGrayForeground": "#FFFFFF",
"selectionInactiveInfoForeground": "#4B526D",
"selectionInactiveBackground": "#23263250",
"selectionBackground": "#23263280",
"selectionForeground": "#FFFFFF",
"selectionInfoForeground": "#FFFFFF"
},
"Component": {
"arc": 4,
"borderColor": "#1F2233",
"disabledBorderColor": "#191A21",
"focusColor": "#84ffff",
"focusedBorderColor": "#84ffff",
"hoverIconColor": "#84ffff",
"infoForeground": "#4B526D",
"iconColor": "#8F93A2"
},
"control": "#0F111A",
"controlText": "#4B526D",
"Counter": {
"background": "#84ffff",
"foreground": "#FFFFFF"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#4B526D",
"changedValueForeground": "#84ffff",
"errorMessageForeground": "#f07178",
"evaluatingExpressionForeground": "#4B526D",
"exceptionForeground": "#ffcb6b",
"modifyingValueForeground": "#84ffff",
"valueForeground": "#84ffff"
}
},
"DebuggerTabs": {
"selectedBackground": "#1F2233",
"underlinedTabBackground": "#1F2233"
},
"DebuggerPopup": {
"borderColor": "#1F2233"
},
"DefaultTabs": {
"background": "#0F111A",
"borderColor": "#0F111A",
"hoverBackground": "#1A1C25",
"hoverColor": "#090B10",
"hoverMaskColor": "#1F2233",
"inactiveColoredFileBackground": "#191A21",
"inactiveUnderlineColor": "#464B5D",
"inactiveMaskColor": "#090B10",
"underlineColor": "#84ffff",
"underlinedTabBackground": "#1A1C25"
},
"Desktop.background": "#0F111A",
"DialogWrapper.southPanelBackground": "#0F111A",
"DialogWrapper.southPanelDivider": "#0F111A",
"DragAndDrop": {
"areaBackground": "#0F111A",
"areaBorderColor": "#0F111A",
"areaForeground": "#8F93A2"
},
"Editor": {
"background": "#090B10",
"foreground": "#8F93A2",
"shortcutForeground": "#4B526D"
},
"EditorPane": {
"background": "#090B10",
"caretForeground": "#84ffff",
"foreground": "#8F93A2",
"inactiveBackground": "#0F111A",
"inactiveForeground": "#464B5D",
"selectionBackground": "#232632",
"selectionForeground": "#FFFFFF"
},
"EditorTabs": {
"borderColor": "#181A1F",
"hoverColor": "#1F2233",
"hoverMaskColor": "#1F2233",
"inactiveMaskColor": "#0F111A",
"inactiveColoredFileBackground": "#0F111A2",
"inactiveUnderlineColor": "#464B5D",
"selectedForeground": "#8F93A2",
"selectedBackground": "#1A1C25",
"underlineColor": "#84ffff",
"underlinedTabBackground": "#1A1C25"
},
"EditorGroupsTabs": {
"background": "#0F111A",
"borderColor": "#181A1F",
"hoverBackground": "#1F2233",
"hoverColor": "#1F2233",
"inactiveUnderlineColor": "#84ffff",
"underlineColor": "#84ffff",
"underlinedTabBackground": "#1A1C25",
"underlinedTabForeground": "#8F93A2"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#292D3E",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#0F111A",
"FormattedTextField": {
"background": "#090B10",
"caretForeground": "#84ffff",
"foreground": "#8F93A2",
"inactiveBackground": "#191A21",
"inactiveForeground": "#464B5D",
"selectionForeground": "#FFFFFF",
"selectionBackground": "#1A1C25"
},
"Group": {
"disabledSeparatorColor": "#0F111A",
"separatorColor": "#0F111A"
},
"GutterTooltip": {
"infoForeground": "#8F93A2",
"lineSeparatorColor": "#0F111A"
},
"HeaderColor": {
"active": "#0F111A",
"inactive": "#090B10"
},
"HelpTooltip": {
"background": "#0F111A",
"borderColor": "#0F111A",
"foreground": "#8F93A2",
"infoForeground": "#4B526D",
"shortcutForeground": "#4B526D"
},
"Hyperlink.linkColor": "#84ffff",
"inactiveCaption": "#181A1F",
"inactiveCaptionBorder": "#0F111A",
"inactiveCaptionText": "#4B526D",
"info": "#4B526D",
"infoText": "#4B526D",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#0F111A",
"InplaceRefactoringPopup": {
"borderColor": "#0F111A"
},
"InternalFrame": {
"activeTitleForeground": "#8F93A2",
"background": "#0F111A",
"inactiveTitleForeground": "#4B526D"
},
"Label": {
"background": "#0F111A",
"disabledForeground": "#464B5D",
"disabledShadow": "#0F111A",
"disabledText": "#464B5D",
"foreground": "#8F93A2",
"infoForeground": "#4B526D",
"selectedForeground": "#FFFFFF"
},
"Link": {
"activeForeground": "#84ffff",
"hoverForeground": "#84ffff",
"pressedForeground": "#84ffff",
"secondaryForeground": "#4B526D",
"visitedForeground": "#84ffff"
},
"link.foreground": "#84ffff",
"List": {
"background": "#181A1F",
"foreground": "#8F93A2",
"selectionBackground": "#23263250",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#717CB430"
},
"material": {
"background": "#0F111A",
"branchColor": "#8F93A2",
"contrast": "#090B10",
"foreground": "#8F93A2",
"mergeCommits": "#191A21",
"primaryColor": "#4B526D",
"selectionForeground": "#FFFFFF",
"tab.backgroundColor": "#0F111A",
"tab.borderColor": "#84ffff",
"tagColor": "#4B526D"
},
"MemoryIndicator": {
"allocatedBackground": "#181A1F",
"usedColor": "#1F2233",
"usedBackground": "#1F2233"
},
"Menu": {
"acceleratorForeground": "#4B526D",
"acceleratorSelectionForeground": "#FFFFFF",
"background": "#0F111A",
"border": "4,2,4,2",
"borderColor": "#181A1F",
"disabledBackground": "#181A1F",
"disabledForeground": "#464B5D",
"foreground": "#8F93A2",
"selectionBackground": "#232632",
"selectionForeground": "#FFFFFF",
"separatorColor": "#0F111A"
},
"MenuBar": {
"background": "#090B10",
"borderColor": "#0F111A",
"disabledBackground": "#0F111A",
"disabledForeground": "#464B5D",
"foreground": "#8F93A2",
"highlight": "#0F111A",
"selectionBackground": "#232632",
"selectionForeground": "#FFFFFF",
"shadow": "#090B10"
},
"MenuItem": {
"acceleratorForeground": "#4B526D",
"acceleratorSelectionForeground": "#FFFFFF",
"border": "4,2,4,2",
"background": "#0F111A",
"disabledBackground": "#0F111A",
"disabledForeground": "#464B5D",
"foreground": "#8F93A2",
"selectionBackground": "#232632",
"selectionForeground": "#FFFFFF"
},
"NavBar": {
"arrowColor": "#8F93A2",
"borderColor": "#0F111A"
},
"NewClass": {
"Panel": {
"background": "#0F111A"
},
"SearchField": {
"background": "#090B10"
}
},
"NewPSD.warning": "#84ffff",
"Notification": {
"background": "#090B10",
"borderColor": "#090B10",
"errorBackground": "#090B10",
"errorBorderColor": "#090B10",
"foreground": "#8F93A2",
"MoreButton": {
"background": "#191A21",
"foreground": "#8F93A2",
"innerBorderColor": "#191A21"
},
"ToolWindow": {
"errorBackground": "#090B10",
"errorBorderColor": "#090B10",
"informativeBackground": "#090B10",
"informativeBorderColor": "#090B10",
"warningBackground": "#090B10",
"warningBorderColor": "#090B10"
}
},
"OnePixelDivider.background": "#0F111A",
"OptionPane": {
"background": "#0F111A",
"foreground": "#8F93A2",
"messageForeground": "#8F93A2"
},
"Outline": {
"color": "#191A21",
"focusedColor": "#84ffff",
"disabledColor": "#464B5D"
},
"Panel": {
"background": "#0F111A",
"foreground": "#8F93A2"
},
"ParameterInfo": {
"background": "#181A1F",
"borderColor": "#1A1C25",
"currentOverloadBackground": "#1A1C25",
"currentParameterForeground": "#84ffff",
"disabledForeground": "#464B5D",
"foreground": "#8F93A2",
"infoForeground": "#4B526D",
"lineSeparatorColor": "#1A1C25"
},
"PasswordField": {
"background": "#090B10",
"capsLockIconColor": "#84ffff",
"caretForeground": "#84ffff",
"foreground": "#8F93A2",
"inactiveForeground": "#464B5D",
"selectionBackground": "#1A1C25",
"selectionForeground": "#FFFFFF"
},
"Plugins": {
"background": "#0F111A",
"disabledForeground": "#464B5D",
"eapTagBackground": "#1F2233",
"lightSelectionBackground": "#232632",
"paidTagBackground": "#1F2233",
"selectionBackground": "#232632",
"tagForeground": "#84ffff",
"tagBackground": "#1F2233",
"trialTagBackground": "#1F2233",
"Button": {
"installBackground": "#191A21",
"installBorderColor": "#191A21",
"installForeground": "#8F93A2",
"installFocusedBackground": "#1F2233",
"installFillForeground": "#464B5D",
"installFillBackground": "#191A21",
"updateBackground": "#191A21",
"updateBorderColor": "#191A21",
"updateForeground": "#8F93A2"
},
"SearchField": {
"background": "#090B10",
"borderColor": "#0F111A"
},
"SectionHeader": {
"background": "#181A1F",
"foreground": "#8F93A2"
},
"Tab": {
"hoverBackground": "#1A1C25",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#1A1C25"
}
},
"Popup": {
"Advertiser": {
"background": "#0F111A",
"borderColor": "#0F111A",
"foreground": "#84ffff"
},
"borderColor": "#090B10",
"inactiveBorderColor": "#0F111A",
"innerBorderColor": "#181A1F",
"Header": {
"activeBackground": "#0F111A",
"inactiveBackground": "#090B10"
},
"paintBorder": true,
"separatorForeground": "#8F93A2",
"separatorColor": "#181A1F",
"Toolbar": {
"Floating.background": "#090B10",
"background": "#090B10",
"borderColor": "#090B10"
}
},
"PopupMenu": {
"background": "#0F111A",
"border": "2,0,2,0",
"foreground": "#8F93A2",
"translucentBackground": "#0F111A"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#0F111A",
"foreground": "#84ffff",
"indeterminateEndColor": "#84ffff",
"indeterminateStartColor": "#84ffff",
"progressColor": "#84ffff",
"selectionBackground": "#1F2233",
"trackColor": "#1F2233"
},
"PsiViewer": {
"referenceHighlightColor": "#84ffff"
},
"RadioButton": {
"background": "#0F111A",
"disabledText": "#464B5D",
"foreground": "#8F93A2"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#4B526D",
"acceleratorSelectionForeground": "#4B526D",
"background": "#0F111A",
"disabledBackground": "#0F111A",
"disabledForeground": "#464B5D",
"foreground": "#8F93A2",
"selectionBackground": "#232632",
"selectionForeground": "#FFFFFF"
},
"ScrollBar": {
"background": "#0F111A",
"hoverThumbBorderColor": "#84ffff",
"hoverThumbColor": "#84ffff",
"hoverTrackColor": "#0F111A30",
"Mac": {
"hoverThumbBorderColor": "#84ffff",
"hoverThumbColor": "#84ffff",
"hoverTrackColor": "#0F111A30",
"thumbBorderColor": "#84ffff70",
"thumbColor": "#84ffff70",
"trackColor": "#0F111A30",
"Transparent": {
"hoverThumbBorderColor": "#84ffff",
"hoverThumbColor": "#84ffff",
"hoverTrackColor": "#0F111A30",
"thumbBorderColor": "#84ffff70",
"thumbColor": "#84ffff70",
"trackColor": "#0F111A30"
}
},
"thumb": "#1F2233",
"thumbBorderColor": "#84ffff70",
"thumbColor": "#84ffff70",
"trackColor": "#0F111A30",
"Transparent": {
"hoverThumbBorderColor": "#84ffff",
"hoverThumbColor": "#84ffff",
"hoverTrackColor": "#0F111A30",
"thumbBorderColor": "#84ffff70",
"thumbColor": "#84ffff70",
"trackColor": "#0F111A30"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#090B10",
"foreground": "#4B526D"
},
"Header": {
"background": "#0F111A"
},
"List": {
"separatorForeground": "#4B526D",
"separatorColor": "#0F111A"
},
"SearchField": {
"background": "#0F111A",
"borderColor": "#090B10",
"infoForeground": "#4B526D"
},
"Tab": {
"active.foreground": "#FFFFFF",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#1F2233"
}
},
"SearchMatch": {
"endBackground": "#84ffff",
"startBackground": "#84ffff"
},
"SearchField.errorBackground": "#090B10",
"Separator": {
"background": "#181A1F",
"foreground": "#181A1F",
"separatorColor": "#181A1F"
},
"SidePanel": {
"background": "#090B10"
},
"Slider": {
"background": "#0F111A",
"buttonBorderColor": "#84ffff",
"buttonColor": "#84ffff",
"foreground": "#8F93A2",
"majorTickLength": 6,
"tickColor": "#181A1F",
"trackColor": "#1A1C25",
"trackWidth": 7,
"thumb": "#84ffff"
},
"SpeedSearch": {
"background": "#1F2233",
"borderColor": "#0F111A",
"foreground": "#8F93A2",
"errorForeground": "#8F93A2"
},
"Spinner": {
"background": "#0F111A",
"border": "3,3,3,3",
"foreground": "#8F93A2",
"selectionForeground": "#FFFFFF"
},
"SplitPane": {
"background": "#0F111A",
"highlight": "#090B10"
},
"SplitPaneDivider.draggingColor": "#181A1F",
"StatusBar": {
"borderColor": "#0F111A"
},
"TabbedPane": {
"background": "#0F111A",
"contentAreaColor": "#1F2233",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#0F111A",
"disabledForeground": "#464B5D",
"disabledUnderlineColor": "#464B5D",
"focus": "#1A1C25",
"focusColor": "#1A1C25",
"fontSizeOffset": 0,
"foreground": "#8F93A2",
"highlight": "#0F111A",
"hoverColor": "#1F2233",
"labelShift": 0,
"selectedForeground": "#FFFFFF",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#84ffff"
},
"TabbedPane.mt.tab.background": "#090B10",
"Table": {
"background": "#0F111A",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#84ffff",
"dropLineShortColor": "#84ffff",
"focusCellBackground": "#1A1C25",
"focusCellForeground": "#FFFFFF",
"foreground": "#8F93A2",
"gridColor": "#0F111A",
"highlightOuter": "#1A1C25",
"lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#4B526D",
"lightSelectionInactiveBackground": "#181A1F",
"selectionBackground": "#1A1C25",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#1A1C25",
"selectionInactiveForeground": "#FFFFFF",
"sortIconColor": "#8F93A2",
"stripeColor": "#090B10"
},
"TableHeader": {
"background": "#0F111A",
"borderColor": "#0F111A",
"bottomSeparatorColor": "#181A1F",
"cellBorder": "4,0,4,0",
"disabledForeground": "#464B5D",
"foreground": "#8F93A2",
"focusCellBackground": "#1A1C25",
"focusCellForeground": "#FFFFFF",
"height": 25,
"separatorColor": "#181A1F"
},
"text": "#4B526D",
"textInactiveText": "#4B526D",
"textText": "#4B526D",
"TextArea": {
"background": "#090B10",
"caretForeground": "#84ffff",
"foreground": "#8F93A2",
"inactiveForeground": "#464B5D",
"selectionBackground": "#1A1C25",
"selectionForeground": "#FFFFFF"
},
"TextField": {
"background": "#090B10",
"caretForeground": "#84ffff",
"foreground": "#8F93A2",
"inactiveForeground": "#464B5D",
"selectionBackground": "#1A1C25",
"selectionForeground": "#FFFFFF"
},
"TextPane": {
"background": "#090B10",
"caretForeground": "#84ffff",
"foreground": "#8F93A2",
"inactiveForeground": "#464B5D",
"selectionBackground": "#1A1C25",
"selectionForeground": "#FFFFFF"
},
"TitlePane": {
"background": "#090B10",
"Button.hoverBackground": "#1F2233",
"inactiveBackground": "#0F111A",
"infoForeground": "#4B526D",
"inactiveInfoForeground": "#4B526D"
},
"TitledBorder.titleColor": "#8F93A2",
"ToggleButton": {
"borderColor": "#191A21",
"buttonColor": "#8F93A2",
"disabledText": "#464B5D",
"foreground": "#8F93A2",
"offForeground": "#0F111A",
"offBackground": "#0F111A",
"onBackground": "#84ffff",
"onForeground": "#84ffff"
},
"ToolBar": {
"background": "#090B10",
"borderHandleColor": "#4B526D",
"floatingForeground": "#4B526D",
"foreground": "#8F93A2"
},
"ToolTip": {
"Actions.background": "#0F111A",
"Actions.infoForeground": "#4B526D",
"background": "#0F111A",
"borderColor": "#1F2233",
"foreground": "#8F93A2",
"infoForeground": "#4B526D",
"separatorColor": "#0F111A",
"shortcutForeground": "#4B526D"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#1A1C25",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#090B10"
},
"Header": {
"background": "#0F111A",
"borderColor": "#181A1F",
"inactiveBackground": "#0F111A"
},
"HeaderCloseButton": {
"background": "#0F111A"
},
"HeaderTab": {
"hoverBackground": "#1F2233",
"hoverInactiveBackground": "#181A1F",
"inactiveUnderlineColor": "#84ffff",
"selectedBackground": "#090B10",
"selectedInactiveBackground": "#090B10",
"underlineColor": "#84ffff",
"underlinedTabBackground": "#1F2233",
"underlinedTabInactiveBackground": "#181A1F"
}
},
"Tree": {
"background": "#090B10",
"foreground": "#4B526D",
"hash": "#0F111A",
"modifiedItemForeground": "#84ffff",
"rowHeight": 28,
"selectionBackground": "#717CB430",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#717CB430",
"textBackground": "#090B10"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#0F111A",
"ColorPicker.background": "#0F111A",
"ColorPicker.foreground": "#8F93A2",
"Component.borderColor": "#0F111A",
"Component.background": "#0F111A",
"Component.foreground": "#8F93A2",
"Connector.borderColor": "#0F111A",
"Connector.hoverBorderColor": "#1F2233",
"Canvas.background": "#090B10",
"highStroke.foreground": "#8F93A2",
"Label.foreground": "#4B526D",
"List.selectionBackground": "#717CB430",
"Panel.borderColor": "#0F111A",
"Panel.background": "#0F111A",
"percent.foreground": "#8F93A2",
"Placeholder.background": "#0F111A",
"Placeholder.borderColor": "#0F111A",
"Placeholder.foreground": "#8F93A2",
"Placeholder.selectedForeground": "#FFFFFF",
"Preview.background": "#0F111A",
"stroke.acceleratorForeground": "#4B526D"
},
"ValidationTooltip": {
"errorBackground": "#090B10",
"errorBorderColor": "#090B10",
"warningBackground": "#090B10",
"warningBorderColor": "#090B10"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#0F111A"
},
"GitCommits": {
"graphColor": "#1F2233"
},
"GitLog": {
"localBranchIconColor": "#84ffff",
"otherIconColor": "#4B526D",
"remoteBranchIconColor": "#8F93A2",
"tagIconColor": "#4B526D"
},
"HgLog": {
"branchIconColor": "#84ffff",
"bookmarkIconColor": "#FFFFFF",
"closedBranchIconColor": "#464B5D",
"localTagIconColor": "#4B526D",
"mqTagIconColor": "#4B526D",
"tagIconColor": "#4B526D",
"tipIconColor": "#4B526D"
},
"Log": {
"Commit.unmatchedForeground": "#4B526D",
"Commit.currentBranchBackground": "#181A1F"
},
"RefLabel": {
"foreground": "#FFFFFF",
"backgroundBase": "#1F2233"
}
},
"Viewport": {
"background": "#090B10",
"foreground": "#8F93A2"
},
"WelcomeScreen": {
"background": "#0F111A",
"borderColor": "#0F111A",
"captionBackground": "#090B10",
"captionForeground": "#8F93A2",
"footerBackground": "#090B10",
"footerForeground": "#8F93A2",
"headerBackground": "#0F111A",
"headerForeground": "#8F93A2",
"separatorColor": "#0F111A",
"Projects": {
"background": "#181A1F",
"selectionBackground": "#232632",
"selectionInactiveBackground": "#181A1F"
}
},
"window": "#090B10",
"windowBorder": "#0F111A",
"windowText": "#4B526D",
"Window.border": "#0F111A"
},
"icons": {
"ColorPalette": {
"#43494A": "#090B10",
"#6B6B6B": "#4B526D",
"#A7A7A7": "#0F111A",
"#3D6185": "#84ffff",
"#466D94": "#84ffff",
"#3C3F41": "#0F111A",
"#545556": "#464B5D",
"#606060": "#464B5D",
"#9AA7B0": "#8F93A2",
"#675133": "#84ffff",
"Actions.Blue": "#82aaff",
"Actions.Green": "#c3e88d",
"Actions.Grey": "#4B526D",
"Actions.GreyInline": "#717CB4",
"Actions.GreyInline.Dark": "#8F93A2",
"Actions.Red": "#f07178",
"Actions.Yellow": "#ffcb6b",
"Checkbox.Background.Default": "#090B10",
"Checkbox.Background.Default.Dark": "#090B10",
"Checkbox.Background.Disabled": "#292D3E",
"Checkbox.Background.Disabled.Dark": "#292D3E",
"Checkbox.Border.Default": "#0F111A",
"Checkbox.Border.Default.Dark": "#0F111A",
"Checkbox.Border.Disabled": "#464B5D",
"Checkbox.Border.Disabled.Dark": "#464B5D",
"Checkbox.Focus.Thin.Default": "#84ffff",
"Checkbox.Focus.Thin.Default.Dark": "#84ffff",
"Checkbox.Focus.Wide": "#84ffff",
"Checkbox.Focus.Wide.Dark": "#84ffff",
"Checkbox.Foreground.Disabled": "#464B5D",
"Checkbox.Foreground.Disabled.Dark": "#464B5D",
"Checkbox.Background.Selected": "#84ffff",
"Checkbox.Background.Selected.Dark": "#0F111A",
"Checkbox.Border.Selected": "#84ffff",
"Checkbox.Border.Selected.Dark": "#84ffff",
"Checkbox.Foreground.Selected": "#84ffff",
"Checkbox.Foreground.Selected.Dark": "#84ffff",
"Checkbox.Focus.Thin.Selected": "#8F93A2",
"Checkbox.Focus.Thin.Selected.Dark": "#8F93A2",
"Objects.Grey": "#717CB4",
"Objects.Blue": "#82aaff",
"Objects.RedStatus": "#f07178",
"Objects.Red": "#f07178",
"Objects.Pink": "#c792ea",
"Objects.Yellow": "#ffcb6b",
"Objects.Green": "#c3e88d",
"Objects.Purple": "#c792ea",
"Objects.BlackText": "#8F93A2",
"Objects.YellowDark": "#f78c6c",
"Objects.GreenAndroid": "#c3e88d"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "Material Deep Ocean",
"dark": true,
"author": "Mallowigi",
"editorScheme": "/colors/Material Deep Ocean.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#4B526D",
"background": "#0F111A",
"borderColor": "#0F111A",
"disabledBackground": "#292D3E",
"disabledForeground": "#464B5D",
"disabledText": "#464B5D",
"focusColor": "#1F2233",
"focusedBorderColor": "#84ffff",
"foreground": "#8F93A2",
"inactiveBackground": "#292D3E",
"inactiveForeground": "#4B526D",
"infoForeground": "#4B526D",
"selectionBackground": "#232632",
"selectionBackgroundInactive": "#181A1F",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#181A1F",
"separatorColor": "#0F111A"
},
"activeCaption": "#0F111A",
"ActionButton": {
"hoverBackground": "#84ffff50",
"hoverBorderColor": "#84ffff50",
"hoverSeparatorColor": "#191A21",
"focusedBorderColor": "#84ffff50",
"pressedBackground": "#84ffff50",
"pressedBorderColor": "#84ffff50"
},
"Autocomplete": {
"selectionBackground": "#232632"
},
"Borders.ContrastBorderColor": "#0F111A",
"Borders.color": "#0F111A",
"Button": {
"arc": 0,
"background": "#0F111A",
"default": {
"endBackground": "#1A1C25",
"endBorderColor": "#1A1C25",
"foreground": "#FFFFFF",
"focusColor": "#84ffff",
"focusedBorderColor": "#84ffff",
"shadowColor": "#1A1C25",
"startBackground": "#1A1C25",
"startBorderColor": "#1A1C25"
},
"disabledBorderColor": "#191A21",
"disabledText": "#464B5D",
"endBackground": "#191A21",
"endBorderColor": "#191A21",
"focus": "#1F2233",
"focusedBorderColor": "#84ffff",
"foreground": "#4B526D",
"highlight": "#FFFFFF",
"mt.background": "#191A21",
"mt.foreground": "#4B526D",
"mt.selectedForeground": "#FFFFFF",
"mt.selection.color1": "#1A1C25",
"mt.selection.color2": "#1A1C25",
"startBackground": "#191A21",
"startBorderColor": "#191A21",
"shadowColor": "#191A21",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#0F111A",
"Tooltip.background": "#090B10"
},
"Content.background": "#090B10",
"CheckBox": {
"background": "#0F111A",
"disabledText": "#464B5D",
"foreground": "#8F93A2",
"select": "#84ffff"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#4B526D",
"acceleratorSelectionForeground": "#4B526D",
"background": "#0F111A",
"disabledBackground": "#0F111A",
"disabledForeground": "#464B5D",
"foreground": "#8F93A2",
"selectionBackground": "#232632",
"selectionForeground": "#FFFFFF"
},
"ColorChooser": {
"background": "#0F111A",
"foreground": "#8F93A2",
"swatchesDefaultRecentColor": "#8F93A2"
},
"ComboBoxButton.background": "#191A21",
"ComboBox": {
"ArrowButton": {
"background": "#191A21",
"disabledIconColor": "#464B5D",
"iconColor": "#8F93A2",
"nonEditableBackground": "#0F111A"
},
"background": "#0F111A",
"buttonBackground": "#191A21",
"disabledForeground": "#464B5D",
"foreground": "#8F93A2",
"modifiedItemForeground": "#84ffff",
"nonEditableBackground": "#181A1F",
"padding": "5,5,5,5",
"selectionBackground": "#1A1C25",
"selectionForeground": "#FFFFFF"
},
"ComboPopup.border": "#0F111A",
"CompletionPopup": {
"background": "#181A1F",
"foreground": "#8F93A2",
"infoForeground": "#4B526D",
"matchForeground": "#84ffff",
"matchSelectionForeground": "#84ffff",
"nonFocusedState": "false",
"selectedGrayedForeground": "#FFFFFF",
"selectionGrayForeground": "#FFFFFF",
"selectionInactiveInfoForeground": "#4B526D",
"selectionInactiveBackground": "#23263250",
"selectionBackground": "#23263280",
"selectionForeground": "#FFFFFF",
"selectionInfoForeground": "#FFFFFF"
},
"Component": {
"arc": 4,
"borderColor": "#1F2233",
"disabledBorderColor": "#191A21",
"focusColor": "#84ffff",
"focusedBorderColor": "#84ffff",
"hoverIconColor": "#84ffff",
"infoForeground": "#4B526D",
"iconColor": "#8F93A2"
},
"control": "#0F111A",
"controlText": "#4B526D",
"Counter": {
"background": "#84ffff",
"foreground": "#FFFFFF"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#4B526D",
"changedValueForeground": "#84ffff",
"errorMessageForeground": "#f07178",
"evaluatingExpressionForeground": "#4B526D",
"exceptionForeground": "#ffcb6b",
"modifyingValueForeground": "#84ffff",
"valueForeground": "#84ffff"
}
},
"DebuggerTabs": {
"selectedBackground": "#1F2233",
"underlinedTabBackground": "#1F2233"
},
"DebuggerPopup": {
"borderColor": "#1F2233"
},
"DefaultTabs": {
"background": "#0F111A",
"borderColor": "#0F111A",
"hoverBackground": "#1A1C25",
"hoverColor": "#0F111A",
"hoverMaskColor": "#1F2233",
"inactiveColoredFileBackground": "#191A21",
"inactiveUnderlineColor": "#464B5D",
"inactiveMaskColor": "#0F111A",
"underlineColor": "#84ffff",
"underlinedTabBackground": "#1A1C25"
},
"Desktop.background": "#0F111A",
"DialogWrapper.southPanelBackground": "#0F111A",
"DialogWrapper.southPanelDivider": "#0F111A",
"DragAndDrop": {
"areaBackground": "#0F111A",
"areaBorderColor": "#0F111A",
"areaForeground": "#8F93A2"
},
"Editor": {
"background": "#0F111A",
"foreground": "#8F93A2",
"shortcutForeground": "#4B526D"
},
"EditorPane": {
"background": "#0F111A",
"caretForeground": "#84ffff",
"foreground": "#8F93A2",
"inactiveBackground": "#0F111A",
"inactiveForeground": "#464B5D",
"selectionBackground": "#232632",
"selectionForeground": "#FFFFFF"
},
"EditorTabs": {
"borderColor": "#181A1F",
"hoverColor": "#1F2233",
"hoverMaskColor": "#1F2233",
"inactiveMaskColor": "#0F111A",
"inactiveColoredFileBackground": "#0F111A2",
"inactiveUnderlineColor": "#464B5D",
"selectedForeground": "#8F93A2",
"selectedBackground": "#1A1C25",
"underlineColor": "#84ffff",
"underlinedTabBackground": "#1A1C25"
},
"EditorGroupsTabs": {
"background": "#0F111A",
"borderColor": "#181A1F",
"hoverBackground": "#1F2233",
"hoverColor": "#1F2233",
"inactiveUnderlineColor": "#84ffff",
"underlineColor": "#84ffff",
"underlinedTabBackground": "#1A1C25",
"underlinedTabForeground": "#8F93A2"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#292D3E",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#0F111A",
"FormattedTextField": {
"background": "#0F111A",
"caretForeground": "#84ffff",
"foreground": "#8F93A2",
"inactiveBackground": "#191A21",
"inactiveForeground": "#464B5D",
"selectionForeground": "#FFFFFF",
"selectionBackground": "#1A1C25"
},
"Group": {
"disabledSeparatorColor": "#0F111A",
"separatorColor": "#0F111A"
},
"GutterTooltip": {
"infoForeground": "#8F93A2",
"lineSeparatorColor": "#0F111A"
},
"HeaderColor": {
"active": "#0F111A",
"inactive": "#090B10"
},
"HelpTooltip": {
"background": "#0F111A",
"borderColor": "#0F111A",
"foreground": "#8F93A2",
"infoForeground": "#4B526D",
"shortcutForeground": "#4B526D"
},
"Hyperlink.linkColor": "#84ffff",
"inactiveCaption": "#181A1F",
"inactiveCaptionBorder": "#0F111A",
"inactiveCaptionText": "#4B526D",
"info": "#4B526D",
"infoText": "#4B526D",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#0F111A",
"InplaceRefactoringPopup": {
"borderColor": "#0F111A"
},
"InternalFrame": {
"activeTitleForeground": "#8F93A2",
"background": "#0F111A",
"inactiveTitleForeground": "#4B526D"
},
"Label": {
"background": "#0F111A",
"disabledForeground": "#464B5D",
"disabledShadow": "#0F111A",
"disabledText": "#464B5D",
"foreground": "#8F93A2",
"infoForeground": "#4B526D",
"selectedForeground": "#FFFFFF"
},
"Link": {
"activeForeground": "#84ffff",
"hoverForeground": "#84ffff",
"pressedForeground": "#84ffff",
"secondaryForeground": "#4B526D",
"visitedForeground": "#84ffff"
},
"link.foreground": "#84ffff",
"List": {
"background": "#181A1F",
"foreground": "#8F93A2",
"selectionBackground": "#23263250",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#717CB430"
},
"material": {
"background": "#0F111A",
"branchColor": "#8F93A2",
"contrast": "#090B10",
"foreground": "#8F93A2",
"mergeCommits": "#191A21",
"primaryColor": "#4B526D",
"selectionForeground": "#FFFFFF",
"tab.backgroundColor": "#0F111A",
"tab.borderColor": "#84ffff",
"tagColor": "#4B526D"
},
"MemoryIndicator": {
"allocatedBackground": "#181A1F",
"usedColor": "#1F2233",
"usedBackground": "#1F2233"
},
"Menu": {
"acceleratorForeground": "#4B526D",
"acceleratorSelectionForeground": "#FFFFFF",
"background": "#0F111A",
"border": "4,2,4,2",
"borderColor": "#181A1F",
"disabledBackground": "#181A1F",
"disabledForeground": "#464B5D",
"foreground": "#8F93A2",
"selectionBackground": "#232632",
"selectionForeground": "#FFFFFF",
"separatorColor": "#0F111A"
},
"MenuBar": {
"background": "#0F111A",
"borderColor": "#0F111A",
"disabledBackground": "#0F111A",
"disabledForeground": "#464B5D",
"foreground": "#8F93A2",
"highlight": "#0F111A",
"selectionBackground": "#232632",
"selectionForeground": "#FFFFFF",
"shadow": "#0F111A"
},
"MenuItem": {
"acceleratorForeground": "#4B526D",
"acceleratorSelectionForeground": "#FFFFFF",
"border": "4,2,4,2",
"background": "#0F111A",
"disabledBackground": "#0F111A",
"disabledForeground": "#464B5D",
"foreground": "#8F93A2",
"selectionBackground": "#232632",
"selectionForeground": "#FFFFFF"
},
"NavBar": {
"arrowColor": "#8F93A2",
"borderColor": "#0F111A"
},
"NewClass": {
"Panel": {
"background": "#0F111A"
},
"SearchField": {
"background": "#0F111A"
}
},
"NewPSD.warning": "#84ffff",
"Notification": {
"background": "#090B10",
"borderColor": "#090B10",
"errorBackground": "#090B10",
"errorBorderColor": "#090B10",
"foreground": "#8F93A2",
"MoreButton": {
"background": "#191A21",
"foreground": "#8F93A2",
"innerBorderColor": "#191A21"
},
"ToolWindow": {
"errorBackground": "#090B10",
"errorBorderColor": "#090B10",
"informativeBackground": "#090B10",
"informativeBorderColor": "#090B10",
"warningBackground": "#090B10",
"warningBorderColor": "#090B10"
}
},
"OnePixelDivider.background": "#0F111A",
"OptionPane": {
"background": "#0F111A",
"foreground": "#8F93A2",
"messageForeground": "#8F93A2"
},
"Outline": {
"color": "#191A21",
"focusedColor": "#84ffff",
"disabledColor": "#464B5D"
},
"Panel": {
"background": "#0F111A",
"foreground": "#8F93A2"
},
"ParameterInfo": {
"background": "#181A1F",
"borderColor": "#1A1C25",
"currentOverloadBackground": "#1A1C25",
"currentParameterForeground": "#84ffff",
"disabledForeground": "#464B5D",
"foreground": "#8F93A2",
"infoForeground": "#4B526D",
"lineSeparatorColor": "#1A1C25"
},
"PasswordField": {
"background": "#0F111A",
"capsLockIconColor": "#84ffff",
"caretForeground": "#84ffff",
"foreground": "#8F93A2",
"inactiveForeground": "#464B5D",
"selectionBackground": "#1A1C25",
"selectionForeground": "#FFFFFF"
},
"Plugins": {
"background": "#0F111A",
"disabledForeground": "#464B5D",
"eapTagBackground": "#1F2233",
"lightSelectionBackground": "#232632",
"paidTagBackground": "#1F2233",
"selectionBackground": "#232632",
"tagForeground": "#84ffff",
"tagBackground": "#1F2233",
"trialTagBackground": "#1F2233",
"Button": {
"installBackground": "#191A21",
"installBorderColor": "#191A21",
"installForeground": "#8F93A2",
"installFocusedBackground": "#1F2233",
"installFillForeground": "#464B5D",
"installFillBackground": "#191A21",
"updateBackground": "#191A21",
"updateBorderColor": "#191A21",
"updateForeground": "#8F93A2"
},
"SearchField": {
"background": "#0F111A",
"borderColor": "#0F111A"
},
"SectionHeader": {
"background": "#181A1F",
"foreground": "#8F93A2"
},
"Tab": {
"hoverBackground": "#1A1C25",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#1A1C25"
}
},
"Popup": {
"Advertiser": {
"background": "#0F111A",
"borderColor": "#0F111A",
"foreground": "#84ffff"
},
"borderColor": "#090B10",
"inactiveBorderColor": "#0F111A",
"innerBorderColor": "#181A1F",
"Header": {
"activeBackground": "#0F111A",
"inactiveBackground": "#090B10"
},
"paintBorder": true,
"separatorForeground": "#8F93A2",
"separatorColor": "#181A1F",
"Toolbar": {
"Floating.background": "#090B10",
"background": "#090B10",
"borderColor": "#090B10"
}
},
"PopupMenu": {
"background": "#0F111A",
"border": "2,0,2,0",
"foreground": "#8F93A2",
"translucentBackground": "#0F111A"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#0F111A",
"foreground": "#84ffff",
"indeterminateEndColor": "#84ffff",
"indeterminateStartColor": "#84ffff",
"progressColor": "#84ffff",
"selectionBackground": "#1F2233",
"trackColor": "#1F2233"
},
"PsiViewer": {
"referenceHighlightColor": "#84ffff"
},
"RadioButton": {
"background": "#0F111A",
"disabledText": "#464B5D",
"foreground": "#8F93A2"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#4B526D",
"acceleratorSelectionForeground": "#4B526D",
"background": "#0F111A",
"disabledBackground": "#0F111A",
"disabledForeground": "#464B5D",
"foreground": "#8F93A2",
"selectionBackground": "#232632",
"selectionForeground": "#FFFFFF"
},
"ScrollBar": {
"background": "#0F111A",
"hoverThumbBorderColor": "#84ffff",
"hoverThumbColor": "#84ffff",
"hoverTrackColor": "#0F111A30",
"Mac": {
"hoverThumbBorderColor": "#84ffff",
"hoverThumbColor": "#84ffff",
"hoverTrackColor": "#0F111A30",
"thumbBorderColor": "#84ffff70",
"thumbColor": "#84ffff70",
"trackColor": "#0F111A30",
"Transparent": {
"hoverThumbBorderColor": "#84ffff",
"hoverThumbColor": "#84ffff",
"hoverTrackColor": "#0F111A30",
"thumbBorderColor": "#84ffff70",
"thumbColor": "#84ffff70",
"trackColor": "#0F111A30"
}
},
"thumb": "#1F2233",
"thumbBorderColor": "#84ffff70",
"thumbColor": "#84ffff70",
"trackColor": "#0F111A30",
"Transparent": {
"hoverThumbBorderColor": "#84ffff",
"hoverThumbColor": "#84ffff",
"hoverTrackColor": "#0F111A30",
"thumbBorderColor": "#84ffff70",
"thumbColor": "#84ffff70",
"trackColor": "#0F111A30"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#090B10",
"foreground": "#4B526D"
},
"Header": {
"background": "#0F111A"
},
"List": {
"separatorForeground": "#4B526D",
"separatorColor": "#0F111A"
},
"SearchField": {
"background": "#0F111A",
"borderColor": "#090B10",
"infoForeground": "#4B526D"
},
"Tab": {
"active.foreground": "#FFFFFF",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#1F2233"
}
},
"SearchMatch": {
"endBackground": "#84ffff",
"startBackground": "#84ffff"
},
"SearchField.errorBackground": "#090B10",
"Separator": {
"background": "#181A1F",
"foreground": "#181A1F",
"separatorColor": "#181A1F"
},
"SidePanel": {
"background": "#0F111A"
},
"Slider": {
"background": "#0F111A",
"buttonBorderColor": "#84ffff",
"buttonColor": "#84ffff",
"foreground": "#8F93A2",
"majorTickLength": 6,
"tickColor": "#181A1F",
"trackColor": "#1A1C25",
"trackWidth": 7,
"thumb": "#84ffff"
},
"SpeedSearch": {
"background": "#1F2233",
"borderColor": "#0F111A",
"foreground": "#8F93A2",
"errorForeground": "#8F93A2"
},
"Spinner": {
"background": "#0F111A",
"border": "3,3,3,3",
"foreground": "#8F93A2",
"selectionForeground": "#FFFFFF"
},
"SplitPane": {
"background": "#0F111A",
"highlight": "#0F111A"
},
"SplitPaneDivider.draggingColor": "#181A1F",
"StatusBar": {
"borderColor": "#0F111A"
},
"TabbedPane": {
"background": "#0F111A",
"contentAreaColor": "#1F2233",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#0F111A",
"disabledForeground": "#464B5D",
"disabledUnderlineColor": "#464B5D",
"focus": "#1A1C25",
"focusColor": "#1A1C25",
"fontSizeOffset": 0,
"foreground": "#8F93A2",
"highlight": "#0F111A",
"hoverColor": "#1F2233",
"labelShift": 0,
"selectedForeground": "#FFFFFF",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#84ffff"
},
"TabbedPane.mt.tab.background": "#0F111A",
"Table": {
"background": "#0F111A",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#84ffff",
"dropLineShortColor": "#84ffff",
"focusCellBackground": "#1A1C25",
"focusCellForeground": "#FFFFFF",
"foreground": "#8F93A2",
"gridColor": "#0F111A",
"highlightOuter": "#1A1C25",
"lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#4B526D",
"lightSelectionInactiveBackground": "#181A1F",
"selectionBackground": "#1A1C25",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#1A1C25",
"selectionInactiveForeground": "#FFFFFF",
"sortIconColor": "#8F93A2",
"stripeColor": "#090B10"
},
"TableHeader": {
"background": "#0F111A",
"borderColor": "#0F111A",
"bottomSeparatorColor": "#181A1F",
"cellBorder": "4,0,4,0",
"disabledForeground": "#464B5D",
"foreground": "#8F93A2",
"focusCellBackground": "#1A1C25",
"focusCellForeground": "#FFFFFF",
"height": 25,
"separatorColor": "#181A1F"
},
"text": "#4B526D",
"textInactiveText": "#4B526D",
"textText": "#4B526D",
"TextArea": {
"background": "#0F111A",
"caretForeground": "#84ffff",
"foreground": "#8F93A2",
"inactiveForeground": "#464B5D",
"selectionBackground": "#1A1C25",
"selectionForeground": "#FFFFFF"
},
"TextField": {
"background": "#0F111A",
"caretForeground": "#84ffff",
"foreground": "#8F93A2",
"inactiveForeground": "#464B5D",
"selectionBackground": "#1A1C25",
"selectionForeground": "#FFFFFF"
},
"TextPane": {
"background": "#0F111A",
"caretForeground": "#84ffff",
"foreground": "#8F93A2",
"inactiveForeground": "#464B5D",
"selectionBackground": "#1A1C25",
"selectionForeground": "#FFFFFF"
},
"TitlePane": {
"background": "#090B10",
"Button.hoverBackground": "#1F2233",
"inactiveBackground": "#0F111A",
"infoForeground": "#4B526D",
"inactiveInfoForeground": "#4B526D"
},
"TitledBorder.titleColor": "#8F93A2",
"ToggleButton": {
"borderColor": "#191A21",
"buttonColor": "#8F93A2",
"disabledText": "#464B5D",
"foreground": "#8F93A2",
"offForeground": "#0F111A",
"offBackground": "#0F111A",
"onBackground": "#84ffff",
"onForeground": "#84ffff"
},
"ToolBar": {
"background": "#0F111A",
"borderHandleColor": "#4B526D",
"floatingForeground": "#4B526D",
"foreground": "#8F93A2"
},
"ToolTip": {
"Actions.background": "#0F111A",
"Actions.infoForeground": "#4B526D",
"background": "#0F111A",
"borderColor": "#1F2233",
"foreground": "#8F93A2",
"infoForeground": "#4B526D",
"separatorColor": "#0F111A",
"shortcutForeground": "#4B526D"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#1A1C25",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#090B10"
},
"Header": {
"background": "#0F111A",
"borderColor": "#181A1F",
"inactiveBackground": "#0F111A"
},
"HeaderCloseButton": {
"background": "#0F111A"
},
"HeaderTab": {
"hoverBackground": "#1F2233",
"hoverInactiveBackground": "#181A1F",
"inactiveUnderlineColor": "#84ffff",
"selectedBackground": "#090B10",
"selectedInactiveBackground": "#090B10",
"underlineColor": "#84ffff",
"underlinedTabBackground": "#1F2233",
"underlinedTabInactiveBackground": "#181A1F"
}
},
"Tree": {
"background": "#0F111A",
"foreground": "#4B526D",
"hash": "#0F111A",
"modifiedItemForeground": "#84ffff",
"rowHeight": 28,
"selectionBackground": "#717CB430",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#717CB430",
"textBackground": "#0F111A"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#0F111A",
"ColorPicker.background": "#0F111A",
"ColorPicker.foreground": "#8F93A2",
"Component.borderColor": "#0F111A",
"Component.background": "#0F111A",
"Component.foreground": "#8F93A2",
"Connector.borderColor": "#0F111A",
"Connector.hoverBorderColor": "#1F2233",
"Canvas.background": "#090B10",
"highStroke.foreground": "#8F93A2",
"Label.foreground": "#4B526D",
"List.selectionBackground": "#717CB430",
"Panel.borderColor": "#0F111A",
"Panel.background": "#0F111A",
"percent.foreground": "#8F93A2",
"Placeholder.background": "#0F111A",
"Placeholder.borderColor": "#0F111A",
"Placeholder.foreground": "#8F93A2",
"Placeholder.selectedForeground": "#FFFFFF",
"Preview.background": "#0F111A",
"stroke.acceleratorForeground": "#4B526D"
},
"ValidationTooltip": {
"errorBackground": "#090B10",
"errorBorderColor": "#090B10",
"warningBackground": "#090B10",
"warningBorderColor": "#090B10"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#0F111A"
},
"GitCommits": {
"graphColor": "#1F2233"
},
"GitLog": {
"localBranchIconColor": "#84ffff",
"otherIconColor": "#4B526D",
"remoteBranchIconColor": "#8F93A2",
"tagIconColor": "#4B526D"
},
"HgLog": {
"branchIconColor": "#84ffff",
"bookmarkIconColor": "#FFFFFF",
"closedBranchIconColor": "#464B5D",
"localTagIconColor": "#4B526D",
"mqTagIconColor": "#4B526D",
"tagIconColor": "#4B526D",
"tipIconColor": "#4B526D"
},
"Log": {
"Commit.unmatchedForeground": "#4B526D",
"Commit.currentBranchBackground": "#181A1F"
},
"RefLabel": {
"foreground": "#FFFFFF",
"backgroundBase": "#1F2233"
}
},
"Viewport": {
"background": "#0F111A",
"foreground": "#8F93A2"
},
"WelcomeScreen": {
"background": "#0F111A",
"borderColor": "#0F111A",
"captionBackground": "#090B10",
"captionForeground": "#8F93A2",
"footerBackground": "#090B10",
"footerForeground": "#8F93A2",
"headerBackground": "#0F111A",
"headerForeground": "#8F93A2",
"separatorColor": "#0F111A",
"Projects": {
"background": "#181A1F",
"selectionBackground": "#232632",
"selectionInactiveBackground": "#181A1F"
}
},
"window": "#0F111A",
"windowBorder": "#0F111A",
"windowText": "#4B526D",
"Window.border": "#0F111A"
},
"icons": {
"ColorPalette": {
"#43494A": "#090B10",
"#6B6B6B": "#4B526D",
"#A7A7A7": "#0F111A",
"#3D6185": "#84ffff",
"#466D94": "#84ffff",
"#3C3F41": "#0F111A",
"#545556": "#464B5D",
"#606060": "#464B5D",
"#9AA7B0": "#8F93A2",
"#675133": "#84ffff",
"Actions.Blue": "#82aaff",
"Actions.Green": "#c3e88d",
"Actions.Grey": "#4B526D",
"Actions.GreyInline": "#717CB4",
"Actions.GreyInline.Dark": "#8F93A2",
"Actions.Red": "#f07178",
"Actions.Yellow": "#ffcb6b",
"Checkbox.Background.Default": "#090B10",
"Checkbox.Background.Default.Dark": "#090B10",
"Checkbox.Background.Disabled": "#292D3E",
"Checkbox.Background.Disabled.Dark": "#292D3E",
"Checkbox.Border.Default": "#0F111A",
"Checkbox.Border.Default.Dark": "#0F111A",
"Checkbox.Border.Disabled": "#464B5D",
"Checkbox.Border.Disabled.Dark": "#464B5D",
"Checkbox.Focus.Thin.Default": "#84ffff",
"Checkbox.Focus.Thin.Default.Dark": "#84ffff",
"Checkbox.Focus.Wide": "#84ffff",
"Checkbox.Focus.Wide.Dark": "#84ffff",
"Checkbox.Foreground.Disabled": "#464B5D",
"Checkbox.Foreground.Disabled.Dark": "#464B5D",
"Checkbox.Background.Selected": "#84ffff",
"Checkbox.Background.Selected.Dark": "#0F111A",
"Checkbox.Border.Selected": "#84ffff",
"Checkbox.Border.Selected.Dark": "#84ffff",
"Checkbox.Foreground.Selected": "#84ffff",
"Checkbox.Foreground.Selected.Dark": "#84ffff",
"Checkbox.Focus.Thin.Selected": "#8F93A2",
"Checkbox.Focus.Thin.Selected.Dark": "#8F93A2",
"Objects.Grey": "#717CB4",
"Objects.Blue": "#82aaff",
"Objects.RedStatus": "#f07178",
"Objects.Red": "#f07178",
"Objects.Pink": "#c792ea",
"Objects.Yellow": "#ffcb6b",
"Objects.Green": "#c3e88d",
"Objects.Purple": "#c792ea",
"Objects.BlackText": "#8F93A2",
"Objects.YellowDark": "#f78c6c",
"Objects.GreenAndroid": "#c3e88d"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "Material Lighter Contrast",
"dark": false,
"author": "Mallowigi",
"editorScheme": "/colors/Material Lighter.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#94A7B0",
"background": "#FAFAFA",
"borderColor": "#d3e1e8",
"disabledBackground": "#CCD7DA",
"disabledForeground": "#D2D4D5",
"disabledText": "#D2D4D5",
"focusColor": "#E7E7E8",
"focusedBorderColor": "#00BCD4",
"foreground": "#546E7A",
"inactiveBackground": "#CCD7DA",
"inactiveForeground": "#94A7B0",
"infoForeground": "#94A7B0",
"selectionBackground": "#80CBC4",
"selectionBackgroundInactive": "#FFFFFF",
"selectionForeground": "#546e7a",
"selectionInactiveBackground": "#FFFFFF",
"separatorColor": "#d3e1e8"
},
"activeCaption": "#FAFAFA",
"ActionButton": {
"hoverBackground": "#00BCD450",
"hoverBorderColor": "#00BCD450",
"hoverSeparatorColor": "#F3F4F5",
"focusedBorderColor": "#00BCD450",
"pressedBackground": "#00BCD450",
"pressedBorderColor": "#00BCD450"
},
"Autocomplete": {
"selectionBackground": "#80CBC4"
},
"Borders.ContrastBorderColor": "#FAFAFA",
"Borders.color": "#d3e1e8",
"Button": {
"arc": 0,
"background": "#FAFAFA",
"default": {
"endBackground": "#E7E7E8",
"endBorderColor": "#E7E7E8",
"foreground": "#546e7a",
"focusColor": "#00BCD4",
"focusedBorderColor": "#00BCD4",
"shadowColor": "#E7E7E8",
"startBackground": "#E7E7E8",
"startBorderColor": "#E7E7E8"
},
"disabledBorderColor": "#F3F4F5",
"disabledText": "#D2D4D5",
"endBackground": "#F3F4F5",
"endBorderColor": "#F3F4F5",
"focus": "#E7E7E8",
"focusedBorderColor": "#00BCD4",
"foreground": "#94A7B0",
"highlight": "#546e7a",
"mt.background": "#F3F4F5",
"mt.foreground": "#94A7B0",
"mt.selectedForeground": "#546e7a",
"mt.selection.color1": "#E7E7E8",
"mt.selection.color2": "#E7E7E8",
"startBackground": "#F3F4F5",
"startBorderColor": "#F3F4F5",
"shadowColor": "#F3F4F5",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#d3e1e8",
"Tooltip.background": "#eae8e8"
},
"Content.background": "#EEEEEE",
"CheckBox": {
"background": "#FAFAFA",
"disabledText": "#D2D4D5",
"foreground": "#546E7A",
"select": "#00BCD4"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#94A7B0",
"acceleratorSelectionForeground": "#94A7B0",
"background": "#FAFAFA",
"disabledBackground": "#FAFAFA",
"disabledForeground": "#D2D4D5",
"foreground": "#546E7A",
"selectionBackground": "#80CBC4",
"selectionForeground": "#546e7a"
},
"ColorChooser": {
"background": "#FAFAFA",
"foreground": "#546E7A",
"swatchesDefaultRecentColor": "#546E7A"
},
"ComboBoxButton.background": "#F3F4F5",
"ComboBox": {
"ArrowButton": {
"background": "#F3F4F5",
"disabledIconColor": "#D2D4D5",
"iconColor": "#546E7A",
"nonEditableBackground": "#FAFAFA"
},
"background": "#EEEEEE",
"buttonBackground": "#F3F4F5",
"disabledForeground": "#D2D4D5",
"foreground": "#546E7A",
"modifiedItemForeground": "#00BCD4",
"nonEditableBackground": "#FFFFFF",
"padding": "5,5,5,5",
"selectionBackground": "#E7E7E8",
"selectionForeground": "#546e7a"
},
"ComboPopup.border": "#d3e1e8",
"CompletionPopup": {
"background": "#FFFFFF",
"foreground": "#546E7A",
"infoForeground": "#94A7B0",
"matchForeground": "#00BCD4",
"matchSelectionForeground": "#00BCD4",
"nonFocusedState": "false",
"selectedGrayedForeground": "#546e7a",
"selectionGrayForeground": "#546e7a",
"selectionInactiveInfoForeground": "#94A7B0",
"selectionInactiveBackground": "#80CBC450",
"selectionBackground": "#80CBC480",
"selectionForeground": "#546e7a",
"selectionInfoForeground": "#546e7a"
},
"Component": {
"arc": 4,
"borderColor": "#E7E7E8",
"disabledBorderColor": "#F3F4F5",
"focusColor": "#00BCD4",
"focusedBorderColor": "#00BCD4",
"hoverIconColor": "#00BCD4",
"infoForeground": "#94A7B0",
"iconColor": "#546E7A"
},
"control": "#FAFAFA",
"controlText": "#94A7B0",
"Counter": {
"background": "#00BCD4",
"foreground": "#546e7a"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#94A7B0",
"changedValueForeground": "#00BCD4",
"errorMessageForeground": "#E53935",
"evaluatingExpressionForeground": "#94A7B0",
"exceptionForeground": "#F6A434",
"modifyingValueForeground": "#00BCD4",
"valueForeground": "#00BCD4"
}
},
"DebuggerTabs": {
"selectedBackground": "#E7E7E8",
"underlinedTabBackground": "#E7E7E8"
},
"DebuggerPopup": {
"borderColor": "#E7E7E8"
},
"DefaultTabs": {
"background": "#FAFAFA",
"borderColor": "#FAFAFA",
"hoverBackground": "#E7E7E8",
"hoverColor": "#EEEEEE",
"hoverMaskColor": "#E7E7E8",
"inactiveColoredFileBackground": "#F3F4F5",
"inactiveUnderlineColor": "#D2D4D5",
"inactiveMaskColor": "#EEEEEE",
"underlineColor": "#00BCD4",
"underlinedTabBackground": "#E7E7E8"
},
"Desktop.background": "#FAFAFA",
"DialogWrapper.southPanelBackground": "#FAFAFA",
"DialogWrapper.southPanelDivider": "#FAFAFA",
"DragAndDrop": {
"areaBackground": "#FAFAFA",
"areaBorderColor": "#FAFAFA",
"areaForeground": "#546E7A"
},
"Editor": {
"background": "#EEEEEE",
"foreground": "#546E7A",
"shortcutForeground": "#94A7B0"
},
"EditorPane": {
"background": "#EEEEEE",
"caretForeground": "#00BCD4",
"foreground": "#546E7A",
"inactiveBackground": "#FAFAFA",
"inactiveForeground": "#D2D4D5",
"selectionBackground": "#80CBC4",
"selectionForeground": "#546e7a"
},
"EditorTabs": {
"borderColor": "#FFFFFF",
"hoverColor": "#E7E7E8",
"hoverMaskColor": "#E7E7E8",
"inactiveMaskColor": "#FAFAFA",
"inactiveColoredFileBackground": "#FAFAFA2",
"inactiveUnderlineColor": "#D2D4D5",
"selectedForeground": "#546E7A",
"selectedBackground": "#E7E7E8",
"underlineColor": "#00BCD4",
"underlinedTabBackground": "#E7E7E8"
},
"EditorGroupsTabs": {
"background": "#FAFAFA",
"borderColor": "#FFFFFF",
"hoverBackground": "#E7E7E8",
"hoverColor": "#E7E7E8",
"inactiveUnderlineColor": "#00BCD4",
"underlineColor": "#00BCD4",
"underlinedTabBackground": "#E7E7E8",
"underlinedTabForeground": "#546E7A"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#CCD7DA",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#d3e1e8",
"FormattedTextField": {
"background": "#EEEEEE",
"caretForeground": "#00BCD4",
"foreground": "#546E7A",
"inactiveBackground": "#F3F4F5",
"inactiveForeground": "#D2D4D5",
"selectionForeground": "#546e7a",
"selectionBackground": "#E7E7E8"
},
"Group": {
"disabledSeparatorColor": "#d3e1e8",
"separatorColor": "#d3e1e8"
},
"GutterTooltip": {
"infoForeground": "#546E7A",
"lineSeparatorColor": "#FAFAFA"
},
"HeaderColor": {
"active": "#FAFAFA",
"inactive": "#EEEEEE"
},
"HelpTooltip": {
"background": "#FAFAFA",
"borderColor": "#d3e1e8",
"foreground": "#546E7A",
"infoForeground": "#94A7B0",
"shortcutForeground": "#94A7B0"
},
"Hyperlink.linkColor": "#00BCD4",
"inactiveCaption": "#FFFFFF",
"inactiveCaptionBorder": "#FAFAFA",
"inactiveCaptionText": "#94A7B0",
"info": "#94A7B0",
"infoText": "#94A7B0",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#d3e1e8",
"InplaceRefactoringPopup": {
"borderColor": "#FAFAFA"
},
"InternalFrame": {
"activeTitleForeground": "#546E7A",
"background": "#FAFAFA",
"inactiveTitleForeground": "#94A7B0"
},
"Label": {
"background": "#FAFAFA",
"disabledForeground": "#D2D4D5",
"disabledShadow": "#FAFAFA",
"disabledText": "#D2D4D5",
"foreground": "#546E7A",
"infoForeground": "#94A7B0",
"selectedForeground": "#546e7a"
},
"Link": {
"activeForeground": "#00BCD4",
"hoverForeground": "#00BCD4",
"pressedForeground": "#00BCD4",
"secondaryForeground": "#94A7B0",
"visitedForeground": "#00BCD4"
},
"link.foreground": "#00BCD4",
"List": {
"background": "#FFFFFF",
"foreground": "#546E7A",
"selectionBackground": "#80CBC450",
"selectionForeground": "#546e7a",
"selectionInactiveForeground": "#546e7a",
"selectionInactiveBackground": "#80CBC440"
},
"material": {
"background": "#FAFAFA",
"branchColor": "#546E7A",
"contrast": "#EEEEEE",
"foreground": "#546E7A",
"mergeCommits": "#F3F4F5",
"primaryColor": "#94A7B0",
"selectionForeground": "#546e7a",
"tab.backgroundColor": "#FAFAFA",
"tab.borderColor": "#00BCD4",
"tagColor": "#94A7B0"
},
"MemoryIndicator": {
"allocatedBackground": "#FFFFFF",
"usedColor": "#E7E7E8",
"usedBackground": "#E7E7E8"
},
"Menu": {
"acceleratorForeground": "#94A7B0",
"acceleratorSelectionForeground": "#546e7a",
"background": "#FAFAFA",
"border": "4,2,4,2",
"borderColor": "#FFFFFF",
"disabledBackground": "#FFFFFF",
"disabledForeground": "#D2D4D5",
"foreground": "#546E7A",
"selectionBackground": "#80CBC4",
"selectionForeground": "#546e7a",
"separatorColor": "#d3e1e8"
},
"MenuBar": {
"background": "#EEEEEE",
"borderColor": "#FAFAFA",
"disabledBackground": "#FAFAFA",
"disabledForeground": "#D2D4D5",
"foreground": "#546E7A",
"highlight": "#FAFAFA",
"selectionBackground": "#80CBC4",
"selectionForeground": "#546e7a",
"shadow": "#EEEEEE"
},
"MenuItem": {
"acceleratorForeground": "#94A7B0",
"acceleratorSelectionForeground": "#546e7a",
"border": "4,2,4,2",
"background": "#FAFAFA",
"disabledBackground": "#FAFAFA",
"disabledForeground": "#D2D4D5",
"foreground": "#546E7A",
"selectionBackground": "#80CBC4",
"selectionForeground": "#546e7a"
},
"NavBar": {
"arrowColor": "#546E7A",
"borderColor": "#FAFAFA"
},
"NewClass": {
"Panel": {
"background": "#FAFAFA"
},
"SearchField": {
"background": "#EEEEEE"
}
},
"NewPSD.warning": "#00BCD4",
"Notification": {
"background": "#eae8e8",
"borderColor": "#eae8e8",
"errorBackground": "#eae8e8",
"errorBorderColor": "#eae8e8",
"foreground": "#546E7A",
"MoreButton": {
"background": "#F3F4F5",
"foreground": "#546E7A",
"innerBorderColor": "#F3F4F5"
},
"ToolWindow": {
"errorBackground": "#eae8e8",
"errorBorderColor": "#eae8e8",
"informativeBackground": "#eae8e8",
"informativeBorderColor": "#eae8e8",
"warningBackground": "#eae8e8",
"warningBorderColor": "#eae8e8"
}
},
"OnePixelDivider.background": "#d3e1e8",
"OptionPane": {
"background": "#FAFAFA",
"foreground": "#546E7A",
"messageForeground": "#546E7A"
},
"Outline": {
"color": "#F3F4F5",
"focusedColor": "#00BCD4",
"disabledColor": "#D2D4D5"
},
"Panel": {
"background": "#FAFAFA",
"foreground": "#546E7A"
},
"ParameterInfo": {
"background": "#FFFFFF",
"borderColor": "#E7E7E8",
"currentOverloadBackground": "#E7E7E8",
"currentParameterForeground": "#00BCD4",
"disabledForeground": "#D2D4D5",
"foreground": "#546E7A",
"infoForeground": "#94A7B0",
"lineSeparatorColor": "#E7E7E8"
},
"PasswordField": {
"background": "#EEEEEE",
"capsLockIconColor": "#00BCD4",
"caretForeground": "#00BCD4",
"foreground": "#546E7A",
"inactiveForeground": "#D2D4D5",
"selectionBackground": "#E7E7E8",
"selectionForeground": "#546e7a"
},
"Plugins": {
"background": "#FAFAFA",
"disabledForeground": "#D2D4D5",
"eapTagBackground": "#E7E7E8",
"lightSelectionBackground": "#80CBC4",
"paidTagBackground": "#E7E7E8",
"selectionBackground": "#80CBC4",
"tagForeground": "#00BCD4",
"tagBackground": "#E7E7E8",
"trialTagBackground": "#E7E7E8",
"Button": {
"installBackground": "#F3F4F5",
"installBorderColor": "#F3F4F5",
"installForeground": "#546E7A",
"installFocusedBackground": "#E7E7E8",
"installFillForeground": "#D2D4D5",
"installFillBackground": "#F3F4F5",
"updateBackground": "#F3F4F5",
"updateBorderColor": "#F3F4F5",
"updateForeground": "#546E7A"
},
"SearchField": {
"background": "#EEEEEE",
"borderColor": "#d3e1e8"
},
"SectionHeader": {
"background": "#FFFFFF",
"foreground": "#546E7A"
},
"Tab": {
"hoverBackground": "#E7E7E8",
"selectedForeground": "#546e7a",
"selectedBackground": "#E7E7E8"
}
},
"Popup": {
"Advertiser": {
"background": "#FAFAFA",
"borderColor": "#FAFAFA",
"foreground": "#00BCD4"
},
"borderColor": "#EEEEEE",
"inactiveBorderColor": "#FAFAFA",
"innerBorderColor": "#FFFFFF",
"Header": {
"activeBackground": "#FAFAFA",
"inactiveBackground": "#EEEEEE"
},
"paintBorder": true,
"separatorForeground": "#546E7A",
"separatorColor": "#FFFFFF",
"Toolbar": {
"Floating.background": "#EEEEEE",
"background": "#EEEEEE",
"borderColor": "#EEEEEE"
}
},
"PopupMenu": {
"background": "#FAFAFA",
"border": "2,0,2,0",
"foreground": "#546E7A",
"translucentBackground": "#FAFAFA"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#FAFAFA",
"foreground": "#00BCD4",
"indeterminateEndColor": "#00BCD4",
"indeterminateStartColor": "#00BCD4",
"progressColor": "#00BCD4",
"selectionBackground": "#E7E7E8",
"trackColor": "#E7E7E8"
},
"PsiViewer": {
"referenceHighlightColor": "#00BCD4"
},
"RadioButton": {
"background": "#FAFAFA",
"disabledText": "#D2D4D5",
"foreground": "#546E7A"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#94A7B0",
"acceleratorSelectionForeground": "#94A7B0",
"background": "#FAFAFA",
"disabledBackground": "#FAFAFA",
"disabledForeground": "#D2D4D5",
"foreground": "#546E7A",
"selectionBackground": "#80CBC4",
"selectionForeground": "#546e7a"
},
"ScrollBar": {
"background": "#FAFAFA",
"hoverThumbBorderColor": "#00BCD4",
"hoverThumbColor": "#00BCD4",
"hoverTrackColor": "#FAFAFA30",
"Mac": {
"hoverThumbBorderColor": "#00BCD4",
"hoverThumbColor": "#00BCD4",
"hoverTrackColor": "#FAFAFA30",
"thumbBorderColor": "#00BCD470",
"thumbColor": "#00BCD470",
"trackColor": "#FAFAFA30",
"Transparent": {
"hoverThumbBorderColor": "#00BCD4",
"hoverThumbColor": "#00BCD4",
"hoverTrackColor": "#FAFAFA30",
"thumbBorderColor": "#00BCD470",
"thumbColor": "#00BCD470",
"trackColor": "#FAFAFA30"
}
},
"thumb": "#E7E7E8",
"thumbBorderColor": "#00BCD470",
"thumbColor": "#00BCD470",
"trackColor": "#FAFAFA30",
"Transparent": {
"hoverThumbBorderColor": "#00BCD4",
"hoverThumbColor": "#00BCD4",
"hoverTrackColor": "#FAFAFA30",
"thumbBorderColor": "#00BCD470",
"thumbColor": "#00BCD470",
"trackColor": "#FAFAFA30"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#EEEEEE",
"foreground": "#94A7B0"
},
"Header": {
"background": "#FAFAFA"
},
"List": {
"separatorForeground": "#94A7B0",
"separatorColor": "#d3e1e8"
},
"SearchField": {
"background": "#FAFAFA",
"borderColor": "#EEEEEE",
"infoForeground": "#94A7B0"
},
"Tab": {
"active.foreground": "#546e7a",
"selectedForeground": "#546e7a",
"selectedBackground": "#E7E7E8"
}
},
"SearchMatch": {
"endBackground": "#00BCD4",
"startBackground": "#00BCD4"
},
"SearchField.errorBackground": "#eae8e8",
"Separator": {
"background": "#FFFFFF",
"foreground": "#FFFFFF",
"separatorColor": "#FFFFFF"
},
"SidePanel": {
"background": "#EEEEEE"
},
"Slider": {
"background": "#FAFAFA",
"buttonBorderColor": "#00BCD4",
"buttonColor": "#00BCD4",
"foreground": "#546E7A",
"majorTickLength": 6,
"tickColor": "#FFFFFF",
"trackColor": "#E7E7E8",
"trackWidth": 7,
"thumb": "#00BCD4"
},
"SpeedSearch": {
"background": "#E7E7E8",
"borderColor": "#d3e1e8",
"foreground": "#546E7A",
"errorForeground": "#546E7A"
},
"Spinner": {
"background": "#FAFAFA",
"border": "3,3,3,3",
"foreground": "#546E7A",
"selectionForeground": "#546e7a"
},
"SplitPane": {
"background": "#FAFAFA",
"highlight": "#EEEEEE"
},
"SplitPaneDivider.draggingColor": "#FFFFFF",
"StatusBar": {
"borderColor": "#FAFAFA"
},
"TabbedPane": {
"background": "#FAFAFA",
"contentAreaColor": "#E7E7E8",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#d3e1e8",
"disabledForeground": "#D2D4D5",
"disabledUnderlineColor": "#D2D4D5",
"focus": "#E7E7E8",
"focusColor": "#E7E7E8",
"fontSizeOffset": 0,
"foreground": "#546E7A",
"highlight": "#d3e1e8",
"hoverColor": "#E7E7E8",
"labelShift": 0,
"selectedForeground": "#546e7a",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#00BCD4"
},
"TabbedPane.mt.tab.background": "#EEEEEE",
"Table": {
"background": "#FAFAFA",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#00BCD4",
"dropLineShortColor": "#00BCD4",
"focusCellBackground": "#E7E7E8",
"focusCellForeground": "#546e7a",
"foreground": "#546E7A",
"gridColor": "#FAFAFA",
"highlightOuter": "#E7E7E8",
"lightSelectionForeground": "#546e7a",
"lightSelectionInactiveForeground": "#94A7B0",
"lightSelectionInactiveBackground": "#FFFFFF",
"selectionBackground": "#E7E7E8",
"selectionForeground": "#546e7a",
"selectionInactiveBackground": "#E7E7E8",
"selectionInactiveForeground": "#546e7a",
"sortIconColor": "#546E7A",
"stripeColor": "#EEEEEE"
},
"TableHeader": {
"background": "#FAFAFA",
"borderColor": "#FAFAFA",
"bottomSeparatorColor": "#FFFFFF",
"cellBorder": "4,0,4,0",
"disabledForeground": "#D2D4D5",
"foreground": "#546E7A",
"focusCellBackground": "#E7E7E8",
"focusCellForeground": "#546e7a",
"height": 25,
"separatorColor": "#FFFFFF"
},
"text": "#94A7B0",
"textInactiveText": "#94A7B0",
"textText": "#94A7B0",
"TextArea": {
"background": "#EEEEEE",
"caretForeground": "#00BCD4",
"foreground": "#546E7A",
"inactiveForeground": "#D2D4D5",
"selectionBackground": "#E7E7E8",
"selectionForeground": "#546e7a"
},
"TextField": {
"background": "#EEEEEE",
"caretForeground": "#00BCD4",
"foreground": "#546E7A",
"inactiveForeground": "#D2D4D5",
"selectionBackground": "#E7E7E8",
"selectionForeground": "#546e7a"
},
"TextPane": {
"background": "#EEEEEE",
"caretForeground": "#00BCD4",
"foreground": "#546E7A",
"inactiveForeground": "#D2D4D5",
"selectionBackground": "#E7E7E8",
"selectionForeground": "#546e7a"
},
"TitlePane": {
"background": "#EEEEEE",
"Button.hoverBackground": "#E7E7E8",
"inactiveBackground": "#FAFAFA",
"infoForeground": "#94A7B0",
"inactiveInfoForeground": "#94A7B0"
},
"TitledBorder.titleColor": "#546E7A",
"ToggleButton": {
"borderColor": "#F3F4F5",
"buttonColor": "#546E7A",
"disabledText": "#D2D4D5",
"foreground": "#546E7A",
"offForeground": "#FAFAFA",
"offBackground": "#FAFAFA",
"onBackground": "#00BCD4",
"onForeground": "#00BCD4"
},
"ToolBar": {
"background": "#EEEEEE",
"borderHandleColor": "#94A7B0",
"floatingForeground": "#94A7B0",
"foreground": "#546E7A"
},
"ToolTip": {
"Actions.background": "#FAFAFA",
"Actions.infoForeground": "#94A7B0",
"background": "#FAFAFA",
"borderColor": "#E7E7E8",
"foreground": "#546E7A",
"infoForeground": "#94A7B0",
"separatorColor": "#d3e1e8",
"shortcutForeground": "#94A7B0"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#E7E7E8",
"selectedForeground": "#546e7a",
"selectedBackground": "#EEEEEE"
},
"Header": {
"background": "#FAFAFA",
"borderColor": "#FFFFFF",
"inactiveBackground": "#FAFAFA"
},
"HeaderCloseButton": {
"background": "#FAFAFA"
},
"HeaderTab": {
"hoverBackground": "#E7E7E8",
"hoverInactiveBackground": "#FFFFFF",
"inactiveUnderlineColor": "#00BCD4",
"selectedBackground": "#EEEEEE",
"selectedInactiveBackground": "#EEEEEE",
"underlineColor": "#00BCD4",
"underlinedTabBackground": "#E7E7E8",
"underlinedTabInactiveBackground": "#FFFFFF"
}
},
"Tree": {
"background": "#EEEEEE",
"foreground": "#94A7B0",
"hash": "#d3e1e8",
"modifiedItemForeground": "#00BCD4",
"rowHeight": 28,
"selectionBackground": "#80CBC440",
"selectionForeground": "#546e7a",
"selectionInactiveForeground": "#546e7a",
"selectionInactiveBackground": "#80CBC440",
"textBackground": "#EEEEEE"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#d3e1e8",
"ColorPicker.background": "#FAFAFA",
"ColorPicker.foreground": "#546E7A",
"Component.borderColor": "#d3e1e8",
"Component.background": "#FAFAFA",
"Component.foreground": "#546E7A",
"Connector.borderColor": "#d3e1e8",
"Connector.hoverBorderColor": "#E7E7E8",
"Canvas.background": "#EEEEEE",
"highStroke.foreground": "#546E7A",
"Label.foreground": "#94A7B0",
"List.selectionBackground": "#80CBC440",
"Panel.borderColor": "#d3e1e8",
"Panel.background": "#FAFAFA",
"percent.foreground": "#546E7A",
"Placeholder.background": "#FAFAFA",
"Placeholder.borderColor": "#d3e1e8",
"Placeholder.foreground": "#546E7A",
"Placeholder.selectedForeground": "#546e7a",
"Preview.background": "#FAFAFA",
"stroke.acceleratorForeground": "#94A7B0"
},
"ValidationTooltip": {
"errorBackground": "#eae8e8",
"errorBorderColor": "#eae8e8",
"warningBackground": "#eae8e8",
"warningBorderColor": "#eae8e8"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#FAFAFA"
},
"GitCommits": {
"graphColor": "#E7E7E8"
},
"GitLog": {
"localBranchIconColor": "#00BCD4",
"otherIconColor": "#94A7B0",
"remoteBranchIconColor": "#546E7A",
"tagIconColor": "#94A7B0"
},
"HgLog": {
"branchIconColor": "#00BCD4",
"bookmarkIconColor": "#546e7a",
"closedBranchIconColor": "#D2D4D5",
"localTagIconColor": "#94A7B0",
"mqTagIconColor": "#94A7B0",
"tagIconColor": "#94A7B0",
"tipIconColor": "#94A7B0"
},
"Log": {
"Commit.unmatchedForeground": "#94A7B0",
"Commit.currentBranchBackground": "#FFFFFF"
},
"RefLabel": {
"foreground": "#546e7a",
"backgroundBase": "#E7E7E8"
}
},
"Viewport": {
"background": "#EEEEEE",
"foreground": "#546E7A"
},
"WelcomeScreen": {
"background": "#FAFAFA",
"borderColor": "#FAFAFA",
"captionBackground": "#EEEEEE",
"captionForeground": "#546E7A",
"footerBackground": "#EEEEEE",
"footerForeground": "#546E7A",
"headerBackground": "#FAFAFA",
"headerForeground": "#546E7A",
"separatorColor": "#d3e1e8",
"Projects": {
"background": "#FFFFFF",
"selectionBackground": "#80CBC4",
"selectionInactiveBackground": "#FFFFFF"
}
},
"window": "#EEEEEE",
"windowBorder": "#d3e1e8",
"windowText": "#94A7B0",
"Window.border": "#d3e1e8"
},
"icons": {
"ColorPalette": {
"#43494A": "#EEEEEE",
"#6B6B6B": "#94A7B0",
"#A7A7A7": "#FAFAFA",
"#3D6185": "#00BCD4",
"#466D94": "#00BCD4",
"#3C3F41": "#FAFAFA",
"#545556": "#D2D4D5",
"#606060": "#D2D4D5",
"#9AA7B0": "#546E7A",
"#675133": "#00BCD4",
"Actions.Blue": "#6182B8",
"Actions.Green": "#91B859",
"Actions.Grey": "#94A7B0",
"Actions.GreyInline": "#AABFC9",
"Actions.GreyInline.Dark": "#546E7A",
"Actions.Red": "#E53935",
"Actions.Yellow": "#F6A434",
"Checkbox.Background.Default": "#EEEEEE",
"Checkbox.Background.Default.Dark": "#EEEEEE",
"Checkbox.Background.Disabled": "#CCD7DA",
"Checkbox.Background.Disabled.Dark": "#CCD7DA",
"Checkbox.Border.Default": "#d3e1e8",
"Checkbox.Border.Default.Dark": "#d3e1e8",
"Checkbox.Border.Disabled": "#D2D4D5",
"Checkbox.Border.Disabled.Dark": "#D2D4D5",
"Checkbox.Focus.Thin.Default": "#00BCD4",
"Checkbox.Focus.Thin.Default.Dark": "#00BCD4",
"Checkbox.Focus.Wide": "#00BCD4",
"Checkbox.Focus.Wide.Dark": "#00BCD4",
"Checkbox.Foreground.Disabled": "#D2D4D5",
"Checkbox.Foreground.Disabled.Dark": "#D2D4D5",
"Checkbox.Background.Selected": "#00BCD4",
"Checkbox.Background.Selected.Dark": "#FAFAFA",
"Checkbox.Border.Selected": "#00BCD4",
"Checkbox.Border.Selected.Dark": "#00BCD4",
"Checkbox.Foreground.Selected": "#00BCD4",
"Checkbox.Foreground.Selected.Dark": "#00BCD4",
"Checkbox.Focus.Thin.Selected": "#546E7A",
"Checkbox.Focus.Thin.Selected.Dark": "#546E7A",
"Objects.Grey": "#AABFC9",
"Objects.Blue": "#6182B8",
"Objects.RedStatus": "#E53935",
"Objects.Red": "#E53935",
"Objects.Pink": "#7C4DFF",
"Objects.Yellow": "#F6A434",
"Objects.Green": "#91B859",
"Objects.Purple": "#7C4DFF",
"Objects.BlackText": "#546E7A",
"Objects.YellowDark": "#F76D47",
"Objects.GreenAndroid": "#91B859"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "Material Lighter",
"dark": false,
"author": "Mallowigi",
"editorScheme": "/colors/Material Lighter.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#94A7B0",
"background": "#FAFAFA",
"borderColor": "#d3e1e8",
"disabledBackground": "#CCD7DA",
"disabledForeground": "#D2D4D5",
"disabledText": "#D2D4D5",
"focusColor": "#E7E7E8",
"focusedBorderColor": "#00BCD4",
"foreground": "#546E7A",
"inactiveBackground": "#CCD7DA",
"inactiveForeground": "#94A7B0",
"infoForeground": "#94A7B0",
"selectionBackground": "#80CBC4",
"selectionBackgroundInactive": "#FFFFFF",
"selectionForeground": "#546e7a",
"selectionInactiveBackground": "#FFFFFF",
"separatorColor": "#d3e1e8"
},
"activeCaption": "#FAFAFA",
"ActionButton": {
"hoverBackground": "#00BCD450",
"hoverBorderColor": "#00BCD450",
"hoverSeparatorColor": "#F3F4F5",
"focusedBorderColor": "#00BCD450",
"pressedBackground": "#00BCD450",
"pressedBorderColor": "#00BCD450"
},
"Autocomplete": {
"selectionBackground": "#80CBC4"
},
"Borders.ContrastBorderColor": "#FAFAFA",
"Borders.color": "#d3e1e8",
"Button": {
"arc": 0,
"background": "#FAFAFA",
"default": {
"endBackground": "#E7E7E8",
"endBorderColor": "#E7E7E8",
"foreground": "#546e7a",
"focusColor": "#00BCD4",
"focusedBorderColor": "#00BCD4",
"shadowColor": "#E7E7E8",
"startBackground": "#E7E7E8",
"startBorderColor": "#E7E7E8"
},
"disabledBorderColor": "#F3F4F5",
"disabledText": "#D2D4D5",
"endBackground": "#F3F4F5",
"endBorderColor": "#F3F4F5",
"focus": "#E7E7E8",
"focusedBorderColor": "#00BCD4",
"foreground": "#94A7B0",
"highlight": "#546e7a",
"mt.background": "#F3F4F5",
"mt.foreground": "#94A7B0",
"mt.selectedForeground": "#546e7a",
"mt.selection.color1": "#E7E7E8",
"mt.selection.color2": "#E7E7E8",
"startBackground": "#F3F4F5",
"startBorderColor": "#F3F4F5",
"shadowColor": "#F3F4F5",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#d3e1e8",
"Tooltip.background": "#eae8e8"
},
"Content.background": "#EEEEEE",
"CheckBox": {
"background": "#FAFAFA",
"disabledText": "#D2D4D5",
"foreground": "#546E7A",
"select": "#00BCD4"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#94A7B0",
"acceleratorSelectionForeground": "#94A7B0",
"background": "#FAFAFA",
"disabledBackground": "#FAFAFA",
"disabledForeground": "#D2D4D5",
"foreground": "#546E7A",
"selectionBackground": "#80CBC4",
"selectionForeground": "#546e7a"
},
"ColorChooser": {
"background": "#FAFAFA",
"foreground": "#546E7A",
"swatchesDefaultRecentColor": "#546E7A"
},
"ComboBoxButton.background": "#F3F4F5",
"ComboBox": {
"ArrowButton": {
"background": "#F3F4F5",
"disabledIconColor": "#D2D4D5",
"iconColor": "#546E7A",
"nonEditableBackground": "#FAFAFA"
},
"background": "#FAFAFA",
"buttonBackground": "#F3F4F5",
"disabledForeground": "#D2D4D5",
"foreground": "#546E7A",
"modifiedItemForeground": "#00BCD4",
"nonEditableBackground": "#FFFFFF",
"padding": "5,5,5,5",
"selectionBackground": "#E7E7E8",
"selectionForeground": "#546e7a"
},
"ComboPopup.border": "#d3e1e8",
"CompletionPopup": {
"background": "#FFFFFF",
"foreground": "#546E7A",
"infoForeground": "#94A7B0",
"matchForeground": "#00BCD4",
"matchSelectionForeground": "#00BCD4",
"nonFocusedState": "false",
"selectedGrayedForeground": "#546e7a",
"selectionGrayForeground": "#546e7a",
"selectionInactiveInfoForeground": "#94A7B0",
"selectionInactiveBackground": "#80CBC450",
"selectionBackground": "#80CBC480",
"selectionForeground": "#546e7a",
"selectionInfoForeground": "#546e7a"
},
"Component": {
"arc": 4,
"borderColor": "#E7E7E8",
"disabledBorderColor": "#F3F4F5",
"focusColor": "#00BCD4",
"focusedBorderColor": "#00BCD4",
"hoverIconColor": "#00BCD4",
"infoForeground": "#94A7B0",
"iconColor": "#546E7A"
},
"control": "#FAFAFA",
"controlText": "#94A7B0",
"Counter": {
"background": "#00BCD4",
"foreground": "#546e7a"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#94A7B0",
"changedValueForeground": "#00BCD4",
"errorMessageForeground": "#E53935",
"evaluatingExpressionForeground": "#94A7B0",
"exceptionForeground": "#F6A434",
"modifyingValueForeground": "#00BCD4",
"valueForeground": "#00BCD4"
}
},
"DebuggerTabs": {
"selectedBackground": "#E7E7E8",
"underlinedTabBackground": "#E7E7E8"
},
"DebuggerPopup": {
"borderColor": "#E7E7E8"
},
"DefaultTabs": {
"background": "#FAFAFA",
"borderColor": "#FAFAFA",
"hoverBackground": "#E7E7E8",
"hoverColor": "#FAFAFA",
"hoverMaskColor": "#E7E7E8",
"inactiveColoredFileBackground": "#F3F4F5",
"inactiveUnderlineColor": "#D2D4D5",
"inactiveMaskColor": "#FAFAFA",
"underlineColor": "#00BCD4",
"underlinedTabBackground": "#E7E7E8"
},
"Desktop.background": "#FAFAFA",
"DialogWrapper.southPanelBackground": "#FAFAFA",
"DialogWrapper.southPanelDivider": "#FAFAFA",
"DragAndDrop": {
"areaBackground": "#FAFAFA",
"areaBorderColor": "#FAFAFA",
"areaForeground": "#546E7A"
},
"Editor": {
"background": "#FAFAFA",
"foreground": "#546E7A",
"shortcutForeground": "#94A7B0"
},
"EditorPane": {
"background": "#FAFAFA",
"caretForeground": "#00BCD4",
"foreground": "#546E7A",
"inactiveBackground": "#FAFAFA",
"inactiveForeground": "#D2D4D5",
"selectionBackground": "#80CBC4",
"selectionForeground": "#546e7a"
},
"EditorTabs": {
"borderColor": "#FFFFFF",
"hoverColor": "#E7E7E8",
"hoverMaskColor": "#E7E7E8",
"inactiveMaskColor": "#FAFAFA",
"inactiveColoredFileBackground": "#FAFAFA2",
"inactiveUnderlineColor": "#D2D4D5",
"selectedForeground": "#546E7A",
"selectedBackground": "#E7E7E8",
"underlineColor": "#00BCD4",
"underlinedTabBackground": "#E7E7E8"
},
"EditorGroupsTabs": {
"background": "#FAFAFA",
"borderColor": "#FFFFFF",
"hoverBackground": "#E7E7E8",
"hoverColor": "#E7E7E8",
"inactiveUnderlineColor": "#00BCD4",
"underlineColor": "#00BCD4",
"underlinedTabBackground": "#E7E7E8",
"underlinedTabForeground": "#546E7A"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#CCD7DA",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#d3e1e8",
"FormattedTextField": {
"background": "#FAFAFA",
"caretForeground": "#00BCD4",
"foreground": "#546E7A",
"inactiveBackground": "#F3F4F5",
"inactiveForeground": "#D2D4D5",
"selectionForeground": "#546e7a",
"selectionBackground": "#E7E7E8"
},
"Group": {
"disabledSeparatorColor": "#d3e1e8",
"separatorColor": "#d3e1e8"
},
"GutterTooltip": {
"infoForeground": "#546E7A",
"lineSeparatorColor": "#FAFAFA"
},
"HeaderColor": {
"active": "#FAFAFA",
"inactive": "#EEEEEE"
},
"HelpTooltip": {
"background": "#FAFAFA",
"borderColor": "#d3e1e8",
"foreground": "#546E7A",
"infoForeground": "#94A7B0",
"shortcutForeground": "#94A7B0"
},
"Hyperlink.linkColor": "#00BCD4",
"inactiveCaption": "#FFFFFF",
"inactiveCaptionBorder": "#FAFAFA",
"inactiveCaptionText": "#94A7B0",
"info": "#94A7B0",
"infoText": "#94A7B0",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#d3e1e8",
"InplaceRefactoringPopup": {
"borderColor": "#FAFAFA"
},
"InternalFrame": {
"activeTitleForeground": "#546E7A",
"background": "#FAFAFA",
"inactiveTitleForeground": "#94A7B0"
},
"Label": {
"background": "#FAFAFA",
"disabledForeground": "#D2D4D5",
"disabledShadow": "#FAFAFA",
"disabledText": "#D2D4D5",
"foreground": "#546E7A",
"infoForeground": "#94A7B0",
"selectedForeground": "#546e7a"
},
"Link": {
"activeForeground": "#00BCD4",
"hoverForeground": "#00BCD4",
"pressedForeground": "#00BCD4",
"secondaryForeground": "#94A7B0",
"visitedForeground": "#00BCD4"
},
"link.foreground": "#00BCD4",
"List": {
"background": "#FFFFFF",
"foreground": "#546E7A",
"selectionBackground": "#80CBC450",
"selectionForeground": "#546e7a",
"selectionInactiveForeground": "#546e7a",
"selectionInactiveBackground": "#80CBC440"
},
"material": {
"background": "#FAFAFA",
"branchColor": "#546E7A",
"contrast": "#EEEEEE",
"foreground": "#546E7A",
"mergeCommits": "#F3F4F5",
"primaryColor": "#94A7B0",
"selectionForeground": "#546e7a",
"tab.backgroundColor": "#FAFAFA",
"tab.borderColor": "#00BCD4",
"tagColor": "#94A7B0"
},
"MemoryIndicator": {
"allocatedBackground": "#FFFFFF",
"usedColor": "#E7E7E8",
"usedBackground": "#E7E7E8"
},
"Menu": {
"acceleratorForeground": "#94A7B0",
"acceleratorSelectionForeground": "#546e7a",
"background": "#FAFAFA",
"border": "4,2,4,2",
"borderColor": "#FFFFFF",
"disabledBackground": "#FFFFFF",
"disabledForeground": "#D2D4D5",
"foreground": "#546E7A",
"selectionBackground": "#80CBC4",
"selectionForeground": "#546e7a",
"separatorColor": "#d3e1e8"
},
"MenuBar": {
"background": "#FAFAFA",
"borderColor": "#FAFAFA",
"disabledBackground": "#FAFAFA",
"disabledForeground": "#D2D4D5",
"foreground": "#546E7A",
"highlight": "#FAFAFA",
"selectionBackground": "#80CBC4",
"selectionForeground": "#546e7a",
"shadow": "#FAFAFA"
},
"MenuItem": {
"acceleratorForeground": "#94A7B0",
"acceleratorSelectionForeground": "#546e7a",
"border": "4,2,4,2",
"background": "#FAFAFA",
"disabledBackground": "#FAFAFA",
"disabledForeground": "#D2D4D5",
"foreground": "#546E7A",
"selectionBackground": "#80CBC4",
"selectionForeground": "#546e7a"
},
"NavBar": {
"arrowColor": "#546E7A",
"borderColor": "#FAFAFA"
},
"NewClass": {
"Panel": {
"background": "#FAFAFA"
},
"SearchField": {
"background": "#FAFAFA"
}
},
"NewPSD.warning": "#00BCD4",
"Notification": {
"background": "#eae8e8",
"borderColor": "#eae8e8",
"errorBackground": "#eae8e8",
"errorBorderColor": "#eae8e8",
"foreground": "#546E7A",
"MoreButton": {
"background": "#F3F4F5",
"foreground": "#546E7A",
"innerBorderColor": "#F3F4F5"
},
"ToolWindow": {
"errorBackground": "#eae8e8",
"errorBorderColor": "#eae8e8",
"informativeBackground": "#eae8e8",
"informativeBorderColor": "#eae8e8",
"warningBackground": "#eae8e8",
"warningBorderColor": "#eae8e8"
}
},
"OnePixelDivider.background": "#d3e1e8",
"OptionPane": {
"background": "#FAFAFA",
"foreground": "#546E7A",
"messageForeground": "#546E7A"
},
"Outline": {
"color": "#F3F4F5",
"focusedColor": "#00BCD4",
"disabledColor": "#D2D4D5"
},
"Panel": {
"background": "#FAFAFA",
"foreground": "#546E7A"
},
"ParameterInfo": {
"background": "#FFFFFF",
"borderColor": "#E7E7E8",
"currentOverloadBackground": "#E7E7E8",
"currentParameterForeground": "#00BCD4",
"disabledForeground": "#D2D4D5",
"foreground": "#546E7A",
"infoForeground": "#94A7B0",
"lineSeparatorColor": "#E7E7E8"
},
"PasswordField": {
"background": "#FAFAFA",
"capsLockIconColor": "#00BCD4",
"caretForeground": "#00BCD4",
"foreground": "#546E7A",
"inactiveForeground": "#D2D4D5",
"selectionBackground": "#E7E7E8",
"selectionForeground": "#546e7a"
},
"Plugins": {
"background": "#FAFAFA",
"disabledForeground": "#D2D4D5",
"eapTagBackground": "#E7E7E8",
"lightSelectionBackground": "#80CBC4",
"paidTagBackground": "#E7E7E8",
"selectionBackground": "#80CBC4",
"tagForeground": "#00BCD4",
"tagBackground": "#E7E7E8",
"trialTagBackground": "#E7E7E8",
"Button": {
"installBackground": "#F3F4F5",
"installBorderColor": "#F3F4F5",
"installForeground": "#546E7A",
"installFocusedBackground": "#E7E7E8",
"installFillForeground": "#D2D4D5",
"installFillBackground": "#F3F4F5",
"updateBackground": "#F3F4F5",
"updateBorderColor": "#F3F4F5",
"updateForeground": "#546E7A"
},
"SearchField": {
"background": "#FAFAFA",
"borderColor": "#d3e1e8"
},
"SectionHeader": {
"background": "#FFFFFF",
"foreground": "#546E7A"
},
"Tab": {
"hoverBackground": "#E7E7E8",
"selectedForeground": "#546e7a",
"selectedBackground": "#E7E7E8"
}
},
"Popup": {
"Advertiser": {
"background": "#FAFAFA",
"borderColor": "#FAFAFA",
"foreground": "#00BCD4"
},
"borderColor": "#EEEEEE",
"inactiveBorderColor": "#FAFAFA",
"innerBorderColor": "#FFFFFF",
"Header": {
"activeBackground": "#FAFAFA",
"inactiveBackground": "#EEEEEE"
},
"paintBorder": true,
"separatorForeground": "#546E7A",
"separatorColor": "#FFFFFF",
"Toolbar": {
"Floating.background": "#EEEEEE",
"background": "#EEEEEE",
"borderColor": "#EEEEEE"
}
},
"PopupMenu": {
"background": "#FAFAFA",
"border": "2,0,2,0",
"foreground": "#546E7A",
"translucentBackground": "#FAFAFA"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#FAFAFA",
"foreground": "#00BCD4",
"indeterminateEndColor": "#00BCD4",
"indeterminateStartColor": "#00BCD4",
"progressColor": "#00BCD4",
"selectionBackground": "#E7E7E8",
"trackColor": "#E7E7E8"
},
"PsiViewer": {
"referenceHighlightColor": "#00BCD4"
},
"RadioButton": {
"background": "#FAFAFA",
"disabledText": "#D2D4D5",
"foreground": "#546E7A"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#94A7B0",
"acceleratorSelectionForeground": "#94A7B0",
"background": "#FAFAFA",
"disabledBackground": "#FAFAFA",
"disabledForeground": "#D2D4D5",
"foreground": "#546E7A",
"selectionBackground": "#80CBC4",
"selectionForeground": "#546e7a"
},
"ScrollBar": {
"background": "#FAFAFA",
"hoverThumbBorderColor": "#00BCD4",
"hoverThumbColor": "#00BCD4",
"hoverTrackColor": "#FAFAFA30",
"Mac": {
"hoverThumbBorderColor": "#00BCD4",
"hoverThumbColor": "#00BCD4",
"hoverTrackColor": "#FAFAFA30",
"thumbBorderColor": "#00BCD470",
"thumbColor": "#00BCD470",
"trackColor": "#FAFAFA30",
"Transparent": {
"hoverThumbBorderColor": "#00BCD4",
"hoverThumbColor": "#00BCD4",
"hoverTrackColor": "#FAFAFA30",
"thumbBorderColor": "#00BCD470",
"thumbColor": "#00BCD470",
"trackColor": "#FAFAFA30"
}
},
"thumb": "#E7E7E8",
"thumbBorderColor": "#00BCD470",
"thumbColor": "#00BCD470",
"trackColor": "#FAFAFA30",
"Transparent": {
"hoverThumbBorderColor": "#00BCD4",
"hoverThumbColor": "#00BCD4",
"hoverTrackColor": "#FAFAFA30",
"thumbBorderColor": "#00BCD470",
"thumbColor": "#00BCD470",
"trackColor": "#FAFAFA30"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#EEEEEE",
"foreground": "#94A7B0"
},
"Header": {
"background": "#FAFAFA"
},
"List": {
"separatorForeground": "#94A7B0",
"separatorColor": "#d3e1e8"
},
"SearchField": {
"background": "#FAFAFA",
"borderColor": "#EEEEEE",
"infoForeground": "#94A7B0"
},
"Tab": {
"active.foreground": "#546e7a",
"selectedForeground": "#546e7a",
"selectedBackground": "#E7E7E8"
}
},
"SearchMatch": {
"endBackground": "#00BCD4",
"startBackground": "#00BCD4"
},
"SearchField.errorBackground": "#eae8e8",
"Separator": {
"background": "#FFFFFF",
"foreground": "#FFFFFF",
"separatorColor": "#FFFFFF"
},
"SidePanel": {
"background": "#FAFAFA"
},
"Slider": {
"background": "#FAFAFA",
"buttonBorderColor": "#00BCD4",
"buttonColor": "#00BCD4",
"foreground": "#546E7A",
"majorTickLength": 6,
"tickColor": "#FFFFFF",
"trackColor": "#E7E7E8",
"trackWidth": 7,
"thumb": "#00BCD4"
},
"SpeedSearch": {
"background": "#E7E7E8",
"borderColor": "#d3e1e8",
"foreground": "#546E7A",
"errorForeground": "#546E7A"
},
"Spinner": {
"background": "#FAFAFA",
"border": "3,3,3,3",
"foreground": "#546E7A",
"selectionForeground": "#546e7a"
},
"SplitPane": {
"background": "#FAFAFA",
"highlight": "#FAFAFA"
},
"SplitPaneDivider.draggingColor": "#FFFFFF",
"StatusBar": {
"borderColor": "#FAFAFA"
},
"TabbedPane": {
"background": "#FAFAFA",
"contentAreaColor": "#E7E7E8",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#d3e1e8",
"disabledForeground": "#D2D4D5",
"disabledUnderlineColor": "#D2D4D5",
"focus": "#E7E7E8",
"focusColor": "#E7E7E8",
"fontSizeOffset": 0,
"foreground": "#546E7A",
"highlight": "#d3e1e8",
"hoverColor": "#E7E7E8",
"labelShift": 0,
"selectedForeground": "#546e7a",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#00BCD4"
},
"TabbedPane.mt.tab.background": "#FAFAFA",
"Table": {
"background": "#FAFAFA",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#00BCD4",
"dropLineShortColor": "#00BCD4",
"focusCellBackground": "#E7E7E8",
"focusCellForeground": "#546e7a",
"foreground": "#546E7A",
"gridColor": "#FAFAFA",
"highlightOuter": "#E7E7E8",
"lightSelectionForeground": "#546e7a",
"lightSelectionInactiveForeground": "#94A7B0",
"lightSelectionInactiveBackground": "#FFFFFF",
"selectionBackground": "#E7E7E8",
"selectionForeground": "#546e7a",
"selectionInactiveBackground": "#E7E7E8",
"selectionInactiveForeground": "#546e7a",
"sortIconColor": "#546E7A",
"stripeColor": "#EEEEEE"
},
"TableHeader": {
"background": "#FAFAFA",
"borderColor": "#FAFAFA",
"bottomSeparatorColor": "#FFFFFF",
"cellBorder": "4,0,4,0",
"disabledForeground": "#D2D4D5",
"foreground": "#546E7A",
"focusCellBackground": "#E7E7E8",
"focusCellForeground": "#546e7a",
"height": 25,
"separatorColor": "#FFFFFF"
},
"text": "#94A7B0",
"textInactiveText": "#94A7B0",
"textText": "#94A7B0",
"TextArea": {
"background": "#FAFAFA",
"caretForeground": "#00BCD4",
"foreground": "#546E7A",
"inactiveForeground": "#D2D4D5",
"selectionBackground": "#E7E7E8",
"selectionForeground": "#546e7a"
},
"TextField": {
"background": "#FAFAFA",
"caretForeground": "#00BCD4",
"foreground": "#546E7A",
"inactiveForeground": "#D2D4D5",
"selectionBackground": "#E7E7E8",
"selectionForeground": "#546e7a"
},
"TextPane": {
"background": "#FAFAFA",
"caretForeground": "#00BCD4",
"foreground": "#546E7A",
"inactiveForeground": "#D2D4D5",
"selectionBackground": "#E7E7E8",
"selectionForeground": "#546e7a"
},
"TitlePane": {
"background": "#EEEEEE",
"Button.hoverBackground": "#E7E7E8",
"inactiveBackground": "#FAFAFA",
"infoForeground": "#94A7B0",
"inactiveInfoForeground": "#94A7B0"
},
"TitledBorder.titleColor": "#546E7A",
"ToggleButton": {
"borderColor": "#F3F4F5",
"buttonColor": "#546E7A",
"disabledText": "#D2D4D5",
"foreground": "#546E7A",
"offForeground": "#FAFAFA",
"offBackground": "#FAFAFA",
"onBackground": "#00BCD4",
"onForeground": "#00BCD4"
},
"ToolBar": {
"background": "#FAFAFA",
"borderHandleColor": "#94A7B0",
"floatingForeground": "#94A7B0",
"foreground": "#546E7A"
},
"ToolTip": {
"Actions.background": "#FAFAFA",
"Actions.infoForeground": "#94A7B0",
"background": "#FAFAFA",
"borderColor": "#E7E7E8",
"foreground": "#546E7A",
"infoForeground": "#94A7B0",
"separatorColor": "#d3e1e8",
"shortcutForeground": "#94A7B0"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#E7E7E8",
"selectedForeground": "#546e7a",
"selectedBackground": "#EEEEEE"
},
"Header": {
"background": "#FAFAFA",
"borderColor": "#FFFFFF",
"inactiveBackground": "#FAFAFA"
},
"HeaderCloseButton": {
"background": "#FAFAFA"
},
"HeaderTab": {
"hoverBackground": "#E7E7E8",
"hoverInactiveBackground": "#FFFFFF",
"inactiveUnderlineColor": "#00BCD4",
"selectedBackground": "#EEEEEE",
"selectedInactiveBackground": "#EEEEEE",
"underlineColor": "#00BCD4",
"underlinedTabBackground": "#E7E7E8",
"underlinedTabInactiveBackground": "#FFFFFF"
}
},
"Tree": {
"background": "#FAFAFA",
"foreground": "#94A7B0",
"hash": "#d3e1e8",
"modifiedItemForeground": "#00BCD4",
"rowHeight": 28,
"selectionBackground": "#80CBC440",
"selectionForeground": "#546e7a",
"selectionInactiveForeground": "#546e7a",
"selectionInactiveBackground": "#80CBC440",
"textBackground": "#FAFAFA"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#d3e1e8",
"ColorPicker.background": "#FAFAFA",
"ColorPicker.foreground": "#546E7A",
"Component.borderColor": "#d3e1e8",
"Component.background": "#FAFAFA",
"Component.foreground": "#546E7A",
"Connector.borderColor": "#d3e1e8",
"Connector.hoverBorderColor": "#E7E7E8",
"Canvas.background": "#EEEEEE",
"highStroke.foreground": "#546E7A",
"Label.foreground": "#94A7B0",
"List.selectionBackground": "#80CBC440",
"Panel.borderColor": "#d3e1e8",
"Panel.background": "#FAFAFA",
"percent.foreground": "#546E7A",
"Placeholder.background": "#FAFAFA",
"Placeholder.borderColor": "#d3e1e8",
"Placeholder.foreground": "#546E7A",
"Placeholder.selectedForeground": "#546e7a",
"Preview.background": "#FAFAFA",
"stroke.acceleratorForeground": "#94A7B0"
},
"ValidationTooltip": {
"errorBackground": "#eae8e8",
"errorBorderColor": "#eae8e8",
"warningBackground": "#eae8e8",
"warningBorderColor": "#eae8e8"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#FAFAFA"
},
"GitCommits": {
"graphColor": "#E7E7E8"
},
"GitLog": {
"localBranchIconColor": "#00BCD4",
"otherIconColor": "#94A7B0",
"remoteBranchIconColor": "#546E7A",
"tagIconColor": "#94A7B0"
},
"HgLog": {
"branchIconColor": "#00BCD4",
"bookmarkIconColor": "#546e7a",
"closedBranchIconColor": "#D2D4D5",
"localTagIconColor": "#94A7B0",
"mqTagIconColor": "#94A7B0",
"tagIconColor": "#94A7B0",
"tipIconColor": "#94A7B0"
},
"Log": {
"Commit.unmatchedForeground": "#94A7B0",
"Commit.currentBranchBackground": "#FFFFFF"
},
"RefLabel": {
"foreground": "#546e7a",
"backgroundBase": "#E7E7E8"
}
},
"Viewport": {
"background": "#FAFAFA",
"foreground": "#546E7A"
},
"WelcomeScreen": {
"background": "#FAFAFA",
"borderColor": "#FAFAFA",
"captionBackground": "#EEEEEE",
"captionForeground": "#546E7A",
"footerBackground": "#EEEEEE",
"footerForeground": "#546E7A",
"headerBackground": "#FAFAFA",
"headerForeground": "#546E7A",
"separatorColor": "#d3e1e8",
"Projects": {
"background": "#FFFFFF",
"selectionBackground": "#80CBC4",
"selectionInactiveBackground": "#FFFFFF"
}
},
"window": "#FAFAFA",
"windowBorder": "#d3e1e8",
"windowText": "#94A7B0",
"Window.border": "#d3e1e8"
},
"icons": {
"ColorPalette": {
"#43494A": "#EEEEEE",
"#6B6B6B": "#94A7B0",
"#A7A7A7": "#FAFAFA",
"#3D6185": "#00BCD4",
"#466D94": "#00BCD4",
"#3C3F41": "#FAFAFA",
"#545556": "#D2D4D5",
"#606060": "#D2D4D5",
"#9AA7B0": "#546E7A",
"#675133": "#00BCD4",
"Actions.Blue": "#6182B8",
"Actions.Green": "#91B859",
"Actions.Grey": "#94A7B0",
"Actions.GreyInline": "#AABFC9",
"Actions.GreyInline.Dark": "#546E7A",
"Actions.Red": "#E53935",
"Actions.Yellow": "#F6A434",
"Checkbox.Background.Default": "#EEEEEE",
"Checkbox.Background.Default.Dark": "#EEEEEE",
"Checkbox.Background.Disabled": "#CCD7DA",
"Checkbox.Background.Disabled.Dark": "#CCD7DA",
"Checkbox.Border.Default": "#d3e1e8",
"Checkbox.Border.Default.Dark": "#d3e1e8",
"Checkbox.Border.Disabled": "#D2D4D5",
"Checkbox.Border.Disabled.Dark": "#D2D4D5",
"Checkbox.Focus.Thin.Default": "#00BCD4",
"Checkbox.Focus.Thin.Default.Dark": "#00BCD4",
"Checkbox.Focus.Wide": "#00BCD4",
"Checkbox.Focus.Wide.Dark": "#00BCD4",
"Checkbox.Foreground.Disabled": "#D2D4D5",
"Checkbox.Foreground.Disabled.Dark": "#D2D4D5",
"Checkbox.Background.Selected": "#00BCD4",
"Checkbox.Background.Selected.Dark": "#FAFAFA",
"Checkbox.Border.Selected": "#00BCD4",
"Checkbox.Border.Selected.Dark": "#00BCD4",
"Checkbox.Foreground.Selected": "#00BCD4",
"Checkbox.Foreground.Selected.Dark": "#00BCD4",
"Checkbox.Focus.Thin.Selected": "#546E7A",
"Checkbox.Focus.Thin.Selected.Dark": "#546E7A",
"Objects.Grey": "#AABFC9",
"Objects.Blue": "#6182B8",
"Objects.RedStatus": "#E53935",
"Objects.Red": "#E53935",
"Objects.Pink": "#7C4DFF",
"Objects.Yellow": "#F6A434",
"Objects.Green": "#91B859",
"Objects.Purple": "#7C4DFF",
"Objects.BlackText": "#546E7A",
"Objects.YellowDark": "#F76D47",
"Objects.GreenAndroid": "#91B859"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "Material Oceanic Contrast",
"dark": true,
"author": "Mallowigi",
"editorScheme": "/colors/Material Oceanic.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#607D8B",
"background": "#263238",
"borderColor": "#2A373E",
"disabledBackground": "#2E3C43",
"disabledForeground": "#415967",
"disabledText": "#415967",
"focusColor": "#425B67",
"focusedBorderColor": "#009688",
"foreground": "#B0BEC5",
"inactiveBackground": "#2E3C43",
"inactiveForeground": "#607D8B",
"infoForeground": "#607D8B",
"selectionBackground": "#546E7A",
"selectionBackgroundInactive": "#32424A",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#32424A",
"separatorColor": "#2A373E"
},
"activeCaption": "#263238",
"ActionButton": {
"hoverBackground": "#00968850",
"hoverBorderColor": "#00968850",
"hoverSeparatorColor": "#2E3C43",
"focusedBorderColor": "#00968850",
"pressedBackground": "#00968850",
"pressedBorderColor": "#00968850"
},
"Autocomplete": {
"selectionBackground": "#546E7A"
},
"Borders.ContrastBorderColor": "#263238",
"Borders.color": "#2A373E",
"Button": {
"arc": 0,
"background": "#263238",
"default": {
"endBackground": "#314549",
"endBorderColor": "#314549",
"foreground": "#FFFFFF",
"focusColor": "#009688",
"focusedBorderColor": "#009688",
"shadowColor": "#314549",
"startBackground": "#314549",
"startBorderColor": "#314549"
},
"disabledBorderColor": "#2E3C43",
"disabledText": "#415967",
"endBackground": "#2E3C43",
"endBorderColor": "#2E3C43",
"focus": "#425B67",
"focusedBorderColor": "#009688",
"foreground": "#607D8B",
"highlight": "#FFFFFF",
"mt.background": "#2E3C43",
"mt.foreground": "#607D8B",
"mt.selectedForeground": "#FFFFFF",
"mt.selection.color1": "#314549",
"mt.selection.color2": "#314549",
"startBackground": "#2E3C43",
"startBorderColor": "#2E3C43",
"shadowColor": "#2E3C43",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#2A373E",
"Tooltip.background": "#1E272C"
},
"Content.background": "#1E272C",
"CheckBox": {
"background": "#263238",
"disabledText": "#415967",
"foreground": "#B0BEC5",
"select": "#009688"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#607D8B",
"acceleratorSelectionForeground": "#607D8B",
"background": "#263238",
"disabledBackground": "#263238",
"disabledForeground": "#415967",
"foreground": "#B0BEC5",
"selectionBackground": "#546E7A",
"selectionForeground": "#FFFFFF"
},
"ColorChooser": {
"background": "#263238",
"foreground": "#B0BEC5",
"swatchesDefaultRecentColor": "#B0BEC5"
},
"ComboBoxButton.background": "#2E3C43",
"ComboBox": {
"ArrowButton": {
"background": "#2E3C43",
"disabledIconColor": "#415967",
"iconColor": "#B0BEC5",
"nonEditableBackground": "#263238"
},
"background": "#1E272C",
"buttonBackground": "#2E3C43",
"disabledForeground": "#415967",
"foreground": "#B0BEC5",
"modifiedItemForeground": "#009688",
"nonEditableBackground": "#32424A",
"padding": "5,5,5,5",
"selectionBackground": "#314549",
"selectionForeground": "#FFFFFF"
},
"ComboPopup.border": "#2A373E",
"CompletionPopup": {
"background": "#32424A",
"foreground": "#B0BEC5",
"infoForeground": "#607D8B",
"matchForeground": "#009688",
"matchSelectionForeground": "#009688",
"nonFocusedState": "false",
"selectedGrayedForeground": "#FFFFFF",
"selectionGrayForeground": "#FFFFFF",
"selectionInactiveInfoForeground": "#607D8B",
"selectionInactiveBackground": "#546E7A50",
"selectionBackground": "#546E7A80",
"selectionForeground": "#FFFFFF",
"selectionInfoForeground": "#FFFFFF"
},
"Component": {
"arc": 4,
"borderColor": "#425B67",
"disabledBorderColor": "#2E3C43",
"focusColor": "#009688",
"focusedBorderColor": "#009688",
"hoverIconColor": "#009688",
"infoForeground": "#607D8B",
"iconColor": "#B0BEC5"
},
"control": "#263238",
"controlText": "#607D8B",
"Counter": {
"background": "#009688",
"foreground": "#FFFFFF"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#607D8B",
"changedValueForeground": "#009688",
"errorMessageForeground": "#f07178",
"evaluatingExpressionForeground": "#607D8B",
"exceptionForeground": "#ffcb6b",
"modifyingValueForeground": "#009688",
"valueForeground": "#009688"
}
},
"DebuggerTabs": {
"selectedBackground": "#425B67",
"underlinedTabBackground": "#425B67"
},
"DebuggerPopup": {
"borderColor": "#425B67"
},
"DefaultTabs": {
"background": "#263238",
"borderColor": "#263238",
"hoverBackground": "#314549",
"hoverColor": "#1E272C",
"hoverMaskColor": "#425B67",
"inactiveColoredFileBackground": "#2E3C43",
"inactiveUnderlineColor": "#415967",
"inactiveMaskColor": "#1E272C",
"underlineColor": "#009688",
"underlinedTabBackground": "#314549"
},
"Desktop.background": "#263238",
"DialogWrapper.southPanelBackground": "#263238",
"DialogWrapper.southPanelDivider": "#263238",
"DragAndDrop": {
"areaBackground": "#263238",
"areaBorderColor": "#263238",
"areaForeground": "#B0BEC5"
},
"Editor": {
"background": "#1E272C",
"foreground": "#B0BEC5",
"shortcutForeground": "#607D8B"
},
"EditorPane": {
"background": "#1E272C",
"caretForeground": "#009688",
"foreground": "#B0BEC5",
"inactiveBackground": "#263238",
"inactiveForeground": "#415967",
"selectionBackground": "#546E7A",
"selectionForeground": "#FFFFFF"
},
"EditorTabs": {
"borderColor": "#32424A",
"hoverColor": "#425B67",
"hoverMaskColor": "#425B67",
"inactiveMaskColor": "#263238",
"inactiveColoredFileBackground": "#2632382",
"inactiveUnderlineColor": "#415967",
"selectedForeground": "#B0BEC5",
"selectedBackground": "#314549",
"underlineColor": "#009688",
"underlinedTabBackground": "#314549"
},
"EditorGroupsTabs": {
"background": "#263238",
"borderColor": "#32424A",
"hoverBackground": "#425B67",
"hoverColor": "#425B67",
"inactiveUnderlineColor": "#009688",
"underlineColor": "#009688",
"underlinedTabBackground": "#314549",
"underlinedTabForeground": "#B0BEC5"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#2E3C43",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#2A373E",
"FormattedTextField": {
"background": "#1E272C",
"caretForeground": "#009688",
"foreground": "#B0BEC5",
"inactiveBackground": "#2E3C43",
"inactiveForeground": "#415967",
"selectionForeground": "#FFFFFF",
"selectionBackground": "#314549"
},
"Group": {
"disabledSeparatorColor": "#2A373E",
"separatorColor": "#2A373E"
},
"GutterTooltip": {
"infoForeground": "#B0BEC5",
"lineSeparatorColor": "#263238"
},
"HeaderColor": {
"active": "#263238",
"inactive": "#1E272C"
},
"HelpTooltip": {
"background": "#263238",
"borderColor": "#2A373E",
"foreground": "#B0BEC5",
"infoForeground": "#607D8B",
"shortcutForeground": "#607D8B"
},
"Hyperlink.linkColor": "#009688",
"inactiveCaption": "#32424A",
"inactiveCaptionBorder": "#263238",
"inactiveCaptionText": "#607D8B",
"info": "#607D8B",
"infoText": "#607D8B",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#2A373E",
"InplaceRefactoringPopup": {
"borderColor": "#263238"
},
"InternalFrame": {
"activeTitleForeground": "#B0BEC5",
"background": "#263238",
"inactiveTitleForeground": "#607D8B"
},
"Label": {
"background": "#263238",
"disabledForeground": "#415967",
"disabledShadow": "#263238",
"disabledText": "#415967",
"foreground": "#B0BEC5",
"infoForeground": "#607D8B",
"selectedForeground": "#FFFFFF"
},
"Link": {
"activeForeground": "#009688",
"hoverForeground": "#009688",
"pressedForeground": "#009688",
"secondaryForeground": "#607D8B",
"visitedForeground": "#009688"
},
"link.foreground": "#009688",
"List": {
"background": "#32424A",
"foreground": "#B0BEC5",
"selectionBackground": "#546E7A50",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#546E7A50"
},
"material": {
"background": "#263238",
"branchColor": "#B0BEC5",
"contrast": "#1E272C",
"foreground": "#B0BEC5",
"mergeCommits": "#2E3C43",
"primaryColor": "#607D8B",
"selectionForeground": "#FFFFFF",
"tab.backgroundColor": "#263238",
"tab.borderColor": "#009688",
"tagColor": "#607D8B"
},
"MemoryIndicator": {
"allocatedBackground": "#32424A",
"usedColor": "#425B67",
"usedBackground": "#425B67"
},
"Menu": {
"acceleratorForeground": "#607D8B",
"acceleratorSelectionForeground": "#FFFFFF",
"background": "#263238",
"border": "4,2,4,2",
"borderColor": "#32424A",
"disabledBackground": "#32424A",
"disabledForeground": "#415967",
"foreground": "#B0BEC5",
"selectionBackground": "#546E7A",
"selectionForeground": "#FFFFFF",
"separatorColor": "#2A373E"
},
"MenuBar": {
"background": "#1E272C",
"borderColor": "#263238",
"disabledBackground": "#263238",
"disabledForeground": "#415967",
"foreground": "#B0BEC5",
"highlight": "#263238",
"selectionBackground": "#546E7A",
"selectionForeground": "#FFFFFF",
"shadow": "#1E272C"
},
"MenuItem": {
"acceleratorForeground": "#607D8B",
"acceleratorSelectionForeground": "#FFFFFF",
"border": "4,2,4,2",
"background": "#263238",
"disabledBackground": "#263238",
"disabledForeground": "#415967",
"foreground": "#B0BEC5",
"selectionBackground": "#546E7A",
"selectionForeground": "#FFFFFF"
},
"NavBar": {
"arrowColor": "#B0BEC5",
"borderColor": "#263238"
},
"NewClass": {
"Panel": {
"background": "#263238"
},
"SearchField": {
"background": "#1E272C"
}
},
"NewPSD.warning": "#009688",
"Notification": {
"background": "#1E272C",
"borderColor": "#1E272C",
"errorBackground": "#1E272C",
"errorBorderColor": "#1E272C",
"foreground": "#B0BEC5",
"MoreButton": {
"background": "#2E3C43",
"foreground": "#B0BEC5",
"innerBorderColor": "#2E3C43"
},
"ToolWindow": {
"errorBackground": "#1E272C",
"errorBorderColor": "#1E272C",
"informativeBackground": "#1E272C",
"informativeBorderColor": "#1E272C",
"warningBackground": "#1E272C",
"warningBorderColor": "#1E272C"
}
},
"OnePixelDivider.background": "#2A373E",
"OptionPane": {
"background": "#263238",
"foreground": "#B0BEC5",
"messageForeground": "#B0BEC5"
},
"Outline": {
"color": "#2E3C43",
"focusedColor": "#009688",
"disabledColor": "#415967"
},
"Panel": {
"background": "#263238",
"foreground": "#B0BEC5"
},
"ParameterInfo": {
"background": "#32424A",
"borderColor": "#314549",
"currentOverloadBackground": "#314549",
"currentParameterForeground": "#009688",
"disabledForeground": "#415967",
"foreground": "#B0BEC5",
"infoForeground": "#607D8B",
"lineSeparatorColor": "#314549"
},
"PasswordField": {
"background": "#1E272C",
"capsLockIconColor": "#009688",
"caretForeground": "#009688",
"foreground": "#B0BEC5",
"inactiveForeground": "#415967",
"selectionBackground": "#314549",
"selectionForeground": "#FFFFFF"
},
"Plugins": {
"background": "#263238",
"disabledForeground": "#415967",
"eapTagBackground": "#425B67",
"lightSelectionBackground": "#546E7A",
"paidTagBackground": "#425B67",
"selectionBackground": "#546E7A",
"tagForeground": "#009688",
"tagBackground": "#425B67",
"trialTagBackground": "#425B67",
"Button": {
"installBackground": "#2E3C43",
"installBorderColor": "#2E3C43",
"installForeground": "#B0BEC5",
"installFocusedBackground": "#425B67",
"installFillForeground": "#415967",
"installFillBackground": "#2E3C43",
"updateBackground": "#2E3C43",
"updateBorderColor": "#2E3C43",
"updateForeground": "#B0BEC5"
},
"SearchField": {
"background": "#1E272C",
"borderColor": "#2A373E"
},
"SectionHeader": {
"background": "#32424A",
"foreground": "#B0BEC5"
},
"Tab": {
"hoverBackground": "#314549",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#314549"
}
},
"Popup": {
"Advertiser": {
"background": "#263238",
"borderColor": "#263238",
"foreground": "#009688"
},
"borderColor": "#1E272C",
"inactiveBorderColor": "#263238",
"innerBorderColor": "#32424A",
"Header": {
"activeBackground": "#263238",
"inactiveBackground": "#1E272C"
},
"paintBorder": true,
"separatorForeground": "#B0BEC5",
"separatorColor": "#32424A",
"Toolbar": {
"Floating.background": "#1E272C",
"background": "#1E272C",
"borderColor": "#1E272C"
}
},
"PopupMenu": {
"background": "#263238",
"border": "2,0,2,0",
"foreground": "#B0BEC5",
"translucentBackground": "#263238"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#263238",
"foreground": "#009688",
"indeterminateEndColor": "#009688",
"indeterminateStartColor": "#009688",
"progressColor": "#009688",
"selectionBackground": "#425B67",
"trackColor": "#425B67"
},
"PsiViewer": {
"referenceHighlightColor": "#009688"
},
"RadioButton": {
"background": "#263238",
"disabledText": "#415967",
"foreground": "#B0BEC5"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#607D8B",
"acceleratorSelectionForeground": "#607D8B",
"background": "#263238",
"disabledBackground": "#263238",
"disabledForeground": "#415967",
"foreground": "#B0BEC5",
"selectionBackground": "#546E7A",
"selectionForeground": "#FFFFFF"
},
"ScrollBar": {
"background": "#263238",
"hoverThumbBorderColor": "#009688",
"hoverThumbColor": "#009688",
"hoverTrackColor": "#26323830",
"Mac": {
"hoverThumbBorderColor": "#009688",
"hoverThumbColor": "#009688",
"hoverTrackColor": "#26323830",
"thumbBorderColor": "#00968870",
"thumbColor": "#00968870",
"trackColor": "#26323830",
"Transparent": {
"hoverThumbBorderColor": "#009688",
"hoverThumbColor": "#009688",
"hoverTrackColor": "#26323830",
"thumbBorderColor": "#00968870",
"thumbColor": "#00968870",
"trackColor": "#26323830"
}
},
"thumb": "#425B67",
"thumbBorderColor": "#00968870",
"thumbColor": "#00968870",
"trackColor": "#26323830",
"Transparent": {
"hoverThumbBorderColor": "#009688",
"hoverThumbColor": "#009688",
"hoverTrackColor": "#26323830",
"thumbBorderColor": "#00968870",
"thumbColor": "#00968870",
"trackColor": "#26323830"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#1E272C",
"foreground": "#607D8B"
},
"Header": {
"background": "#263238"
},
"List": {
"separatorForeground": "#607D8B",
"separatorColor": "#2A373E"
},
"SearchField": {
"background": "#263238",
"borderColor": "#1E272C",
"infoForeground": "#607D8B"
},
"Tab": {
"active.foreground": "#FFFFFF",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#425B67"
}
},
"SearchMatch": {
"endBackground": "#009688",
"startBackground": "#009688"
},
"SearchField.errorBackground": "#1E272C",
"Separator": {
"background": "#32424A",
"foreground": "#32424A",
"separatorColor": "#32424A"
},
"SidePanel": {
"background": "#1E272C"
},
"Slider": {
"background": "#263238",
"buttonBorderColor": "#009688",
"buttonColor": "#009688",
"foreground": "#B0BEC5",
"majorTickLength": 6,
"tickColor": "#32424A",
"trackColor": "#314549",
"trackWidth": 7,
"thumb": "#009688"
},
"SpeedSearch": {
"background": "#425B67",
"borderColor": "#2A373E",
"foreground": "#B0BEC5",
"errorForeground": "#B0BEC5"
},
"Spinner": {
"background": "#263238",
"border": "3,3,3,3",
"foreground": "#B0BEC5",
"selectionForeground": "#FFFFFF"
},
"SplitPane": {
"background": "#263238",
"highlight": "#1E272C"
},
"SplitPaneDivider.draggingColor": "#32424A",
"StatusBar": {
"borderColor": "#263238"
},
"TabbedPane": {
"background": "#263238",
"contentAreaColor": "#425B67",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#2A373E",
"disabledForeground": "#415967",
"disabledUnderlineColor": "#415967",
"focus": "#314549",
"focusColor": "#314549",
"fontSizeOffset": 0,
"foreground": "#B0BEC5",
"highlight": "#2A373E",
"hoverColor": "#425B67",
"labelShift": 0,
"selectedForeground": "#FFFFFF",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#009688"
},
"TabbedPane.mt.tab.background": "#1E272C",
"Table": {
"background": "#263238",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#009688",
"dropLineShortColor": "#009688",
"focusCellBackground": "#314549",
"focusCellForeground": "#FFFFFF",
"foreground": "#B0BEC5",
"gridColor": "#263238",
"highlightOuter": "#314549",
"lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#607D8B",
"lightSelectionInactiveBackground": "#32424A",
"selectionBackground": "#314549",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#314549",
"selectionInactiveForeground": "#FFFFFF",
"sortIconColor": "#B0BEC5",
"stripeColor": "#1E272C"
},
"TableHeader": {
"background": "#263238",
"borderColor": "#263238",
"bottomSeparatorColor": "#32424A",
"cellBorder": "4,0,4,0",
"disabledForeground": "#415967",
"foreground": "#B0BEC5",
"focusCellBackground": "#314549",
"focusCellForeground": "#FFFFFF",
"height": 25,
"separatorColor": "#32424A"
},
"text": "#607D8B",
"textInactiveText": "#607D8B",
"textText": "#607D8B",
"TextArea": {
"background": "#1E272C",
"caretForeground": "#009688",
"foreground": "#B0BEC5",
"inactiveForeground": "#415967",
"selectionBackground": "#314549",
"selectionForeground": "#FFFFFF"
},
"TextField": {
"background": "#1E272C",
"caretForeground": "#009688",
"foreground": "#B0BEC5",
"inactiveForeground": "#415967",
"selectionBackground": "#314549",
"selectionForeground": "#FFFFFF"
},
"TextPane": {
"background": "#1E272C",
"caretForeground": "#009688",
"foreground": "#B0BEC5",
"inactiveForeground": "#415967",
"selectionBackground": "#314549",
"selectionForeground": "#FFFFFF"
},
"TitlePane": {
"background": "#1E272C",
"Button.hoverBackground": "#425B67",
"inactiveBackground": "#263238",
"infoForeground": "#607D8B",
"inactiveInfoForeground": "#607D8B"
},
"TitledBorder.titleColor": "#B0BEC5",
"ToggleButton": {
"borderColor": "#2E3C43",
"buttonColor": "#B0BEC5",
"disabledText": "#415967",
"foreground": "#B0BEC5",
"offForeground": "#263238",
"offBackground": "#263238",
"onBackground": "#009688",
"onForeground": "#009688"
},
"ToolBar": {
"background": "#1E272C",
"borderHandleColor": "#607D8B",
"floatingForeground": "#607D8B",
"foreground": "#B0BEC5"
},
"ToolTip": {
"Actions.background": "#263238",
"Actions.infoForeground": "#607D8B",
"background": "#263238",
"borderColor": "#425B67",
"foreground": "#B0BEC5",
"infoForeground": "#607D8B",
"separatorColor": "#2A373E",
"shortcutForeground": "#607D8B"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#314549",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#1E272C"
},
"Header": {
"background": "#263238",
"borderColor": "#32424A",
"inactiveBackground": "#263238"
},
"HeaderCloseButton": {
"background": "#263238"
},
"HeaderTab": {
"hoverBackground": "#425B67",
"hoverInactiveBackground": "#32424A",
"inactiveUnderlineColor": "#009688",
"selectedBackground": "#1E272C",
"selectedInactiveBackground": "#1E272C",
"underlineColor": "#009688",
"underlinedTabBackground": "#425B67",
"underlinedTabInactiveBackground": "#32424A"
}
},
"Tree": {
"background": "#1E272C",
"foreground": "#607D8B",
"hash": "#2A373E",
"modifiedItemForeground": "#009688",
"rowHeight": 28,
"selectionBackground": "#546E7A50",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#546E7A50",
"textBackground": "#1E272C"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#2A373E",
"ColorPicker.background": "#263238",
"ColorPicker.foreground": "#B0BEC5",
"Component.borderColor": "#2A373E",
"Component.background": "#263238",
"Component.foreground": "#B0BEC5",
"Connector.borderColor": "#2A373E",
"Connector.hoverBorderColor": "#425B67",
"Canvas.background": "#1E272C",
"highStroke.foreground": "#B0BEC5",
"Label.foreground": "#607D8B",
"List.selectionBackground": "#546E7A50",
"Panel.borderColor": "#2A373E",
"Panel.background": "#263238",
"percent.foreground": "#B0BEC5",
"Placeholder.background": "#263238",
"Placeholder.borderColor": "#2A373E",
"Placeholder.foreground": "#B0BEC5",
"Placeholder.selectedForeground": "#FFFFFF",
"Preview.background": "#263238",
"stroke.acceleratorForeground": "#607D8B"
},
"ValidationTooltip": {
"errorBackground": "#1E272C",
"errorBorderColor": "#1E272C",
"warningBackground": "#1E272C",
"warningBorderColor": "#1E272C"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#263238"
},
"GitCommits": {
"graphColor": "#425B67"
},
"GitLog": {
"localBranchIconColor": "#009688",
"otherIconColor": "#607D8B",
"remoteBranchIconColor": "#B0BEC5",
"tagIconColor": "#607D8B"
},
"HgLog": {
"branchIconColor": "#009688",
"bookmarkIconColor": "#FFFFFF",
"closedBranchIconColor": "#415967",
"localTagIconColor": "#607D8B",
"mqTagIconColor": "#607D8B",
"tagIconColor": "#607D8B",
"tipIconColor": "#607D8B"
},
"Log": {
"Commit.unmatchedForeground": "#607D8B",
"Commit.currentBranchBackground": "#32424A"
},
"RefLabel": {
"foreground": "#FFFFFF",
"backgroundBase": "#425B67"
}
},
"Viewport": {
"background": "#1E272C",
"foreground": "#B0BEC5"
},
"WelcomeScreen": {
"background": "#263238",
"borderColor": "#263238",
"captionBackground": "#1E272C",
"captionForeground": "#B0BEC5",
"footerBackground": "#1E272C",
"footerForeground": "#B0BEC5",
"headerBackground": "#263238",
"headerForeground": "#B0BEC5",
"separatorColor": "#2A373E",
"Projects": {
"background": "#32424A",
"selectionBackground": "#546E7A",
"selectionInactiveBackground": "#32424A"
}
},
"window": "#1E272C",
"windowBorder": "#2A373E",
"windowText": "#607D8B",
"Window.border": "#2A373E"
},
"icons": {
"ColorPalette": {
"#43494A": "#1E272C",
"#6B6B6B": "#607D8B",
"#A7A7A7": "#263238",
"#3D6185": "#009688",
"#466D94": "#009688",
"#3C3F41": "#263238",
"#545556": "#415967",
"#606060": "#415967",
"#9AA7B0": "#B0BEC5",
"#675133": "#009688",
"Actions.Blue": "#82aaff",
"Actions.Green": "#c3e88d",
"Actions.Grey": "#607D8B",
"Actions.GreyInline": "#546e7a",
"Actions.GreyInline.Dark": "#B0BEC5",
"Actions.Red": "#f07178",
"Actions.Yellow": "#ffcb6b",
"Checkbox.Background.Default": "#1E272C",
"Checkbox.Background.Default.Dark": "#1E272C",
"Checkbox.Background.Disabled": "#2E3C43",
"Checkbox.Background.Disabled.Dark": "#2E3C43",
"Checkbox.Border.Default": "#2A373E",
"Checkbox.Border.Default.Dark": "#2A373E",
"Checkbox.Border.Disabled": "#415967",
"Checkbox.Border.Disabled.Dark": "#415967",
"Checkbox.Focus.Thin.Default": "#009688",
"Checkbox.Focus.Thin.Default.Dark": "#009688",
"Checkbox.Focus.Wide": "#009688",
"Checkbox.Focus.Wide.Dark": "#009688",
"Checkbox.Foreground.Disabled": "#415967",
"Checkbox.Foreground.Disabled.Dark": "#415967",
"Checkbox.Background.Selected": "#009688",
"Checkbox.Background.Selected.Dark": "#263238",
"Checkbox.Border.Selected": "#009688",
"Checkbox.Border.Selected.Dark": "#009688",
"Checkbox.Foreground.Selected": "#009688",
"Checkbox.Foreground.Selected.Dark": "#009688",
"Checkbox.Focus.Thin.Selected": "#B0BEC5",
"Checkbox.Focus.Thin.Selected.Dark": "#B0BEC5",
"Objects.Grey": "#546e7a",
"Objects.Blue": "#82aaff",
"Objects.RedStatus": "#f07178",
"Objects.Red": "#f07178",
"Objects.Pink": "#c792ea",
"Objects.Yellow": "#ffcb6b",
"Objects.Green": "#c3e88d",
"Objects.Purple": "#c792ea",
"Objects.BlackText": "#B0BEC5",
"Objects.YellowDark": "#f78c6c",
"Objects.GreenAndroid": "#c3e88d"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "Material Oceanic",
"dark": true,
"author": "Mallowigi",
"editorScheme": "/colors/Material Oceanic.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#607D8B",
"background": "#263238",
"borderColor": "#2A373E",
"disabledBackground": "#2E3C43",
"disabledForeground": "#415967",
"disabledText": "#415967",
"focusColor": "#425B67",
"focusedBorderColor": "#009688",
"foreground": "#B0BEC5",
"inactiveBackground": "#2E3C43",
"inactiveForeground": "#607D8B",
"infoForeground": "#607D8B",
"selectionBackground": "#546E7A",
"selectionBackgroundInactive": "#32424A",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#32424A",
"separatorColor": "#2A373E"
},
"activeCaption": "#263238",
"ActionButton": {
"hoverBackground": "#00968850",
"hoverBorderColor": "#00968850",
"hoverSeparatorColor": "#2E3C43",
"focusedBorderColor": "#00968850",
"pressedBackground": "#00968850",
"pressedBorderColor": "#00968850"
},
"Autocomplete": {
"selectionBackground": "#546E7A"
},
"Borders.ContrastBorderColor": "#263238",
"Borders.color": "#2A373E",
"Button": {
"arc": 0,
"background": "#263238",
"default": {
"endBackground": "#314549",
"endBorderColor": "#314549",
"foreground": "#FFFFFF",
"focusColor": "#009688",
"focusedBorderColor": "#009688",
"shadowColor": "#314549",
"startBackground": "#314549",
"startBorderColor": "#314549"
},
"disabledBorderColor": "#2E3C43",
"disabledText": "#415967",
"endBackground": "#2E3C43",
"endBorderColor": "#2E3C43",
"focus": "#425B67",
"focusedBorderColor": "#009688",
"foreground": "#607D8B",
"highlight": "#FFFFFF",
"mt.background": "#2E3C43",
"mt.foreground": "#607D8B",
"mt.selectedForeground": "#FFFFFF",
"mt.selection.color1": "#314549",
"mt.selection.color2": "#314549",
"startBackground": "#2E3C43",
"startBorderColor": "#2E3C43",
"shadowColor": "#2E3C43",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#2A373E",
"Tooltip.background": "#1E272C"
},
"Content.background": "#1E272C",
"CheckBox": {
"background": "#263238",
"disabledText": "#415967",
"foreground": "#B0BEC5",
"select": "#009688"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#607D8B",
"acceleratorSelectionForeground": "#607D8B",
"background": "#263238",
"disabledBackground": "#263238",
"disabledForeground": "#415967",
"foreground": "#B0BEC5",
"selectionBackground": "#546E7A",
"selectionForeground": "#FFFFFF"
},
"ColorChooser": {
"background": "#263238",
"foreground": "#B0BEC5",
"swatchesDefaultRecentColor": "#B0BEC5"
},
"ComboBoxButton.background": "#2E3C43",
"ComboBox": {
"ArrowButton": {
"background": "#2E3C43",
"disabledIconColor": "#415967",
"iconColor": "#B0BEC5",
"nonEditableBackground": "#263238"
},
"background": "#263238",
"buttonBackground": "#2E3C43",
"disabledForeground": "#415967",
"foreground": "#B0BEC5",
"modifiedItemForeground": "#009688",
"nonEditableBackground": "#32424A",
"padding": "5,5,5,5",
"selectionBackground": "#314549",
"selectionForeground": "#FFFFFF"
},
"ComboPopup.border": "#2A373E",
"CompletionPopup": {
"background": "#32424A",
"foreground": "#B0BEC5",
"infoForeground": "#607D8B",
"matchForeground": "#009688",
"matchSelectionForeground": "#009688",
"nonFocusedState": "false",
"selectedGrayedForeground": "#FFFFFF",
"selectionGrayForeground": "#FFFFFF",
"selectionInactiveInfoForeground": "#607D8B",
"selectionInactiveBackground": "#546E7A50",
"selectionBackground": "#546E7A80",
"selectionForeground": "#FFFFFF",
"selectionInfoForeground": "#FFFFFF"
},
"Component": {
"arc": 4,
"borderColor": "#425B67",
"disabledBorderColor": "#2E3C43",
"focusColor": "#009688",
"focusedBorderColor": "#009688",
"hoverIconColor": "#009688",
"infoForeground": "#607D8B",
"iconColor": "#B0BEC5"
},
"control": "#263238",
"controlText": "#607D8B",
"Counter": {
"background": "#009688",
"foreground": "#FFFFFF"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#607D8B",
"changedValueForeground": "#009688",
"errorMessageForeground": "#f07178",
"evaluatingExpressionForeground": "#607D8B",
"exceptionForeground": "#ffcb6b",
"modifyingValueForeground": "#009688",
"valueForeground": "#009688"
}
},
"DebuggerTabs": {
"selectedBackground": "#425B67",
"underlinedTabBackground": "#425B67"
},
"DebuggerPopup": {
"borderColor": "#425B67"
},
"DefaultTabs": {
"background": "#263238",
"borderColor": "#263238",
"hoverBackground": "#314549",
"hoverColor": "#263238",
"hoverMaskColor": "#425B67",
"inactiveColoredFileBackground": "#2E3C43",
"inactiveUnderlineColor": "#415967",
"inactiveMaskColor": "#263238",
"underlineColor": "#009688",
"underlinedTabBackground": "#314549"
},
"Desktop.background": "#263238",
"DialogWrapper.southPanelBackground": "#263238",
"DialogWrapper.southPanelDivider": "#263238",
"DragAndDrop": {
"areaBackground": "#263238",
"areaBorderColor": "#263238",
"areaForeground": "#B0BEC5"
},
"Editor": {
"background": "#263238",
"foreground": "#B0BEC5",
"shortcutForeground": "#607D8B"
},
"EditorPane": {
"background": "#263238",
"caretForeground": "#009688",
"foreground": "#B0BEC5",
"inactiveBackground": "#263238",
"inactiveForeground": "#415967",
"selectionBackground": "#546E7A",
"selectionForeground": "#FFFFFF"
},
"EditorTabs": {
"borderColor": "#32424A",
"hoverColor": "#425B67",
"hoverMaskColor": "#425B67",
"inactiveMaskColor": "#263238",
"inactiveColoredFileBackground": "#2632382",
"inactiveUnderlineColor": "#415967",
"selectedForeground": "#B0BEC5",
"selectedBackground": "#314549",
"underlineColor": "#009688",
"underlinedTabBackground": "#314549"
},
"EditorGroupsTabs": {
"background": "#263238",
"borderColor": "#32424A",
"hoverBackground": "#425B67",
"hoverColor": "#425B67",
"inactiveUnderlineColor": "#009688",
"underlineColor": "#009688",
"underlinedTabBackground": "#314549",
"underlinedTabForeground": "#B0BEC5"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#2E3C43",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#2A373E",
"FormattedTextField": {
"background": "#263238",
"caretForeground": "#009688",
"foreground": "#B0BEC5",
"inactiveBackground": "#2E3C43",
"inactiveForeground": "#415967",
"selectionForeground": "#FFFFFF",
"selectionBackground": "#314549"
},
"Group": {
"disabledSeparatorColor": "#2A373E",
"separatorColor": "#2A373E"
},
"GutterTooltip": {
"infoForeground": "#B0BEC5",
"lineSeparatorColor": "#263238"
},
"HeaderColor": {
"active": "#263238",
"inactive": "#1E272C"
},
"HelpTooltip": {
"background": "#263238",
"borderColor": "#2A373E",
"foreground": "#B0BEC5",
"infoForeground": "#607D8B",
"shortcutForeground": "#607D8B"
},
"Hyperlink.linkColor": "#009688",
"inactiveCaption": "#32424A",
"inactiveCaptionBorder": "#263238",
"inactiveCaptionText": "#607D8B",
"info": "#607D8B",
"infoText": "#607D8B",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#2A373E",
"InplaceRefactoringPopup": {
"borderColor": "#263238"
},
"InternalFrame": {
"activeTitleForeground": "#B0BEC5",
"background": "#263238",
"inactiveTitleForeground": "#607D8B"
},
"Label": {
"background": "#263238",
"disabledForeground": "#415967",
"disabledShadow": "#263238",
"disabledText": "#415967",
"foreground": "#B0BEC5",
"infoForeground": "#607D8B",
"selectedForeground": "#FFFFFF"
},
"Link": {
"activeForeground": "#009688",
"hoverForeground": "#009688",
"pressedForeground": "#009688",
"secondaryForeground": "#607D8B",
"visitedForeground": "#009688"
},
"link.foreground": "#009688",
"List": {
"background": "#32424A",
"foreground": "#B0BEC5",
"selectionBackground": "#546E7A50",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#546E7A50"
},
"material": {
"background": "#263238",
"branchColor": "#B0BEC5",
"contrast": "#1E272C",
"foreground": "#B0BEC5",
"mergeCommits": "#2E3C43",
"primaryColor": "#607D8B",
"selectionForeground": "#FFFFFF",
"tab.backgroundColor": "#263238",
"tab.borderColor": "#009688",
"tagColor": "#607D8B"
},
"MemoryIndicator": {
"allocatedBackground": "#32424A",
"usedColor": "#425B67",
"usedBackground": "#425B67"
},
"Menu": {
"acceleratorForeground": "#607D8B",
"acceleratorSelectionForeground": "#FFFFFF",
"background": "#263238",
"border": "4,2,4,2",
"borderColor": "#32424A",
"disabledBackground": "#32424A",
"disabledForeground": "#415967",
"foreground": "#B0BEC5",
"selectionBackground": "#546E7A",
"selectionForeground": "#FFFFFF",
"separatorColor": "#2A373E"
},
"MenuBar": {
"background": "#263238",
"borderColor": "#263238",
"disabledBackground": "#263238",
"disabledForeground": "#415967",
"foreground": "#B0BEC5",
"highlight": "#263238",
"selectionBackground": "#546E7A",
"selectionForeground": "#FFFFFF",
"shadow": "#263238"
},
"MenuItem": {
"acceleratorForeground": "#607D8B",
"acceleratorSelectionForeground": "#FFFFFF",
"border": "4,2,4,2",
"background": "#263238",
"disabledBackground": "#263238",
"disabledForeground": "#415967",
"foreground": "#B0BEC5",
"selectionBackground": "#546E7A",
"selectionForeground": "#FFFFFF"
},
"NavBar": {
"arrowColor": "#B0BEC5",
"borderColor": "#263238"
},
"NewClass": {
"Panel": {
"background": "#263238"
},
"SearchField": {
"background": "#263238"
}
},
"NewPSD.warning": "#009688",
"Notification": {
"background": "#1E272C",
"borderColor": "#1E272C",
"errorBackground": "#1E272C",
"errorBorderColor": "#1E272C",
"foreground": "#B0BEC5",
"MoreButton": {
"background": "#2E3C43",
"foreground": "#B0BEC5",
"innerBorderColor": "#2E3C43"
},
"ToolWindow": {
"errorBackground": "#1E272C",
"errorBorderColor": "#1E272C",
"informativeBackground": "#1E272C",
"informativeBorderColor": "#1E272C",
"warningBackground": "#1E272C",
"warningBorderColor": "#1E272C"
}
},
"OnePixelDivider.background": "#2A373E",
"OptionPane": {
"background": "#263238",
"foreground": "#B0BEC5",
"messageForeground": "#B0BEC5"
},
"Outline": {
"color": "#2E3C43",
"focusedColor": "#009688",
"disabledColor": "#415967"
},
"Panel": {
"background": "#263238",
"foreground": "#B0BEC5"
},
"ParameterInfo": {
"background": "#32424A",
"borderColor": "#314549",
"currentOverloadBackground": "#314549",
"currentParameterForeground": "#009688",
"disabledForeground": "#415967",
"foreground": "#B0BEC5",
"infoForeground": "#607D8B",
"lineSeparatorColor": "#314549"
},
"PasswordField": {
"background": "#263238",
"capsLockIconColor": "#009688",
"caretForeground": "#009688",
"foreground": "#B0BEC5",
"inactiveForeground": "#415967",
"selectionBackground": "#314549",
"selectionForeground": "#FFFFFF"
},
"Plugins": {
"background": "#263238",
"disabledForeground": "#415967",
"eapTagBackground": "#425B67",
"lightSelectionBackground": "#546E7A",
"paidTagBackground": "#425B67",
"selectionBackground": "#546E7A",
"tagForeground": "#009688",
"tagBackground": "#425B67",
"trialTagBackground": "#425B67",
"Button": {
"installBackground": "#2E3C43",
"installBorderColor": "#2E3C43",
"installForeground": "#B0BEC5",
"installFocusedBackground": "#425B67",
"installFillForeground": "#415967",
"installFillBackground": "#2E3C43",
"updateBackground": "#2E3C43",
"updateBorderColor": "#2E3C43",
"updateForeground": "#B0BEC5"
},
"SearchField": {
"background": "#263238",
"borderColor": "#2A373E"
},
"SectionHeader": {
"background": "#32424A",
"foreground": "#B0BEC5"
},
"Tab": {
"hoverBackground": "#314549",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#314549"
}
},
"Popup": {
"Advertiser": {
"background": "#263238",
"borderColor": "#263238",
"foreground": "#009688"
},
"borderColor": "#1E272C",
"inactiveBorderColor": "#263238",
"innerBorderColor": "#32424A",
"Header": {
"activeBackground": "#263238",
"inactiveBackground": "#1E272C"
},
"paintBorder": true,
"separatorForeground": "#B0BEC5",
"separatorColor": "#32424A",
"Toolbar": {
"Floating.background": "#1E272C",
"background": "#1E272C",
"borderColor": "#1E272C"
}
},
"PopupMenu": {
"background": "#263238",
"border": "2,0,2,0",
"foreground": "#B0BEC5",
"translucentBackground": "#263238"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#263238",
"foreground": "#009688",
"indeterminateEndColor": "#009688",
"indeterminateStartColor": "#009688",
"progressColor": "#009688",
"selectionBackground": "#425B67",
"trackColor": "#425B67"
},
"PsiViewer": {
"referenceHighlightColor": "#009688"
},
"RadioButton": {
"background": "#263238",
"disabledText": "#415967",
"foreground": "#B0BEC5"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#607D8B",
"acceleratorSelectionForeground": "#607D8B",
"background": "#263238",
"disabledBackground": "#263238",
"disabledForeground": "#415967",
"foreground": "#B0BEC5",
"selectionBackground": "#546E7A",
"selectionForeground": "#FFFFFF"
},
"ScrollBar": {
"background": "#263238",
"hoverThumbBorderColor": "#009688",
"hoverThumbColor": "#009688",
"hoverTrackColor": "#26323830",
"Mac": {
"hoverThumbBorderColor": "#009688",
"hoverThumbColor": "#009688",
"hoverTrackColor": "#26323830",
"thumbBorderColor": "#00968870",
"thumbColor": "#00968870",
"trackColor": "#26323830",
"Transparent": {
"hoverThumbBorderColor": "#009688",
"hoverThumbColor": "#009688",
"hoverTrackColor": "#26323830",
"thumbBorderColor": "#00968870",
"thumbColor": "#00968870",
"trackColor": "#26323830"
}
},
"thumb": "#425B67",
"thumbBorderColor": "#00968870",
"thumbColor": "#00968870",
"trackColor": "#26323830",
"Transparent": {
"hoverThumbBorderColor": "#009688",
"hoverThumbColor": "#009688",
"hoverTrackColor": "#26323830",
"thumbBorderColor": "#00968870",
"thumbColor": "#00968870",
"trackColor": "#26323830"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#1E272C",
"foreground": "#607D8B"
},
"Header": {
"background": "#263238"
},
"List": {
"separatorForeground": "#607D8B",
"separatorColor": "#2A373E"
},
"SearchField": {
"background": "#263238",
"borderColor": "#1E272C",
"infoForeground": "#607D8B"
},
"Tab": {
"active.foreground": "#FFFFFF",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#425B67"
}
},
"SearchMatch": {
"endBackground": "#009688",
"startBackground": "#009688"
},
"SearchField.errorBackground": "#1E272C",
"Separator": {
"background": "#32424A",
"foreground": "#32424A",
"separatorColor": "#32424A"
},
"SidePanel": {
"background": "#263238"
},
"Slider": {
"background": "#263238",
"buttonBorderColor": "#009688",
"buttonColor": "#009688",
"foreground": "#B0BEC5",
"majorTickLength": 6,
"tickColor": "#32424A",
"trackColor": "#314549",
"trackWidth": 7,
"thumb": "#009688"
},
"SpeedSearch": {
"background": "#425B67",
"borderColor": "#2A373E",
"foreground": "#B0BEC5",
"errorForeground": "#B0BEC5"
},
"Spinner": {
"background": "#263238",
"border": "3,3,3,3",
"foreground": "#B0BEC5",
"selectionForeground": "#FFFFFF"
},
"SplitPane": {
"background": "#263238",
"highlight": "#263238"
},
"SplitPaneDivider.draggingColor": "#32424A",
"StatusBar": {
"borderColor": "#263238"
},
"TabbedPane": {
"background": "#263238",
"contentAreaColor": "#425B67",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#2A373E",
"disabledForeground": "#415967",
"disabledUnderlineColor": "#415967",
"focus": "#314549",
"focusColor": "#314549",
"fontSizeOffset": 0,
"foreground": "#B0BEC5",
"highlight": "#2A373E",
"hoverColor": "#425B67",
"labelShift": 0,
"selectedForeground": "#FFFFFF",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#009688"
},
"TabbedPane.mt.tab.background": "#263238",
"Table": {
"background": "#263238",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#009688",
"dropLineShortColor": "#009688",
"focusCellBackground": "#314549",
"focusCellForeground": "#FFFFFF",
"foreground": "#B0BEC5",
"gridColor": "#263238",
"highlightOuter": "#314549",
"lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#607D8B",
"lightSelectionInactiveBackground": "#32424A",
"selectionBackground": "#314549",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#314549",
"selectionInactiveForeground": "#FFFFFF",
"sortIconColor": "#B0BEC5",
"stripeColor": "#1E272C"
},
"TableHeader": {
"background": "#263238",
"borderColor": "#263238",
"bottomSeparatorColor": "#32424A",
"cellBorder": "4,0,4,0",
"disabledForeground": "#415967",
"foreground": "#B0BEC5",
"focusCellBackground": "#314549",
"focusCellForeground": "#FFFFFF",
"height": 25,
"separatorColor": "#32424A"
},
"text": "#607D8B",
"textInactiveText": "#607D8B",
"textText": "#607D8B",
"TextArea": {
"background": "#263238",
"caretForeground": "#009688",
"foreground": "#B0BEC5",
"inactiveForeground": "#415967",
"selectionBackground": "#314549",
"selectionForeground": "#FFFFFF"
},
"TextField": {
"background": "#263238",
"caretForeground": "#009688",
"foreground": "#B0BEC5",
"inactiveForeground": "#415967",
"selectionBackground": "#314549",
"selectionForeground": "#FFFFFF"
},
"TextPane": {
"background": "#263238",
"caretForeground": "#009688",
"foreground": "#B0BEC5",
"inactiveForeground": "#415967",
"selectionBackground": "#314549",
"selectionForeground": "#FFFFFF"
},
"TitlePane": {
"background": "#1E272C",
"Button.hoverBackground": "#425B67",
"inactiveBackground": "#263238",
"infoForeground": "#607D8B",
"inactiveInfoForeground": "#607D8B"
},
"TitledBorder.titleColor": "#B0BEC5",
"ToggleButton": {
"borderColor": "#2E3C43",
"buttonColor": "#B0BEC5",
"disabledText": "#415967",
"foreground": "#B0BEC5",
"offForeground": "#263238",
"offBackground": "#263238",
"onBackground": "#009688",
"onForeground": "#009688"
},
"ToolBar": {
"background": "#263238",
"borderHandleColor": "#607D8B",
"floatingForeground": "#607D8B",
"foreground": "#B0BEC5"
},
"ToolTip": {
"Actions.background": "#263238",
"Actions.infoForeground": "#607D8B",
"background": "#263238",
"borderColor": "#425B67",
"foreground": "#B0BEC5",
"infoForeground": "#607D8B",
"separatorColor": "#2A373E",
"shortcutForeground": "#607D8B"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#314549",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#1E272C"
},
"Header": {
"background": "#263238",
"borderColor": "#32424A",
"inactiveBackground": "#263238"
},
"HeaderCloseButton": {
"background": "#263238"
},
"HeaderTab": {
"hoverBackground": "#425B67",
"hoverInactiveBackground": "#32424A",
"inactiveUnderlineColor": "#009688",
"selectedBackground": "#1E272C",
"selectedInactiveBackground": "#1E272C",
"underlineColor": "#009688",
"underlinedTabBackground": "#425B67",
"underlinedTabInactiveBackground": "#32424A"
}
},
"Tree": {
"background": "#263238",
"foreground": "#607D8B",
"hash": "#2A373E",
"modifiedItemForeground": "#009688",
"rowHeight": 28,
"selectionBackground": "#546E7A50",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#546E7A50",
"textBackground": "#263238"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#2A373E",
"ColorPicker.background": "#263238",
"ColorPicker.foreground": "#B0BEC5",
"Component.borderColor": "#2A373E",
"Component.background": "#263238",
"Component.foreground": "#B0BEC5",
"Connector.borderColor": "#2A373E",
"Connector.hoverBorderColor": "#425B67",
"Canvas.background": "#1E272C",
"highStroke.foreground": "#B0BEC5",
"Label.foreground": "#607D8B",
"List.selectionBackground": "#546E7A50",
"Panel.borderColor": "#2A373E",
"Panel.background": "#263238",
"percent.foreground": "#B0BEC5",
"Placeholder.background": "#263238",
"Placeholder.borderColor": "#2A373E",
"Placeholder.foreground": "#B0BEC5",
"Placeholder.selectedForeground": "#FFFFFF",
"Preview.background": "#263238",
"stroke.acceleratorForeground": "#607D8B"
},
"ValidationTooltip": {
"errorBackground": "#1E272C",
"errorBorderColor": "#1E272C",
"warningBackground": "#1E272C",
"warningBorderColor": "#1E272C"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#263238"
},
"GitCommits": {
"graphColor": "#425B67"
},
"GitLog": {
"localBranchIconColor": "#009688",
"otherIconColor": "#607D8B",
"remoteBranchIconColor": "#B0BEC5",
"tagIconColor": "#607D8B"
},
"HgLog": {
"branchIconColor": "#009688",
"bookmarkIconColor": "#FFFFFF",
"closedBranchIconColor": "#415967",
"localTagIconColor": "#607D8B",
"mqTagIconColor": "#607D8B",
"tagIconColor": "#607D8B",
"tipIconColor": "#607D8B"
},
"Log": {
"Commit.unmatchedForeground": "#607D8B",
"Commit.currentBranchBackground": "#32424A"
},
"RefLabel": {
"foreground": "#FFFFFF",
"backgroundBase": "#425B67"
}
},
"Viewport": {
"background": "#263238",
"foreground": "#B0BEC5"
},
"WelcomeScreen": {
"background": "#263238",
"borderColor": "#263238",
"captionBackground": "#1E272C",
"captionForeground": "#B0BEC5",
"footerBackground": "#1E272C",
"footerForeground": "#B0BEC5",
"headerBackground": "#263238",
"headerForeground": "#B0BEC5",
"separatorColor": "#2A373E",
"Projects": {
"background": "#32424A",
"selectionBackground": "#546E7A",
"selectionInactiveBackground": "#32424A"
}
},
"window": "#263238",
"windowBorder": "#2A373E",
"windowText": "#607D8B",
"Window.border": "#2A373E"
},
"icons": {
"ColorPalette": {
"#43494A": "#1E272C",
"#6B6B6B": "#607D8B",
"#A7A7A7": "#263238",
"#3D6185": "#009688",
"#466D94": "#009688",
"#3C3F41": "#263238",
"#545556": "#415967",
"#606060": "#415967",
"#9AA7B0": "#B0BEC5",
"#675133": "#009688",
"Actions.Blue": "#82aaff",
"Actions.Green": "#c3e88d",
"Actions.Grey": "#607D8B",
"Actions.GreyInline": "#546e7a",
"Actions.GreyInline.Dark": "#B0BEC5",
"Actions.Red": "#f07178",
"Actions.Yellow": "#ffcb6b",
"Checkbox.Background.Default": "#1E272C",
"Checkbox.Background.Default.Dark": "#1E272C",
"Checkbox.Background.Disabled": "#2E3C43",
"Checkbox.Background.Disabled.Dark": "#2E3C43",
"Checkbox.Border.Default": "#2A373E",
"Checkbox.Border.Default.Dark": "#2A373E",
"Checkbox.Border.Disabled": "#415967",
"Checkbox.Border.Disabled.Dark": "#415967",
"Checkbox.Focus.Thin.Default": "#009688",
"Checkbox.Focus.Thin.Default.Dark": "#009688",
"Checkbox.Focus.Wide": "#009688",
"Checkbox.Focus.Wide.Dark": "#009688",
"Checkbox.Foreground.Disabled": "#415967",
"Checkbox.Foreground.Disabled.Dark": "#415967",
"Checkbox.Background.Selected": "#009688",
"Checkbox.Background.Selected.Dark": "#263238",
"Checkbox.Border.Selected": "#009688",
"Checkbox.Border.Selected.Dark": "#009688",
"Checkbox.Foreground.Selected": "#009688",
"Checkbox.Foreground.Selected.Dark": "#009688",
"Checkbox.Focus.Thin.Selected": "#B0BEC5",
"Checkbox.Focus.Thin.Selected.Dark": "#B0BEC5",
"Objects.Grey": "#546e7a",
"Objects.Blue": "#82aaff",
"Objects.RedStatus": "#f07178",
"Objects.Red": "#f07178",
"Objects.Pink": "#c792ea",
"Objects.Yellow": "#ffcb6b",
"Objects.Green": "#c3e88d",
"Objects.Purple": "#c792ea",
"Objects.BlackText": "#B0BEC5",
"Objects.YellowDark": "#f78c6c",
"Objects.GreenAndroid": "#c3e88d"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "Material Palenight Contrast",
"dark": true,
"author": "Mallowigi",
"editorScheme": "/colors/Material Palenight.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#676E95",
"background": "#292D3E",
"borderColor": "#2b2a3e",
"disabledBackground": "#2f2e43",
"disabledForeground": "#515772",
"disabledText": "#515772",
"focusColor": "#444267",
"focusedBorderColor": "#ab47bc",
"foreground": "#A6ACCD",
"inactiveBackground": "#2f2e43",
"inactiveForeground": "#676E95",
"infoForeground": "#676E95",
"selectionBackground": "#3C435E",
"selectionBackgroundInactive": "#34324a",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#34324a",
"separatorColor": "#2b2a3e"
},
"activeCaption": "#292D3E",
"ActionButton": {
"hoverBackground": "#ab47bc50",
"hoverBorderColor": "#ab47bc50",
"hoverSeparatorColor": "#303348",
"focusedBorderColor": "#ab47bc50",
"pressedBackground": "#ab47bc50",
"pressedBorderColor": "#ab47bc50"
},
"Autocomplete": {
"selectionBackground": "#3C435E"
},
"Borders.ContrastBorderColor": "#292D3E",
"Borders.color": "#2b2a3e",
"Button": {
"arc": 0,
"background": "#292D3E",
"default": {
"endBackground": "#414863",
"endBorderColor": "#414863",
"foreground": "#FFFFFF",
"focusColor": "#ab47bc",
"focusedBorderColor": "#ab47bc",
"shadowColor": "#414863",
"startBackground": "#414863",
"startBorderColor": "#414863"
},
"disabledBorderColor": "#303348",
"disabledText": "#515772",
"endBackground": "#303348",
"endBorderColor": "#303348",
"focus": "#444267",
"focusedBorderColor": "#ab47bc",
"foreground": "#676E95",
"highlight": "#FFFFFF",
"mt.background": "#303348",
"mt.foreground": "#676E95",
"mt.selectedForeground": "#FFFFFF",
"mt.selection.color1": "#414863",
"mt.selection.color2": "#414863",
"startBackground": "#303348",
"startBorderColor": "#303348",
"shadowColor": "#303348",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#2b2a3e",
"Tooltip.background": "#202331"
},
"Content.background": "#202331",
"CheckBox": {
"background": "#292D3E",
"disabledText": "#515772",
"foreground": "#A6ACCD",
"select": "#ab47bc"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#676E95",
"acceleratorSelectionForeground": "#676E95",
"background": "#292D3E",
"disabledBackground": "#292D3E",
"disabledForeground": "#515772",
"foreground": "#A6ACCD",
"selectionBackground": "#3C435E",
"selectionForeground": "#FFFFFF"
},
"ColorChooser": {
"background": "#292D3E",
"foreground": "#A6ACCD",
"swatchesDefaultRecentColor": "#A6ACCD"
},
"ComboBoxButton.background": "#303348",
"ComboBox": {
"ArrowButton": {
"background": "#303348",
"disabledIconColor": "#515772",
"iconColor": "#A6ACCD",
"nonEditableBackground": "#292D3E"
},
"background": "#202331",
"buttonBackground": "#303348",
"disabledForeground": "#515772",
"foreground": "#A6ACCD",
"modifiedItemForeground": "#ab47bc",
"nonEditableBackground": "#34324a",
"padding": "5,5,5,5",
"selectionBackground": "#414863",
"selectionForeground": "#FFFFFF"
},
"ComboPopup.border": "#2b2a3e",
"CompletionPopup": {
"background": "#34324a",
"foreground": "#A6ACCD",
"infoForeground": "#676E95",
"matchForeground": "#ab47bc",
"matchSelectionForeground": "#ab47bc",
"nonFocusedState": "false",
"selectedGrayedForeground": "#FFFFFF",
"selectionGrayForeground": "#FFFFFF",
"selectionInactiveInfoForeground": "#676E95",
"selectionInactiveBackground": "#3C435E50",
"selectionBackground": "#3C435E80",
"selectionForeground": "#FFFFFF",
"selectionInfoForeground": "#FFFFFF"
},
"Component": {
"arc": 4,
"borderColor": "#444267",
"disabledBorderColor": "#303348",
"focusColor": "#ab47bc",
"focusedBorderColor": "#ab47bc",
"hoverIconColor": "#ab47bc",
"infoForeground": "#676E95",
"iconColor": "#A6ACCD"
},
"control": "#292D3E",
"controlText": "#676E95",
"Counter": {
"background": "#ab47bc",
"foreground": "#FFFFFF"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#676E95",
"changedValueForeground": "#ab47bc",
"errorMessageForeground": "#f07178",
"evaluatingExpressionForeground": "#676E95",
"exceptionForeground": "#ffcb6b",
"modifyingValueForeground": "#ab47bc",
"valueForeground": "#ab47bc"
}
},
"DebuggerTabs": {
"selectedBackground": "#444267",
"underlinedTabBackground": "#444267"
},
"DebuggerPopup": {
"borderColor": "#444267"
},
"DefaultTabs": {
"background": "#292D3E",
"borderColor": "#292D3E",
"hoverBackground": "#414863",
"hoverColor": "#202331",
"hoverMaskColor": "#444267",
"inactiveColoredFileBackground": "#303348",
"inactiveUnderlineColor": "#515772",
"inactiveMaskColor": "#202331",
"underlineColor": "#ab47bc",
"underlinedTabBackground": "#414863"
},
"Desktop.background": "#292D3E",
"DialogWrapper.southPanelBackground": "#292D3E",
"DialogWrapper.southPanelDivider": "#292D3E",
"DragAndDrop": {
"areaBackground": "#292D3E",
"areaBorderColor": "#292D3E",
"areaForeground": "#A6ACCD"
},
"Editor": {
"background": "#202331",
"foreground": "#A6ACCD",
"shortcutForeground": "#676E95"
},
"EditorPane": {
"background": "#202331",
"caretForeground": "#ab47bc",
"foreground": "#A6ACCD",
"inactiveBackground": "#292D3E",
"inactiveForeground": "#515772",
"selectionBackground": "#3C435E",
"selectionForeground": "#FFFFFF"
},
"EditorTabs": {
"borderColor": "#34324a",
"hoverColor": "#444267",
"hoverMaskColor": "#444267",
"inactiveMaskColor": "#292D3E",
"inactiveColoredFileBackground": "#292D3E2",
"inactiveUnderlineColor": "#515772",
"selectedForeground": "#A6ACCD",
"selectedBackground": "#414863",
"underlineColor": "#ab47bc",
"underlinedTabBackground": "#414863"
},
"EditorGroupsTabs": {
"background": "#292D3E",
"borderColor": "#34324a",
"hoverBackground": "#444267",
"hoverColor": "#444267",
"inactiveUnderlineColor": "#ab47bc",
"underlineColor": "#ab47bc",
"underlinedTabBackground": "#414863",
"underlinedTabForeground": "#A6ACCD"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#2f2e43",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#2b2a3e",
"FormattedTextField": {
"background": "#202331",
"caretForeground": "#ab47bc",
"foreground": "#A6ACCD",
"inactiveBackground": "#303348",
"inactiveForeground": "#515772",
"selectionForeground": "#FFFFFF",
"selectionBackground": "#414863"
},
"Group": {
"disabledSeparatorColor": "#2b2a3e",
"separatorColor": "#2b2a3e"
},
"GutterTooltip": {
"infoForeground": "#A6ACCD",
"lineSeparatorColor": "#292D3E"
},
"HeaderColor": {
"active": "#292D3E",
"inactive": "#202331"
},
"HelpTooltip": {
"background": "#292D3E",
"borderColor": "#2b2a3e",
"foreground": "#A6ACCD",
"infoForeground": "#676E95",
"shortcutForeground": "#676E95"
},
"Hyperlink.linkColor": "#ab47bc",
"inactiveCaption": "#34324a",
"inactiveCaptionBorder": "#292D3E",
"inactiveCaptionText": "#676E95",
"info": "#676E95",
"infoText": "#676E95",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#2b2a3e",
"InplaceRefactoringPopup": {
"borderColor": "#292D3E"
},
"InternalFrame": {
"activeTitleForeground": "#A6ACCD",
"background": "#292D3E",
"inactiveTitleForeground": "#676E95"
},
"Label": {
"background": "#292D3E",
"disabledForeground": "#515772",
"disabledShadow": "#292D3E",
"disabledText": "#515772",
"foreground": "#A6ACCD",
"infoForeground": "#676E95",
"selectedForeground": "#FFFFFF"
},
"Link": {
"activeForeground": "#ab47bc",
"hoverForeground": "#ab47bc",
"pressedForeground": "#ab47bc",
"secondaryForeground": "#676E95",
"visitedForeground": "#ab47bc"
},
"link.foreground": "#ab47bc",
"List": {
"background": "#34324a",
"foreground": "#A6ACCD",
"selectionBackground": "#3C435E50",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#676E9550"
},
"material": {
"background": "#292D3E",
"branchColor": "#A6ACCD",
"contrast": "#202331",
"foreground": "#A6ACCD",
"mergeCommits": "#303348",
"primaryColor": "#676E95",
"selectionForeground": "#FFFFFF",
"tab.backgroundColor": "#292D3E",
"tab.borderColor": "#ab47bc",
"tagColor": "#676E95"
},
"MemoryIndicator": {
"allocatedBackground": "#34324a",
"usedColor": "#444267",
"usedBackground": "#444267"
},
"Menu": {
"acceleratorForeground": "#676E95",
"acceleratorSelectionForeground": "#FFFFFF",
"background": "#292D3E",
"border": "4,2,4,2",
"borderColor": "#34324a",
"disabledBackground": "#34324a",
"disabledForeground": "#515772",
"foreground": "#A6ACCD",
"selectionBackground": "#3C435E",
"selectionForeground": "#FFFFFF",
"separatorColor": "#2b2a3e"
},
"MenuBar": {
"background": "#202331",
"borderColor": "#292D3E",
"disabledBackground": "#292D3E",
"disabledForeground": "#515772",
"foreground": "#A6ACCD",
"highlight": "#292D3E",
"selectionBackground": "#3C435E",
"selectionForeground": "#FFFFFF",
"shadow": "#202331"
},
"MenuItem": {
"acceleratorForeground": "#676E95",
"acceleratorSelectionForeground": "#FFFFFF",
"border": "4,2,4,2",
"background": "#292D3E",
"disabledBackground": "#292D3E",
"disabledForeground": "#515772",
"foreground": "#A6ACCD",
"selectionBackground": "#3C435E",
"selectionForeground": "#FFFFFF"
},
"NavBar": {
"arrowColor": "#A6ACCD",
"borderColor": "#292D3E"
},
"NewClass": {
"Panel": {
"background": "#292D3E"
},
"SearchField": {
"background": "#202331"
}
},
"NewPSD.warning": "#ab47bc",
"Notification": {
"background": "#202331",
"borderColor": "#202331",
"errorBackground": "#202331",
"errorBorderColor": "#202331",
"foreground": "#A6ACCD",
"MoreButton": {
"background": "#303348",
"foreground": "#A6ACCD",
"innerBorderColor": "#303348"
},
"ToolWindow": {
"errorBackground": "#202331",
"errorBorderColor": "#202331",
"informativeBackground": "#202331",
"informativeBorderColor": "#202331",
"warningBackground": "#202331",
"warningBorderColor": "#202331"
}
},
"OnePixelDivider.background": "#2b2a3e",
"OptionPane": {
"background": "#292D3E",
"foreground": "#A6ACCD",
"messageForeground": "#A6ACCD"
},
"Outline": {
"color": "#303348",
"focusedColor": "#ab47bc",
"disabledColor": "#515772"
},
"Panel": {
"background": "#292D3E",
"foreground": "#A6ACCD"
},
"ParameterInfo": {
"background": "#34324a",
"borderColor": "#414863",
"currentOverloadBackground": "#414863",
"currentParameterForeground": "#ab47bc",
"disabledForeground": "#515772",
"foreground": "#A6ACCD",
"infoForeground": "#676E95",
"lineSeparatorColor": "#414863"
},
"PasswordField": {
"background": "#202331",
"capsLockIconColor": "#ab47bc",
"caretForeground": "#ab47bc",
"foreground": "#A6ACCD",
"inactiveForeground": "#515772",
"selectionBackground": "#414863",
"selectionForeground": "#FFFFFF"
},
"Plugins": {
"background": "#292D3E",
"disabledForeground": "#515772",
"eapTagBackground": "#444267",
"lightSelectionBackground": "#3C435E",
"paidTagBackground": "#444267",
"selectionBackground": "#3C435E",
"tagForeground": "#ab47bc",
"tagBackground": "#444267",
"trialTagBackground": "#444267",
"Button": {
"installBackground": "#303348",
"installBorderColor": "#303348",
"installForeground": "#A6ACCD",
"installFocusedBackground": "#444267",
"installFillForeground": "#515772",
"installFillBackground": "#303348",
"updateBackground": "#303348",
"updateBorderColor": "#303348",
"updateForeground": "#A6ACCD"
},
"SearchField": {
"background": "#202331",
"borderColor": "#2b2a3e"
},
"SectionHeader": {
"background": "#34324a",
"foreground": "#A6ACCD"
},
"Tab": {
"hoverBackground": "#414863",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#414863"
}
},
"Popup": {
"Advertiser": {
"background": "#292D3E",
"borderColor": "#292D3E",
"foreground": "#ab47bc"
},
"borderColor": "#202331",
"inactiveBorderColor": "#292D3E",
"innerBorderColor": "#34324a",
"Header": {
"activeBackground": "#292D3E",
"inactiveBackground": "#202331"
},
"paintBorder": true,
"separatorForeground": "#A6ACCD",
"separatorColor": "#34324a",
"Toolbar": {
"Floating.background": "#202331",
"background": "#202331",
"borderColor": "#202331"
}
},
"PopupMenu": {
"background": "#292D3E",
"border": "2,0,2,0",
"foreground": "#A6ACCD",
"translucentBackground": "#292D3E"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#292D3E",
"foreground": "#ab47bc",
"indeterminateEndColor": "#ab47bc",
"indeterminateStartColor": "#ab47bc",
"progressColor": "#ab47bc",
"selectionBackground": "#444267",
"trackColor": "#444267"
},
"PsiViewer": {
"referenceHighlightColor": "#ab47bc"
},
"RadioButton": {
"background": "#292D3E",
"disabledText": "#515772",
"foreground": "#A6ACCD"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#676E95",
"acceleratorSelectionForeground": "#676E95",
"background": "#292D3E",
"disabledBackground": "#292D3E",
"disabledForeground": "#515772",
"foreground": "#A6ACCD",
"selectionBackground": "#3C435E",
"selectionForeground": "#FFFFFF"
},
"ScrollBar": {
"background": "#292D3E",
"hoverThumbBorderColor": "#ab47bc",
"hoverThumbColor": "#ab47bc",
"hoverTrackColor": "#292D3E30",
"Mac": {
"hoverThumbBorderColor": "#ab47bc",
"hoverThumbColor": "#ab47bc",
"hoverTrackColor": "#292D3E30",
"thumbBorderColor": "#ab47bc70",
"thumbColor": "#ab47bc70",
"trackColor": "#292D3E30",
"Transparent": {
"hoverThumbBorderColor": "#ab47bc",
"hoverThumbColor": "#ab47bc",
"hoverTrackColor": "#292D3E30",
"thumbBorderColor": "#ab47bc70",
"thumbColor": "#ab47bc70",
"trackColor": "#292D3E30"
}
},
"thumb": "#444267",
"thumbBorderColor": "#ab47bc70",
"thumbColor": "#ab47bc70",
"trackColor": "#292D3E30",
"Transparent": {
"hoverThumbBorderColor": "#ab47bc",
"hoverThumbColor": "#ab47bc",
"hoverTrackColor": "#292D3E30",
"thumbBorderColor": "#ab47bc70",
"thumbColor": "#ab47bc70",
"trackColor": "#292D3E30"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#202331",
"foreground": "#676E95"
},
"Header": {
"background": "#292D3E"
},
"List": {
"separatorForeground": "#676E95",
"separatorColor": "#2b2a3e"
},
"SearchField": {
"background": "#292D3E",
"borderColor": "#202331",
"infoForeground": "#676E95"
},
"Tab": {
"active.foreground": "#FFFFFF",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#444267"
}
},
"SearchMatch": {
"endBackground": "#ab47bc",
"startBackground": "#ab47bc"
},
"SearchField.errorBackground": "#202331",
"Separator": {
"background": "#34324a",
"foreground": "#34324a",
"separatorColor": "#34324a"
},
"SidePanel": {
"background": "#202331"
},
"Slider": {
"background": "#292D3E",
"buttonBorderColor": "#ab47bc",
"buttonColor": "#ab47bc",
"foreground": "#A6ACCD",
"majorTickLength": 6,
"tickColor": "#34324a",
"trackColor": "#414863",
"trackWidth": 7,
"thumb": "#ab47bc"
},
"SpeedSearch": {
"background": "#444267",
"borderColor": "#2b2a3e",
"foreground": "#A6ACCD",
"errorForeground": "#A6ACCD"
},
"Spinner": {
"background": "#292D3E",
"border": "3,3,3,3",
"foreground": "#A6ACCD",
"selectionForeground": "#FFFFFF"
},
"SplitPane": {
"background": "#292D3E",
"highlight": "#202331"
},
"SplitPaneDivider.draggingColor": "#34324a",
"StatusBar": {
"borderColor": "#292D3E"
},
"TabbedPane": {
"background": "#292D3E",
"contentAreaColor": "#444267",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#2b2a3e",
"disabledForeground": "#515772",
"disabledUnderlineColor": "#515772",
"focus": "#414863",
"focusColor": "#414863",
"fontSizeOffset": 0,
"foreground": "#A6ACCD",
"highlight": "#2b2a3e",
"hoverColor": "#444267",
"labelShift": 0,
"selectedForeground": "#FFFFFF",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#ab47bc"
},
"TabbedPane.mt.tab.background": "#202331",
"Table": {
"background": "#292D3E",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#ab47bc",
"dropLineShortColor": "#ab47bc",
"focusCellBackground": "#414863",
"focusCellForeground": "#FFFFFF",
"foreground": "#A6ACCD",
"gridColor": "#292D3E",
"highlightOuter": "#414863",
"lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#676E95",
"lightSelectionInactiveBackground": "#34324a",
"selectionBackground": "#414863",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#414863",
"selectionInactiveForeground": "#FFFFFF",
"sortIconColor": "#A6ACCD",
"stripeColor": "#202331"
},
"TableHeader": {
"background": "#292D3E",
"borderColor": "#292D3E",
"bottomSeparatorColor": "#34324a",
"cellBorder": "4,0,4,0",
"disabledForeground": "#515772",
"foreground": "#A6ACCD",
"focusCellBackground": "#414863",
"focusCellForeground": "#FFFFFF",
"height": 25,
"separatorColor": "#34324a"
},
"text": "#676E95",
"textInactiveText": "#676E95",
"textText": "#676E95",
"TextArea": {
"background": "#202331",
"caretForeground": "#ab47bc",
"foreground": "#A6ACCD",
"inactiveForeground": "#515772",
"selectionBackground": "#414863",
"selectionForeground": "#FFFFFF"
},
"TextField": {
"background": "#202331",
"caretForeground": "#ab47bc",
"foreground": "#A6ACCD",
"inactiveForeground": "#515772",
"selectionBackground": "#414863",
"selectionForeground": "#FFFFFF"
},
"TextPane": {
"background": "#202331",
"caretForeground": "#ab47bc",
"foreground": "#A6ACCD",
"inactiveForeground": "#515772",
"selectionBackground": "#414863",
"selectionForeground": "#FFFFFF"
},
"TitlePane": {
"background": "#202331",
"Button.hoverBackground": "#444267",
"inactiveBackground": "#292D3E",
"infoForeground": "#676E95",
"inactiveInfoForeground": "#676E95"
},
"TitledBorder.titleColor": "#A6ACCD",
"ToggleButton": {
"borderColor": "#303348",
"buttonColor": "#A6ACCD",
"disabledText": "#515772",
"foreground": "#A6ACCD",
"offForeground": "#292D3E",
"offBackground": "#292D3E",
"onBackground": "#ab47bc",
"onForeground": "#ab47bc"
},
"ToolBar": {
"background": "#202331",
"borderHandleColor": "#676E95",
"floatingForeground": "#676E95",
"foreground": "#A6ACCD"
},
"ToolTip": {
"Actions.background": "#292D3E",
"Actions.infoForeground": "#676E95",
"background": "#292D3E",
"borderColor": "#444267",
"foreground": "#A6ACCD",
"infoForeground": "#676E95",
"separatorColor": "#2b2a3e",
"shortcutForeground": "#676E95"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#414863",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#202331"
},
"Header": {
"background": "#292D3E",
"borderColor": "#34324a",
"inactiveBackground": "#292D3E"
},
"HeaderCloseButton": {
"background": "#292D3E"
},
"HeaderTab": {
"hoverBackground": "#444267",
"hoverInactiveBackground": "#34324a",
"inactiveUnderlineColor": "#ab47bc",
"selectedBackground": "#202331",
"selectedInactiveBackground": "#202331",
"underlineColor": "#ab47bc",
"underlinedTabBackground": "#444267",
"underlinedTabInactiveBackground": "#34324a"
}
},
"Tree": {
"background": "#202331",
"foreground": "#676E95",
"hash": "#2b2a3e",
"modifiedItemForeground": "#ab47bc",
"rowHeight": 28,
"selectionBackground": "#676E9550",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#676E9550",
"textBackground": "#202331"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#2b2a3e",
"ColorPicker.background": "#292D3E",
"ColorPicker.foreground": "#A6ACCD",
"Component.borderColor": "#2b2a3e",
"Component.background": "#292D3E",
"Component.foreground": "#A6ACCD",
"Connector.borderColor": "#2b2a3e",
"Connector.hoverBorderColor": "#444267",
"Canvas.background": "#202331",
"highStroke.foreground": "#A6ACCD",
"Label.foreground": "#676E95",
"List.selectionBackground": "#676E9550",
"Panel.borderColor": "#2b2a3e",
"Panel.background": "#292D3E",
"percent.foreground": "#A6ACCD",
"Placeholder.background": "#292D3E",
"Placeholder.borderColor": "#2b2a3e",
"Placeholder.foreground": "#A6ACCD",
"Placeholder.selectedForeground": "#FFFFFF",
"Preview.background": "#292D3E",
"stroke.acceleratorForeground": "#676E95"
},
"ValidationTooltip": {
"errorBackground": "#202331",
"errorBorderColor": "#202331",
"warningBackground": "#202331",
"warningBorderColor": "#202331"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#292D3E"
},
"GitCommits": {
"graphColor": "#444267"
},
"GitLog": {
"localBranchIconColor": "#ab47bc",
"otherIconColor": "#676E95",
"remoteBranchIconColor": "#A6ACCD",
"tagIconColor": "#676E95"
},
"HgLog": {
"branchIconColor": "#ab47bc",
"bookmarkIconColor": "#FFFFFF",
"closedBranchIconColor": "#515772",
"localTagIconColor": "#676E95",
"mqTagIconColor": "#676E95",
"tagIconColor": "#676E95",
"tipIconColor": "#676E95"
},
"Log": {
"Commit.unmatchedForeground": "#676E95",
"Commit.currentBranchBackground": "#34324a"
},
"RefLabel": {
"foreground": "#FFFFFF",
"backgroundBase": "#444267"
}
},
"Viewport": {
"background": "#202331",
"foreground": "#A6ACCD"
},
"WelcomeScreen": {
"background": "#292D3E",
"borderColor": "#292D3E",
"captionBackground": "#202331",
"captionForeground": "#A6ACCD",
"footerBackground": "#202331",
"footerForeground": "#A6ACCD",
"headerBackground": "#292D3E",
"headerForeground": "#A6ACCD",
"separatorColor": "#2b2a3e",
"Projects": {
"background": "#34324a",
"selectionBackground": "#3C435E",
"selectionInactiveBackground": "#34324a"
}
},
"window": "#202331",
"windowBorder": "#2b2a3e",
"windowText": "#676E95",
"Window.border": "#2b2a3e"
},
"icons": {
"ColorPalette": {
"#43494A": "#202331",
"#6B6B6B": "#676E95",
"#A7A7A7": "#292D3E",
"#3D6185": "#ab47bc",
"#466D94": "#ab47bc",
"#3C3F41": "#292D3E",
"#545556": "#515772",
"#606060": "#515772",
"#9AA7B0": "#A6ACCD",
"#675133": "#ab47bc",
"Actions.Blue": "#82aaff",
"Actions.Green": "#c3e88d",
"Actions.Grey": "#676E95",
"Actions.GreyInline": "#676E95",
"Actions.GreyInline.Dark": "#A6ACCD",
"Actions.Red": "#f07178",
"Actions.Yellow": "#ffcb6b",
"Checkbox.Background.Default": "#202331",
"Checkbox.Background.Default.Dark": "#202331",
"Checkbox.Background.Disabled": "#2f2e43",
"Checkbox.Background.Disabled.Dark": "#2f2e43",
"Checkbox.Border.Default": "#2b2a3e",
"Checkbox.Border.Default.Dark": "#2b2a3e",
"Checkbox.Border.Disabled": "#515772",
"Checkbox.Border.Disabled.Dark": "#515772",
"Checkbox.Focus.Thin.Default": "#ab47bc",
"Checkbox.Focus.Thin.Default.Dark": "#ab47bc",
"Checkbox.Focus.Wide": "#ab47bc",
"Checkbox.Focus.Wide.Dark": "#ab47bc",
"Checkbox.Foreground.Disabled": "#515772",
"Checkbox.Foreground.Disabled.Dark": "#515772",
"Checkbox.Background.Selected": "#ab47bc",
"Checkbox.Background.Selected.Dark": "#292D3E",
"Checkbox.Border.Selected": "#ab47bc",
"Checkbox.Border.Selected.Dark": "#ab47bc",
"Checkbox.Foreground.Selected": "#ab47bc",
"Checkbox.Foreground.Selected.Dark": "#ab47bc",
"Checkbox.Focus.Thin.Selected": "#A6ACCD",
"Checkbox.Focus.Thin.Selected.Dark": "#A6ACCD",
"Objects.Grey": "#676E95",
"Objects.Blue": "#82aaff",
"Objects.RedStatus": "#f07178",
"Objects.Red": "#f07178",
"Objects.Pink": "#c792ea",
"Objects.Yellow": "#ffcb6b",
"Objects.Green": "#c3e88d",
"Objects.Purple": "#c792ea",
"Objects.BlackText": "#A6ACCD",
"Objects.YellowDark": "#f78c6c",
"Objects.GreenAndroid": "#c3e88d"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "Material Palenight",
"dark": true,
"author": "Mallowigi",
"editorScheme": "/colors/Material Palenight.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#676E95",
"background": "#292D3E",
"borderColor": "#2b2a3e",
"disabledBackground": "#2f2e43",
"disabledForeground": "#515772",
"disabledText": "#515772",
"focusColor": "#444267",
"focusedBorderColor": "#ab47bc",
"foreground": "#A6ACCD",
"inactiveBackground": "#2f2e43",
"inactiveForeground": "#676E95",
"infoForeground": "#676E95",
"selectionBackground": "#3C435E",
"selectionBackgroundInactive": "#34324a",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#34324a",
"separatorColor": "#2b2a3e"
},
"activeCaption": "#292D3E",
"ActionButton": {
"hoverBackground": "#ab47bc50",
"hoverBorderColor": "#ab47bc50",
"hoverSeparatorColor": "#303348",
"focusedBorderColor": "#ab47bc50",
"pressedBackground": "#ab47bc50",
"pressedBorderColor": "#ab47bc50"
},
"Autocomplete": {
"selectionBackground": "#3C435E"
},
"Borders.ContrastBorderColor": "#292D3E",
"Borders.color": "#2b2a3e",
"Button": {
"arc": 0,
"background": "#292D3E",
"default": {
"endBackground": "#414863",
"endBorderColor": "#414863",
"foreground": "#FFFFFF",
"focusColor": "#ab47bc",
"focusedBorderColor": "#ab47bc",
"shadowColor": "#414863",
"startBackground": "#414863",
"startBorderColor": "#414863"
},
"disabledBorderColor": "#303348",
"disabledText": "#515772",
"endBackground": "#303348",
"endBorderColor": "#303348",
"focus": "#444267",
"focusedBorderColor": "#ab47bc",
"foreground": "#676E95",
"highlight": "#FFFFFF",
"mt.background": "#303348",
"mt.foreground": "#676E95",
"mt.selectedForeground": "#FFFFFF",
"mt.selection.color1": "#414863",
"mt.selection.color2": "#414863",
"startBackground": "#303348",
"startBorderColor": "#303348",
"shadowColor": "#303348",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#2b2a3e",
"Tooltip.background": "#202331"
},
"Content.background": "#202331",
"CheckBox": {
"background": "#292D3E",
"disabledText": "#515772",
"foreground": "#A6ACCD",
"select": "#ab47bc"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#676E95",
"acceleratorSelectionForeground": "#676E95",
"background": "#292D3E",
"disabledBackground": "#292D3E",
"disabledForeground": "#515772",
"foreground": "#A6ACCD",
"selectionBackground": "#3C435E",
"selectionForeground": "#FFFFFF"
},
"ColorChooser": {
"background": "#292D3E",
"foreground": "#A6ACCD",
"swatchesDefaultRecentColor": "#A6ACCD"
},
"ComboBoxButton.background": "#303348",
"ComboBox": {
"ArrowButton": {
"background": "#303348",
"disabledIconColor": "#515772",
"iconColor": "#A6ACCD",
"nonEditableBackground": "#292D3E"
},
"background": "#292D3E",
"buttonBackground": "#303348",
"disabledForeground": "#515772",
"foreground": "#A6ACCD",
"modifiedItemForeground": "#ab47bc",
"nonEditableBackground": "#34324a",
"padding": "5,5,5,5",
"selectionBackground": "#414863",
"selectionForeground": "#FFFFFF"
},
"ComboPopup.border": "#2b2a3e",
"CompletionPopup": {
"background": "#34324a",
"foreground": "#A6ACCD",
"infoForeground": "#676E95",
"matchForeground": "#ab47bc",
"matchSelectionForeground": "#ab47bc",
"nonFocusedState": "false",
"selectedGrayedForeground": "#FFFFFF",
"selectionGrayForeground": "#FFFFFF",
"selectionInactiveInfoForeground": "#676E95",
"selectionInactiveBackground": "#3C435E50",
"selectionBackground": "#3C435E80",
"selectionForeground": "#FFFFFF",
"selectionInfoForeground": "#FFFFFF"
},
"Component": {
"arc": 4,
"borderColor": "#444267",
"disabledBorderColor": "#303348",
"focusColor": "#ab47bc",
"focusedBorderColor": "#ab47bc",
"hoverIconColor": "#ab47bc",
"infoForeground": "#676E95",
"iconColor": "#A6ACCD"
},
"control": "#292D3E",
"controlText": "#676E95",
"Counter": {
"background": "#ab47bc",
"foreground": "#FFFFFF"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#676E95",
"changedValueForeground": "#ab47bc",
"errorMessageForeground": "#f07178",
"evaluatingExpressionForeground": "#676E95",
"exceptionForeground": "#ffcb6b",
"modifyingValueForeground": "#ab47bc",
"valueForeground": "#ab47bc"
}
},
"DebuggerTabs": {
"selectedBackground": "#444267",
"underlinedTabBackground": "#444267"
},
"DebuggerPopup": {
"borderColor": "#444267"
},
"DefaultTabs": {
"background": "#292D3E",
"borderColor": "#292D3E",
"hoverBackground": "#414863",
"hoverColor": "#292D3E",
"hoverMaskColor": "#444267",
"inactiveColoredFileBackground": "#303348",
"inactiveUnderlineColor": "#515772",
"inactiveMaskColor": "#292D3E",
"underlineColor": "#ab47bc",
"underlinedTabBackground": "#414863"
},
"Desktop.background": "#292D3E",
"DialogWrapper.southPanelBackground": "#292D3E",
"DialogWrapper.southPanelDivider": "#292D3E",
"DragAndDrop": {
"areaBackground": "#292D3E",
"areaBorderColor": "#292D3E",
"areaForeground": "#A6ACCD"
},
"Editor": {
"background": "#292D3E",
"foreground": "#A6ACCD",
"shortcutForeground": "#676E95"
},
"EditorPane": {
"background": "#292D3E",
"caretForeground": "#ab47bc",
"foreground": "#A6ACCD",
"inactiveBackground": "#292D3E",
"inactiveForeground": "#515772",
"selectionBackground": "#3C435E",
"selectionForeground": "#FFFFFF"
},
"EditorTabs": {
"borderColor": "#34324a",
"hoverColor": "#444267",
"hoverMaskColor": "#444267",
"inactiveMaskColor": "#292D3E",
"inactiveColoredFileBackground": "#292D3E2",
"inactiveUnderlineColor": "#515772",
"selectedForeground": "#A6ACCD",
"selectedBackground": "#414863",
"underlineColor": "#ab47bc",
"underlinedTabBackground": "#414863"
},
"EditorGroupsTabs": {
"background": "#292D3E",
"borderColor": "#34324a",
"hoverBackground": "#444267",
"hoverColor": "#444267",
"inactiveUnderlineColor": "#ab47bc",
"underlineColor": "#ab47bc",
"underlinedTabBackground": "#414863",
"underlinedTabForeground": "#A6ACCD"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#2f2e43",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#2b2a3e",
"FormattedTextField": {
"background": "#292D3E",
"caretForeground": "#ab47bc",
"foreground": "#A6ACCD",
"inactiveBackground": "#303348",
"inactiveForeground": "#515772",
"selectionForeground": "#FFFFFF",
"selectionBackground": "#414863"
},
"Group": {
"disabledSeparatorColor": "#2b2a3e",
"separatorColor": "#2b2a3e"
},
"GutterTooltip": {
"infoForeground": "#A6ACCD",
"lineSeparatorColor": "#292D3E"
},
"HeaderColor": {
"active": "#292D3E",
"inactive": "#202331"
},
"HelpTooltip": {
"background": "#292D3E",
"borderColor": "#2b2a3e",
"foreground": "#A6ACCD",
"infoForeground": "#676E95",
"shortcutForeground": "#676E95"
},
"Hyperlink.linkColor": "#ab47bc",
"inactiveCaption": "#34324a",
"inactiveCaptionBorder": "#292D3E",
"inactiveCaptionText": "#676E95",
"info": "#676E95",
"infoText": "#676E95",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#2b2a3e",
"InplaceRefactoringPopup": {
"borderColor": "#292D3E"
},
"InternalFrame": {
"activeTitleForeground": "#A6ACCD",
"background": "#292D3E",
"inactiveTitleForeground": "#676E95"
},
"Label": {
"background": "#292D3E",
"disabledForeground": "#515772",
"disabledShadow": "#292D3E",
"disabledText": "#515772",
"foreground": "#A6ACCD",
"infoForeground": "#676E95",
"selectedForeground": "#FFFFFF"
},
"Link": {
"activeForeground": "#ab47bc",
"hoverForeground": "#ab47bc",
"pressedForeground": "#ab47bc",
"secondaryForeground": "#676E95",
"visitedForeground": "#ab47bc"
},
"link.foreground": "#ab47bc",
"List": {
"background": "#34324a",
"foreground": "#A6ACCD",
"selectionBackground": "#3C435E50",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#676E9550"
},
"material": {
"background": "#292D3E",
"branchColor": "#A6ACCD",
"contrast": "#202331",
"foreground": "#A6ACCD",
"mergeCommits": "#303348",
"primaryColor": "#676E95",
"selectionForeground": "#FFFFFF",
"tab.backgroundColor": "#292D3E",
"tab.borderColor": "#ab47bc",
"tagColor": "#676E95"
},
"MemoryIndicator": {
"allocatedBackground": "#34324a",
"usedColor": "#444267",
"usedBackground": "#444267"
},
"Menu": {
"acceleratorForeground": "#676E95",
"acceleratorSelectionForeground": "#FFFFFF",
"background": "#292D3E",
"border": "4,2,4,2",
"borderColor": "#34324a",
"disabledBackground": "#34324a",
"disabledForeground": "#515772",
"foreground": "#A6ACCD",
"selectionBackground": "#3C435E",
"selectionForeground": "#FFFFFF",
"separatorColor": "#2b2a3e"
},
"MenuBar": {
"background": "#292D3E",
"borderColor": "#292D3E",
"disabledBackground": "#292D3E",
"disabledForeground": "#515772",
"foreground": "#A6ACCD",
"highlight": "#292D3E",
"selectionBackground": "#3C435E",
"selectionForeground": "#FFFFFF",
"shadow": "#292D3E"
},
"MenuItem": {
"acceleratorForeground": "#676E95",
"acceleratorSelectionForeground": "#FFFFFF",
"border": "4,2,4,2",
"background": "#292D3E",
"disabledBackground": "#292D3E",
"disabledForeground": "#515772",
"foreground": "#A6ACCD",
"selectionBackground": "#3C435E",
"selectionForeground": "#FFFFFF"
},
"NavBar": {
"arrowColor": "#A6ACCD",
"borderColor": "#292D3E"
},
"NewClass": {
"Panel": {
"background": "#292D3E"
},
"SearchField": {
"background": "#292D3E"
}
},
"NewPSD.warning": "#ab47bc",
"Notification": {
"background": "#202331",
"borderColor": "#202331",
"errorBackground": "#202331",
"errorBorderColor": "#202331",
"foreground": "#A6ACCD",
"MoreButton": {
"background": "#303348",
"foreground": "#A6ACCD",
"innerBorderColor": "#303348"
},
"ToolWindow": {
"errorBackground": "#202331",
"errorBorderColor": "#202331",
"informativeBackground": "#202331",
"informativeBorderColor": "#202331",
"warningBackground": "#202331",
"warningBorderColor": "#202331"
}
},
"OnePixelDivider.background": "#2b2a3e",
"OptionPane": {
"background": "#292D3E",
"foreground": "#A6ACCD",
"messageForeground": "#A6ACCD"
},
"Outline": {
"color": "#303348",
"focusedColor": "#ab47bc",
"disabledColor": "#515772"
},
"Panel": {
"background": "#292D3E",
"foreground": "#A6ACCD"
},
"ParameterInfo": {
"background": "#34324a",
"borderColor": "#414863",
"currentOverloadBackground": "#414863",
"currentParameterForeground": "#ab47bc",
"disabledForeground": "#515772",
"foreground": "#A6ACCD",
"infoForeground": "#676E95",
"lineSeparatorColor": "#414863"
},
"PasswordField": {
"background": "#292D3E",
"capsLockIconColor": "#ab47bc",
"caretForeground": "#ab47bc",
"foreground": "#A6ACCD",
"inactiveForeground": "#515772",
"selectionBackground": "#414863",
"selectionForeground": "#FFFFFF"
},
"Plugins": {
"background": "#292D3E",
"disabledForeground": "#515772",
"eapTagBackground": "#444267",
"lightSelectionBackground": "#3C435E",
"paidTagBackground": "#444267",
"selectionBackground": "#3C435E",
"tagForeground": "#ab47bc",
"tagBackground": "#444267",
"trialTagBackground": "#444267",
"Button": {
"installBackground": "#303348",
"installBorderColor": "#303348",
"installForeground": "#A6ACCD",
"installFocusedBackground": "#444267",
"installFillForeground": "#515772",
"installFillBackground": "#303348",
"updateBackground": "#303348",
"updateBorderColor": "#303348",
"updateForeground": "#A6ACCD"
},
"SearchField": {
"background": "#292D3E",
"borderColor": "#2b2a3e"
},
"SectionHeader": {
"background": "#34324a",
"foreground": "#A6ACCD"
},
"Tab": {
"hoverBackground": "#414863",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#414863"
}
},
"Popup": {
"Advertiser": {
"background": "#292D3E",
"borderColor": "#292D3E",
"foreground": "#ab47bc"
},
"borderColor": "#202331",
"inactiveBorderColor": "#292D3E",
"innerBorderColor": "#34324a",
"Header": {
"activeBackground": "#292D3E",
"inactiveBackground": "#202331"
},
"paintBorder": true,
"separatorForeground": "#A6ACCD",
"separatorColor": "#34324a",
"Toolbar": {
"Floating.background": "#202331",
"background": "#202331",
"borderColor": "#202331"
}
},
"PopupMenu": {
"background": "#292D3E",
"border": "2,0,2,0",
"foreground": "#A6ACCD",
"translucentBackground": "#292D3E"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#292D3E",
"foreground": "#ab47bc",
"indeterminateEndColor": "#ab47bc",
"indeterminateStartColor": "#ab47bc",
"progressColor": "#ab47bc",
"selectionBackground": "#444267",
"trackColor": "#444267"
},
"PsiViewer": {
"referenceHighlightColor": "#ab47bc"
},
"RadioButton": {
"background": "#292D3E",
"disabledText": "#515772",
"foreground": "#A6ACCD"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#676E95",
"acceleratorSelectionForeground": "#676E95",
"background": "#292D3E",
"disabledBackground": "#292D3E",
"disabledForeground": "#515772",
"foreground": "#A6ACCD",
"selectionBackground": "#3C435E",
"selectionForeground": "#FFFFFF"
},
"ScrollBar": {
"background": "#292D3E",
"hoverThumbBorderColor": "#ab47bc",
"hoverThumbColor": "#ab47bc",
"hoverTrackColor": "#292D3E30",
"Mac": {
"hoverThumbBorderColor": "#ab47bc",
"hoverThumbColor": "#ab47bc",
"hoverTrackColor": "#292D3E30",
"thumbBorderColor": "#ab47bc70",
"thumbColor": "#ab47bc70",
"trackColor": "#292D3E30",
"Transparent": {
"hoverThumbBorderColor": "#ab47bc",
"hoverThumbColor": "#ab47bc",
"hoverTrackColor": "#292D3E30",
"thumbBorderColor": "#ab47bc70",
"thumbColor": "#ab47bc70",
"trackColor": "#292D3E30"
}
},
"thumb": "#444267",
"thumbBorderColor": "#ab47bc70",
"thumbColor": "#ab47bc70",
"trackColor": "#292D3E30",
"Transparent": {
"hoverThumbBorderColor": "#ab47bc",
"hoverThumbColor": "#ab47bc",
"hoverTrackColor": "#292D3E30",
"thumbBorderColor": "#ab47bc70",
"thumbColor": "#ab47bc70",
"trackColor": "#292D3E30"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#202331",
"foreground": "#676E95"
},
"Header": {
"background": "#292D3E"
},
"List": {
"separatorForeground": "#676E95",
"separatorColor": "#2b2a3e"
},
"SearchField": {
"background": "#292D3E",
"borderColor": "#202331",
"infoForeground": "#676E95"
},
"Tab": {
"active.foreground": "#FFFFFF",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#444267"
}
},
"SearchMatch": {
"endBackground": "#ab47bc",
"startBackground": "#ab47bc"
},
"SearchField.errorBackground": "#202331",
"Separator": {
"background": "#34324a",
"foreground": "#34324a",
"separatorColor": "#34324a"
},
"SidePanel": {
"background": "#292D3E"
},
"Slider": {
"background": "#292D3E",
"buttonBorderColor": "#ab47bc",
"buttonColor": "#ab47bc",
"foreground": "#A6ACCD",
"majorTickLength": 6,
"tickColor": "#34324a",
"trackColor": "#414863",
"trackWidth": 7,
"thumb": "#ab47bc"
},
"SpeedSearch": {
"background": "#444267",
"borderColor": "#2b2a3e",
"foreground": "#A6ACCD",
"errorForeground": "#A6ACCD"
},
"Spinner": {
"background": "#292D3E",
"border": "3,3,3,3",
"foreground": "#A6ACCD",
"selectionForeground": "#FFFFFF"
},
"SplitPane": {
"background": "#292D3E",
"highlight": "#292D3E"
},
"SplitPaneDivider.draggingColor": "#34324a",
"StatusBar": {
"borderColor": "#292D3E"
},
"TabbedPane": {
"background": "#292D3E",
"contentAreaColor": "#444267",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#2b2a3e",
"disabledForeground": "#515772",
"disabledUnderlineColor": "#515772",
"focus": "#414863",
"focusColor": "#414863",
"fontSizeOffset": 0,
"foreground": "#A6ACCD",
"highlight": "#2b2a3e",
"hoverColor": "#444267",
"labelShift": 0,
"selectedForeground": "#FFFFFF",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#ab47bc"
},
"TabbedPane.mt.tab.background": "#292D3E",
"Table": {
"background": "#292D3E",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#ab47bc",
"dropLineShortColor": "#ab47bc",
"focusCellBackground": "#414863",
"focusCellForeground": "#FFFFFF",
"foreground": "#A6ACCD",
"gridColor": "#292D3E",
"highlightOuter": "#414863",
"lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#676E95",
"lightSelectionInactiveBackground": "#34324a",
"selectionBackground": "#414863",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#414863",
"selectionInactiveForeground": "#FFFFFF",
"sortIconColor": "#A6ACCD",
"stripeColor": "#202331"
},
"TableHeader": {
"background": "#292D3E",
"borderColor": "#292D3E",
"bottomSeparatorColor": "#34324a",
"cellBorder": "4,0,4,0",
"disabledForeground": "#515772",
"foreground": "#A6ACCD",
"focusCellBackground": "#414863",
"focusCellForeground": "#FFFFFF",
"height": 25,
"separatorColor": "#34324a"
},
"text": "#676E95",
"textInactiveText": "#676E95",
"textText": "#676E95",
"TextArea": {
"background": "#292D3E",
"caretForeground": "#ab47bc",
"foreground": "#A6ACCD",
"inactiveForeground": "#515772",
"selectionBackground": "#414863",
"selectionForeground": "#FFFFFF"
},
"TextField": {
"background": "#292D3E",
"caretForeground": "#ab47bc",
"foreground": "#A6ACCD",
"inactiveForeground": "#515772",
"selectionBackground": "#414863",
"selectionForeground": "#FFFFFF"
},
"TextPane": {
"background": "#292D3E",
"caretForeground": "#ab47bc",
"foreground": "#A6ACCD",
"inactiveForeground": "#515772",
"selectionBackground": "#414863",
"selectionForeground": "#FFFFFF"
},
"TitlePane": {
"background": "#202331",
"Button.hoverBackground": "#444267",
"inactiveBackground": "#292D3E",
"infoForeground": "#676E95",
"inactiveInfoForeground": "#676E95"
},
"TitledBorder.titleColor": "#A6ACCD",
"ToggleButton": {
"borderColor": "#303348",
"buttonColor": "#A6ACCD",
"disabledText": "#515772",
"foreground": "#A6ACCD",
"offForeground": "#292D3E",
"offBackground": "#292D3E",
"onBackground": "#ab47bc",
"onForeground": "#ab47bc"
},
"ToolBar": {
"background": "#292D3E",
"borderHandleColor": "#676E95",
"floatingForeground": "#676E95",
"foreground": "#A6ACCD"
},
"ToolTip": {
"Actions.background": "#292D3E",
"Actions.infoForeground": "#676E95",
"background": "#292D3E",
"borderColor": "#444267",
"foreground": "#A6ACCD",
"infoForeground": "#676E95",
"separatorColor": "#2b2a3e",
"shortcutForeground": "#676E95"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#414863",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#202331"
},
"Header": {
"background": "#292D3E",
"borderColor": "#34324a",
"inactiveBackground": "#292D3E"
},
"HeaderCloseButton": {
"background": "#292D3E"
},
"HeaderTab": {
"hoverBackground": "#444267",
"hoverInactiveBackground": "#34324a",
"inactiveUnderlineColor": "#ab47bc",
"selectedBackground": "#202331",
"selectedInactiveBackground": "#202331",
"underlineColor": "#ab47bc",
"underlinedTabBackground": "#444267",
"underlinedTabInactiveBackground": "#34324a"
}
},
"Tree": {
"background": "#292D3E",
"foreground": "#676E95",
"hash": "#2b2a3e",
"modifiedItemForeground": "#ab47bc",
"rowHeight": 28,
"selectionBackground": "#676E9550",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#676E9550",
"textBackground": "#292D3E"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#2b2a3e",
"ColorPicker.background": "#292D3E",
"ColorPicker.foreground": "#A6ACCD",
"Component.borderColor": "#2b2a3e",
"Component.background": "#292D3E",
"Component.foreground": "#A6ACCD",
"Connector.borderColor": "#2b2a3e",
"Connector.hoverBorderColor": "#444267",
"Canvas.background": "#202331",
"highStroke.foreground": "#A6ACCD",
"Label.foreground": "#676E95",
"List.selectionBackground": "#676E9550",
"Panel.borderColor": "#2b2a3e",
"Panel.background": "#292D3E",
"percent.foreground": "#A6ACCD",
"Placeholder.background": "#292D3E",
"Placeholder.borderColor": "#2b2a3e",
"Placeholder.foreground": "#A6ACCD",
"Placeholder.selectedForeground": "#FFFFFF",
"Preview.background": "#292D3E",
"stroke.acceleratorForeground": "#676E95"
},
"ValidationTooltip": {
"errorBackground": "#202331",
"errorBorderColor": "#202331",
"warningBackground": "#202331",
"warningBorderColor": "#202331"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#292D3E"
},
"GitCommits": {
"graphColor": "#444267"
},
"GitLog": {
"localBranchIconColor": "#ab47bc",
"otherIconColor": "#676E95",
"remoteBranchIconColor": "#A6ACCD",
"tagIconColor": "#676E95"
},
"HgLog": {
"branchIconColor": "#ab47bc",
"bookmarkIconColor": "#FFFFFF",
"closedBranchIconColor": "#515772",
"localTagIconColor": "#676E95",
"mqTagIconColor": "#676E95",
"tagIconColor": "#676E95",
"tipIconColor": "#676E95"
},
"Log": {
"Commit.unmatchedForeground": "#676E95",
"Commit.currentBranchBackground": "#34324a"
},
"RefLabel": {
"foreground": "#FFFFFF",
"backgroundBase": "#444267"
}
},
"Viewport": {
"background": "#292D3E",
"foreground": "#A6ACCD"
},
"WelcomeScreen": {
"background": "#292D3E",
"borderColor": "#292D3E",
"captionBackground": "#202331",
"captionForeground": "#A6ACCD",
"footerBackground": "#202331",
"footerForeground": "#A6ACCD",
"headerBackground": "#292D3E",
"headerForeground": "#A6ACCD",
"separatorColor": "#2b2a3e",
"Projects": {
"background": "#34324a",
"selectionBackground": "#3C435E",
"selectionInactiveBackground": "#34324a"
}
},
"window": "#292D3E",
"windowBorder": "#2b2a3e",
"windowText": "#676E95",
"Window.border": "#2b2a3e"
},
"icons": {
"ColorPalette": {
"#43494A": "#202331",
"#6B6B6B": "#676E95",
"#A7A7A7": "#292D3E",
"#3D6185": "#ab47bc",
"#466D94": "#ab47bc",
"#3C3F41": "#292D3E",
"#545556": "#515772",
"#606060": "#515772",
"#9AA7B0": "#A6ACCD",
"#675133": "#ab47bc",
"Actions.Blue": "#82aaff",
"Actions.Green": "#c3e88d",
"Actions.Grey": "#676E95",
"Actions.GreyInline": "#676E95",
"Actions.GreyInline.Dark": "#A6ACCD",
"Actions.Red": "#f07178",
"Actions.Yellow": "#ffcb6b",
"Checkbox.Background.Default": "#202331",
"Checkbox.Background.Default.Dark": "#202331",
"Checkbox.Background.Disabled": "#2f2e43",
"Checkbox.Background.Disabled.Dark": "#2f2e43",
"Checkbox.Border.Default": "#2b2a3e",
"Checkbox.Border.Default.Dark": "#2b2a3e",
"Checkbox.Border.Disabled": "#515772",
"Checkbox.Border.Disabled.Dark": "#515772",
"Checkbox.Focus.Thin.Default": "#ab47bc",
"Checkbox.Focus.Thin.Default.Dark": "#ab47bc",
"Checkbox.Focus.Wide": "#ab47bc",
"Checkbox.Focus.Wide.Dark": "#ab47bc",
"Checkbox.Foreground.Disabled": "#515772",
"Checkbox.Foreground.Disabled.Dark": "#515772",
"Checkbox.Background.Selected": "#ab47bc",
"Checkbox.Background.Selected.Dark": "#292D3E",
"Checkbox.Border.Selected": "#ab47bc",
"Checkbox.Border.Selected.Dark": "#ab47bc",
"Checkbox.Foreground.Selected": "#ab47bc",
"Checkbox.Foreground.Selected.Dark": "#ab47bc",
"Checkbox.Focus.Thin.Selected": "#A6ACCD",
"Checkbox.Focus.Thin.Selected.Dark": "#A6ACCD",
"Objects.Grey": "#676E95",
"Objects.Blue": "#82aaff",
"Objects.RedStatus": "#f07178",
"Objects.Red": "#f07178",
"Objects.Pink": "#c792ea",
"Objects.Yellow": "#ffcb6b",
"Objects.Green": "#c3e88d",
"Objects.Purple": "#c792ea",
"Objects.BlackText": "#A6ACCD",
"Objects.YellowDark": "#f78c6c",
"Objects.GreenAndroid": "#c3e88d"
}
}
}

View File

@@ -1,22 +0,0 @@
The MIT License (MIT)
Copyright (c) 2015-2019 Chris Magnussen and Elior Boukhobza
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -1,917 +0,0 @@
{
"name": "Monokai Pro Contrast",
"dark": true,
"author": "Mallowigi",
"editorScheme": "/colors/Monokai Pro.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#939293",
"background": "#2D2A2E",
"borderColor": "#2d2a2e",
"disabledBackground": "#3a3a3c",
"disabledForeground": "#5b595c",
"disabledText": "#5b595c",
"focusColor": "#5b595c",
"focusedBorderColor": "#ffd866",
"foreground": "#fcfcfa",
"inactiveBackground": "#3a3a3c",
"inactiveForeground": "#939293",
"infoForeground": "#939293",
"selectionBackground": "#6E6C6F",
"selectionBackgroundInactive": "#403E41",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#403E41",
"separatorColor": "#2d2a2e"
},
"activeCaption": "#2D2A2E",
"ActionButton": {
"hoverBackground": "#ffd86650",
"hoverBorderColor": "#ffd86650",
"hoverSeparatorColor": "#403E41",
"focusedBorderColor": "#ffd86650",
"pressedBackground": "#ffd86650",
"pressedBorderColor": "#ffd86650"
},
"Autocomplete": {
"selectionBackground": "#6E6C6F"
},
"Borders.ContrastBorderColor": "#2D2A2E",
"Borders.color": "#2d2a2e",
"Button": {
"arc": 0,
"background": "#2D2A2E",
"default": {
"endBackground": "#4A474B",
"endBorderColor": "#4A474B",
"foreground": "#ffd866",
"focusColor": "#ffd866",
"focusedBorderColor": "#ffd866",
"shadowColor": "#4A474B",
"startBackground": "#4A474B",
"startBorderColor": "#4A474B"
},
"disabledBorderColor": "#403E41",
"disabledText": "#5b595c",
"endBackground": "#403E41",
"endBorderColor": "#403E41",
"focus": "#5b595c",
"focusedBorderColor": "#ffd866",
"foreground": "#939293",
"highlight": "#FFFFFF",
"mt.background": "#403E41",
"mt.foreground": "#939293",
"mt.selectedForeground": "#FFFFFF",
"mt.selection.color1": "#4A474B",
"mt.selection.color2": "#4A474B",
"startBackground": "#403E41",
"startBorderColor": "#403E41",
"shadowColor": "#403E41",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#2d2a2e",
"Tooltip.background": "#363437"
},
"Content.background": "#3a3a3c",
"CheckBox": {
"background": "#2D2A2E",
"disabledText": "#5b595c",
"foreground": "#fcfcfa",
"select": "#ffd866"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#939293",
"acceleratorSelectionForeground": "#939293",
"background": "#2D2A2E",
"disabledBackground": "#2D2A2E",
"disabledForeground": "#5b595c",
"foreground": "#fcfcfa",
"selectionBackground": "#6E6C6F",
"selectionForeground": "#ffd866"
},
"ColorChooser": {
"background": "#2D2A2E",
"foreground": "#fcfcfa",
"swatchesDefaultRecentColor": "#fcfcfa"
},
"ComboBoxButton.background": "#403E41",
"ComboBox": {
"ArrowButton": {
"background": "#403E41",
"disabledIconColor": "#5b595c",
"iconColor": "#fcfcfa",
"nonEditableBackground": "#2D2A2E"
},
"background": "#3a3a3c",
"buttonBackground": "#403E41",
"disabledForeground": "#5b595c",
"foreground": "#fcfcfa",
"modifiedItemForeground": "#ffd866",
"nonEditableBackground": "#403E41",
"padding": "5,5,5,5",
"selectionBackground": "#4A474B",
"selectionForeground": "#ffd866"
},
"ComboPopup.border": "#2d2a2e",
"CompletionPopup": {
"background": "#403E41",
"foreground": "#fcfcfa",
"infoForeground": "#939293",
"matchForeground": "#ffd866",
"matchSelectionForeground": "#ffd866",
"nonFocusedState": "false",
"selectedGrayedForeground": "#FFFFFF",
"selectionGrayForeground": "#FFFFFF",
"selectionInactiveInfoForeground": "#939293",
"selectionInactiveBackground": "#6E6C6F50",
"selectionBackground": "#6E6C6F80",
"selectionForeground": "#FFFFFF",
"selectionInfoForeground": "#FFFFFF"
},
"Component": {
"arc": 4,
"borderColor": "#5b595c",
"disabledBorderColor": "#403E41",
"focusColor": "#ffd866",
"focusedBorderColor": "#ffd866",
"hoverIconColor": "#ffd866",
"infoForeground": "#939293",
"iconColor": "#fcfcfa"
},
"control": "#2D2A2E",
"controlText": "#939293",
"Counter": {
"background": "#ffd866",
"foreground": "#FFFFFF"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#939293",
"changedValueForeground": "#ffd866",
"errorMessageForeground": "#FF6188",
"evaluatingExpressionForeground": "#939293",
"exceptionForeground": "#78DCE8",
"modifyingValueForeground": "#ffd866",
"valueForeground": "#ffd866"
}
},
"DebuggerTabs": {
"selectedBackground": "#5b595c",
"underlinedTabBackground": "#5b595c"
},
"DebuggerPopup": {
"borderColor": "#5b595c"
},
"DefaultTabs": {
"background": "#2D2A2E",
"borderColor": "#2D2A2E",
"hoverBackground": "#4A474B",
"hoverColor": "#3a3a3c",
"hoverMaskColor": "#5b595c",
"inactiveColoredFileBackground": "#403E41",
"inactiveUnderlineColor": "#5b595c",
"inactiveMaskColor": "#3a3a3c",
"underlineColor": "#ffd866",
"underlinedTabBackground": "#4A474B"
},
"Desktop.background": "#2D2A2E",
"DialogWrapper.southPanelBackground": "#2D2A2E",
"DialogWrapper.southPanelDivider": "#2D2A2E",
"DragAndDrop": {
"areaBackground": "#2D2A2E",
"areaBorderColor": "#2D2A2E",
"areaForeground": "#fcfcfa"
},
"Editor": {
"background": "#3a3a3c",
"foreground": "#fcfcfa",
"shortcutForeground": "#939293"
},
"EditorPane": {
"background": "#3a3a3c",
"caretForeground": "#ffd866",
"foreground": "#fcfcfa",
"inactiveBackground": "#2D2A2E",
"inactiveForeground": "#5b595c",
"selectionBackground": "#6E6C6F",
"selectionForeground": "#ffd866"
},
"EditorTabs": {
"borderColor": "#403E41",
"hoverColor": "#5b595c",
"hoverMaskColor": "#5b595c",
"inactiveMaskColor": "#2D2A2E",
"inactiveColoredFileBackground": "#2D2A2E2",
"inactiveUnderlineColor": "#5b595c",
"selectedForeground": "#fcfcfa",
"selectedBackground": "#4A474B",
"underlineColor": "#ffd866",
"underlinedTabBackground": "#4A474B"
},
"EditorGroupsTabs": {
"background": "#2D2A2E",
"borderColor": "#403E41",
"hoverBackground": "#5b595c",
"hoverColor": "#5b595c",
"inactiveUnderlineColor": "#ffd866",
"underlineColor": "#ffd866",
"underlinedTabBackground": "#4A474B",
"underlinedTabForeground": "#fcfcfa"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#3a3a3c",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#2d2a2e",
"FormattedTextField": {
"background": "#3a3a3c",
"caretForeground": "#ffd866",
"foreground": "#fcfcfa",
"inactiveBackground": "#403E41",
"inactiveForeground": "#5b595c",
"selectionForeground": "#ffd866",
"selectionBackground": "#4A474B"
},
"Group": {
"disabledSeparatorColor": "#2d2a2e",
"separatorColor": "#2d2a2e"
},
"GutterTooltip": {
"infoForeground": "#fcfcfa",
"lineSeparatorColor": "#2D2A2E"
},
"HeaderColor": {
"active": "#2D2A2E",
"inactive": "#3a3a3c"
},
"HelpTooltip": {
"background": "#2D2A2E",
"borderColor": "#2d2a2e",
"foreground": "#fcfcfa",
"infoForeground": "#939293",
"shortcutForeground": "#939293"
},
"Hyperlink.linkColor": "#ffd866",
"inactiveCaption": "#403E41",
"inactiveCaptionBorder": "#2D2A2E",
"inactiveCaptionText": "#939293",
"info": "#939293",
"infoText": "#939293",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#2d2a2e",
"InplaceRefactoringPopup": {
"borderColor": "#2D2A2E"
},
"InternalFrame": {
"activeTitleForeground": "#fcfcfa",
"background": "#2D2A2E",
"inactiveTitleForeground": "#939293"
},
"Label": {
"background": "#2D2A2E",
"disabledForeground": "#5b595c",
"disabledShadow": "#2D2A2E",
"disabledText": "#5b595c",
"foreground": "#fcfcfa",
"infoForeground": "#939293",
"selectedForeground": "#ffd866"
},
"Link": {
"activeForeground": "#ffd866",
"hoverForeground": "#ffd866",
"pressedForeground": "#ffd866",
"secondaryForeground": "#939293",
"visitedForeground": "#ffd866"
},
"link.foreground": "#ffd866",
"List": {
"background": "#403E41",
"foreground": "#fcfcfa",
"selectionBackground": "#6E6C6F50",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#ffd866",
"selectionInactiveBackground": "#403E41"
},
"material": {
"background": "#2D2A2E",
"branchColor": "#fcfcfa",
"contrast": "#3a3a3c",
"foreground": "#fcfcfa",
"mergeCommits": "#403E41",
"primaryColor": "#939293",
"selectionForeground": "#FFFFFF",
"tab.backgroundColor": "#2D2A2E",
"tab.borderColor": "#ffd866",
"tagColor": "#939293"
},
"MemoryIndicator": {
"allocatedBackground": "#403E41",
"usedColor": "#5b595c",
"usedBackground": "#5b595c"
},
"Menu": {
"acceleratorForeground": "#939293",
"acceleratorSelectionForeground": "#FFFFFF",
"background": "#2D2A2E",
"border": "4,2,4,2",
"borderColor": "#403E41",
"disabledBackground": "#403E41",
"disabledForeground": "#5b595c",
"foreground": "#fcfcfa",
"selectionBackground": "#6E6C6F",
"selectionForeground": "#FFFFFF",
"separatorColor": "#2d2a2e"
},
"MenuBar": {
"background": "#3a3a3c",
"borderColor": "#2D2A2E",
"disabledBackground": "#2D2A2E",
"disabledForeground": "#5b595c",
"foreground": "#fcfcfa",
"highlight": "#2D2A2E",
"selectionBackground": "#6E6C6F",
"selectionForeground": "#FFFFFF",
"shadow": "#3a3a3c"
},
"MenuItem": {
"acceleratorForeground": "#939293",
"acceleratorSelectionForeground": "#FFFFFF",
"border": "4,2,4,2",
"background": "#2D2A2E",
"disabledBackground": "#2D2A2E",
"disabledForeground": "#5b595c",
"foreground": "#fcfcfa",
"selectionBackground": "#6E6C6F",
"selectionForeground": "#FFFFFF"
},
"NavBar": {
"arrowColor": "#fcfcfa",
"borderColor": "#2D2A2E"
},
"NewClass": {
"Panel": {
"background": "#2D2A2E"
},
"SearchField": {
"background": "#3a3a3c"
}
},
"NewPSD.warning": "#ffd866",
"Notification": {
"background": "#363437",
"borderColor": "#363437",
"errorBackground": "#363437",
"errorBorderColor": "#363437",
"foreground": "#fcfcfa",
"MoreButton": {
"background": "#403E41",
"foreground": "#fcfcfa",
"innerBorderColor": "#403E41"
},
"ToolWindow": {
"errorBackground": "#363437",
"errorBorderColor": "#363437",
"informativeBackground": "#363437",
"informativeBorderColor": "#363437",
"warningBackground": "#363437",
"warningBorderColor": "#363437"
}
},
"OnePixelDivider.background": "#2d2a2e",
"OptionPane": {
"background": "#2D2A2E",
"foreground": "#fcfcfa",
"messageForeground": "#fcfcfa"
},
"Outline": {
"color": "#403E41",
"focusedColor": "#ffd866",
"disabledColor": "#5b595c"
},
"Panel": {
"background": "#2D2A2E",
"foreground": "#fcfcfa"
},
"ParameterInfo": {
"background": "#403E41",
"borderColor": "#4A474B",
"currentOverloadBackground": "#4A474B",
"currentParameterForeground": "#ffd866",
"disabledForeground": "#5b595c",
"foreground": "#fcfcfa",
"infoForeground": "#939293",
"lineSeparatorColor": "#4A474B"
},
"PasswordField": {
"background": "#3a3a3c",
"capsLockIconColor": "#ffd866",
"caretForeground": "#ffd866",
"foreground": "#fcfcfa",
"inactiveForeground": "#5b595c",
"selectionBackground": "#4A474B",
"selectionForeground": "#ffd866"
},
"Plugins": {
"background": "#2D2A2E",
"disabledForeground": "#5b595c",
"eapTagBackground": "#5b595c",
"lightSelectionBackground": "#6E6C6F",
"paidTagBackground": "#5b595c",
"selectionBackground": "#6E6C6F",
"tagForeground": "#ffd866",
"tagBackground": "#5b595c",
"trialTagBackground": "#5b595c",
"Button": {
"installBackground": "#403E41",
"installBorderColor": "#403E41",
"installForeground": "#fcfcfa",
"installFocusedBackground": "#5b595c",
"installFillForeground": "#5b595c",
"installFillBackground": "#403E41",
"updateBackground": "#403E41",
"updateBorderColor": "#403E41",
"updateForeground": "#fcfcfa"
},
"SearchField": {
"background": "#3a3a3c",
"borderColor": "#2d2a2e"
},
"SectionHeader": {
"background": "#403E41",
"foreground": "#fcfcfa"
},
"Tab": {
"hoverBackground": "#4A474B",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#4A474B"
}
},
"Popup": {
"Advertiser": {
"background": "#2D2A2E",
"borderColor": "#2D2A2E",
"foreground": "#ffd866"
},
"borderColor": "#3a3a3c",
"inactiveBorderColor": "#2D2A2E",
"innerBorderColor": "#403E41",
"Header": {
"activeBackground": "#2D2A2E",
"inactiveBackground": "#3a3a3c"
},
"paintBorder": true,
"separatorForeground": "#fcfcfa",
"separatorColor": "#403E41",
"Toolbar": {
"Floating.background": "#3a3a3c",
"background": "#3a3a3c",
"borderColor": "#3a3a3c"
}
},
"PopupMenu": {
"background": "#2D2A2E",
"border": "2,0,2,0",
"foreground": "#fcfcfa",
"translucentBackground": "#2D2A2E"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#2D2A2E",
"foreground": "#ffd866",
"indeterminateEndColor": "#ffd866",
"indeterminateStartColor": "#ffd866",
"progressColor": "#ffd866",
"selectionBackground": "#5b595c",
"trackColor": "#5b595c"
},
"PsiViewer": {
"referenceHighlightColor": "#ffd866"
},
"RadioButton": {
"background": "#2D2A2E",
"disabledText": "#5b595c",
"foreground": "#fcfcfa"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#939293",
"acceleratorSelectionForeground": "#939293",
"background": "#2D2A2E",
"disabledBackground": "#2D2A2E",
"disabledForeground": "#5b595c",
"foreground": "#fcfcfa",
"selectionBackground": "#6E6C6F",
"selectionForeground": "#FFFFFF"
},
"ScrollBar": {
"background": "#2D2A2E",
"hoverThumbBorderColor": "#ffd866",
"hoverThumbColor": "#ffd866",
"hoverTrackColor": "#2D2A2E30",
"Mac": {
"hoverThumbBorderColor": "#ffd866",
"hoverThumbColor": "#ffd866",
"hoverTrackColor": "#2D2A2E30",
"thumbBorderColor": "#ffd86670",
"thumbColor": "#ffd86670",
"trackColor": "#2D2A2E30",
"Transparent": {
"hoverThumbBorderColor": "#ffd866",
"hoverThumbColor": "#ffd866",
"hoverTrackColor": "#2D2A2E30",
"thumbBorderColor": "#ffd86670",
"thumbColor": "#ffd86670",
"trackColor": "#2D2A2E30"
}
},
"thumb": "#5b595c",
"thumbBorderColor": "#ffd86670",
"thumbColor": "#ffd86670",
"trackColor": "#2D2A2E30",
"Transparent": {
"hoverThumbBorderColor": "#ffd866",
"hoverThumbColor": "#ffd866",
"hoverTrackColor": "#2D2A2E30",
"thumbBorderColor": "#ffd86670",
"thumbColor": "#ffd86670",
"trackColor": "#2D2A2E30"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#3a3a3c",
"foreground": "#939293"
},
"Header": {
"background": "#2D2A2E"
},
"List": {
"separatorForeground": "#939293",
"separatorColor": "#2d2a2e"
},
"SearchField": {
"background": "#2D2A2E",
"borderColor": "#3a3a3c",
"infoForeground": "#939293"
},
"Tab": {
"active.foreground": "#ffd866",
"selectedForeground": "#ffd866",
"selectedBackground": "#5b595c"
}
},
"SearchMatch": {
"endBackground": "#ffd866",
"startBackground": "#ffd866"
},
"SearchField.errorBackground": "#363437",
"Separator": {
"background": "#403E41",
"foreground": "#403E41",
"separatorColor": "#403E41"
},
"SidePanel": {
"background": "#3a3a3c"
},
"Slider": {
"background": "#2D2A2E",
"buttonBorderColor": "#ffd866",
"buttonColor": "#ffd866",
"foreground": "#fcfcfa",
"majorTickLength": 6,
"tickColor": "#403E41",
"trackColor": "#4A474B",
"trackWidth": 7,
"thumb": "#ffd866"
},
"SpeedSearch": {
"background": "#5b595c",
"borderColor": "#2d2a2e",
"foreground": "#fcfcfa",
"errorForeground": "#fcfcfa"
},
"Spinner": {
"background": "#2D2A2E",
"border": "3,3,3,3",
"foreground": "#fcfcfa",
"selectionForeground": "#ffd866"
},
"SplitPane": {
"background": "#2D2A2E",
"highlight": "#3a3a3c"
},
"SplitPaneDivider.draggingColor": "#403E41",
"StatusBar": {
"borderColor": "#2D2A2E"
},
"TabbedPane": {
"background": "#2D2A2E",
"contentAreaColor": "#5b595c",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#2d2a2e",
"disabledForeground": "#5b595c",
"disabledUnderlineColor": "#5b595c",
"focus": "#4A474B",
"focusColor": "#4A474B",
"fontSizeOffset": 0,
"foreground": "#fcfcfa",
"highlight": "#2d2a2e",
"hoverColor": "#5b595c",
"labelShift": 0,
"selectedForeground": "#ffd866",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#ffd866"
},
"TabbedPane.mt.tab.background": "#3a3a3c",
"Table": {
"background": "#2D2A2E",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#ffd866",
"dropLineShortColor": "#ffd866",
"focusCellBackground": "#4A474B",
"focusCellForeground": "#ffd866",
"foreground": "#fcfcfa",
"gridColor": "#2D2A2E",
"highlightOuter": "#4A474B",
"lightSelectionForeground": "#ffd866",
"lightSelectionInactiveForeground": "#939293",
"lightSelectionInactiveBackground": "#403E41",
"selectionBackground": "#4A474B",
"selectionForeground": "#ffd866",
"selectionInactiveBackground": "#4A474B",
"selectionInactiveForeground": "#FFFFFF",
"sortIconColor": "#fcfcfa",
"stripeColor": "#3a3a3c"
},
"TableHeader": {
"background": "#2D2A2E",
"borderColor": "#2D2A2E",
"bottomSeparatorColor": "#403E41",
"cellBorder": "4,0,4,0",
"disabledForeground": "#5b595c",
"foreground": "#fcfcfa",
"focusCellBackground": "#4A474B",
"focusCellForeground": "#ffd866",
"height": 25,
"separatorColor": "#403E41"
},
"text": "#939293",
"textInactiveText": "#939293",
"textText": "#939293",
"TextArea": {
"background": "#3a3a3c",
"caretForeground": "#ffd866",
"foreground": "#fcfcfa",
"inactiveForeground": "#5b595c",
"selectionBackground": "#4A474B",
"selectionForeground": "#ffd866"
},
"TextField": {
"background": "#3a3a3c",
"caretForeground": "#ffd866",
"foreground": "#fcfcfa",
"inactiveForeground": "#5b595c",
"selectionBackground": "#4A474B",
"selectionForeground": "#ffd866"
},
"TextPane": {
"background": "#3a3a3c",
"caretForeground": "#ffd866",
"foreground": "#fcfcfa",
"inactiveForeground": "#5b595c",
"selectionBackground": "#4A474B",
"selectionForeground": "#ffd866"
},
"TitlePane": {
"background": "#3a3a3c",
"Button.hoverBackground": "#5b595c",
"inactiveBackground": "#2D2A2E",
"infoForeground": "#939293",
"inactiveInfoForeground": "#939293"
},
"TitledBorder.titleColor": "#fcfcfa",
"ToggleButton": {
"borderColor": "#403E41",
"buttonColor": "#fcfcfa",
"disabledText": "#5b595c",
"foreground": "#fcfcfa",
"offForeground": "#2D2A2E",
"offBackground": "#2D2A2E",
"onBackground": "#ffd866",
"onForeground": "#ffd866"
},
"ToolBar": {
"background": "#3a3a3c",
"borderHandleColor": "#939293",
"floatingForeground": "#939293",
"foreground": "#fcfcfa"
},
"ToolTip": {
"Actions.background": "#2D2A2E",
"Actions.infoForeground": "#939293",
"background": "#2D2A2E",
"borderColor": "#5b595c",
"foreground": "#fcfcfa",
"infoForeground": "#939293",
"separatorColor": "#2d2a2e",
"shortcutForeground": "#939293"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#4A474B",
"selectedForeground": "#ffd866",
"selectedBackground": "#3a3a3c"
},
"Header": {
"background": "#2D2A2E",
"borderColor": "#403E41",
"inactiveBackground": "#2D2A2E"
},
"HeaderCloseButton": {
"background": "#2D2A2E"
},
"HeaderTab": {
"hoverBackground": "#5b595c",
"hoverInactiveBackground": "#403E41",
"inactiveUnderlineColor": "#ffd866",
"selectedBackground": "#3a3a3c",
"selectedInactiveBackground": "#3a3a3c",
"underlineColor": "#ffd866",
"underlinedTabBackground": "#5b595c",
"underlinedTabInactiveBackground": "#403E41"
}
},
"Tree": {
"background": "#3a3a3c",
"foreground": "#939293",
"hash": "#2d2a2e",
"modifiedItemForeground": "#ffd866",
"rowHeight": 28,
"selectionBackground": "#403E41",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#403E41",
"textBackground": "#3a3a3c"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#2d2a2e",
"ColorPicker.background": "#2D2A2E",
"ColorPicker.foreground": "#fcfcfa",
"Component.borderColor": "#2d2a2e",
"Component.background": "#2D2A2E",
"Component.foreground": "#fcfcfa",
"Connector.borderColor": "#2d2a2e",
"Connector.hoverBorderColor": "#5b595c",
"Canvas.background": "#3a3a3c",
"highStroke.foreground": "#fcfcfa",
"Label.foreground": "#939293",
"List.selectionBackground": "#403E41",
"Panel.borderColor": "#2d2a2e",
"Panel.background": "#2D2A2E",
"percent.foreground": "#fcfcfa",
"Placeholder.background": "#2D2A2E",
"Placeholder.borderColor": "#2d2a2e",
"Placeholder.foreground": "#fcfcfa",
"Placeholder.selectedForeground": "#FFFFFF",
"Preview.background": "#2D2A2E",
"stroke.acceleratorForeground": "#939293"
},
"ValidationTooltip": {
"errorBackground": "#363437",
"errorBorderColor": "#363437",
"warningBackground": "#363437",
"warningBorderColor": "#363437"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#2D2A2E"
},
"GitCommits": {
"graphColor": "#5b595c"
},
"GitLog": {
"localBranchIconColor": "#ffd866",
"otherIconColor": "#939293",
"remoteBranchIconColor": "#fcfcfa",
"tagIconColor": "#939293"
},
"HgLog": {
"branchIconColor": "#ffd866",
"bookmarkIconColor": "#ffd866",
"closedBranchIconColor": "#5b595c",
"localTagIconColor": "#939293",
"mqTagIconColor": "#939293",
"tagIconColor": "#939293",
"tipIconColor": "#939293"
},
"Log": {
"Commit.unmatchedForeground": "#939293",
"Commit.currentBranchBackground": "#403E41"
},
"RefLabel": {
"foreground": "#ffd866",
"backgroundBase": "#5b595c"
}
},
"Viewport": {
"background": "#3a3a3c",
"foreground": "#fcfcfa"
},
"WelcomeScreen": {
"background": "#2D2A2E",
"borderColor": "#2D2A2E",
"captionBackground": "#3a3a3c",
"captionForeground": "#fcfcfa",
"footerBackground": "#3a3a3c",
"footerForeground": "#fcfcfa",
"headerBackground": "#2D2A2E",
"headerForeground": "#fcfcfa",
"separatorColor": "#2d2a2e",
"Projects": {
"background": "#403E41",
"selectionBackground": "#6E6C6F",
"selectionInactiveBackground": "#403E41"
}
},
"window": "#3a3a3c",
"windowBorder": "#2d2a2e",
"windowText": "#939293",
"Window.border": "#2d2a2e"
},
"icons": {
"ColorPalette": {
"#43494A": "#3a3a3c",
"#6B6B6B": "#939293",
"#A7A7A7": "#2D2A2E",
"#3D6185": "#ffd866",
"#466D94": "#ffd866",
"#3C3F41": "#2D2A2E",
"#545556": "#5b595c",
"#606060": "#5b595c",
"#9AA7B0": "#fcfcfa",
"#675133": "#ffd866",
"Actions.Blue": "#A9DC76",
"Actions.Green": "#FFD866",
"Actions.Grey": "#939293",
"Actions.GreyInline": "#727072",
"Actions.GreyInline.Dark": "#fcfcfa",
"Actions.Red": "#FF6188",
"Actions.Yellow": "#78DCE8",
"Checkbox.Background.Default": "#3a3a3c",
"Checkbox.Background.Default.Dark": "#3a3a3c",
"Checkbox.Background.Disabled": "#3a3a3c",
"Checkbox.Background.Disabled.Dark": "#3a3a3c",
"Checkbox.Border.Default": "#2d2a2e",
"Checkbox.Border.Default.Dark": "#2d2a2e",
"Checkbox.Border.Disabled": "#5b595c",
"Checkbox.Border.Disabled.Dark": "#5b595c",
"Checkbox.Focus.Thin.Default": "#ffd866",
"Checkbox.Focus.Thin.Default.Dark": "#ffd866",
"Checkbox.Focus.Wide": "#ffd866",
"Checkbox.Focus.Wide.Dark": "#ffd866",
"Checkbox.Foreground.Disabled": "#5b595c",
"Checkbox.Foreground.Disabled.Dark": "#5b595c",
"Checkbox.Background.Selected": "#ffd866",
"Checkbox.Background.Selected.Dark": "#2D2A2E",
"Checkbox.Border.Selected": "#ffd866",
"Checkbox.Border.Selected.Dark": "#ffd866",
"Checkbox.Foreground.Selected": "#ffd866",
"Checkbox.Foreground.Selected.Dark": "#ffd866",
"Checkbox.Focus.Thin.Selected": "#fcfcfa",
"Checkbox.Focus.Thin.Selected.Dark": "#fcfcfa",
"Objects.Grey": "#727072",
"Objects.Blue": "#A9DC76",
"Objects.RedStatus": "#FF6188",
"Objects.Red": "#FF6188",
"Objects.Pink": "#FF6188",
"Objects.Yellow": "#78DCE8",
"Objects.Green": "#FFD866",
"Objects.Purple": "#FF6188",
"Objects.BlackText": "#fcfcfa",
"Objects.YellowDark": "#AB9DF2",
"Objects.GreenAndroid": "#FFD866"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "Monokai Pro",
"dark": true,
"author": "Mallowigi",
"editorScheme": "/colors/Monokai Pro.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#939293",
"background": "#2D2A2E",
"borderColor": "#2d2a2e",
"disabledBackground": "#3a3a3c",
"disabledForeground": "#5b595c",
"disabledText": "#5b595c",
"focusColor": "#5b595c",
"focusedBorderColor": "#ffd866",
"foreground": "#fcfcfa",
"inactiveBackground": "#3a3a3c",
"inactiveForeground": "#939293",
"infoForeground": "#939293",
"selectionBackground": "#6E6C6F",
"selectionBackgroundInactive": "#403E41",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#403E41",
"separatorColor": "#2d2a2e"
},
"activeCaption": "#2D2A2E",
"ActionButton": {
"hoverBackground": "#ffd86650",
"hoverBorderColor": "#ffd86650",
"hoverSeparatorColor": "#403E41",
"focusedBorderColor": "#ffd86650",
"pressedBackground": "#ffd86650",
"pressedBorderColor": "#ffd86650"
},
"Autocomplete": {
"selectionBackground": "#6E6C6F"
},
"Borders.ContrastBorderColor": "#2D2A2E",
"Borders.color": "#2d2a2e",
"Button": {
"arc": 0,
"background": "#2D2A2E",
"default": {
"endBackground": "#4A474B",
"endBorderColor": "#4A474B",
"foreground": "#ffd866",
"focusColor": "#ffd866",
"focusedBorderColor": "#ffd866",
"shadowColor": "#4A474B",
"startBackground": "#4A474B",
"startBorderColor": "#4A474B"
},
"disabledBorderColor": "#403E41",
"disabledText": "#5b595c",
"endBackground": "#403E41",
"endBorderColor": "#403E41",
"focus": "#5b595c",
"focusedBorderColor": "#ffd866",
"foreground": "#939293",
"highlight": "#FFFFFF",
"mt.background": "#403E41",
"mt.foreground": "#939293",
"mt.selectedForeground": "#FFFFFF",
"mt.selection.color1": "#4A474B",
"mt.selection.color2": "#4A474B",
"startBackground": "#403E41",
"startBorderColor": "#403E41",
"shadowColor": "#403E41",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#2d2a2e",
"Tooltip.background": "#363437"
},
"Content.background": "#3a3a3c",
"CheckBox": {
"background": "#2D2A2E",
"disabledText": "#5b595c",
"foreground": "#fcfcfa",
"select": "#ffd866"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#939293",
"acceleratorSelectionForeground": "#939293",
"background": "#2D2A2E",
"disabledBackground": "#2D2A2E",
"disabledForeground": "#5b595c",
"foreground": "#fcfcfa",
"selectionBackground": "#6E6C6F",
"selectionForeground": "#ffd866"
},
"ColorChooser": {
"background": "#2D2A2E",
"foreground": "#fcfcfa",
"swatchesDefaultRecentColor": "#fcfcfa"
},
"ComboBoxButton.background": "#403E41",
"ComboBox": {
"ArrowButton": {
"background": "#403E41",
"disabledIconColor": "#5b595c",
"iconColor": "#fcfcfa",
"nonEditableBackground": "#2D2A2E"
},
"background": "#2D2A2E",
"buttonBackground": "#403E41",
"disabledForeground": "#5b595c",
"foreground": "#fcfcfa",
"modifiedItemForeground": "#ffd866",
"nonEditableBackground": "#403E41",
"padding": "5,5,5,5",
"selectionBackground": "#4A474B",
"selectionForeground": "#ffd866"
},
"ComboPopup.border": "#2d2a2e",
"CompletionPopup": {
"background": "#403E41",
"foreground": "#fcfcfa",
"infoForeground": "#939293",
"matchForeground": "#ffd866",
"matchSelectionForeground": "#ffd866",
"nonFocusedState": "false",
"selectedGrayedForeground": "#FFFFFF",
"selectionGrayForeground": "#FFFFFF",
"selectionInactiveInfoForeground": "#939293",
"selectionInactiveBackground": "#6E6C6F50",
"selectionBackground": "#6E6C6F80",
"selectionForeground": "#FFFFFF",
"selectionInfoForeground": "#FFFFFF"
},
"Component": {
"arc": 4,
"borderColor": "#5b595c",
"disabledBorderColor": "#403E41",
"focusColor": "#ffd866",
"focusedBorderColor": "#ffd866",
"hoverIconColor": "#ffd866",
"infoForeground": "#939293",
"iconColor": "#fcfcfa"
},
"control": "#2D2A2E",
"controlText": "#939293",
"Counter": {
"background": "#ffd866",
"foreground": "#FFFFFF"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#939293",
"changedValueForeground": "#ffd866",
"errorMessageForeground": "#FF6188",
"evaluatingExpressionForeground": "#939293",
"exceptionForeground": "#78DCE8",
"modifyingValueForeground": "#ffd866",
"valueForeground": "#ffd866"
}
},
"DebuggerTabs": {
"selectedBackground": "#5b595c",
"underlinedTabBackground": "#5b595c"
},
"DebuggerPopup": {
"borderColor": "#5b595c"
},
"DefaultTabs": {
"background": "#2D2A2E",
"borderColor": "#2D2A2E",
"hoverBackground": "#4A474B",
"hoverColor": "#2D2A2E",
"hoverMaskColor": "#5b595c",
"inactiveColoredFileBackground": "#403E41",
"inactiveUnderlineColor": "#5b595c",
"inactiveMaskColor": "#2D2A2E",
"underlineColor": "#ffd866",
"underlinedTabBackground": "#4A474B"
},
"Desktop.background": "#2D2A2E",
"DialogWrapper.southPanelBackground": "#2D2A2E",
"DialogWrapper.southPanelDivider": "#2D2A2E",
"DragAndDrop": {
"areaBackground": "#2D2A2E",
"areaBorderColor": "#2D2A2E",
"areaForeground": "#fcfcfa"
},
"Editor": {
"background": "#2D2A2E",
"foreground": "#fcfcfa",
"shortcutForeground": "#939293"
},
"EditorPane": {
"background": "#2D2A2E",
"caretForeground": "#ffd866",
"foreground": "#fcfcfa",
"inactiveBackground": "#2D2A2E",
"inactiveForeground": "#5b595c",
"selectionBackground": "#6E6C6F",
"selectionForeground": "#ffd866"
},
"EditorTabs": {
"borderColor": "#403E41",
"hoverColor": "#5b595c",
"hoverMaskColor": "#5b595c",
"inactiveMaskColor": "#2D2A2E",
"inactiveColoredFileBackground": "#2D2A2E2",
"inactiveUnderlineColor": "#5b595c",
"selectedForeground": "#fcfcfa",
"selectedBackground": "#4A474B",
"underlineColor": "#ffd866",
"underlinedTabBackground": "#4A474B"
},
"EditorGroupsTabs": {
"background": "#2D2A2E",
"borderColor": "#403E41",
"hoverBackground": "#5b595c",
"hoverColor": "#5b595c",
"inactiveUnderlineColor": "#ffd866",
"underlineColor": "#ffd866",
"underlinedTabBackground": "#4A474B",
"underlinedTabForeground": "#fcfcfa"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#3a3a3c",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#2d2a2e",
"FormattedTextField": {
"background": "#2D2A2E",
"caretForeground": "#ffd866",
"foreground": "#fcfcfa",
"inactiveBackground": "#403E41",
"inactiveForeground": "#5b595c",
"selectionForeground": "#ffd866",
"selectionBackground": "#4A474B"
},
"Group": {
"disabledSeparatorColor": "#2d2a2e",
"separatorColor": "#2d2a2e"
},
"GutterTooltip": {
"infoForeground": "#fcfcfa",
"lineSeparatorColor": "#2D2A2E"
},
"HeaderColor": {
"active": "#2D2A2E",
"inactive": "#3a3a3c"
},
"HelpTooltip": {
"background": "#2D2A2E",
"borderColor": "#2d2a2e",
"foreground": "#fcfcfa",
"infoForeground": "#939293",
"shortcutForeground": "#939293"
},
"Hyperlink.linkColor": "#ffd866",
"inactiveCaption": "#403E41",
"inactiveCaptionBorder": "#2D2A2E",
"inactiveCaptionText": "#939293",
"info": "#939293",
"infoText": "#939293",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#2d2a2e",
"InplaceRefactoringPopup": {
"borderColor": "#2D2A2E"
},
"InternalFrame": {
"activeTitleForeground": "#fcfcfa",
"background": "#2D2A2E",
"inactiveTitleForeground": "#939293"
},
"Label": {
"background": "#2D2A2E",
"disabledForeground": "#5b595c",
"disabledShadow": "#2D2A2E",
"disabledText": "#5b595c",
"foreground": "#fcfcfa",
"infoForeground": "#939293",
"selectedForeground": "#ffd866"
},
"Link": {
"activeForeground": "#ffd866",
"hoverForeground": "#ffd866",
"pressedForeground": "#ffd866",
"secondaryForeground": "#939293",
"visitedForeground": "#ffd866"
},
"link.foreground": "#ffd866",
"List": {
"background": "#403E41",
"foreground": "#fcfcfa",
"selectionBackground": "#6E6C6F50",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#ffd866",
"selectionInactiveBackground": "#403E41"
},
"material": {
"background": "#2D2A2E",
"branchColor": "#fcfcfa",
"contrast": "#3a3a3c",
"foreground": "#fcfcfa",
"mergeCommits": "#403E41",
"primaryColor": "#939293",
"selectionForeground": "#FFFFFF",
"tab.backgroundColor": "#2D2A2E",
"tab.borderColor": "#ffd866",
"tagColor": "#939293"
},
"MemoryIndicator": {
"allocatedBackground": "#403E41",
"usedColor": "#5b595c",
"usedBackground": "#5b595c"
},
"Menu": {
"acceleratorForeground": "#939293",
"acceleratorSelectionForeground": "#FFFFFF",
"background": "#2D2A2E",
"border": "4,2,4,2",
"borderColor": "#403E41",
"disabledBackground": "#403E41",
"disabledForeground": "#5b595c",
"foreground": "#fcfcfa",
"selectionBackground": "#6E6C6F",
"selectionForeground": "#FFFFFF",
"separatorColor": "#2d2a2e"
},
"MenuBar": {
"background": "#2D2A2E",
"borderColor": "#2D2A2E",
"disabledBackground": "#2D2A2E",
"disabledForeground": "#5b595c",
"foreground": "#fcfcfa",
"highlight": "#2D2A2E",
"selectionBackground": "#6E6C6F",
"selectionForeground": "#FFFFFF",
"shadow": "#2D2A2E"
},
"MenuItem": {
"acceleratorForeground": "#939293",
"acceleratorSelectionForeground": "#FFFFFF",
"border": "4,2,4,2",
"background": "#2D2A2E",
"disabledBackground": "#2D2A2E",
"disabledForeground": "#5b595c",
"foreground": "#fcfcfa",
"selectionBackground": "#6E6C6F",
"selectionForeground": "#FFFFFF"
},
"NavBar": {
"arrowColor": "#fcfcfa",
"borderColor": "#2D2A2E"
},
"NewClass": {
"Panel": {
"background": "#2D2A2E"
},
"SearchField": {
"background": "#2D2A2E"
}
},
"NewPSD.warning": "#ffd866",
"Notification": {
"background": "#363437",
"borderColor": "#363437",
"errorBackground": "#363437",
"errorBorderColor": "#363437",
"foreground": "#fcfcfa",
"MoreButton": {
"background": "#403E41",
"foreground": "#fcfcfa",
"innerBorderColor": "#403E41"
},
"ToolWindow": {
"errorBackground": "#363437",
"errorBorderColor": "#363437",
"informativeBackground": "#363437",
"informativeBorderColor": "#363437",
"warningBackground": "#363437",
"warningBorderColor": "#363437"
}
},
"OnePixelDivider.background": "#2d2a2e",
"OptionPane": {
"background": "#2D2A2E",
"foreground": "#fcfcfa",
"messageForeground": "#fcfcfa"
},
"Outline": {
"color": "#403E41",
"focusedColor": "#ffd866",
"disabledColor": "#5b595c"
},
"Panel": {
"background": "#2D2A2E",
"foreground": "#fcfcfa"
},
"ParameterInfo": {
"background": "#403E41",
"borderColor": "#4A474B",
"currentOverloadBackground": "#4A474B",
"currentParameterForeground": "#ffd866",
"disabledForeground": "#5b595c",
"foreground": "#fcfcfa",
"infoForeground": "#939293",
"lineSeparatorColor": "#4A474B"
},
"PasswordField": {
"background": "#2D2A2E",
"capsLockIconColor": "#ffd866",
"caretForeground": "#ffd866",
"foreground": "#fcfcfa",
"inactiveForeground": "#5b595c",
"selectionBackground": "#4A474B",
"selectionForeground": "#ffd866"
},
"Plugins": {
"background": "#2D2A2E",
"disabledForeground": "#5b595c",
"eapTagBackground": "#5b595c",
"lightSelectionBackground": "#6E6C6F",
"paidTagBackground": "#5b595c",
"selectionBackground": "#6E6C6F",
"tagForeground": "#ffd866",
"tagBackground": "#5b595c",
"trialTagBackground": "#5b595c",
"Button": {
"installBackground": "#403E41",
"installBorderColor": "#403E41",
"installForeground": "#fcfcfa",
"installFocusedBackground": "#5b595c",
"installFillForeground": "#5b595c",
"installFillBackground": "#403E41",
"updateBackground": "#403E41",
"updateBorderColor": "#403E41",
"updateForeground": "#fcfcfa"
},
"SearchField": {
"background": "#2D2A2E",
"borderColor": "#2d2a2e"
},
"SectionHeader": {
"background": "#403E41",
"foreground": "#fcfcfa"
},
"Tab": {
"hoverBackground": "#4A474B",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#4A474B"
}
},
"Popup": {
"Advertiser": {
"background": "#2D2A2E",
"borderColor": "#2D2A2E",
"foreground": "#ffd866"
},
"borderColor": "#3a3a3c",
"inactiveBorderColor": "#2D2A2E",
"innerBorderColor": "#403E41",
"Header": {
"activeBackground": "#2D2A2E",
"inactiveBackground": "#3a3a3c"
},
"paintBorder": true,
"separatorForeground": "#fcfcfa",
"separatorColor": "#403E41",
"Toolbar": {
"Floating.background": "#3a3a3c",
"background": "#3a3a3c",
"borderColor": "#3a3a3c"
}
},
"PopupMenu": {
"background": "#2D2A2E",
"border": "2,0,2,0",
"foreground": "#fcfcfa",
"translucentBackground": "#2D2A2E"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#2D2A2E",
"foreground": "#ffd866",
"indeterminateEndColor": "#ffd866",
"indeterminateStartColor": "#ffd866",
"progressColor": "#ffd866",
"selectionBackground": "#5b595c",
"trackColor": "#5b595c"
},
"PsiViewer": {
"referenceHighlightColor": "#ffd866"
},
"RadioButton": {
"background": "#2D2A2E",
"disabledText": "#5b595c",
"foreground": "#fcfcfa"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#939293",
"acceleratorSelectionForeground": "#939293",
"background": "#2D2A2E",
"disabledBackground": "#2D2A2E",
"disabledForeground": "#5b595c",
"foreground": "#fcfcfa",
"selectionBackground": "#6E6C6F",
"selectionForeground": "#FFFFFF"
},
"ScrollBar": {
"background": "#2D2A2E",
"hoverThumbBorderColor": "#ffd866",
"hoverThumbColor": "#ffd866",
"hoverTrackColor": "#2D2A2E30",
"Mac": {
"hoverThumbBorderColor": "#ffd866",
"hoverThumbColor": "#ffd866",
"hoverTrackColor": "#2D2A2E30",
"thumbBorderColor": "#ffd86670",
"thumbColor": "#ffd86670",
"trackColor": "#2D2A2E30",
"Transparent": {
"hoverThumbBorderColor": "#ffd866",
"hoverThumbColor": "#ffd866",
"hoverTrackColor": "#2D2A2E30",
"thumbBorderColor": "#ffd86670",
"thumbColor": "#ffd86670",
"trackColor": "#2D2A2E30"
}
},
"thumb": "#5b595c",
"thumbBorderColor": "#ffd86670",
"thumbColor": "#ffd86670",
"trackColor": "#2D2A2E30",
"Transparent": {
"hoverThumbBorderColor": "#ffd866",
"hoverThumbColor": "#ffd866",
"hoverTrackColor": "#2D2A2E30",
"thumbBorderColor": "#ffd86670",
"thumbColor": "#ffd86670",
"trackColor": "#2D2A2E30"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#3a3a3c",
"foreground": "#939293"
},
"Header": {
"background": "#2D2A2E"
},
"List": {
"separatorForeground": "#939293",
"separatorColor": "#2d2a2e"
},
"SearchField": {
"background": "#2D2A2E",
"borderColor": "#3a3a3c",
"infoForeground": "#939293"
},
"Tab": {
"active.foreground": "#ffd866",
"selectedForeground": "#ffd866",
"selectedBackground": "#5b595c"
}
},
"SearchMatch": {
"endBackground": "#ffd866",
"startBackground": "#ffd866"
},
"SearchField.errorBackground": "#363437",
"Separator": {
"background": "#403E41",
"foreground": "#403E41",
"separatorColor": "#403E41"
},
"SidePanel": {
"background": "#2D2A2E"
},
"Slider": {
"background": "#2D2A2E",
"buttonBorderColor": "#ffd866",
"buttonColor": "#ffd866",
"foreground": "#fcfcfa",
"majorTickLength": 6,
"tickColor": "#403E41",
"trackColor": "#4A474B",
"trackWidth": 7,
"thumb": "#ffd866"
},
"SpeedSearch": {
"background": "#5b595c",
"borderColor": "#2d2a2e",
"foreground": "#fcfcfa",
"errorForeground": "#fcfcfa"
},
"Spinner": {
"background": "#2D2A2E",
"border": "3,3,3,3",
"foreground": "#fcfcfa",
"selectionForeground": "#ffd866"
},
"SplitPane": {
"background": "#2D2A2E",
"highlight": "#2D2A2E"
},
"SplitPaneDivider.draggingColor": "#403E41",
"StatusBar": {
"borderColor": "#2D2A2E"
},
"TabbedPane": {
"background": "#2D2A2E",
"contentAreaColor": "#5b595c",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#2d2a2e",
"disabledForeground": "#5b595c",
"disabledUnderlineColor": "#5b595c",
"focus": "#4A474B",
"focusColor": "#4A474B",
"fontSizeOffset": 0,
"foreground": "#fcfcfa",
"highlight": "#2d2a2e",
"hoverColor": "#5b595c",
"labelShift": 0,
"selectedForeground": "#ffd866",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#ffd866"
},
"TabbedPane.mt.tab.background": "#2D2A2E",
"Table": {
"background": "#2D2A2E",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#ffd866",
"dropLineShortColor": "#ffd866",
"focusCellBackground": "#4A474B",
"focusCellForeground": "#ffd866",
"foreground": "#fcfcfa",
"gridColor": "#2D2A2E",
"highlightOuter": "#4A474B",
"lightSelectionForeground": "#ffd866",
"lightSelectionInactiveForeground": "#939293",
"lightSelectionInactiveBackground": "#403E41",
"selectionBackground": "#4A474B",
"selectionForeground": "#ffd866",
"selectionInactiveBackground": "#4A474B",
"selectionInactiveForeground": "#FFFFFF",
"sortIconColor": "#fcfcfa",
"stripeColor": "#3a3a3c"
},
"TableHeader": {
"background": "#2D2A2E",
"borderColor": "#2D2A2E",
"bottomSeparatorColor": "#403E41",
"cellBorder": "4,0,4,0",
"disabledForeground": "#5b595c",
"foreground": "#fcfcfa",
"focusCellBackground": "#4A474B",
"focusCellForeground": "#ffd866",
"height": 25,
"separatorColor": "#403E41"
},
"text": "#939293",
"textInactiveText": "#939293",
"textText": "#939293",
"TextArea": {
"background": "#2D2A2E",
"caretForeground": "#ffd866",
"foreground": "#fcfcfa",
"inactiveForeground": "#5b595c",
"selectionBackground": "#4A474B",
"selectionForeground": "#ffd866"
},
"TextField": {
"background": "#2D2A2E",
"caretForeground": "#ffd866",
"foreground": "#fcfcfa",
"inactiveForeground": "#5b595c",
"selectionBackground": "#4A474B",
"selectionForeground": "#ffd866"
},
"TextPane": {
"background": "#2D2A2E",
"caretForeground": "#ffd866",
"foreground": "#fcfcfa",
"inactiveForeground": "#5b595c",
"selectionBackground": "#4A474B",
"selectionForeground": "#ffd866"
},
"TitlePane": {
"background": "#3a3a3c",
"Button.hoverBackground": "#5b595c",
"inactiveBackground": "#2D2A2E",
"infoForeground": "#939293",
"inactiveInfoForeground": "#939293"
},
"TitledBorder.titleColor": "#fcfcfa",
"ToggleButton": {
"borderColor": "#403E41",
"buttonColor": "#fcfcfa",
"disabledText": "#5b595c",
"foreground": "#fcfcfa",
"offForeground": "#2D2A2E",
"offBackground": "#2D2A2E",
"onBackground": "#ffd866",
"onForeground": "#ffd866"
},
"ToolBar": {
"background": "#2D2A2E",
"borderHandleColor": "#939293",
"floatingForeground": "#939293",
"foreground": "#fcfcfa"
},
"ToolTip": {
"Actions.background": "#2D2A2E",
"Actions.infoForeground": "#939293",
"background": "#2D2A2E",
"borderColor": "#5b595c",
"foreground": "#fcfcfa",
"infoForeground": "#939293",
"separatorColor": "#2d2a2e",
"shortcutForeground": "#939293"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#4A474B",
"selectedForeground": "#ffd866",
"selectedBackground": "#3a3a3c"
},
"Header": {
"background": "#2D2A2E",
"borderColor": "#403E41",
"inactiveBackground": "#2D2A2E"
},
"HeaderCloseButton": {
"background": "#2D2A2E"
},
"HeaderTab": {
"hoverBackground": "#5b595c",
"hoverInactiveBackground": "#403E41",
"inactiveUnderlineColor": "#ffd866",
"selectedBackground": "#3a3a3c",
"selectedInactiveBackground": "#3a3a3c",
"underlineColor": "#ffd866",
"underlinedTabBackground": "#5b595c",
"underlinedTabInactiveBackground": "#403E41"
}
},
"Tree": {
"background": "#2D2A2E",
"foreground": "#939293",
"hash": "#2d2a2e",
"modifiedItemForeground": "#ffd866",
"rowHeight": 28,
"selectionBackground": "#403E41",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#403E41",
"textBackground": "#2D2A2E"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#2d2a2e",
"ColorPicker.background": "#2D2A2E",
"ColorPicker.foreground": "#fcfcfa",
"Component.borderColor": "#2d2a2e",
"Component.background": "#2D2A2E",
"Component.foreground": "#fcfcfa",
"Connector.borderColor": "#2d2a2e",
"Connector.hoverBorderColor": "#5b595c",
"Canvas.background": "#3a3a3c",
"highStroke.foreground": "#fcfcfa",
"Label.foreground": "#939293",
"List.selectionBackground": "#403E41",
"Panel.borderColor": "#2d2a2e",
"Panel.background": "#2D2A2E",
"percent.foreground": "#fcfcfa",
"Placeholder.background": "#2D2A2E",
"Placeholder.borderColor": "#2d2a2e",
"Placeholder.foreground": "#fcfcfa",
"Placeholder.selectedForeground": "#FFFFFF",
"Preview.background": "#2D2A2E",
"stroke.acceleratorForeground": "#939293"
},
"ValidationTooltip": {
"errorBackground": "#363437",
"errorBorderColor": "#363437",
"warningBackground": "#363437",
"warningBorderColor": "#363437"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#2D2A2E"
},
"GitCommits": {
"graphColor": "#5b595c"
},
"GitLog": {
"localBranchIconColor": "#ffd866",
"otherIconColor": "#939293",
"remoteBranchIconColor": "#fcfcfa",
"tagIconColor": "#939293"
},
"HgLog": {
"branchIconColor": "#ffd866",
"bookmarkIconColor": "#ffd866",
"closedBranchIconColor": "#5b595c",
"localTagIconColor": "#939293",
"mqTagIconColor": "#939293",
"tagIconColor": "#939293",
"tipIconColor": "#939293"
},
"Log": {
"Commit.unmatchedForeground": "#939293",
"Commit.currentBranchBackground": "#403E41"
},
"RefLabel": {
"foreground": "#ffd866",
"backgroundBase": "#5b595c"
}
},
"Viewport": {
"background": "#2D2A2E",
"foreground": "#fcfcfa"
},
"WelcomeScreen": {
"background": "#2D2A2E",
"borderColor": "#2D2A2E",
"captionBackground": "#3a3a3c",
"captionForeground": "#fcfcfa",
"footerBackground": "#3a3a3c",
"footerForeground": "#fcfcfa",
"headerBackground": "#2D2A2E",
"headerForeground": "#fcfcfa",
"separatorColor": "#2d2a2e",
"Projects": {
"background": "#403E41",
"selectionBackground": "#6E6C6F",
"selectionInactiveBackground": "#403E41"
}
},
"window": "#2D2A2E",
"windowBorder": "#2d2a2e",
"windowText": "#939293",
"Window.border": "#2d2a2e"
},
"icons": {
"ColorPalette": {
"#43494A": "#3a3a3c",
"#6B6B6B": "#939293",
"#A7A7A7": "#2D2A2E",
"#3D6185": "#ffd866",
"#466D94": "#ffd866",
"#3C3F41": "#2D2A2E",
"#545556": "#5b595c",
"#606060": "#5b595c",
"#9AA7B0": "#fcfcfa",
"#675133": "#ffd866",
"Actions.Blue": "#A9DC76",
"Actions.Green": "#FFD866",
"Actions.Grey": "#939293",
"Actions.GreyInline": "#727072",
"Actions.GreyInline.Dark": "#fcfcfa",
"Actions.Red": "#FF6188",
"Actions.Yellow": "#78DCE8",
"Checkbox.Background.Default": "#3a3a3c",
"Checkbox.Background.Default.Dark": "#3a3a3c",
"Checkbox.Background.Disabled": "#3a3a3c",
"Checkbox.Background.Disabled.Dark": "#3a3a3c",
"Checkbox.Border.Default": "#2d2a2e",
"Checkbox.Border.Default.Dark": "#2d2a2e",
"Checkbox.Border.Disabled": "#5b595c",
"Checkbox.Border.Disabled.Dark": "#5b595c",
"Checkbox.Focus.Thin.Default": "#ffd866",
"Checkbox.Focus.Thin.Default.Dark": "#ffd866",
"Checkbox.Focus.Wide": "#ffd866",
"Checkbox.Focus.Wide.Dark": "#ffd866",
"Checkbox.Foreground.Disabled": "#5b595c",
"Checkbox.Foreground.Disabled.Dark": "#5b595c",
"Checkbox.Background.Selected": "#ffd866",
"Checkbox.Background.Selected.Dark": "#2D2A2E",
"Checkbox.Border.Selected": "#ffd866",
"Checkbox.Border.Selected.Dark": "#ffd866",
"Checkbox.Foreground.Selected": "#ffd866",
"Checkbox.Foreground.Selected.Dark": "#ffd866",
"Checkbox.Focus.Thin.Selected": "#fcfcfa",
"Checkbox.Focus.Thin.Selected.Dark": "#fcfcfa",
"Objects.Grey": "#727072",
"Objects.Blue": "#A9DC76",
"Objects.RedStatus": "#FF6188",
"Objects.Red": "#FF6188",
"Objects.Pink": "#FF6188",
"Objects.Yellow": "#78DCE8",
"Objects.Green": "#FFD866",
"Objects.Purple": "#FF6188",
"Objects.BlackText": "#fcfcfa",
"Objects.YellowDark": "#AB9DF2",
"Objects.GreenAndroid": "#FFD866"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "Night Owl Contrast",
"dark": true,
"author": "Mallowigi",
"editorScheme": "/colors/Night Owl.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#5f7e97",
"background": "#011627",
"borderColor": "#122d42",
"disabledBackground": "#0e293f",
"disabledForeground": "#697098",
"disabledText": "#697098",
"focusColor": "#084d81",
"focusedBorderColor": "#7e57c2",
"foreground": "#d6deeb",
"inactiveBackground": "#0e293f",
"inactiveForeground": "#5f7e97",
"infoForeground": "#5f7e97",
"selectionBackground": "#5f7e97",
"selectionBackgroundInactive": "#0b2942",
"selectionForeground": "#ffffff",
"selectionInactiveBackground": "#0b2942",
"separatorColor": "#122d42"
},
"activeCaption": "#011627",
"ActionButton": {
"hoverBackground": "#7e57c250",
"hoverBorderColor": "#7e57c250",
"hoverSeparatorColor": "#0b253a",
"focusedBorderColor": "#7e57c250",
"pressedBackground": "#7e57c250",
"pressedBorderColor": "#7e57c250"
},
"Autocomplete": {
"selectionBackground": "#5f7e97"
},
"Borders.ContrastBorderColor": "#011627",
"Borders.color": "#122d42",
"Button": {
"arc": 0,
"background": "#011627",
"default": {
"endBackground": "#13344f",
"endBorderColor": "#13344f",
"foreground": "#ffffff",
"focusColor": "#7e57c2",
"focusedBorderColor": "#7e57c2",
"shadowColor": "#13344f",
"startBackground": "#13344f",
"startBorderColor": "#13344f"
},
"disabledBorderColor": "#0b253a",
"disabledText": "#697098",
"endBackground": "#0b253a",
"endBorderColor": "#0b253a",
"focus": "#084d81",
"focusedBorderColor": "#7e57c2",
"foreground": "#5f7e97",
"highlight": "#ffffff",
"mt.background": "#0b253a",
"mt.foreground": "#5f7e97",
"mt.selectedForeground": "#ffffff",
"mt.selection.color1": "#13344f",
"mt.selection.color2": "#13344f",
"startBackground": "#0b253a",
"startBorderColor": "#0b253a",
"shadowColor": "#0b253a",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#122d42",
"Tooltip.background": "#01111d"
},
"Content.background": "#010e1a",
"CheckBox": {
"background": "#011627",
"disabledText": "#697098",
"foreground": "#d6deeb",
"select": "#7e57c2"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#5f7e97",
"acceleratorSelectionForeground": "#5f7e97",
"background": "#011627",
"disabledBackground": "#011627",
"disabledForeground": "#697098",
"foreground": "#d6deeb",
"selectionBackground": "#5f7e97",
"selectionForeground": "#ffffff"
},
"ColorChooser": {
"background": "#011627",
"foreground": "#d6deeb",
"swatchesDefaultRecentColor": "#d6deeb"
},
"ComboBoxButton.background": "#0b253a",
"ComboBox": {
"ArrowButton": {
"background": "#0b253a",
"disabledIconColor": "#697098",
"iconColor": "#d6deeb",
"nonEditableBackground": "#011627"
},
"background": "#010e1a",
"buttonBackground": "#0b253a",
"disabledForeground": "#697098",
"foreground": "#d6deeb",
"modifiedItemForeground": "#7e57c2",
"nonEditableBackground": "#0b2942",
"padding": "5,5,5,5",
"selectionBackground": "#13344f",
"selectionForeground": "#ffffff"
},
"ComboPopup.border": "#122d42",
"CompletionPopup": {
"background": "#0b2942",
"foreground": "#d6deeb",
"infoForeground": "#5f7e97",
"matchForeground": "#7e57c2",
"matchSelectionForeground": "#7e57c2",
"nonFocusedState": "false",
"selectedGrayedForeground": "#ffffff",
"selectionGrayForeground": "#ffffff",
"selectionInactiveInfoForeground": "#5f7e97",
"selectionInactiveBackground": "#5f7e9750",
"selectionBackground": "#5f7e9780",
"selectionForeground": "#ffffff",
"selectionInfoForeground": "#ffffff"
},
"Component": {
"arc": 4,
"borderColor": "#084d81",
"disabledBorderColor": "#0b253a",
"focusColor": "#7e57c2",
"focusedBorderColor": "#7e57c2",
"hoverIconColor": "#7e57c2",
"infoForeground": "#5f7e97",
"iconColor": "#d6deeb"
},
"control": "#011627",
"controlText": "#5f7e97",
"Counter": {
"background": "#7e57c2",
"foreground": "#ffffff"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#5f7e97",
"changedValueForeground": "#7e57c2",
"errorMessageForeground": "#7fdbca",
"evaluatingExpressionForeground": "#5f7e97",
"exceptionForeground": "#FAD430",
"modifyingValueForeground": "#7e57c2",
"valueForeground": "#7e57c2"
}
},
"DebuggerTabs": {
"selectedBackground": "#084d81",
"underlinedTabBackground": "#084d81"
},
"DebuggerPopup": {
"borderColor": "#084d81"
},
"DefaultTabs": {
"background": "#011627",
"borderColor": "#011627",
"hoverBackground": "#13344f",
"hoverColor": "#010e1a",
"hoverMaskColor": "#084d81",
"inactiveColoredFileBackground": "#0b253a",
"inactiveUnderlineColor": "#697098",
"inactiveMaskColor": "#010e1a",
"underlineColor": "#7e57c2",
"underlinedTabBackground": "#13344f"
},
"Desktop.background": "#011627",
"DialogWrapper.southPanelBackground": "#011627",
"DialogWrapper.southPanelDivider": "#011627",
"DragAndDrop": {
"areaBackground": "#011627",
"areaBorderColor": "#011627",
"areaForeground": "#d6deeb"
},
"Editor": {
"background": "#010e1a",
"foreground": "#d6deeb",
"shortcutForeground": "#5f7e97"
},
"EditorPane": {
"background": "#010e1a",
"caretForeground": "#7e57c2",
"foreground": "#d6deeb",
"inactiveBackground": "#011627",
"inactiveForeground": "#697098",
"selectionBackground": "#5f7e97",
"selectionForeground": "#ffffff"
},
"EditorTabs": {
"borderColor": "#0b2942",
"hoverColor": "#084d81",
"hoverMaskColor": "#084d81",
"inactiveMaskColor": "#011627",
"inactiveColoredFileBackground": "#0116272",
"inactiveUnderlineColor": "#697098",
"selectedForeground": "#d6deeb",
"selectedBackground": "#13344f",
"underlineColor": "#7e57c2",
"underlinedTabBackground": "#13344f"
},
"EditorGroupsTabs": {
"background": "#011627",
"borderColor": "#0b2942",
"hoverBackground": "#084d81",
"hoverColor": "#084d81",
"inactiveUnderlineColor": "#7e57c2",
"underlineColor": "#7e57c2",
"underlinedTabBackground": "#13344f",
"underlinedTabForeground": "#d6deeb"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#0e293f",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#122d42",
"FormattedTextField": {
"background": "#010e1a",
"caretForeground": "#7e57c2",
"foreground": "#d6deeb",
"inactiveBackground": "#0b253a",
"inactiveForeground": "#697098",
"selectionForeground": "#ffffff",
"selectionBackground": "#13344f"
},
"Group": {
"disabledSeparatorColor": "#122d42",
"separatorColor": "#122d42"
},
"GutterTooltip": {
"infoForeground": "#d6deeb",
"lineSeparatorColor": "#011627"
},
"HeaderColor": {
"active": "#011627",
"inactive": "#010e1a"
},
"HelpTooltip": {
"background": "#011627",
"borderColor": "#122d42",
"foreground": "#d6deeb",
"infoForeground": "#5f7e97",
"shortcutForeground": "#5f7e97"
},
"Hyperlink.linkColor": "#7e57c2",
"inactiveCaption": "#0b2942",
"inactiveCaptionBorder": "#011627",
"inactiveCaptionText": "#5f7e97",
"info": "#5f7e97",
"infoText": "#5f7e97",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#122d42",
"InplaceRefactoringPopup": {
"borderColor": "#011627"
},
"InternalFrame": {
"activeTitleForeground": "#d6deeb",
"background": "#011627",
"inactiveTitleForeground": "#5f7e97"
},
"Label": {
"background": "#011627",
"disabledForeground": "#697098",
"disabledShadow": "#011627",
"disabledText": "#697098",
"foreground": "#d6deeb",
"infoForeground": "#5f7e97",
"selectedForeground": "#ffffff"
},
"Link": {
"activeForeground": "#7e57c2",
"hoverForeground": "#7e57c2",
"pressedForeground": "#7e57c2",
"secondaryForeground": "#5f7e97",
"visitedForeground": "#7e57c2"
},
"link.foreground": "#7e57c2",
"List": {
"background": "#0b2942",
"foreground": "#d6deeb",
"selectionBackground": "#5f7e9750",
"selectionForeground": "#ffffff",
"selectionInactiveForeground": "#ffffff",
"selectionInactiveBackground": "#13344f50"
},
"material": {
"background": "#011627",
"branchColor": "#d6deeb",
"contrast": "#010e1a",
"foreground": "#d6deeb",
"mergeCommits": "#0b253a",
"primaryColor": "#5f7e97",
"selectionForeground": "#ffffff",
"tab.backgroundColor": "#011627",
"tab.borderColor": "#7e57c2",
"tagColor": "#5f7e97"
},
"MemoryIndicator": {
"allocatedBackground": "#0b2942",
"usedColor": "#084d81",
"usedBackground": "#084d81"
},
"Menu": {
"acceleratorForeground": "#5f7e97",
"acceleratorSelectionForeground": "#ffffff",
"background": "#011627",
"border": "4,2,4,2",
"borderColor": "#0b2942",
"disabledBackground": "#0b2942",
"disabledForeground": "#697098",
"foreground": "#d6deeb",
"selectionBackground": "#5f7e97",
"selectionForeground": "#ffffff",
"separatorColor": "#122d42"
},
"MenuBar": {
"background": "#010e1a",
"borderColor": "#011627",
"disabledBackground": "#011627",
"disabledForeground": "#697098",
"foreground": "#d6deeb",
"highlight": "#011627",
"selectionBackground": "#5f7e97",
"selectionForeground": "#ffffff",
"shadow": "#010e1a"
},
"MenuItem": {
"acceleratorForeground": "#5f7e97",
"acceleratorSelectionForeground": "#ffffff",
"border": "4,2,4,2",
"background": "#011627",
"disabledBackground": "#011627",
"disabledForeground": "#697098",
"foreground": "#d6deeb",
"selectionBackground": "#5f7e97",
"selectionForeground": "#ffffff"
},
"NavBar": {
"arrowColor": "#d6deeb",
"borderColor": "#011627"
},
"NewClass": {
"Panel": {
"background": "#011627"
},
"SearchField": {
"background": "#010e1a"
}
},
"NewPSD.warning": "#7e57c2",
"Notification": {
"background": "#01111d",
"borderColor": "#01111d",
"errorBackground": "#01111d",
"errorBorderColor": "#01111d",
"foreground": "#d6deeb",
"MoreButton": {
"background": "#0b253a",
"foreground": "#d6deeb",
"innerBorderColor": "#0b253a"
},
"ToolWindow": {
"errorBackground": "#01111d",
"errorBorderColor": "#01111d",
"informativeBackground": "#01111d",
"informativeBorderColor": "#01111d",
"warningBackground": "#01111d",
"warningBorderColor": "#01111d"
}
},
"OnePixelDivider.background": "#122d42",
"OptionPane": {
"background": "#011627",
"foreground": "#d6deeb",
"messageForeground": "#d6deeb"
},
"Outline": {
"color": "#0b253a",
"focusedColor": "#7e57c2",
"disabledColor": "#697098"
},
"Panel": {
"background": "#011627",
"foreground": "#d6deeb"
},
"ParameterInfo": {
"background": "#0b2942",
"borderColor": "#13344f",
"currentOverloadBackground": "#13344f",
"currentParameterForeground": "#7e57c2",
"disabledForeground": "#697098",
"foreground": "#d6deeb",
"infoForeground": "#5f7e97",
"lineSeparatorColor": "#13344f"
},
"PasswordField": {
"background": "#010e1a",
"capsLockIconColor": "#7e57c2",
"caretForeground": "#7e57c2",
"foreground": "#d6deeb",
"inactiveForeground": "#697098",
"selectionBackground": "#13344f",
"selectionForeground": "#ffffff"
},
"Plugins": {
"background": "#011627",
"disabledForeground": "#697098",
"eapTagBackground": "#084d81",
"lightSelectionBackground": "#5f7e97",
"paidTagBackground": "#084d81",
"selectionBackground": "#5f7e97",
"tagForeground": "#7e57c2",
"tagBackground": "#084d81",
"trialTagBackground": "#084d81",
"Button": {
"installBackground": "#0b253a",
"installBorderColor": "#0b253a",
"installForeground": "#d6deeb",
"installFocusedBackground": "#084d81",
"installFillForeground": "#697098",
"installFillBackground": "#0b253a",
"updateBackground": "#0b253a",
"updateBorderColor": "#0b253a",
"updateForeground": "#d6deeb"
},
"SearchField": {
"background": "#010e1a",
"borderColor": "#122d42"
},
"SectionHeader": {
"background": "#0b2942",
"foreground": "#d6deeb"
},
"Tab": {
"hoverBackground": "#13344f",
"selectedForeground": "#ffffff",
"selectedBackground": "#13344f"
}
},
"Popup": {
"Advertiser": {
"background": "#011627",
"borderColor": "#011627",
"foreground": "#7e57c2"
},
"borderColor": "#010e1a",
"inactiveBorderColor": "#011627",
"innerBorderColor": "#0b2942",
"Header": {
"activeBackground": "#011627",
"inactiveBackground": "#010e1a"
},
"paintBorder": true,
"separatorForeground": "#d6deeb",
"separatorColor": "#0b2942",
"Toolbar": {
"Floating.background": "#010e1a",
"background": "#010e1a",
"borderColor": "#010e1a"
}
},
"PopupMenu": {
"background": "#011627",
"border": "2,0,2,0",
"foreground": "#d6deeb",
"translucentBackground": "#011627"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#011627",
"foreground": "#7e57c2",
"indeterminateEndColor": "#7e57c2",
"indeterminateStartColor": "#7e57c2",
"progressColor": "#7e57c2",
"selectionBackground": "#084d81",
"trackColor": "#084d81"
},
"PsiViewer": {
"referenceHighlightColor": "#7e57c2"
},
"RadioButton": {
"background": "#011627",
"disabledText": "#697098",
"foreground": "#d6deeb"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#5f7e97",
"acceleratorSelectionForeground": "#5f7e97",
"background": "#011627",
"disabledBackground": "#011627",
"disabledForeground": "#697098",
"foreground": "#d6deeb",
"selectionBackground": "#5f7e97",
"selectionForeground": "#ffffff"
},
"ScrollBar": {
"background": "#011627",
"hoverThumbBorderColor": "#7e57c2",
"hoverThumbColor": "#7e57c2",
"hoverTrackColor": "#01162730",
"Mac": {
"hoverThumbBorderColor": "#7e57c2",
"hoverThumbColor": "#7e57c2",
"hoverTrackColor": "#01162730",
"thumbBorderColor": "#7e57c270",
"thumbColor": "#7e57c270",
"trackColor": "#01162730",
"Transparent": {
"hoverThumbBorderColor": "#7e57c2",
"hoverThumbColor": "#7e57c2",
"hoverTrackColor": "#01162730",
"thumbBorderColor": "#7e57c270",
"thumbColor": "#7e57c270",
"trackColor": "#01162730"
}
},
"thumb": "#084d81",
"thumbBorderColor": "#7e57c270",
"thumbColor": "#7e57c270",
"trackColor": "#01162730",
"Transparent": {
"hoverThumbBorderColor": "#7e57c2",
"hoverThumbColor": "#7e57c2",
"hoverTrackColor": "#01162730",
"thumbBorderColor": "#7e57c270",
"thumbColor": "#7e57c270",
"trackColor": "#01162730"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#010e1a",
"foreground": "#5f7e97"
},
"Header": {
"background": "#011627"
},
"List": {
"separatorForeground": "#5f7e97",
"separatorColor": "#122d42"
},
"SearchField": {
"background": "#011627",
"borderColor": "#010e1a",
"infoForeground": "#5f7e97"
},
"Tab": {
"active.foreground": "#ffffff",
"selectedForeground": "#ffffff",
"selectedBackground": "#084d81"
}
},
"SearchMatch": {
"endBackground": "#7e57c2",
"startBackground": "#7e57c2"
},
"SearchField.errorBackground": "#01111d",
"Separator": {
"background": "#0b2942",
"foreground": "#0b2942",
"separatorColor": "#0b2942"
},
"SidePanel": {
"background": "#010e1a"
},
"Slider": {
"background": "#011627",
"buttonBorderColor": "#7e57c2",
"buttonColor": "#7e57c2",
"foreground": "#d6deeb",
"majorTickLength": 6,
"tickColor": "#0b2942",
"trackColor": "#13344f",
"trackWidth": 7,
"thumb": "#7e57c2"
},
"SpeedSearch": {
"background": "#084d81",
"borderColor": "#122d42",
"foreground": "#d6deeb",
"errorForeground": "#d6deeb"
},
"Spinner": {
"background": "#011627",
"border": "3,3,3,3",
"foreground": "#d6deeb",
"selectionForeground": "#ffffff"
},
"SplitPane": {
"background": "#011627",
"highlight": "#010e1a"
},
"SplitPaneDivider.draggingColor": "#0b2942",
"StatusBar": {
"borderColor": "#011627"
},
"TabbedPane": {
"background": "#011627",
"contentAreaColor": "#084d81",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#122d42",
"disabledForeground": "#697098",
"disabledUnderlineColor": "#697098",
"focus": "#13344f",
"focusColor": "#13344f",
"fontSizeOffset": 0,
"foreground": "#d6deeb",
"highlight": "#122d42",
"hoverColor": "#084d81",
"labelShift": 0,
"selectedForeground": "#ffffff",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#7e57c2"
},
"TabbedPane.mt.tab.background": "#010e1a",
"Table": {
"background": "#011627",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#7e57c2",
"dropLineShortColor": "#7e57c2",
"focusCellBackground": "#13344f",
"focusCellForeground": "#ffffff",
"foreground": "#d6deeb",
"gridColor": "#011627",
"highlightOuter": "#13344f",
"lightSelectionForeground": "#ffffff",
"lightSelectionInactiveForeground": "#5f7e97",
"lightSelectionInactiveBackground": "#0b2942",
"selectionBackground": "#13344f",
"selectionForeground": "#ffffff",
"selectionInactiveBackground": "#13344f",
"selectionInactiveForeground": "#ffffff",
"sortIconColor": "#d6deeb",
"stripeColor": "#010e1a"
},
"TableHeader": {
"background": "#011627",
"borderColor": "#011627",
"bottomSeparatorColor": "#0b2942",
"cellBorder": "4,0,4,0",
"disabledForeground": "#697098",
"foreground": "#d6deeb",
"focusCellBackground": "#13344f",
"focusCellForeground": "#ffffff",
"height": 25,
"separatorColor": "#0b2942"
},
"text": "#5f7e97",
"textInactiveText": "#5f7e97",
"textText": "#5f7e97",
"TextArea": {
"background": "#010e1a",
"caretForeground": "#7e57c2",
"foreground": "#d6deeb",
"inactiveForeground": "#697098",
"selectionBackground": "#13344f",
"selectionForeground": "#ffffff"
},
"TextField": {
"background": "#010e1a",
"caretForeground": "#7e57c2",
"foreground": "#d6deeb",
"inactiveForeground": "#697098",
"selectionBackground": "#13344f",
"selectionForeground": "#ffffff"
},
"TextPane": {
"background": "#010e1a",
"caretForeground": "#7e57c2",
"foreground": "#d6deeb",
"inactiveForeground": "#697098",
"selectionBackground": "#13344f",
"selectionForeground": "#ffffff"
},
"TitlePane": {
"background": "#010e1a",
"Button.hoverBackground": "#084d81",
"inactiveBackground": "#011627",
"infoForeground": "#5f7e97",
"inactiveInfoForeground": "#5f7e97"
},
"TitledBorder.titleColor": "#d6deeb",
"ToggleButton": {
"borderColor": "#0b253a",
"buttonColor": "#d6deeb",
"disabledText": "#697098",
"foreground": "#d6deeb",
"offForeground": "#011627",
"offBackground": "#011627",
"onBackground": "#7e57c2",
"onForeground": "#7e57c2"
},
"ToolBar": {
"background": "#010e1a",
"borderHandleColor": "#5f7e97",
"floatingForeground": "#5f7e97",
"foreground": "#d6deeb"
},
"ToolTip": {
"Actions.background": "#011627",
"Actions.infoForeground": "#5f7e97",
"background": "#011627",
"borderColor": "#084d81",
"foreground": "#d6deeb",
"infoForeground": "#5f7e97",
"separatorColor": "#122d42",
"shortcutForeground": "#5f7e97"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#13344f",
"selectedForeground": "#ffffff",
"selectedBackground": "#010e1a"
},
"Header": {
"background": "#011627",
"borderColor": "#0b2942",
"inactiveBackground": "#011627"
},
"HeaderCloseButton": {
"background": "#011627"
},
"HeaderTab": {
"hoverBackground": "#084d81",
"hoverInactiveBackground": "#0b2942",
"inactiveUnderlineColor": "#7e57c2",
"selectedBackground": "#010e1a",
"selectedInactiveBackground": "#010e1a",
"underlineColor": "#7e57c2",
"underlinedTabBackground": "#084d81",
"underlinedTabInactiveBackground": "#0b2942"
}
},
"Tree": {
"background": "#010e1a",
"foreground": "#5f7e97",
"hash": "#122d42",
"modifiedItemForeground": "#7e57c2",
"rowHeight": 28,
"selectionBackground": "#13344f50",
"selectionForeground": "#ffffff",
"selectionInactiveForeground": "#ffffff",
"selectionInactiveBackground": "#13344f50",
"textBackground": "#010e1a"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#122d42",
"ColorPicker.background": "#011627",
"ColorPicker.foreground": "#d6deeb",
"Component.borderColor": "#122d42",
"Component.background": "#011627",
"Component.foreground": "#d6deeb",
"Connector.borderColor": "#122d42",
"Connector.hoverBorderColor": "#084d81",
"Canvas.background": "#010e1a",
"highStroke.foreground": "#d6deeb",
"Label.foreground": "#5f7e97",
"List.selectionBackground": "#13344f50",
"Panel.borderColor": "#122d42",
"Panel.background": "#011627",
"percent.foreground": "#d6deeb",
"Placeholder.background": "#011627",
"Placeholder.borderColor": "#122d42",
"Placeholder.foreground": "#d6deeb",
"Placeholder.selectedForeground": "#ffffff",
"Preview.background": "#011627",
"stroke.acceleratorForeground": "#5f7e97"
},
"ValidationTooltip": {
"errorBackground": "#01111d",
"errorBorderColor": "#01111d",
"warningBackground": "#01111d",
"warningBorderColor": "#01111d"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#011627"
},
"GitCommits": {
"graphColor": "#084d81"
},
"GitLog": {
"localBranchIconColor": "#7e57c2",
"otherIconColor": "#5f7e97",
"remoteBranchIconColor": "#d6deeb",
"tagIconColor": "#5f7e97"
},
"HgLog": {
"branchIconColor": "#7e57c2",
"bookmarkIconColor": "#ffffff",
"closedBranchIconColor": "#697098",
"localTagIconColor": "#5f7e97",
"mqTagIconColor": "#5f7e97",
"tagIconColor": "#5f7e97",
"tipIconColor": "#5f7e97"
},
"Log": {
"Commit.unmatchedForeground": "#5f7e97",
"Commit.currentBranchBackground": "#0b2942"
},
"RefLabel": {
"foreground": "#ffffff",
"backgroundBase": "#084d81"
}
},
"Viewport": {
"background": "#010e1a",
"foreground": "#d6deeb"
},
"WelcomeScreen": {
"background": "#011627",
"borderColor": "#011627",
"captionBackground": "#010e1a",
"captionForeground": "#d6deeb",
"footerBackground": "#010e1a",
"footerForeground": "#d6deeb",
"headerBackground": "#011627",
"headerForeground": "#d6deeb",
"separatorColor": "#122d42",
"Projects": {
"background": "#0b2942",
"selectionBackground": "#5f7e97",
"selectionInactiveBackground": "#0b2942"
}
},
"window": "#010e1a",
"windowBorder": "#122d42",
"windowText": "#5f7e97",
"Window.border": "#122d42"
},
"icons": {
"ColorPalette": {
"#43494A": "#010e1a",
"#6B6B6B": "#5f7e97",
"#A7A7A7": "#011627",
"#3D6185": "#7e57c2",
"#466D94": "#7e57c2",
"#3C3F41": "#011627",
"#545556": "#697098",
"#606060": "#697098",
"#9AA7B0": "#d6deeb",
"#675133": "#7e57c2",
"Actions.Blue": "#82AAFF",
"Actions.Green": "#ecc48d",
"Actions.Grey": "#5f7e97",
"Actions.GreyInline": "#637777",
"Actions.GreyInline.Dark": "#d6deeb",
"Actions.Red": "#7fdbca",
"Actions.Yellow": "#FAD430",
"Checkbox.Background.Default": "#010e1a",
"Checkbox.Background.Default.Dark": "#010e1a",
"Checkbox.Background.Disabled": "#0e293f",
"Checkbox.Background.Disabled.Dark": "#0e293f",
"Checkbox.Border.Default": "#122d42",
"Checkbox.Border.Default.Dark": "#122d42",
"Checkbox.Border.Disabled": "#697098",
"Checkbox.Border.Disabled.Dark": "#697098",
"Checkbox.Focus.Thin.Default": "#7e57c2",
"Checkbox.Focus.Thin.Default.Dark": "#7e57c2",
"Checkbox.Focus.Wide": "#7e57c2",
"Checkbox.Focus.Wide.Dark": "#7e57c2",
"Checkbox.Foreground.Disabled": "#697098",
"Checkbox.Foreground.Disabled.Dark": "#697098",
"Checkbox.Background.Selected": "#7e57c2",
"Checkbox.Background.Selected.Dark": "#011627",
"Checkbox.Border.Selected": "#7e57c2",
"Checkbox.Border.Selected.Dark": "#7e57c2",
"Checkbox.Foreground.Selected": "#7e57c2",
"Checkbox.Foreground.Selected.Dark": "#7e57c2",
"Checkbox.Focus.Thin.Selected": "#d6deeb",
"Checkbox.Focus.Thin.Selected.Dark": "#d6deeb",
"Objects.Grey": "#637777",
"Objects.Blue": "#82AAFF",
"Objects.RedStatus": "#7fdbca",
"Objects.Red": "#7fdbca",
"Objects.Pink": "#c792ea",
"Objects.Yellow": "#FAD430",
"Objects.Green": "#ecc48d",
"Objects.Purple": "#c792ea",
"Objects.BlackText": "#d6deeb",
"Objects.YellowDark": "#f78c6c",
"Objects.GreenAndroid": "#ecc48d"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "Night Owl",
"dark": true,
"author": "Mallowigi",
"editorScheme": "/colors/Night Owl.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#5f7e97",
"background": "#011627",
"borderColor": "#122d42",
"disabledBackground": "#0e293f",
"disabledForeground": "#697098",
"disabledText": "#697098",
"focusColor": "#084d81",
"focusedBorderColor": "#7e57c2",
"foreground": "#d6deeb",
"inactiveBackground": "#0e293f",
"inactiveForeground": "#5f7e97",
"infoForeground": "#5f7e97",
"selectionBackground": "#5f7e97",
"selectionBackgroundInactive": "#0b2942",
"selectionForeground": "#ffffff",
"selectionInactiveBackground": "#0b2942",
"separatorColor": "#122d42"
},
"activeCaption": "#011627",
"ActionButton": {
"hoverBackground": "#7e57c250",
"hoverBorderColor": "#7e57c250",
"hoverSeparatorColor": "#0b253a",
"focusedBorderColor": "#7e57c250",
"pressedBackground": "#7e57c250",
"pressedBorderColor": "#7e57c250"
},
"Autocomplete": {
"selectionBackground": "#5f7e97"
},
"Borders.ContrastBorderColor": "#011627",
"Borders.color": "#122d42",
"Button": {
"arc": 0,
"background": "#011627",
"default": {
"endBackground": "#13344f",
"endBorderColor": "#13344f",
"foreground": "#ffffff",
"focusColor": "#7e57c2",
"focusedBorderColor": "#7e57c2",
"shadowColor": "#13344f",
"startBackground": "#13344f",
"startBorderColor": "#13344f"
},
"disabledBorderColor": "#0b253a",
"disabledText": "#697098",
"endBackground": "#0b253a",
"endBorderColor": "#0b253a",
"focus": "#084d81",
"focusedBorderColor": "#7e57c2",
"foreground": "#5f7e97",
"highlight": "#ffffff",
"mt.background": "#0b253a",
"mt.foreground": "#5f7e97",
"mt.selectedForeground": "#ffffff",
"mt.selection.color1": "#13344f",
"mt.selection.color2": "#13344f",
"startBackground": "#0b253a",
"startBorderColor": "#0b253a",
"shadowColor": "#0b253a",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#122d42",
"Tooltip.background": "#01111d"
},
"Content.background": "#010e1a",
"CheckBox": {
"background": "#011627",
"disabledText": "#697098",
"foreground": "#d6deeb",
"select": "#7e57c2"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#5f7e97",
"acceleratorSelectionForeground": "#5f7e97",
"background": "#011627",
"disabledBackground": "#011627",
"disabledForeground": "#697098",
"foreground": "#d6deeb",
"selectionBackground": "#5f7e97",
"selectionForeground": "#ffffff"
},
"ColorChooser": {
"background": "#011627",
"foreground": "#d6deeb",
"swatchesDefaultRecentColor": "#d6deeb"
},
"ComboBoxButton.background": "#0b253a",
"ComboBox": {
"ArrowButton": {
"background": "#0b253a",
"disabledIconColor": "#697098",
"iconColor": "#d6deeb",
"nonEditableBackground": "#011627"
},
"background": "#011627",
"buttonBackground": "#0b253a",
"disabledForeground": "#697098",
"foreground": "#d6deeb",
"modifiedItemForeground": "#7e57c2",
"nonEditableBackground": "#0b2942",
"padding": "5,5,5,5",
"selectionBackground": "#13344f",
"selectionForeground": "#ffffff"
},
"ComboPopup.border": "#122d42",
"CompletionPopup": {
"background": "#0b2942",
"foreground": "#d6deeb",
"infoForeground": "#5f7e97",
"matchForeground": "#7e57c2",
"matchSelectionForeground": "#7e57c2",
"nonFocusedState": "false",
"selectedGrayedForeground": "#ffffff",
"selectionGrayForeground": "#ffffff",
"selectionInactiveInfoForeground": "#5f7e97",
"selectionInactiveBackground": "#5f7e9750",
"selectionBackground": "#5f7e9780",
"selectionForeground": "#ffffff",
"selectionInfoForeground": "#ffffff"
},
"Component": {
"arc": 4,
"borderColor": "#084d81",
"disabledBorderColor": "#0b253a",
"focusColor": "#7e57c2",
"focusedBorderColor": "#7e57c2",
"hoverIconColor": "#7e57c2",
"infoForeground": "#5f7e97",
"iconColor": "#d6deeb"
},
"control": "#011627",
"controlText": "#5f7e97",
"Counter": {
"background": "#7e57c2",
"foreground": "#ffffff"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#5f7e97",
"changedValueForeground": "#7e57c2",
"errorMessageForeground": "#7fdbca",
"evaluatingExpressionForeground": "#5f7e97",
"exceptionForeground": "#FAD430",
"modifyingValueForeground": "#7e57c2",
"valueForeground": "#7e57c2"
}
},
"DebuggerTabs": {
"selectedBackground": "#084d81",
"underlinedTabBackground": "#084d81"
},
"DebuggerPopup": {
"borderColor": "#084d81"
},
"DefaultTabs": {
"background": "#011627",
"borderColor": "#011627",
"hoverBackground": "#13344f",
"hoverColor": "#011627",
"hoverMaskColor": "#084d81",
"inactiveColoredFileBackground": "#0b253a",
"inactiveUnderlineColor": "#697098",
"inactiveMaskColor": "#011627",
"underlineColor": "#7e57c2",
"underlinedTabBackground": "#13344f"
},
"Desktop.background": "#011627",
"DialogWrapper.southPanelBackground": "#011627",
"DialogWrapper.southPanelDivider": "#011627",
"DragAndDrop": {
"areaBackground": "#011627",
"areaBorderColor": "#011627",
"areaForeground": "#d6deeb"
},
"Editor": {
"background": "#011627",
"foreground": "#d6deeb",
"shortcutForeground": "#5f7e97"
},
"EditorPane": {
"background": "#011627",
"caretForeground": "#7e57c2",
"foreground": "#d6deeb",
"inactiveBackground": "#011627",
"inactiveForeground": "#697098",
"selectionBackground": "#5f7e97",
"selectionForeground": "#ffffff"
},
"EditorTabs": {
"borderColor": "#0b2942",
"hoverColor": "#084d81",
"hoverMaskColor": "#084d81",
"inactiveMaskColor": "#011627",
"inactiveColoredFileBackground": "#0116272",
"inactiveUnderlineColor": "#697098",
"selectedForeground": "#d6deeb",
"selectedBackground": "#13344f",
"underlineColor": "#7e57c2",
"underlinedTabBackground": "#13344f"
},
"EditorGroupsTabs": {
"background": "#011627",
"borderColor": "#0b2942",
"hoverBackground": "#084d81",
"hoverColor": "#084d81",
"inactiveUnderlineColor": "#7e57c2",
"underlineColor": "#7e57c2",
"underlinedTabBackground": "#13344f",
"underlinedTabForeground": "#d6deeb"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#0e293f",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#122d42",
"FormattedTextField": {
"background": "#011627",
"caretForeground": "#7e57c2",
"foreground": "#d6deeb",
"inactiveBackground": "#0b253a",
"inactiveForeground": "#697098",
"selectionForeground": "#ffffff",
"selectionBackground": "#13344f"
},
"Group": {
"disabledSeparatorColor": "#122d42",
"separatorColor": "#122d42"
},
"GutterTooltip": {
"infoForeground": "#d6deeb",
"lineSeparatorColor": "#011627"
},
"HeaderColor": {
"active": "#011627",
"inactive": "#010e1a"
},
"HelpTooltip": {
"background": "#011627",
"borderColor": "#122d42",
"foreground": "#d6deeb",
"infoForeground": "#5f7e97",
"shortcutForeground": "#5f7e97"
},
"Hyperlink.linkColor": "#7e57c2",
"inactiveCaption": "#0b2942",
"inactiveCaptionBorder": "#011627",
"inactiveCaptionText": "#5f7e97",
"info": "#5f7e97",
"infoText": "#5f7e97",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#122d42",
"InplaceRefactoringPopup": {
"borderColor": "#011627"
},
"InternalFrame": {
"activeTitleForeground": "#d6deeb",
"background": "#011627",
"inactiveTitleForeground": "#5f7e97"
},
"Label": {
"background": "#011627",
"disabledForeground": "#697098",
"disabledShadow": "#011627",
"disabledText": "#697098",
"foreground": "#d6deeb",
"infoForeground": "#5f7e97",
"selectedForeground": "#ffffff"
},
"Link": {
"activeForeground": "#7e57c2",
"hoverForeground": "#7e57c2",
"pressedForeground": "#7e57c2",
"secondaryForeground": "#5f7e97",
"visitedForeground": "#7e57c2"
},
"link.foreground": "#7e57c2",
"List": {
"background": "#0b2942",
"foreground": "#d6deeb",
"selectionBackground": "#5f7e9750",
"selectionForeground": "#ffffff",
"selectionInactiveForeground": "#ffffff",
"selectionInactiveBackground": "#13344f50"
},
"material": {
"background": "#011627",
"branchColor": "#d6deeb",
"contrast": "#010e1a",
"foreground": "#d6deeb",
"mergeCommits": "#0b253a",
"primaryColor": "#5f7e97",
"selectionForeground": "#ffffff",
"tab.backgroundColor": "#011627",
"tab.borderColor": "#7e57c2",
"tagColor": "#5f7e97"
},
"MemoryIndicator": {
"allocatedBackground": "#0b2942",
"usedColor": "#084d81",
"usedBackground": "#084d81"
},
"Menu": {
"acceleratorForeground": "#5f7e97",
"acceleratorSelectionForeground": "#ffffff",
"background": "#011627",
"border": "4,2,4,2",
"borderColor": "#0b2942",
"disabledBackground": "#0b2942",
"disabledForeground": "#697098",
"foreground": "#d6deeb",
"selectionBackground": "#5f7e97",
"selectionForeground": "#ffffff",
"separatorColor": "#122d42"
},
"MenuBar": {
"background": "#011627",
"borderColor": "#011627",
"disabledBackground": "#011627",
"disabledForeground": "#697098",
"foreground": "#d6deeb",
"highlight": "#011627",
"selectionBackground": "#5f7e97",
"selectionForeground": "#ffffff",
"shadow": "#011627"
},
"MenuItem": {
"acceleratorForeground": "#5f7e97",
"acceleratorSelectionForeground": "#ffffff",
"border": "4,2,4,2",
"background": "#011627",
"disabledBackground": "#011627",
"disabledForeground": "#697098",
"foreground": "#d6deeb",
"selectionBackground": "#5f7e97",
"selectionForeground": "#ffffff"
},
"NavBar": {
"arrowColor": "#d6deeb",
"borderColor": "#011627"
},
"NewClass": {
"Panel": {
"background": "#011627"
},
"SearchField": {
"background": "#011627"
}
},
"NewPSD.warning": "#7e57c2",
"Notification": {
"background": "#01111d",
"borderColor": "#01111d",
"errorBackground": "#01111d",
"errorBorderColor": "#01111d",
"foreground": "#d6deeb",
"MoreButton": {
"background": "#0b253a",
"foreground": "#d6deeb",
"innerBorderColor": "#0b253a"
},
"ToolWindow": {
"errorBackground": "#01111d",
"errorBorderColor": "#01111d",
"informativeBackground": "#01111d",
"informativeBorderColor": "#01111d",
"warningBackground": "#01111d",
"warningBorderColor": "#01111d"
}
},
"OnePixelDivider.background": "#122d42",
"OptionPane": {
"background": "#011627",
"foreground": "#d6deeb",
"messageForeground": "#d6deeb"
},
"Outline": {
"color": "#0b253a",
"focusedColor": "#7e57c2",
"disabledColor": "#697098"
},
"Panel": {
"background": "#011627",
"foreground": "#d6deeb"
},
"ParameterInfo": {
"background": "#0b2942",
"borderColor": "#13344f",
"currentOverloadBackground": "#13344f",
"currentParameterForeground": "#7e57c2",
"disabledForeground": "#697098",
"foreground": "#d6deeb",
"infoForeground": "#5f7e97",
"lineSeparatorColor": "#13344f"
},
"PasswordField": {
"background": "#011627",
"capsLockIconColor": "#7e57c2",
"caretForeground": "#7e57c2",
"foreground": "#d6deeb",
"inactiveForeground": "#697098",
"selectionBackground": "#13344f",
"selectionForeground": "#ffffff"
},
"Plugins": {
"background": "#011627",
"disabledForeground": "#697098",
"eapTagBackground": "#084d81",
"lightSelectionBackground": "#5f7e97",
"paidTagBackground": "#084d81",
"selectionBackground": "#5f7e97",
"tagForeground": "#7e57c2",
"tagBackground": "#084d81",
"trialTagBackground": "#084d81",
"Button": {
"installBackground": "#0b253a",
"installBorderColor": "#0b253a",
"installForeground": "#d6deeb",
"installFocusedBackground": "#084d81",
"installFillForeground": "#697098",
"installFillBackground": "#0b253a",
"updateBackground": "#0b253a",
"updateBorderColor": "#0b253a",
"updateForeground": "#d6deeb"
},
"SearchField": {
"background": "#011627",
"borderColor": "#122d42"
},
"SectionHeader": {
"background": "#0b2942",
"foreground": "#d6deeb"
},
"Tab": {
"hoverBackground": "#13344f",
"selectedForeground": "#ffffff",
"selectedBackground": "#13344f"
}
},
"Popup": {
"Advertiser": {
"background": "#011627",
"borderColor": "#011627",
"foreground": "#7e57c2"
},
"borderColor": "#010e1a",
"inactiveBorderColor": "#011627",
"innerBorderColor": "#0b2942",
"Header": {
"activeBackground": "#011627",
"inactiveBackground": "#010e1a"
},
"paintBorder": true,
"separatorForeground": "#d6deeb",
"separatorColor": "#0b2942",
"Toolbar": {
"Floating.background": "#010e1a",
"background": "#010e1a",
"borderColor": "#010e1a"
}
},
"PopupMenu": {
"background": "#011627",
"border": "2,0,2,0",
"foreground": "#d6deeb",
"translucentBackground": "#011627"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#011627",
"foreground": "#7e57c2",
"indeterminateEndColor": "#7e57c2",
"indeterminateStartColor": "#7e57c2",
"progressColor": "#7e57c2",
"selectionBackground": "#084d81",
"trackColor": "#084d81"
},
"PsiViewer": {
"referenceHighlightColor": "#7e57c2"
},
"RadioButton": {
"background": "#011627",
"disabledText": "#697098",
"foreground": "#d6deeb"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#5f7e97",
"acceleratorSelectionForeground": "#5f7e97",
"background": "#011627",
"disabledBackground": "#011627",
"disabledForeground": "#697098",
"foreground": "#d6deeb",
"selectionBackground": "#5f7e97",
"selectionForeground": "#ffffff"
},
"ScrollBar": {
"background": "#011627",
"hoverThumbBorderColor": "#7e57c2",
"hoverThumbColor": "#7e57c2",
"hoverTrackColor": "#01162730",
"Mac": {
"hoverThumbBorderColor": "#7e57c2",
"hoverThumbColor": "#7e57c2",
"hoverTrackColor": "#01162730",
"thumbBorderColor": "#7e57c270",
"thumbColor": "#7e57c270",
"trackColor": "#01162730",
"Transparent": {
"hoverThumbBorderColor": "#7e57c2",
"hoverThumbColor": "#7e57c2",
"hoverTrackColor": "#01162730",
"thumbBorderColor": "#7e57c270",
"thumbColor": "#7e57c270",
"trackColor": "#01162730"
}
},
"thumb": "#084d81",
"thumbBorderColor": "#7e57c270",
"thumbColor": "#7e57c270",
"trackColor": "#01162730",
"Transparent": {
"hoverThumbBorderColor": "#7e57c2",
"hoverThumbColor": "#7e57c2",
"hoverTrackColor": "#01162730",
"thumbBorderColor": "#7e57c270",
"thumbColor": "#7e57c270",
"trackColor": "#01162730"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#010e1a",
"foreground": "#5f7e97"
},
"Header": {
"background": "#011627"
},
"List": {
"separatorForeground": "#5f7e97",
"separatorColor": "#122d42"
},
"SearchField": {
"background": "#011627",
"borderColor": "#010e1a",
"infoForeground": "#5f7e97"
},
"Tab": {
"active.foreground": "#ffffff",
"selectedForeground": "#ffffff",
"selectedBackground": "#084d81"
}
},
"SearchMatch": {
"endBackground": "#7e57c2",
"startBackground": "#7e57c2"
},
"SearchField.errorBackground": "#01111d",
"Separator": {
"background": "#0b2942",
"foreground": "#0b2942",
"separatorColor": "#0b2942"
},
"SidePanel": {
"background": "#011627"
},
"Slider": {
"background": "#011627",
"buttonBorderColor": "#7e57c2",
"buttonColor": "#7e57c2",
"foreground": "#d6deeb",
"majorTickLength": 6,
"tickColor": "#0b2942",
"trackColor": "#13344f",
"trackWidth": 7,
"thumb": "#7e57c2"
},
"SpeedSearch": {
"background": "#084d81",
"borderColor": "#122d42",
"foreground": "#d6deeb",
"errorForeground": "#d6deeb"
},
"Spinner": {
"background": "#011627",
"border": "3,3,3,3",
"foreground": "#d6deeb",
"selectionForeground": "#ffffff"
},
"SplitPane": {
"background": "#011627",
"highlight": "#011627"
},
"SplitPaneDivider.draggingColor": "#0b2942",
"StatusBar": {
"borderColor": "#011627"
},
"TabbedPane": {
"background": "#011627",
"contentAreaColor": "#084d81",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#122d42",
"disabledForeground": "#697098",
"disabledUnderlineColor": "#697098",
"focus": "#13344f",
"focusColor": "#13344f",
"fontSizeOffset": 0,
"foreground": "#d6deeb",
"highlight": "#122d42",
"hoverColor": "#084d81",
"labelShift": 0,
"selectedForeground": "#ffffff",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#7e57c2"
},
"TabbedPane.mt.tab.background": "#011627",
"Table": {
"background": "#011627",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#7e57c2",
"dropLineShortColor": "#7e57c2",
"focusCellBackground": "#13344f",
"focusCellForeground": "#ffffff",
"foreground": "#d6deeb",
"gridColor": "#011627",
"highlightOuter": "#13344f",
"lightSelectionForeground": "#ffffff",
"lightSelectionInactiveForeground": "#5f7e97",
"lightSelectionInactiveBackground": "#0b2942",
"selectionBackground": "#13344f",
"selectionForeground": "#ffffff",
"selectionInactiveBackground": "#13344f",
"selectionInactiveForeground": "#ffffff",
"sortIconColor": "#d6deeb",
"stripeColor": "#010e1a"
},
"TableHeader": {
"background": "#011627",
"borderColor": "#011627",
"bottomSeparatorColor": "#0b2942",
"cellBorder": "4,0,4,0",
"disabledForeground": "#697098",
"foreground": "#d6deeb",
"focusCellBackground": "#13344f",
"focusCellForeground": "#ffffff",
"height": 25,
"separatorColor": "#0b2942"
},
"text": "#5f7e97",
"textInactiveText": "#5f7e97",
"textText": "#5f7e97",
"TextArea": {
"background": "#011627",
"caretForeground": "#7e57c2",
"foreground": "#d6deeb",
"inactiveForeground": "#697098",
"selectionBackground": "#13344f",
"selectionForeground": "#ffffff"
},
"TextField": {
"background": "#011627",
"caretForeground": "#7e57c2",
"foreground": "#d6deeb",
"inactiveForeground": "#697098",
"selectionBackground": "#13344f",
"selectionForeground": "#ffffff"
},
"TextPane": {
"background": "#011627",
"caretForeground": "#7e57c2",
"foreground": "#d6deeb",
"inactiveForeground": "#697098",
"selectionBackground": "#13344f",
"selectionForeground": "#ffffff"
},
"TitlePane": {
"background": "#010e1a",
"Button.hoverBackground": "#084d81",
"inactiveBackground": "#011627",
"infoForeground": "#5f7e97",
"inactiveInfoForeground": "#5f7e97"
},
"TitledBorder.titleColor": "#d6deeb",
"ToggleButton": {
"borderColor": "#0b253a",
"buttonColor": "#d6deeb",
"disabledText": "#697098",
"foreground": "#d6deeb",
"offForeground": "#011627",
"offBackground": "#011627",
"onBackground": "#7e57c2",
"onForeground": "#7e57c2"
},
"ToolBar": {
"background": "#011627",
"borderHandleColor": "#5f7e97",
"floatingForeground": "#5f7e97",
"foreground": "#d6deeb"
},
"ToolTip": {
"Actions.background": "#011627",
"Actions.infoForeground": "#5f7e97",
"background": "#011627",
"borderColor": "#084d81",
"foreground": "#d6deeb",
"infoForeground": "#5f7e97",
"separatorColor": "#122d42",
"shortcutForeground": "#5f7e97"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#13344f",
"selectedForeground": "#ffffff",
"selectedBackground": "#010e1a"
},
"Header": {
"background": "#011627",
"borderColor": "#0b2942",
"inactiveBackground": "#011627"
},
"HeaderCloseButton": {
"background": "#011627"
},
"HeaderTab": {
"hoverBackground": "#084d81",
"hoverInactiveBackground": "#0b2942",
"inactiveUnderlineColor": "#7e57c2",
"selectedBackground": "#010e1a",
"selectedInactiveBackground": "#010e1a",
"underlineColor": "#7e57c2",
"underlinedTabBackground": "#084d81",
"underlinedTabInactiveBackground": "#0b2942"
}
},
"Tree": {
"background": "#011627",
"foreground": "#5f7e97",
"hash": "#122d42",
"modifiedItemForeground": "#7e57c2",
"rowHeight": 28,
"selectionBackground": "#13344f50",
"selectionForeground": "#ffffff",
"selectionInactiveForeground": "#ffffff",
"selectionInactiveBackground": "#13344f50",
"textBackground": "#011627"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#122d42",
"ColorPicker.background": "#011627",
"ColorPicker.foreground": "#d6deeb",
"Component.borderColor": "#122d42",
"Component.background": "#011627",
"Component.foreground": "#d6deeb",
"Connector.borderColor": "#122d42",
"Connector.hoverBorderColor": "#084d81",
"Canvas.background": "#010e1a",
"highStroke.foreground": "#d6deeb",
"Label.foreground": "#5f7e97",
"List.selectionBackground": "#13344f50",
"Panel.borderColor": "#122d42",
"Panel.background": "#011627",
"percent.foreground": "#d6deeb",
"Placeholder.background": "#011627",
"Placeholder.borderColor": "#122d42",
"Placeholder.foreground": "#d6deeb",
"Placeholder.selectedForeground": "#ffffff",
"Preview.background": "#011627",
"stroke.acceleratorForeground": "#5f7e97"
},
"ValidationTooltip": {
"errorBackground": "#01111d",
"errorBorderColor": "#01111d",
"warningBackground": "#01111d",
"warningBorderColor": "#01111d"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#011627"
},
"GitCommits": {
"graphColor": "#084d81"
},
"GitLog": {
"localBranchIconColor": "#7e57c2",
"otherIconColor": "#5f7e97",
"remoteBranchIconColor": "#d6deeb",
"tagIconColor": "#5f7e97"
},
"HgLog": {
"branchIconColor": "#7e57c2",
"bookmarkIconColor": "#ffffff",
"closedBranchIconColor": "#697098",
"localTagIconColor": "#5f7e97",
"mqTagIconColor": "#5f7e97",
"tagIconColor": "#5f7e97",
"tipIconColor": "#5f7e97"
},
"Log": {
"Commit.unmatchedForeground": "#5f7e97",
"Commit.currentBranchBackground": "#0b2942"
},
"RefLabel": {
"foreground": "#ffffff",
"backgroundBase": "#084d81"
}
},
"Viewport": {
"background": "#011627",
"foreground": "#d6deeb"
},
"WelcomeScreen": {
"background": "#011627",
"borderColor": "#011627",
"captionBackground": "#010e1a",
"captionForeground": "#d6deeb",
"footerBackground": "#010e1a",
"footerForeground": "#d6deeb",
"headerBackground": "#011627",
"headerForeground": "#d6deeb",
"separatorColor": "#122d42",
"Projects": {
"background": "#0b2942",
"selectionBackground": "#5f7e97",
"selectionInactiveBackground": "#0b2942"
}
},
"window": "#011627",
"windowBorder": "#122d42",
"windowText": "#5f7e97",
"Window.border": "#122d42"
},
"icons": {
"ColorPalette": {
"#43494A": "#010e1a",
"#6B6B6B": "#5f7e97",
"#A7A7A7": "#011627",
"#3D6185": "#7e57c2",
"#466D94": "#7e57c2",
"#3C3F41": "#011627",
"#545556": "#697098",
"#606060": "#697098",
"#9AA7B0": "#d6deeb",
"#675133": "#7e57c2",
"Actions.Blue": "#82AAFF",
"Actions.Green": "#ecc48d",
"Actions.Grey": "#5f7e97",
"Actions.GreyInline": "#637777",
"Actions.GreyInline.Dark": "#d6deeb",
"Actions.Red": "#7fdbca",
"Actions.Yellow": "#FAD430",
"Checkbox.Background.Default": "#010e1a",
"Checkbox.Background.Default.Dark": "#010e1a",
"Checkbox.Background.Disabled": "#0e293f",
"Checkbox.Background.Disabled.Dark": "#0e293f",
"Checkbox.Border.Default": "#122d42",
"Checkbox.Border.Default.Dark": "#122d42",
"Checkbox.Border.Disabled": "#697098",
"Checkbox.Border.Disabled.Dark": "#697098",
"Checkbox.Focus.Thin.Default": "#7e57c2",
"Checkbox.Focus.Thin.Default.Dark": "#7e57c2",
"Checkbox.Focus.Wide": "#7e57c2",
"Checkbox.Focus.Wide.Dark": "#7e57c2",
"Checkbox.Foreground.Disabled": "#697098",
"Checkbox.Foreground.Disabled.Dark": "#697098",
"Checkbox.Background.Selected": "#7e57c2",
"Checkbox.Background.Selected.Dark": "#011627",
"Checkbox.Border.Selected": "#7e57c2",
"Checkbox.Border.Selected.Dark": "#7e57c2",
"Checkbox.Foreground.Selected": "#7e57c2",
"Checkbox.Foreground.Selected.Dark": "#7e57c2",
"Checkbox.Focus.Thin.Selected": "#d6deeb",
"Checkbox.Focus.Thin.Selected.Dark": "#d6deeb",
"Objects.Grey": "#637777",
"Objects.Blue": "#82AAFF",
"Objects.RedStatus": "#7fdbca",
"Objects.Red": "#7fdbca",
"Objects.Pink": "#c792ea",
"Objects.Yellow": "#FAD430",
"Objects.Green": "#ecc48d",
"Objects.Purple": "#c792ea",
"Objects.BlackText": "#d6deeb",
"Objects.YellowDark": "#f78c6c",
"Objects.GreenAndroid": "#ecc48d"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "Material Solarized Dark Contrast",
"dark": true,
"author": "Mallowigi",
"editorScheme": "/colors/Solarized Dark.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#586e75",
"background": "#002B36",
"borderColor": "#0D3640",
"disabledBackground": "#083F4D",
"disabledForeground": "#2E5861",
"disabledText": "#2E5861",
"focusColor": "#005a6f",
"focusedBorderColor": "#d33682",
"foreground": "#839496",
"inactiveBackground": "#083F4D",
"inactiveForeground": "#586e75",
"infoForeground": "#586e75",
"selectionBackground": "#2E4C52",
"selectionBackgroundInactive": "#003745",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#003745",
"separatorColor": "#0D3640"
},
"activeCaption": "#002B36",
"ActionButton": {
"hoverBackground": "#d3368250",
"hoverBorderColor": "#d3368250",
"hoverSeparatorColor": "#073642",
"focusedBorderColor": "#d3368250",
"pressedBackground": "#d3368250",
"pressedBorderColor": "#d3368250"
},
"Autocomplete": {
"selectionBackground": "#2E4C52"
},
"Borders.ContrastBorderColor": "#002B36",
"Borders.color": "#0D3640",
"Button": {
"arc": 0,
"background": "#002B36",
"default": {
"endBackground": "#003946",
"endBorderColor": "#003946",
"foreground": "#FFFFFF",
"focusColor": "#d33682",
"focusedBorderColor": "#d33682",
"shadowColor": "#003946",
"startBackground": "#003946",
"startBorderColor": "#003946"
},
"disabledBorderColor": "#073642",
"disabledText": "#2E5861",
"endBackground": "#073642",
"endBorderColor": "#073642",
"focus": "#005a6f",
"focusedBorderColor": "#d33682",
"foreground": "#586e75",
"highlight": "#FFFFFF",
"mt.background": "#073642",
"mt.foreground": "#586e75",
"mt.selectedForeground": "#FFFFFF",
"mt.selection.color1": "#003946",
"mt.selection.color2": "#003946",
"startBackground": "#073642",
"startBorderColor": "#073642",
"shadowColor": "#073642",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#0D3640",
"Tooltip.background": "#2E4C52"
},
"Content.background": "#00252E",
"CheckBox": {
"background": "#002B36",
"disabledText": "#2E5861",
"foreground": "#839496",
"select": "#d33682"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#586e75",
"acceleratorSelectionForeground": "#586e75",
"background": "#002B36",
"disabledBackground": "#002B36",
"disabledForeground": "#2E5861",
"foreground": "#839496",
"selectionBackground": "#2E4C52",
"selectionForeground": "#FFFFFF"
},
"ColorChooser": {
"background": "#002B36",
"foreground": "#839496",
"swatchesDefaultRecentColor": "#839496"
},
"ComboBoxButton.background": "#073642",
"ComboBox": {
"ArrowButton": {
"background": "#073642",
"disabledIconColor": "#2E5861",
"iconColor": "#839496",
"nonEditableBackground": "#002B36"
},
"background": "#00252E",
"buttonBackground": "#073642",
"disabledForeground": "#2E5861",
"foreground": "#839496",
"modifiedItemForeground": "#d33682",
"nonEditableBackground": "#003745",
"padding": "5,5,5,5",
"selectionBackground": "#003946",
"selectionForeground": "#FFFFFF"
},
"ComboPopup.border": "#0D3640",
"CompletionPopup": {
"background": "#003745",
"foreground": "#839496",
"infoForeground": "#586e75",
"matchForeground": "#d33682",
"matchSelectionForeground": "#d33682",
"nonFocusedState": "false",
"selectedGrayedForeground": "#FFFFFF",
"selectionGrayForeground": "#FFFFFF",
"selectionInactiveInfoForeground": "#586e75",
"selectionInactiveBackground": "#2E4C5250",
"selectionBackground": "#2E4C5280",
"selectionForeground": "#FFFFFF",
"selectionInfoForeground": "#FFFFFF"
},
"Component": {
"arc": 4,
"borderColor": "#005a6f",
"disabledBorderColor": "#073642",
"focusColor": "#d33682",
"focusedBorderColor": "#d33682",
"hoverIconColor": "#d33682",
"infoForeground": "#586e75",
"iconColor": "#839496"
},
"control": "#002B36",
"controlText": "#586e75",
"Counter": {
"background": "#d33682",
"foreground": "#FFFFFF"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#586e75",
"changedValueForeground": "#d33682",
"errorMessageForeground": "#268BD2",
"evaluatingExpressionForeground": "#586e75",
"exceptionForeground": "#B58900",
"modifyingValueForeground": "#d33682",
"valueForeground": "#d33682"
}
},
"DebuggerTabs": {
"selectedBackground": "#005a6f",
"underlinedTabBackground": "#005a6f"
},
"DebuggerPopup": {
"borderColor": "#005a6f"
},
"DefaultTabs": {
"background": "#002B36",
"borderColor": "#002B36",
"hoverBackground": "#003946",
"hoverColor": "#00252E",
"hoverMaskColor": "#005a6f",
"inactiveColoredFileBackground": "#073642",
"inactiveUnderlineColor": "#2E5861",
"inactiveMaskColor": "#00252E",
"underlineColor": "#d33682",
"underlinedTabBackground": "#003946"
},
"Desktop.background": "#002B36",
"DialogWrapper.southPanelBackground": "#002B36",
"DialogWrapper.southPanelDivider": "#002B36",
"DragAndDrop": {
"areaBackground": "#002B36",
"areaBorderColor": "#002B36",
"areaForeground": "#839496"
},
"Editor": {
"background": "#00252E",
"foreground": "#839496",
"shortcutForeground": "#586e75"
},
"EditorPane": {
"background": "#00252E",
"caretForeground": "#d33682",
"foreground": "#839496",
"inactiveBackground": "#002B36",
"inactiveForeground": "#2E5861",
"selectionBackground": "#2E4C52",
"selectionForeground": "#FFFFFF"
},
"EditorTabs": {
"borderColor": "#003745",
"hoverColor": "#005a6f",
"hoverMaskColor": "#005a6f",
"inactiveMaskColor": "#002B36",
"inactiveColoredFileBackground": "#002B362",
"inactiveUnderlineColor": "#2E5861",
"selectedForeground": "#839496",
"selectedBackground": "#003946",
"underlineColor": "#d33682",
"underlinedTabBackground": "#003946"
},
"EditorGroupsTabs": {
"background": "#002B36",
"borderColor": "#003745",
"hoverBackground": "#005a6f",
"hoverColor": "#005a6f",
"inactiveUnderlineColor": "#d33682",
"underlineColor": "#d33682",
"underlinedTabBackground": "#003946",
"underlinedTabForeground": "#839496"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#083F4D",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#0D3640",
"FormattedTextField": {
"background": "#00252E",
"caretForeground": "#d33682",
"foreground": "#839496",
"inactiveBackground": "#073642",
"inactiveForeground": "#2E5861",
"selectionForeground": "#FFFFFF",
"selectionBackground": "#003946"
},
"Group": {
"disabledSeparatorColor": "#0D3640",
"separatorColor": "#0D3640"
},
"GutterTooltip": {
"infoForeground": "#839496",
"lineSeparatorColor": "#002B36"
},
"HeaderColor": {
"active": "#002B36",
"inactive": "#00252E"
},
"HelpTooltip": {
"background": "#002B36",
"borderColor": "#0D3640",
"foreground": "#839496",
"infoForeground": "#586e75",
"shortcutForeground": "#586e75"
},
"Hyperlink.linkColor": "#d33682",
"inactiveCaption": "#003745",
"inactiveCaptionBorder": "#002B36",
"inactiveCaptionText": "#586e75",
"info": "#586e75",
"infoText": "#586e75",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#0D3640",
"InplaceRefactoringPopup": {
"borderColor": "#002B36"
},
"InternalFrame": {
"activeTitleForeground": "#839496",
"background": "#002B36",
"inactiveTitleForeground": "#586e75"
},
"Label": {
"background": "#002B36",
"disabledForeground": "#2E5861",
"disabledShadow": "#002B36",
"disabledText": "#2E5861",
"foreground": "#839496",
"infoForeground": "#586e75",
"selectedForeground": "#FFFFFF"
},
"Link": {
"activeForeground": "#d33682",
"hoverForeground": "#d33682",
"pressedForeground": "#d33682",
"secondaryForeground": "#586e75",
"visitedForeground": "#d33682"
},
"link.foreground": "#d33682",
"List": {
"background": "#003745",
"foreground": "#839496",
"selectionBackground": "#2E4C5250",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#2E4C5280"
},
"material": {
"background": "#002B36",
"branchColor": "#839496",
"contrast": "#00252E",
"foreground": "#839496",
"mergeCommits": "#073642",
"primaryColor": "#586e75",
"selectionForeground": "#FFFFFF",
"tab.backgroundColor": "#002B36",
"tab.borderColor": "#d33682",
"tagColor": "#586e75"
},
"MemoryIndicator": {
"allocatedBackground": "#003745",
"usedColor": "#005a6f",
"usedBackground": "#005a6f"
},
"Menu": {
"acceleratorForeground": "#586e75",
"acceleratorSelectionForeground": "#FFFFFF",
"background": "#002B36",
"border": "4,2,4,2",
"borderColor": "#003745",
"disabledBackground": "#003745",
"disabledForeground": "#2E5861",
"foreground": "#839496",
"selectionBackground": "#2E4C52",
"selectionForeground": "#FFFFFF",
"separatorColor": "#0D3640"
},
"MenuBar": {
"background": "#00252E",
"borderColor": "#002B36",
"disabledBackground": "#002B36",
"disabledForeground": "#2E5861",
"foreground": "#839496",
"highlight": "#002B36",
"selectionBackground": "#2E4C52",
"selectionForeground": "#FFFFFF",
"shadow": "#00252E"
},
"MenuItem": {
"acceleratorForeground": "#586e75",
"acceleratorSelectionForeground": "#FFFFFF",
"border": "4,2,4,2",
"background": "#002B36",
"disabledBackground": "#002B36",
"disabledForeground": "#2E5861",
"foreground": "#839496",
"selectionBackground": "#2E4C52",
"selectionForeground": "#FFFFFF"
},
"NavBar": {
"arrowColor": "#839496",
"borderColor": "#002B36"
},
"NewClass": {
"Panel": {
"background": "#002B36"
},
"SearchField": {
"background": "#00252E"
}
},
"NewPSD.warning": "#d33682",
"Notification": {
"background": "#2E4C52",
"borderColor": "#2E4C52",
"errorBackground": "#2E4C52",
"errorBorderColor": "#2E4C52",
"foreground": "#839496",
"MoreButton": {
"background": "#073642",
"foreground": "#839496",
"innerBorderColor": "#073642"
},
"ToolWindow": {
"errorBackground": "#2E4C52",
"errorBorderColor": "#2E4C52",
"informativeBackground": "#2E4C52",
"informativeBorderColor": "#2E4C52",
"warningBackground": "#2E4C52",
"warningBorderColor": "#2E4C52"
}
},
"OnePixelDivider.background": "#0D3640",
"OptionPane": {
"background": "#002B36",
"foreground": "#839496",
"messageForeground": "#839496"
},
"Outline": {
"color": "#073642",
"focusedColor": "#d33682",
"disabledColor": "#2E5861"
},
"Panel": {
"background": "#002B36",
"foreground": "#839496"
},
"ParameterInfo": {
"background": "#003745",
"borderColor": "#003946",
"currentOverloadBackground": "#003946",
"currentParameterForeground": "#d33682",
"disabledForeground": "#2E5861",
"foreground": "#839496",
"infoForeground": "#586e75",
"lineSeparatorColor": "#003946"
},
"PasswordField": {
"background": "#00252E",
"capsLockIconColor": "#d33682",
"caretForeground": "#d33682",
"foreground": "#839496",
"inactiveForeground": "#2E5861",
"selectionBackground": "#003946",
"selectionForeground": "#FFFFFF"
},
"Plugins": {
"background": "#002B36",
"disabledForeground": "#2E5861",
"eapTagBackground": "#005a6f",
"lightSelectionBackground": "#2E4C52",
"paidTagBackground": "#005a6f",
"selectionBackground": "#2E4C52",
"tagForeground": "#d33682",
"tagBackground": "#005a6f",
"trialTagBackground": "#005a6f",
"Button": {
"installBackground": "#073642",
"installBorderColor": "#073642",
"installForeground": "#839496",
"installFocusedBackground": "#005a6f",
"installFillForeground": "#2E5861",
"installFillBackground": "#073642",
"updateBackground": "#073642",
"updateBorderColor": "#073642",
"updateForeground": "#839496"
},
"SearchField": {
"background": "#00252E",
"borderColor": "#0D3640"
},
"SectionHeader": {
"background": "#003745",
"foreground": "#839496"
},
"Tab": {
"hoverBackground": "#003946",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#003946"
}
},
"Popup": {
"Advertiser": {
"background": "#002B36",
"borderColor": "#002B36",
"foreground": "#d33682"
},
"borderColor": "#00252E",
"inactiveBorderColor": "#002B36",
"innerBorderColor": "#003745",
"Header": {
"activeBackground": "#002B36",
"inactiveBackground": "#00252E"
},
"paintBorder": true,
"separatorForeground": "#839496",
"separatorColor": "#003745",
"Toolbar": {
"Floating.background": "#00252E",
"background": "#00252E",
"borderColor": "#00252E"
}
},
"PopupMenu": {
"background": "#002B36",
"border": "2,0,2,0",
"foreground": "#839496",
"translucentBackground": "#002B36"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#002B36",
"foreground": "#d33682",
"indeterminateEndColor": "#d33682",
"indeterminateStartColor": "#d33682",
"progressColor": "#d33682",
"selectionBackground": "#005a6f",
"trackColor": "#005a6f"
},
"PsiViewer": {
"referenceHighlightColor": "#d33682"
},
"RadioButton": {
"background": "#002B36",
"disabledText": "#2E5861",
"foreground": "#839496"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#586e75",
"acceleratorSelectionForeground": "#586e75",
"background": "#002B36",
"disabledBackground": "#002B36",
"disabledForeground": "#2E5861",
"foreground": "#839496",
"selectionBackground": "#2E4C52",
"selectionForeground": "#FFFFFF"
},
"ScrollBar": {
"background": "#002B36",
"hoverThumbBorderColor": "#d33682",
"hoverThumbColor": "#d33682",
"hoverTrackColor": "#002B3630",
"Mac": {
"hoverThumbBorderColor": "#d33682",
"hoverThumbColor": "#d33682",
"hoverTrackColor": "#002B3630",
"thumbBorderColor": "#d3368270",
"thumbColor": "#d3368270",
"trackColor": "#002B3630",
"Transparent": {
"hoverThumbBorderColor": "#d33682",
"hoverThumbColor": "#d33682",
"hoverTrackColor": "#002B3630",
"thumbBorderColor": "#d3368270",
"thumbColor": "#d3368270",
"trackColor": "#002B3630"
}
},
"thumb": "#005a6f",
"thumbBorderColor": "#d3368270",
"thumbColor": "#d3368270",
"trackColor": "#002B3630",
"Transparent": {
"hoverThumbBorderColor": "#d33682",
"hoverThumbColor": "#d33682",
"hoverTrackColor": "#002B3630",
"thumbBorderColor": "#d3368270",
"thumbColor": "#d3368270",
"trackColor": "#002B3630"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#00252E",
"foreground": "#586e75"
},
"Header": {
"background": "#002B36"
},
"List": {
"separatorForeground": "#586e75",
"separatorColor": "#0D3640"
},
"SearchField": {
"background": "#002B36",
"borderColor": "#00252E",
"infoForeground": "#586e75"
},
"Tab": {
"active.foreground": "#FFFFFF",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#005a6f"
}
},
"SearchMatch": {
"endBackground": "#d33682",
"startBackground": "#d33682"
},
"SearchField.errorBackground": "#2E4C52",
"Separator": {
"background": "#003745",
"foreground": "#003745",
"separatorColor": "#003745"
},
"SidePanel": {
"background": "#00252E"
},
"Slider": {
"background": "#002B36",
"buttonBorderColor": "#d33682",
"buttonColor": "#d33682",
"foreground": "#839496",
"majorTickLength": 6,
"tickColor": "#003745",
"trackColor": "#003946",
"trackWidth": 7,
"thumb": "#d33682"
},
"SpeedSearch": {
"background": "#005a6f",
"borderColor": "#0D3640",
"foreground": "#839496",
"errorForeground": "#839496"
},
"Spinner": {
"background": "#002B36",
"border": "3,3,3,3",
"foreground": "#839496",
"selectionForeground": "#FFFFFF"
},
"SplitPane": {
"background": "#002B36",
"highlight": "#00252E"
},
"SplitPaneDivider.draggingColor": "#003745",
"StatusBar": {
"borderColor": "#002B36"
},
"TabbedPane": {
"background": "#002B36",
"contentAreaColor": "#005a6f",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#0D3640",
"disabledForeground": "#2E5861",
"disabledUnderlineColor": "#2E5861",
"focus": "#003946",
"focusColor": "#003946",
"fontSizeOffset": 0,
"foreground": "#839496",
"highlight": "#0D3640",
"hoverColor": "#005a6f",
"labelShift": 0,
"selectedForeground": "#FFFFFF",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#d33682"
},
"TabbedPane.mt.tab.background": "#00252E",
"Table": {
"background": "#002B36",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#d33682",
"dropLineShortColor": "#d33682",
"focusCellBackground": "#003946",
"focusCellForeground": "#FFFFFF",
"foreground": "#839496",
"gridColor": "#002B36",
"highlightOuter": "#003946",
"lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#586e75",
"lightSelectionInactiveBackground": "#003745",
"selectionBackground": "#003946",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#003946",
"selectionInactiveForeground": "#FFFFFF",
"sortIconColor": "#839496",
"stripeColor": "#00252E"
},
"TableHeader": {
"background": "#002B36",
"borderColor": "#002B36",
"bottomSeparatorColor": "#003745",
"cellBorder": "4,0,4,0",
"disabledForeground": "#2E5861",
"foreground": "#839496",
"focusCellBackground": "#003946",
"focusCellForeground": "#FFFFFF",
"height": 25,
"separatorColor": "#003745"
},
"text": "#586e75",
"textInactiveText": "#586e75",
"textText": "#586e75",
"TextArea": {
"background": "#00252E",
"caretForeground": "#d33682",
"foreground": "#839496",
"inactiveForeground": "#2E5861",
"selectionBackground": "#003946",
"selectionForeground": "#FFFFFF"
},
"TextField": {
"background": "#00252E",
"caretForeground": "#d33682",
"foreground": "#839496",
"inactiveForeground": "#2E5861",
"selectionBackground": "#003946",
"selectionForeground": "#FFFFFF"
},
"TextPane": {
"background": "#00252E",
"caretForeground": "#d33682",
"foreground": "#839496",
"inactiveForeground": "#2E5861",
"selectionBackground": "#003946",
"selectionForeground": "#FFFFFF"
},
"TitlePane": {
"background": "#00252E",
"Button.hoverBackground": "#005a6f",
"inactiveBackground": "#002B36",
"infoForeground": "#586e75",
"inactiveInfoForeground": "#586e75"
},
"TitledBorder.titleColor": "#839496",
"ToggleButton": {
"borderColor": "#073642",
"buttonColor": "#839496",
"disabledText": "#2E5861",
"foreground": "#839496",
"offForeground": "#002B36",
"offBackground": "#002B36",
"onBackground": "#d33682",
"onForeground": "#d33682"
},
"ToolBar": {
"background": "#00252E",
"borderHandleColor": "#586e75",
"floatingForeground": "#586e75",
"foreground": "#839496"
},
"ToolTip": {
"Actions.background": "#002B36",
"Actions.infoForeground": "#586e75",
"background": "#002B36",
"borderColor": "#005a6f",
"foreground": "#839496",
"infoForeground": "#586e75",
"separatorColor": "#0D3640",
"shortcutForeground": "#586e75"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#003946",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#00252E"
},
"Header": {
"background": "#002B36",
"borderColor": "#003745",
"inactiveBackground": "#002B36"
},
"HeaderCloseButton": {
"background": "#002B36"
},
"HeaderTab": {
"hoverBackground": "#005a6f",
"hoverInactiveBackground": "#003745",
"inactiveUnderlineColor": "#d33682",
"selectedBackground": "#00252E",
"selectedInactiveBackground": "#00252E",
"underlineColor": "#d33682",
"underlinedTabBackground": "#005a6f",
"underlinedTabInactiveBackground": "#003745"
}
},
"Tree": {
"background": "#00252E",
"foreground": "#586e75",
"hash": "#0D3640",
"modifiedItemForeground": "#d33682",
"rowHeight": 28,
"selectionBackground": "#2E4C5280",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#2E4C5280",
"textBackground": "#00252E"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#0D3640",
"ColorPicker.background": "#002B36",
"ColorPicker.foreground": "#839496",
"Component.borderColor": "#0D3640",
"Component.background": "#002B36",
"Component.foreground": "#839496",
"Connector.borderColor": "#0D3640",
"Connector.hoverBorderColor": "#005a6f",
"Canvas.background": "#00252E",
"highStroke.foreground": "#839496",
"Label.foreground": "#586e75",
"List.selectionBackground": "#2E4C5280",
"Panel.borderColor": "#0D3640",
"Panel.background": "#002B36",
"percent.foreground": "#839496",
"Placeholder.background": "#002B36",
"Placeholder.borderColor": "#0D3640",
"Placeholder.foreground": "#839496",
"Placeholder.selectedForeground": "#FFFFFF",
"Preview.background": "#002B36",
"stroke.acceleratorForeground": "#586e75"
},
"ValidationTooltip": {
"errorBackground": "#2E4C52",
"errorBorderColor": "#2E4C52",
"warningBackground": "#2E4C52",
"warningBorderColor": "#2E4C52"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#002B36"
},
"GitCommits": {
"graphColor": "#005a6f"
},
"GitLog": {
"localBranchIconColor": "#d33682",
"otherIconColor": "#586e75",
"remoteBranchIconColor": "#839496",
"tagIconColor": "#586e75"
},
"HgLog": {
"branchIconColor": "#d33682",
"bookmarkIconColor": "#FFFFFF",
"closedBranchIconColor": "#2E5861",
"localTagIconColor": "#586e75",
"mqTagIconColor": "#586e75",
"tagIconColor": "#586e75",
"tipIconColor": "#586e75"
},
"Log": {
"Commit.unmatchedForeground": "#586e75",
"Commit.currentBranchBackground": "#003745"
},
"RefLabel": {
"foreground": "#FFFFFF",
"backgroundBase": "#005a6f"
}
},
"Viewport": {
"background": "#00252E",
"foreground": "#839496"
},
"WelcomeScreen": {
"background": "#002B36",
"borderColor": "#002B36",
"captionBackground": "#00252E",
"captionForeground": "#839496",
"footerBackground": "#00252E",
"footerForeground": "#839496",
"headerBackground": "#002B36",
"headerForeground": "#839496",
"separatorColor": "#0D3640",
"Projects": {
"background": "#003745",
"selectionBackground": "#2E4C52",
"selectionInactiveBackground": "#003745"
}
},
"window": "#00252E",
"windowBorder": "#0D3640",
"windowText": "#586e75",
"Window.border": "#0D3640"
},
"icons": {
"ColorPalette": {
"#43494A": "#00252E",
"#6B6B6B": "#586e75",
"#A7A7A7": "#002B36",
"#3D6185": "#d33682",
"#466D94": "#d33682",
"#3C3F41": "#002B36",
"#545556": "#2E5861",
"#606060": "#2E5861",
"#9AA7B0": "#839496",
"#675133": "#d33682",
"Actions.Blue": "#B58900",
"Actions.Green": "#2AA198",
"Actions.Grey": "#586e75",
"Actions.GreyInline": "#657B83",
"Actions.GreyInline.Dark": "#839496",
"Actions.Red": "#268BD2",
"Actions.Yellow": "#B58900",
"Checkbox.Background.Default": "#00252E",
"Checkbox.Background.Default.Dark": "#00252E",
"Checkbox.Background.Disabled": "#083F4D",
"Checkbox.Background.Disabled.Dark": "#083F4D",
"Checkbox.Border.Default": "#0D3640",
"Checkbox.Border.Default.Dark": "#0D3640",
"Checkbox.Border.Disabled": "#2E5861",
"Checkbox.Border.Disabled.Dark": "#2E5861",
"Checkbox.Focus.Thin.Default": "#d33682",
"Checkbox.Focus.Thin.Default.Dark": "#d33682",
"Checkbox.Focus.Wide": "#d33682",
"Checkbox.Focus.Wide.Dark": "#d33682",
"Checkbox.Foreground.Disabled": "#2E5861",
"Checkbox.Foreground.Disabled.Dark": "#2E5861",
"Checkbox.Background.Selected": "#d33682",
"Checkbox.Background.Selected.Dark": "#002B36",
"Checkbox.Border.Selected": "#d33682",
"Checkbox.Border.Selected.Dark": "#d33682",
"Checkbox.Foreground.Selected": "#d33682",
"Checkbox.Foreground.Selected.Dark": "#d33682",
"Checkbox.Focus.Thin.Selected": "#839496",
"Checkbox.Focus.Thin.Selected.Dark": "#839496",
"Objects.Grey": "#657B83",
"Objects.Blue": "#B58900",
"Objects.RedStatus": "#268BD2",
"Objects.Red": "#268BD2",
"Objects.Pink": "#859900",
"Objects.Yellow": "#B58900",
"Objects.Green": "#2AA198",
"Objects.Purple": "#859900",
"Objects.BlackText": "#839496",
"Objects.YellowDark": "#D33682",
"Objects.GreenAndroid": "#2AA198"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "Solarized Dark",
"dark": true,
"author": "Mallowigi",
"editorScheme": "/colors/Solarized Dark.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#586e75",
"background": "#002B36",
"borderColor": "#0D3640",
"disabledBackground": "#083F4D",
"disabledForeground": "#2E5861",
"disabledText": "#2E5861",
"focusColor": "#005a6f",
"focusedBorderColor": "#d33682",
"foreground": "#839496",
"inactiveBackground": "#083F4D",
"inactiveForeground": "#586e75",
"infoForeground": "#586e75",
"selectionBackground": "#2E4C52",
"selectionBackgroundInactive": "#003745",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#003745",
"separatorColor": "#0D3640"
},
"activeCaption": "#002B36",
"ActionButton": {
"hoverBackground": "#d3368250",
"hoverBorderColor": "#d3368250",
"hoverSeparatorColor": "#073642",
"focusedBorderColor": "#d3368250",
"pressedBackground": "#d3368250",
"pressedBorderColor": "#d3368250"
},
"Autocomplete": {
"selectionBackground": "#2E4C52"
},
"Borders.ContrastBorderColor": "#002B36",
"Borders.color": "#0D3640",
"Button": {
"arc": 0,
"background": "#002B36",
"default": {
"endBackground": "#003946",
"endBorderColor": "#003946",
"foreground": "#FFFFFF",
"focusColor": "#d33682",
"focusedBorderColor": "#d33682",
"shadowColor": "#003946",
"startBackground": "#003946",
"startBorderColor": "#003946"
},
"disabledBorderColor": "#073642",
"disabledText": "#2E5861",
"endBackground": "#073642",
"endBorderColor": "#073642",
"focus": "#005a6f",
"focusedBorderColor": "#d33682",
"foreground": "#586e75",
"highlight": "#FFFFFF",
"mt.background": "#073642",
"mt.foreground": "#586e75",
"mt.selectedForeground": "#FFFFFF",
"mt.selection.color1": "#003946",
"mt.selection.color2": "#003946",
"startBackground": "#073642",
"startBorderColor": "#073642",
"shadowColor": "#073642",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#0D3640",
"Tooltip.background": "#2E4C52"
},
"Content.background": "#00252E",
"CheckBox": {
"background": "#002B36",
"disabledText": "#2E5861",
"foreground": "#839496",
"select": "#d33682"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#586e75",
"acceleratorSelectionForeground": "#586e75",
"background": "#002B36",
"disabledBackground": "#002B36",
"disabledForeground": "#2E5861",
"foreground": "#839496",
"selectionBackground": "#2E4C52",
"selectionForeground": "#FFFFFF"
},
"ColorChooser": {
"background": "#002B36",
"foreground": "#839496",
"swatchesDefaultRecentColor": "#839496"
},
"ComboBoxButton.background": "#073642",
"ComboBox": {
"ArrowButton": {
"background": "#073642",
"disabledIconColor": "#2E5861",
"iconColor": "#839496",
"nonEditableBackground": "#002B36"
},
"background": "#002B36",
"buttonBackground": "#073642",
"disabledForeground": "#2E5861",
"foreground": "#839496",
"modifiedItemForeground": "#d33682",
"nonEditableBackground": "#003745",
"padding": "5,5,5,5",
"selectionBackground": "#003946",
"selectionForeground": "#FFFFFF"
},
"ComboPopup.border": "#0D3640",
"CompletionPopup": {
"background": "#003745",
"foreground": "#839496",
"infoForeground": "#586e75",
"matchForeground": "#d33682",
"matchSelectionForeground": "#d33682",
"nonFocusedState": "false",
"selectedGrayedForeground": "#FFFFFF",
"selectionGrayForeground": "#FFFFFF",
"selectionInactiveInfoForeground": "#586e75",
"selectionInactiveBackground": "#2E4C5250",
"selectionBackground": "#2E4C5280",
"selectionForeground": "#FFFFFF",
"selectionInfoForeground": "#FFFFFF"
},
"Component": {
"arc": 4,
"borderColor": "#005a6f",
"disabledBorderColor": "#073642",
"focusColor": "#d33682",
"focusedBorderColor": "#d33682",
"hoverIconColor": "#d33682",
"infoForeground": "#586e75",
"iconColor": "#839496"
},
"control": "#002B36",
"controlText": "#586e75",
"Counter": {
"background": "#d33682",
"foreground": "#FFFFFF"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#586e75",
"changedValueForeground": "#d33682",
"errorMessageForeground": "#268BD2",
"evaluatingExpressionForeground": "#586e75",
"exceptionForeground": "#B58900",
"modifyingValueForeground": "#d33682",
"valueForeground": "#d33682"
}
},
"DebuggerTabs": {
"selectedBackground": "#005a6f",
"underlinedTabBackground": "#005a6f"
},
"DebuggerPopup": {
"borderColor": "#005a6f"
},
"DefaultTabs": {
"background": "#002B36",
"borderColor": "#002B36",
"hoverBackground": "#003946",
"hoverColor": "#002B36",
"hoverMaskColor": "#005a6f",
"inactiveColoredFileBackground": "#073642",
"inactiveUnderlineColor": "#2E5861",
"inactiveMaskColor": "#002B36",
"underlineColor": "#d33682",
"underlinedTabBackground": "#003946"
},
"Desktop.background": "#002B36",
"DialogWrapper.southPanelBackground": "#002B36",
"DialogWrapper.southPanelDivider": "#002B36",
"DragAndDrop": {
"areaBackground": "#002B36",
"areaBorderColor": "#002B36",
"areaForeground": "#839496"
},
"Editor": {
"background": "#002B36",
"foreground": "#839496",
"shortcutForeground": "#586e75"
},
"EditorPane": {
"background": "#002B36",
"caretForeground": "#d33682",
"foreground": "#839496",
"inactiveBackground": "#002B36",
"inactiveForeground": "#2E5861",
"selectionBackground": "#2E4C52",
"selectionForeground": "#FFFFFF"
},
"EditorTabs": {
"borderColor": "#003745",
"hoverColor": "#005a6f",
"hoverMaskColor": "#005a6f",
"inactiveMaskColor": "#002B36",
"inactiveColoredFileBackground": "#002B362",
"inactiveUnderlineColor": "#2E5861",
"selectedForeground": "#839496",
"selectedBackground": "#003946",
"underlineColor": "#d33682",
"underlinedTabBackground": "#003946"
},
"EditorGroupsTabs": {
"background": "#002B36",
"borderColor": "#003745",
"hoverBackground": "#005a6f",
"hoverColor": "#005a6f",
"inactiveUnderlineColor": "#d33682",
"underlineColor": "#d33682",
"underlinedTabBackground": "#003946",
"underlinedTabForeground": "#839496"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#083F4D",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#0D3640",
"FormattedTextField": {
"background": "#002B36",
"caretForeground": "#d33682",
"foreground": "#839496",
"inactiveBackground": "#073642",
"inactiveForeground": "#2E5861",
"selectionForeground": "#FFFFFF",
"selectionBackground": "#003946"
},
"Group": {
"disabledSeparatorColor": "#0D3640",
"separatorColor": "#0D3640"
},
"GutterTooltip": {
"infoForeground": "#839496",
"lineSeparatorColor": "#002B36"
},
"HeaderColor": {
"active": "#002B36",
"inactive": "#00252E"
},
"HelpTooltip": {
"background": "#002B36",
"borderColor": "#0D3640",
"foreground": "#839496",
"infoForeground": "#586e75",
"shortcutForeground": "#586e75"
},
"Hyperlink.linkColor": "#d33682",
"inactiveCaption": "#003745",
"inactiveCaptionBorder": "#002B36",
"inactiveCaptionText": "#586e75",
"info": "#586e75",
"infoText": "#586e75",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#0D3640",
"InplaceRefactoringPopup": {
"borderColor": "#002B36"
},
"InternalFrame": {
"activeTitleForeground": "#839496",
"background": "#002B36",
"inactiveTitleForeground": "#586e75"
},
"Label": {
"background": "#002B36",
"disabledForeground": "#2E5861",
"disabledShadow": "#002B36",
"disabledText": "#2E5861",
"foreground": "#839496",
"infoForeground": "#586e75",
"selectedForeground": "#FFFFFF"
},
"Link": {
"activeForeground": "#d33682",
"hoverForeground": "#d33682",
"pressedForeground": "#d33682",
"secondaryForeground": "#586e75",
"visitedForeground": "#d33682"
},
"link.foreground": "#d33682",
"List": {
"background": "#003745",
"foreground": "#839496",
"selectionBackground": "#2E4C5250",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#2E4C5280"
},
"material": {
"background": "#002B36",
"branchColor": "#839496",
"contrast": "#00252E",
"foreground": "#839496",
"mergeCommits": "#073642",
"primaryColor": "#586e75",
"selectionForeground": "#FFFFFF",
"tab.backgroundColor": "#002B36",
"tab.borderColor": "#d33682",
"tagColor": "#586e75"
},
"MemoryIndicator": {
"allocatedBackground": "#003745",
"usedColor": "#005a6f",
"usedBackground": "#005a6f"
},
"Menu": {
"acceleratorForeground": "#586e75",
"acceleratorSelectionForeground": "#FFFFFF",
"background": "#002B36",
"border": "4,2,4,2",
"borderColor": "#003745",
"disabledBackground": "#003745",
"disabledForeground": "#2E5861",
"foreground": "#839496",
"selectionBackground": "#2E4C52",
"selectionForeground": "#FFFFFF",
"separatorColor": "#0D3640"
},
"MenuBar": {
"background": "#002B36",
"borderColor": "#002B36",
"disabledBackground": "#002B36",
"disabledForeground": "#2E5861",
"foreground": "#839496",
"highlight": "#002B36",
"selectionBackground": "#2E4C52",
"selectionForeground": "#FFFFFF",
"shadow": "#002B36"
},
"MenuItem": {
"acceleratorForeground": "#586e75",
"acceleratorSelectionForeground": "#FFFFFF",
"border": "4,2,4,2",
"background": "#002B36",
"disabledBackground": "#002B36",
"disabledForeground": "#2E5861",
"foreground": "#839496",
"selectionBackground": "#2E4C52",
"selectionForeground": "#FFFFFF"
},
"NavBar": {
"arrowColor": "#839496",
"borderColor": "#002B36"
},
"NewClass": {
"Panel": {
"background": "#002B36"
},
"SearchField": {
"background": "#002B36"
}
},
"NewPSD.warning": "#d33682",
"Notification": {
"background": "#2E4C52",
"borderColor": "#2E4C52",
"errorBackground": "#2E4C52",
"errorBorderColor": "#2E4C52",
"foreground": "#839496",
"MoreButton": {
"background": "#073642",
"foreground": "#839496",
"innerBorderColor": "#073642"
},
"ToolWindow": {
"errorBackground": "#2E4C52",
"errorBorderColor": "#2E4C52",
"informativeBackground": "#2E4C52",
"informativeBorderColor": "#2E4C52",
"warningBackground": "#2E4C52",
"warningBorderColor": "#2E4C52"
}
},
"OnePixelDivider.background": "#0D3640",
"OptionPane": {
"background": "#002B36",
"foreground": "#839496",
"messageForeground": "#839496"
},
"Outline": {
"color": "#073642",
"focusedColor": "#d33682",
"disabledColor": "#2E5861"
},
"Panel": {
"background": "#002B36",
"foreground": "#839496"
},
"ParameterInfo": {
"background": "#003745",
"borderColor": "#003946",
"currentOverloadBackground": "#003946",
"currentParameterForeground": "#d33682",
"disabledForeground": "#2E5861",
"foreground": "#839496",
"infoForeground": "#586e75",
"lineSeparatorColor": "#003946"
},
"PasswordField": {
"background": "#002B36",
"capsLockIconColor": "#d33682",
"caretForeground": "#d33682",
"foreground": "#839496",
"inactiveForeground": "#2E5861",
"selectionBackground": "#003946",
"selectionForeground": "#FFFFFF"
},
"Plugins": {
"background": "#002B36",
"disabledForeground": "#2E5861",
"eapTagBackground": "#005a6f",
"lightSelectionBackground": "#2E4C52",
"paidTagBackground": "#005a6f",
"selectionBackground": "#2E4C52",
"tagForeground": "#d33682",
"tagBackground": "#005a6f",
"trialTagBackground": "#005a6f",
"Button": {
"installBackground": "#073642",
"installBorderColor": "#073642",
"installForeground": "#839496",
"installFocusedBackground": "#005a6f",
"installFillForeground": "#2E5861",
"installFillBackground": "#073642",
"updateBackground": "#073642",
"updateBorderColor": "#073642",
"updateForeground": "#839496"
},
"SearchField": {
"background": "#002B36",
"borderColor": "#0D3640"
},
"SectionHeader": {
"background": "#003745",
"foreground": "#839496"
},
"Tab": {
"hoverBackground": "#003946",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#003946"
}
},
"Popup": {
"Advertiser": {
"background": "#002B36",
"borderColor": "#002B36",
"foreground": "#d33682"
},
"borderColor": "#00252E",
"inactiveBorderColor": "#002B36",
"innerBorderColor": "#003745",
"Header": {
"activeBackground": "#002B36",
"inactiveBackground": "#00252E"
},
"paintBorder": true,
"separatorForeground": "#839496",
"separatorColor": "#003745",
"Toolbar": {
"Floating.background": "#00252E",
"background": "#00252E",
"borderColor": "#00252E"
}
},
"PopupMenu": {
"background": "#002B36",
"border": "2,0,2,0",
"foreground": "#839496",
"translucentBackground": "#002B36"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#002B36",
"foreground": "#d33682",
"indeterminateEndColor": "#d33682",
"indeterminateStartColor": "#d33682",
"progressColor": "#d33682",
"selectionBackground": "#005a6f",
"trackColor": "#005a6f"
},
"PsiViewer": {
"referenceHighlightColor": "#d33682"
},
"RadioButton": {
"background": "#002B36",
"disabledText": "#2E5861",
"foreground": "#839496"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#586e75",
"acceleratorSelectionForeground": "#586e75",
"background": "#002B36",
"disabledBackground": "#002B36",
"disabledForeground": "#2E5861",
"foreground": "#839496",
"selectionBackground": "#2E4C52",
"selectionForeground": "#FFFFFF"
},
"ScrollBar": {
"background": "#002B36",
"hoverThumbBorderColor": "#d33682",
"hoverThumbColor": "#d33682",
"hoverTrackColor": "#002B3630",
"Mac": {
"hoverThumbBorderColor": "#d33682",
"hoverThumbColor": "#d33682",
"hoverTrackColor": "#002B3630",
"thumbBorderColor": "#d3368270",
"thumbColor": "#d3368270",
"trackColor": "#002B3630",
"Transparent": {
"hoverThumbBorderColor": "#d33682",
"hoverThumbColor": "#d33682",
"hoverTrackColor": "#002B3630",
"thumbBorderColor": "#d3368270",
"thumbColor": "#d3368270",
"trackColor": "#002B3630"
}
},
"thumb": "#005a6f",
"thumbBorderColor": "#d3368270",
"thumbColor": "#d3368270",
"trackColor": "#002B3630",
"Transparent": {
"hoverThumbBorderColor": "#d33682",
"hoverThumbColor": "#d33682",
"hoverTrackColor": "#002B3630",
"thumbBorderColor": "#d3368270",
"thumbColor": "#d3368270",
"trackColor": "#002B3630"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#00252E",
"foreground": "#586e75"
},
"Header": {
"background": "#002B36"
},
"List": {
"separatorForeground": "#586e75",
"separatorColor": "#0D3640"
},
"SearchField": {
"background": "#002B36",
"borderColor": "#00252E",
"infoForeground": "#586e75"
},
"Tab": {
"active.foreground": "#FFFFFF",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#005a6f"
}
},
"SearchMatch": {
"endBackground": "#d33682",
"startBackground": "#d33682"
},
"SearchField.errorBackground": "#2E4C52",
"Separator": {
"background": "#003745",
"foreground": "#003745",
"separatorColor": "#003745"
},
"SidePanel": {
"background": "#002B36"
},
"Slider": {
"background": "#002B36",
"buttonBorderColor": "#d33682",
"buttonColor": "#d33682",
"foreground": "#839496",
"majorTickLength": 6,
"tickColor": "#003745",
"trackColor": "#003946",
"trackWidth": 7,
"thumb": "#d33682"
},
"SpeedSearch": {
"background": "#005a6f",
"borderColor": "#0D3640",
"foreground": "#839496",
"errorForeground": "#839496"
},
"Spinner": {
"background": "#002B36",
"border": "3,3,3,3",
"foreground": "#839496",
"selectionForeground": "#FFFFFF"
},
"SplitPane": {
"background": "#002B36",
"highlight": "#002B36"
},
"SplitPaneDivider.draggingColor": "#003745",
"StatusBar": {
"borderColor": "#002B36"
},
"TabbedPane": {
"background": "#002B36",
"contentAreaColor": "#005a6f",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#0D3640",
"disabledForeground": "#2E5861",
"disabledUnderlineColor": "#2E5861",
"focus": "#003946",
"focusColor": "#003946",
"fontSizeOffset": 0,
"foreground": "#839496",
"highlight": "#0D3640",
"hoverColor": "#005a6f",
"labelShift": 0,
"selectedForeground": "#FFFFFF",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#d33682"
},
"TabbedPane.mt.tab.background": "#002B36",
"Table": {
"background": "#002B36",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#d33682",
"dropLineShortColor": "#d33682",
"focusCellBackground": "#003946",
"focusCellForeground": "#FFFFFF",
"foreground": "#839496",
"gridColor": "#002B36",
"highlightOuter": "#003946",
"lightSelectionForeground": "#FFFFFF",
"lightSelectionInactiveForeground": "#586e75",
"lightSelectionInactiveBackground": "#003745",
"selectionBackground": "#003946",
"selectionForeground": "#FFFFFF",
"selectionInactiveBackground": "#003946",
"selectionInactiveForeground": "#FFFFFF",
"sortIconColor": "#839496",
"stripeColor": "#00252E"
},
"TableHeader": {
"background": "#002B36",
"borderColor": "#002B36",
"bottomSeparatorColor": "#003745",
"cellBorder": "4,0,4,0",
"disabledForeground": "#2E5861",
"foreground": "#839496",
"focusCellBackground": "#003946",
"focusCellForeground": "#FFFFFF",
"height": 25,
"separatorColor": "#003745"
},
"text": "#586e75",
"textInactiveText": "#586e75",
"textText": "#586e75",
"TextArea": {
"background": "#002B36",
"caretForeground": "#d33682",
"foreground": "#839496",
"inactiveForeground": "#2E5861",
"selectionBackground": "#003946",
"selectionForeground": "#FFFFFF"
},
"TextField": {
"background": "#002B36",
"caretForeground": "#d33682",
"foreground": "#839496",
"inactiveForeground": "#2E5861",
"selectionBackground": "#003946",
"selectionForeground": "#FFFFFF"
},
"TextPane": {
"background": "#002B36",
"caretForeground": "#d33682",
"foreground": "#839496",
"inactiveForeground": "#2E5861",
"selectionBackground": "#003946",
"selectionForeground": "#FFFFFF"
},
"TitlePane": {
"background": "#00252E",
"Button.hoverBackground": "#005a6f",
"inactiveBackground": "#002B36",
"infoForeground": "#586e75",
"inactiveInfoForeground": "#586e75"
},
"TitledBorder.titleColor": "#839496",
"ToggleButton": {
"borderColor": "#073642",
"buttonColor": "#839496",
"disabledText": "#2E5861",
"foreground": "#839496",
"offForeground": "#002B36",
"offBackground": "#002B36",
"onBackground": "#d33682",
"onForeground": "#d33682"
},
"ToolBar": {
"background": "#002B36",
"borderHandleColor": "#586e75",
"floatingForeground": "#586e75",
"foreground": "#839496"
},
"ToolTip": {
"Actions.background": "#002B36",
"Actions.infoForeground": "#586e75",
"background": "#002B36",
"borderColor": "#005a6f",
"foreground": "#839496",
"infoForeground": "#586e75",
"separatorColor": "#0D3640",
"shortcutForeground": "#586e75"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#003946",
"selectedForeground": "#FFFFFF",
"selectedBackground": "#00252E"
},
"Header": {
"background": "#002B36",
"borderColor": "#003745",
"inactiveBackground": "#002B36"
},
"HeaderCloseButton": {
"background": "#002B36"
},
"HeaderTab": {
"hoverBackground": "#005a6f",
"hoverInactiveBackground": "#003745",
"inactiveUnderlineColor": "#d33682",
"selectedBackground": "#00252E",
"selectedInactiveBackground": "#00252E",
"underlineColor": "#d33682",
"underlinedTabBackground": "#005a6f",
"underlinedTabInactiveBackground": "#003745"
}
},
"Tree": {
"background": "#002B36",
"foreground": "#586e75",
"hash": "#0D3640",
"modifiedItemForeground": "#d33682",
"rowHeight": 28,
"selectionBackground": "#2E4C5280",
"selectionForeground": "#FFFFFF",
"selectionInactiveForeground": "#FFFFFF",
"selectionInactiveBackground": "#2E4C5280",
"textBackground": "#002B36"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#0D3640",
"ColorPicker.background": "#002B36",
"ColorPicker.foreground": "#839496",
"Component.borderColor": "#0D3640",
"Component.background": "#002B36",
"Component.foreground": "#839496",
"Connector.borderColor": "#0D3640",
"Connector.hoverBorderColor": "#005a6f",
"Canvas.background": "#00252E",
"highStroke.foreground": "#839496",
"Label.foreground": "#586e75",
"List.selectionBackground": "#2E4C5280",
"Panel.borderColor": "#0D3640",
"Panel.background": "#002B36",
"percent.foreground": "#839496",
"Placeholder.background": "#002B36",
"Placeholder.borderColor": "#0D3640",
"Placeholder.foreground": "#839496",
"Placeholder.selectedForeground": "#FFFFFF",
"Preview.background": "#002B36",
"stroke.acceleratorForeground": "#586e75"
},
"ValidationTooltip": {
"errorBackground": "#2E4C52",
"errorBorderColor": "#2E4C52",
"warningBackground": "#2E4C52",
"warningBorderColor": "#2E4C52"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#002B36"
},
"GitCommits": {
"graphColor": "#005a6f"
},
"GitLog": {
"localBranchIconColor": "#d33682",
"otherIconColor": "#586e75",
"remoteBranchIconColor": "#839496",
"tagIconColor": "#586e75"
},
"HgLog": {
"branchIconColor": "#d33682",
"bookmarkIconColor": "#FFFFFF",
"closedBranchIconColor": "#2E5861",
"localTagIconColor": "#586e75",
"mqTagIconColor": "#586e75",
"tagIconColor": "#586e75",
"tipIconColor": "#586e75"
},
"Log": {
"Commit.unmatchedForeground": "#586e75",
"Commit.currentBranchBackground": "#003745"
},
"RefLabel": {
"foreground": "#FFFFFF",
"backgroundBase": "#005a6f"
}
},
"Viewport": {
"background": "#002B36",
"foreground": "#839496"
},
"WelcomeScreen": {
"background": "#002B36",
"borderColor": "#002B36",
"captionBackground": "#00252E",
"captionForeground": "#839496",
"footerBackground": "#00252E",
"footerForeground": "#839496",
"headerBackground": "#002B36",
"headerForeground": "#839496",
"separatorColor": "#0D3640",
"Projects": {
"background": "#003745",
"selectionBackground": "#2E4C52",
"selectionInactiveBackground": "#003745"
}
},
"window": "#002B36",
"windowBorder": "#0D3640",
"windowText": "#586e75",
"Window.border": "#0D3640"
},
"icons": {
"ColorPalette": {
"#43494A": "#00252E",
"#6B6B6B": "#586e75",
"#A7A7A7": "#002B36",
"#3D6185": "#d33682",
"#466D94": "#d33682",
"#3C3F41": "#002B36",
"#545556": "#2E5861",
"#606060": "#2E5861",
"#9AA7B0": "#839496",
"#675133": "#d33682",
"Actions.Blue": "#B58900",
"Actions.Green": "#2AA198",
"Actions.Grey": "#586e75",
"Actions.GreyInline": "#657B83",
"Actions.GreyInline.Dark": "#839496",
"Actions.Red": "#268BD2",
"Actions.Yellow": "#B58900",
"Checkbox.Background.Default": "#00252E",
"Checkbox.Background.Default.Dark": "#00252E",
"Checkbox.Background.Disabled": "#083F4D",
"Checkbox.Background.Disabled.Dark": "#083F4D",
"Checkbox.Border.Default": "#0D3640",
"Checkbox.Border.Default.Dark": "#0D3640",
"Checkbox.Border.Disabled": "#2E5861",
"Checkbox.Border.Disabled.Dark": "#2E5861",
"Checkbox.Focus.Thin.Default": "#d33682",
"Checkbox.Focus.Thin.Default.Dark": "#d33682",
"Checkbox.Focus.Wide": "#d33682",
"Checkbox.Focus.Wide.Dark": "#d33682",
"Checkbox.Foreground.Disabled": "#2E5861",
"Checkbox.Foreground.Disabled.Dark": "#2E5861",
"Checkbox.Background.Selected": "#d33682",
"Checkbox.Background.Selected.Dark": "#002B36",
"Checkbox.Border.Selected": "#d33682",
"Checkbox.Border.Selected.Dark": "#d33682",
"Checkbox.Foreground.Selected": "#d33682",
"Checkbox.Foreground.Selected.Dark": "#d33682",
"Checkbox.Focus.Thin.Selected": "#839496",
"Checkbox.Focus.Thin.Selected.Dark": "#839496",
"Objects.Grey": "#657B83",
"Objects.Blue": "#B58900",
"Objects.RedStatus": "#268BD2",
"Objects.Red": "#268BD2",
"Objects.Pink": "#859900",
"Objects.Yellow": "#B58900",
"Objects.Green": "#2AA198",
"Objects.Purple": "#859900",
"Objects.BlackText": "#839496",
"Objects.YellowDark": "#D33682",
"Objects.GreenAndroid": "#2AA198"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "Material Solarized Light Contrast",
"dark": false,
"author": "Mallowigi",
"editorScheme": "/colors/Solarized Light.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#93a1a1",
"background": "#fdf6e3",
"borderColor": "#edead9",
"disabledBackground": "#E3DCC9",
"disabledForeground": "#C9CCC3",
"disabledText": "#C9CCC3",
"focusColor": "#d1cbb8",
"focusedBorderColor": "#d33682",
"foreground": "#586e75",
"inactiveBackground": "#E3DCC9",
"inactiveForeground": "#93a1a1",
"infoForeground": "#93a1a1",
"selectionBackground": "#e8dcb6",
"selectionBackgroundInactive": "#F6F0DE",
"selectionForeground": "#002b36",
"selectionInactiveBackground": "#F6F0DE",
"separatorColor": "#edead9"
},
"activeCaption": "#fdf6e3",
"ActionButton": {
"hoverBackground": "#d3368250",
"hoverBorderColor": "#d3368250",
"hoverSeparatorColor": "#d8d4c4",
"focusedBorderColor": "#d3368250",
"pressedBackground": "#d3368250",
"pressedBorderColor": "#d3368250"
},
"Autocomplete": {
"selectionBackground": "#e8dcb6"
},
"Borders.ContrastBorderColor": "#fdf6e3",
"Borders.color": "#edead9",
"Button": {
"arc": 0,
"background": "#fdf6e3",
"default": {
"endBackground": "#d1cbb8",
"endBorderColor": "#d1cbb8",
"foreground": "#002b36",
"focusColor": "#d33682",
"focusedBorderColor": "#d33682",
"shadowColor": "#d1cbb8",
"startBackground": "#d1cbb8",
"startBorderColor": "#d1cbb8"
},
"disabledBorderColor": "#d8d4c4",
"disabledText": "#C9CCC3",
"endBackground": "#d8d4c4",
"endBorderColor": "#d8d4c4",
"focus": "#d1cbb8",
"focusedBorderColor": "#d33682",
"foreground": "#93a1a1",
"highlight": "#002b36",
"mt.background": "#d8d4c4",
"mt.foreground": "#93a1a1",
"mt.selectedForeground": "#002b36",
"mt.selection.color1": "#d1cbb8",
"mt.selection.color2": "#d1cbb8",
"startBackground": "#d8d4c4",
"startBorderColor": "#d8d4c4",
"shadowColor": "#d8d4c4",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#edead9",
"Tooltip.background": "#EDE8D4"
},
"Content.background": "#eee8d5",
"CheckBox": {
"background": "#fdf6e3",
"disabledText": "#C9CCC3",
"foreground": "#586e75",
"select": "#d33682"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#93a1a1",
"acceleratorSelectionForeground": "#93a1a1",
"background": "#fdf6e3",
"disabledBackground": "#fdf6e3",
"disabledForeground": "#C9CCC3",
"foreground": "#586e75",
"selectionBackground": "#e8dcb6",
"selectionForeground": "#002b36"
},
"ColorChooser": {
"background": "#fdf6e3",
"foreground": "#586e75",
"swatchesDefaultRecentColor": "#586e75"
},
"ComboBoxButton.background": "#d8d4c4",
"ComboBox": {
"ArrowButton": {
"background": "#d8d4c4",
"disabledIconColor": "#C9CCC3",
"iconColor": "#586e75",
"nonEditableBackground": "#fdf6e3"
},
"background": "#eee8d5",
"buttonBackground": "#d8d4c4",
"disabledForeground": "#C9CCC3",
"foreground": "#586e75",
"modifiedItemForeground": "#d33682",
"nonEditableBackground": "#F6F0DE",
"padding": "5,5,5,5",
"selectionBackground": "#d1cbb8",
"selectionForeground": "#002b36"
},
"ComboPopup.border": "#edead9",
"CompletionPopup": {
"background": "#F6F0DE",
"foreground": "#586e75",
"infoForeground": "#93a1a1",
"matchForeground": "#d33682",
"matchSelectionForeground": "#d33682",
"nonFocusedState": "false",
"selectedGrayedForeground": "#002b36",
"selectionGrayForeground": "#002b36",
"selectionInactiveInfoForeground": "#93a1a1",
"selectionInactiveBackground": "#e8dcb650",
"selectionBackground": "#e8dcb680",
"selectionForeground": "#002b36",
"selectionInfoForeground": "#002b36"
},
"Component": {
"arc": 4,
"borderColor": "#d1cbb8",
"disabledBorderColor": "#d8d4c4",
"focusColor": "#d33682",
"focusedBorderColor": "#d33682",
"hoverIconColor": "#d33682",
"infoForeground": "#93a1a1",
"iconColor": "#586e75"
},
"control": "#fdf6e3",
"controlText": "#93a1a1",
"Counter": {
"background": "#d33682",
"foreground": "#002b36"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#93a1a1",
"changedValueForeground": "#d33682",
"errorMessageForeground": "#268BD2",
"evaluatingExpressionForeground": "#93a1a1",
"exceptionForeground": "#657B83",
"modifyingValueForeground": "#d33682",
"valueForeground": "#d33682"
}
},
"DebuggerTabs": {
"selectedBackground": "#d1cbb8",
"underlinedTabBackground": "#d1cbb8"
},
"DebuggerPopup": {
"borderColor": "#d1cbb8"
},
"DefaultTabs": {
"background": "#fdf6e3",
"borderColor": "#fdf6e3",
"hoverBackground": "#d1cbb8",
"hoverColor": "#eee8d5",
"hoverMaskColor": "#d1cbb8",
"inactiveColoredFileBackground": "#d8d4c4",
"inactiveUnderlineColor": "#C9CCC3",
"inactiveMaskColor": "#eee8d5",
"underlineColor": "#d33682",
"underlinedTabBackground": "#d1cbb8"
},
"Desktop.background": "#fdf6e3",
"DialogWrapper.southPanelBackground": "#fdf6e3",
"DialogWrapper.southPanelDivider": "#fdf6e3",
"DragAndDrop": {
"areaBackground": "#fdf6e3",
"areaBorderColor": "#fdf6e3",
"areaForeground": "#586e75"
},
"Editor": {
"background": "#eee8d5",
"foreground": "#586e75",
"shortcutForeground": "#93a1a1"
},
"EditorPane": {
"background": "#eee8d5",
"caretForeground": "#d33682",
"foreground": "#586e75",
"inactiveBackground": "#fdf6e3",
"inactiveForeground": "#C9CCC3",
"selectionBackground": "#e8dcb6",
"selectionForeground": "#002b36"
},
"EditorTabs": {
"borderColor": "#F6F0DE",
"hoverColor": "#d1cbb8",
"hoverMaskColor": "#d1cbb8",
"inactiveMaskColor": "#fdf6e3",
"inactiveColoredFileBackground": "#fdf6e32",
"inactiveUnderlineColor": "#C9CCC3",
"selectedForeground": "#586e75",
"selectedBackground": "#d1cbb8",
"underlineColor": "#d33682",
"underlinedTabBackground": "#d1cbb8"
},
"EditorGroupsTabs": {
"background": "#fdf6e3",
"borderColor": "#F6F0DE",
"hoverBackground": "#d1cbb8",
"hoverColor": "#d1cbb8",
"inactiveUnderlineColor": "#d33682",
"underlineColor": "#d33682",
"underlinedTabBackground": "#d1cbb8",
"underlinedTabForeground": "#586e75"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#E3DCC9",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#edead9",
"FormattedTextField": {
"background": "#eee8d5",
"caretForeground": "#d33682",
"foreground": "#586e75",
"inactiveBackground": "#d8d4c4",
"inactiveForeground": "#C9CCC3",
"selectionForeground": "#002b36",
"selectionBackground": "#d1cbb8"
},
"Group": {
"disabledSeparatorColor": "#edead9",
"separatorColor": "#edead9"
},
"GutterTooltip": {
"infoForeground": "#586e75",
"lineSeparatorColor": "#fdf6e3"
},
"HeaderColor": {
"active": "#fdf6e3",
"inactive": "#eee8d5"
},
"HelpTooltip": {
"background": "#fdf6e3",
"borderColor": "#edead9",
"foreground": "#586e75",
"infoForeground": "#93a1a1",
"shortcutForeground": "#93a1a1"
},
"Hyperlink.linkColor": "#d33682",
"inactiveCaption": "#F6F0DE",
"inactiveCaptionBorder": "#fdf6e3",
"inactiveCaptionText": "#93a1a1",
"info": "#93a1a1",
"infoText": "#93a1a1",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#edead9",
"InplaceRefactoringPopup": {
"borderColor": "#fdf6e3"
},
"InternalFrame": {
"activeTitleForeground": "#586e75",
"background": "#fdf6e3",
"inactiveTitleForeground": "#93a1a1"
},
"Label": {
"background": "#fdf6e3",
"disabledForeground": "#C9CCC3",
"disabledShadow": "#fdf6e3",
"disabledText": "#C9CCC3",
"foreground": "#586e75",
"infoForeground": "#93a1a1",
"selectedForeground": "#002b36"
},
"Link": {
"activeForeground": "#d33682",
"hoverForeground": "#d33682",
"pressedForeground": "#d33682",
"secondaryForeground": "#93a1a1",
"visitedForeground": "#d33682"
},
"link.foreground": "#d33682",
"List": {
"background": "#F6F0DE",
"foreground": "#586e75",
"selectionBackground": "#e8dcb650",
"selectionForeground": "#002b36",
"selectionInactiveForeground": "#002b36",
"selectionInactiveBackground": "#e8dcb6b0"
},
"material": {
"background": "#fdf6e3",
"branchColor": "#586e75",
"contrast": "#eee8d5",
"foreground": "#586e75",
"mergeCommits": "#d8d4c4",
"primaryColor": "#93a1a1",
"selectionForeground": "#002b36",
"tab.backgroundColor": "#fdf6e3",
"tab.borderColor": "#d33682",
"tagColor": "#93a1a1"
},
"MemoryIndicator": {
"allocatedBackground": "#F6F0DE",
"usedColor": "#d1cbb8",
"usedBackground": "#d1cbb8"
},
"Menu": {
"acceleratorForeground": "#93a1a1",
"acceleratorSelectionForeground": "#002b36",
"background": "#fdf6e3",
"border": "4,2,4,2",
"borderColor": "#F6F0DE",
"disabledBackground": "#F6F0DE",
"disabledForeground": "#C9CCC3",
"foreground": "#586e75",
"selectionBackground": "#e8dcb6",
"selectionForeground": "#002b36",
"separatorColor": "#edead9"
},
"MenuBar": {
"background": "#eee8d5",
"borderColor": "#fdf6e3",
"disabledBackground": "#fdf6e3",
"disabledForeground": "#C9CCC3",
"foreground": "#586e75",
"highlight": "#fdf6e3",
"selectionBackground": "#e8dcb6",
"selectionForeground": "#002b36",
"shadow": "#eee8d5"
},
"MenuItem": {
"acceleratorForeground": "#93a1a1",
"acceleratorSelectionForeground": "#002b36",
"border": "4,2,4,2",
"background": "#fdf6e3",
"disabledBackground": "#fdf6e3",
"disabledForeground": "#C9CCC3",
"foreground": "#586e75",
"selectionBackground": "#e8dcb6",
"selectionForeground": "#002b36"
},
"NavBar": {
"arrowColor": "#586e75",
"borderColor": "#fdf6e3"
},
"NewClass": {
"Panel": {
"background": "#fdf6e3"
},
"SearchField": {
"background": "#eee8d5"
}
},
"NewPSD.warning": "#d33682",
"Notification": {
"background": "#EDE8D4",
"borderColor": "#EDE8D4",
"errorBackground": "#EDE8D4",
"errorBorderColor": "#EDE8D4",
"foreground": "#586e75",
"MoreButton": {
"background": "#d8d4c4",
"foreground": "#586e75",
"innerBorderColor": "#d8d4c4"
},
"ToolWindow": {
"errorBackground": "#EDE8D4",
"errorBorderColor": "#EDE8D4",
"informativeBackground": "#EDE8D4",
"informativeBorderColor": "#EDE8D4",
"warningBackground": "#EDE8D4",
"warningBorderColor": "#EDE8D4"
}
},
"OnePixelDivider.background": "#edead9",
"OptionPane": {
"background": "#fdf6e3",
"foreground": "#586e75",
"messageForeground": "#586e75"
},
"Outline": {
"color": "#d8d4c4",
"focusedColor": "#d33682",
"disabledColor": "#C9CCC3"
},
"Panel": {
"background": "#fdf6e3",
"foreground": "#586e75"
},
"ParameterInfo": {
"background": "#F6F0DE",
"borderColor": "#d1cbb8",
"currentOverloadBackground": "#d1cbb8",
"currentParameterForeground": "#d33682",
"disabledForeground": "#C9CCC3",
"foreground": "#586e75",
"infoForeground": "#93a1a1",
"lineSeparatorColor": "#d1cbb8"
},
"PasswordField": {
"background": "#eee8d5",
"capsLockIconColor": "#d33682",
"caretForeground": "#d33682",
"foreground": "#586e75",
"inactiveForeground": "#C9CCC3",
"selectionBackground": "#d1cbb8",
"selectionForeground": "#002b36"
},
"Plugins": {
"background": "#fdf6e3",
"disabledForeground": "#C9CCC3",
"eapTagBackground": "#d1cbb8",
"lightSelectionBackground": "#e8dcb6",
"paidTagBackground": "#d1cbb8",
"selectionBackground": "#e8dcb6",
"tagForeground": "#d33682",
"tagBackground": "#d1cbb8",
"trialTagBackground": "#d1cbb8",
"Button": {
"installBackground": "#d8d4c4",
"installBorderColor": "#d8d4c4",
"installForeground": "#586e75",
"installFocusedBackground": "#d1cbb8",
"installFillForeground": "#C9CCC3",
"installFillBackground": "#d8d4c4",
"updateBackground": "#d8d4c4",
"updateBorderColor": "#d8d4c4",
"updateForeground": "#586e75"
},
"SearchField": {
"background": "#eee8d5",
"borderColor": "#edead9"
},
"SectionHeader": {
"background": "#F6F0DE",
"foreground": "#586e75"
},
"Tab": {
"hoverBackground": "#d1cbb8",
"selectedForeground": "#002b36",
"selectedBackground": "#d1cbb8"
}
},
"Popup": {
"Advertiser": {
"background": "#fdf6e3",
"borderColor": "#fdf6e3",
"foreground": "#d33682"
},
"borderColor": "#eee8d5",
"inactiveBorderColor": "#fdf6e3",
"innerBorderColor": "#F6F0DE",
"Header": {
"activeBackground": "#fdf6e3",
"inactiveBackground": "#eee8d5"
},
"paintBorder": true,
"separatorForeground": "#586e75",
"separatorColor": "#F6F0DE",
"Toolbar": {
"Floating.background": "#eee8d5",
"background": "#eee8d5",
"borderColor": "#eee8d5"
}
},
"PopupMenu": {
"background": "#fdf6e3",
"border": "2,0,2,0",
"foreground": "#586e75",
"translucentBackground": "#fdf6e3"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#fdf6e3",
"foreground": "#d33682",
"indeterminateEndColor": "#d33682",
"indeterminateStartColor": "#d33682",
"progressColor": "#d33682",
"selectionBackground": "#d1cbb8",
"trackColor": "#d1cbb8"
},
"PsiViewer": {
"referenceHighlightColor": "#d33682"
},
"RadioButton": {
"background": "#fdf6e3",
"disabledText": "#C9CCC3",
"foreground": "#586e75"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#93a1a1",
"acceleratorSelectionForeground": "#93a1a1",
"background": "#fdf6e3",
"disabledBackground": "#fdf6e3",
"disabledForeground": "#C9CCC3",
"foreground": "#586e75",
"selectionBackground": "#e8dcb6",
"selectionForeground": "#002b36"
},
"ScrollBar": {
"background": "#fdf6e3",
"hoverThumbBorderColor": "#d33682",
"hoverThumbColor": "#d33682",
"hoverTrackColor": "#fdf6e330",
"Mac": {
"hoverThumbBorderColor": "#d33682",
"hoverThumbColor": "#d33682",
"hoverTrackColor": "#fdf6e330",
"thumbBorderColor": "#d3368270",
"thumbColor": "#d3368270",
"trackColor": "#fdf6e330",
"Transparent": {
"hoverThumbBorderColor": "#d33682",
"hoverThumbColor": "#d33682",
"hoverTrackColor": "#fdf6e330",
"thumbBorderColor": "#d3368270",
"thumbColor": "#d3368270",
"trackColor": "#fdf6e330"
}
},
"thumb": "#d1cbb8",
"thumbBorderColor": "#d3368270",
"thumbColor": "#d3368270",
"trackColor": "#fdf6e330",
"Transparent": {
"hoverThumbBorderColor": "#d33682",
"hoverThumbColor": "#d33682",
"hoverTrackColor": "#fdf6e330",
"thumbBorderColor": "#d3368270",
"thumbColor": "#d3368270",
"trackColor": "#fdf6e330"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#eee8d5",
"foreground": "#93a1a1"
},
"Header": {
"background": "#fdf6e3"
},
"List": {
"separatorForeground": "#93a1a1",
"separatorColor": "#edead9"
},
"SearchField": {
"background": "#fdf6e3",
"borderColor": "#eee8d5",
"infoForeground": "#93a1a1"
},
"Tab": {
"active.foreground": "#002b36",
"selectedForeground": "#002b36",
"selectedBackground": "#d1cbb8"
}
},
"SearchMatch": {
"endBackground": "#d33682",
"startBackground": "#d33682"
},
"SearchField.errorBackground": "#EDE8D4",
"Separator": {
"background": "#F6F0DE",
"foreground": "#F6F0DE",
"separatorColor": "#F6F0DE"
},
"SidePanel": {
"background": "#eee8d5"
},
"Slider": {
"background": "#fdf6e3",
"buttonBorderColor": "#d33682",
"buttonColor": "#d33682",
"foreground": "#586e75",
"majorTickLength": 6,
"tickColor": "#F6F0DE",
"trackColor": "#d1cbb8",
"trackWidth": 7,
"thumb": "#d33682"
},
"SpeedSearch": {
"background": "#d1cbb8",
"borderColor": "#edead9",
"foreground": "#586e75",
"errorForeground": "#586e75"
},
"Spinner": {
"background": "#fdf6e3",
"border": "3,3,3,3",
"foreground": "#586e75",
"selectionForeground": "#002b36"
},
"SplitPane": {
"background": "#fdf6e3",
"highlight": "#eee8d5"
},
"SplitPaneDivider.draggingColor": "#F6F0DE",
"StatusBar": {
"borderColor": "#fdf6e3"
},
"TabbedPane": {
"background": "#fdf6e3",
"contentAreaColor": "#d1cbb8",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#edead9",
"disabledForeground": "#C9CCC3",
"disabledUnderlineColor": "#C9CCC3",
"focus": "#d1cbb8",
"focusColor": "#d1cbb8",
"fontSizeOffset": 0,
"foreground": "#586e75",
"highlight": "#edead9",
"hoverColor": "#d1cbb8",
"labelShift": 0,
"selectedForeground": "#002b36",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#d33682"
},
"TabbedPane.mt.tab.background": "#eee8d5",
"Table": {
"background": "#fdf6e3",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#d33682",
"dropLineShortColor": "#d33682",
"focusCellBackground": "#d1cbb8",
"focusCellForeground": "#002b36",
"foreground": "#586e75",
"gridColor": "#fdf6e3",
"highlightOuter": "#d1cbb8",
"lightSelectionForeground": "#002b36",
"lightSelectionInactiveForeground": "#93a1a1",
"lightSelectionInactiveBackground": "#F6F0DE",
"selectionBackground": "#d1cbb8",
"selectionForeground": "#002b36",
"selectionInactiveBackground": "#d1cbb8",
"selectionInactiveForeground": "#002b36",
"sortIconColor": "#586e75",
"stripeColor": "#eee8d5"
},
"TableHeader": {
"background": "#fdf6e3",
"borderColor": "#fdf6e3",
"bottomSeparatorColor": "#F6F0DE",
"cellBorder": "4,0,4,0",
"disabledForeground": "#C9CCC3",
"foreground": "#586e75",
"focusCellBackground": "#d1cbb8",
"focusCellForeground": "#002b36",
"height": 25,
"separatorColor": "#F6F0DE"
},
"text": "#93a1a1",
"textInactiveText": "#93a1a1",
"textText": "#93a1a1",
"TextArea": {
"background": "#eee8d5",
"caretForeground": "#d33682",
"foreground": "#586e75",
"inactiveForeground": "#C9CCC3",
"selectionBackground": "#d1cbb8",
"selectionForeground": "#002b36"
},
"TextField": {
"background": "#eee8d5",
"caretForeground": "#d33682",
"foreground": "#586e75",
"inactiveForeground": "#C9CCC3",
"selectionBackground": "#d1cbb8",
"selectionForeground": "#002b36"
},
"TextPane": {
"background": "#eee8d5",
"caretForeground": "#d33682",
"foreground": "#586e75",
"inactiveForeground": "#C9CCC3",
"selectionBackground": "#d1cbb8",
"selectionForeground": "#002b36"
},
"TitlePane": {
"background": "#eee8d5",
"Button.hoverBackground": "#d1cbb8",
"inactiveBackground": "#fdf6e3",
"infoForeground": "#93a1a1",
"inactiveInfoForeground": "#93a1a1"
},
"TitledBorder.titleColor": "#586e75",
"ToggleButton": {
"borderColor": "#d8d4c4",
"buttonColor": "#586e75",
"disabledText": "#C9CCC3",
"foreground": "#586e75",
"offForeground": "#fdf6e3",
"offBackground": "#fdf6e3",
"onBackground": "#d33682",
"onForeground": "#d33682"
},
"ToolBar": {
"background": "#eee8d5",
"borderHandleColor": "#93a1a1",
"floatingForeground": "#93a1a1",
"foreground": "#586e75"
},
"ToolTip": {
"Actions.background": "#fdf6e3",
"Actions.infoForeground": "#93a1a1",
"background": "#fdf6e3",
"borderColor": "#d1cbb8",
"foreground": "#586e75",
"infoForeground": "#93a1a1",
"separatorColor": "#edead9",
"shortcutForeground": "#93a1a1"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#d1cbb8",
"selectedForeground": "#002b36",
"selectedBackground": "#eee8d5"
},
"Header": {
"background": "#fdf6e3",
"borderColor": "#F6F0DE",
"inactiveBackground": "#fdf6e3"
},
"HeaderCloseButton": {
"background": "#fdf6e3"
},
"HeaderTab": {
"hoverBackground": "#d1cbb8",
"hoverInactiveBackground": "#F6F0DE",
"inactiveUnderlineColor": "#d33682",
"selectedBackground": "#eee8d5",
"selectedInactiveBackground": "#eee8d5",
"underlineColor": "#d33682",
"underlinedTabBackground": "#d1cbb8",
"underlinedTabInactiveBackground": "#F6F0DE"
}
},
"Tree": {
"background": "#eee8d5",
"foreground": "#93a1a1",
"hash": "#edead9",
"modifiedItemForeground": "#d33682",
"rowHeight": 28,
"selectionBackground": "#e8dcb6b0",
"selectionForeground": "#002b36",
"selectionInactiveForeground": "#002b36",
"selectionInactiveBackground": "#e8dcb6b0",
"textBackground": "#eee8d5"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#edead9",
"ColorPicker.background": "#fdf6e3",
"ColorPicker.foreground": "#586e75",
"Component.borderColor": "#edead9",
"Component.background": "#fdf6e3",
"Component.foreground": "#586e75",
"Connector.borderColor": "#edead9",
"Connector.hoverBorderColor": "#d1cbb8",
"Canvas.background": "#eee8d5",
"highStroke.foreground": "#586e75",
"Label.foreground": "#93a1a1",
"List.selectionBackground": "#e8dcb6b0",
"Panel.borderColor": "#edead9",
"Panel.background": "#fdf6e3",
"percent.foreground": "#586e75",
"Placeholder.background": "#fdf6e3",
"Placeholder.borderColor": "#edead9",
"Placeholder.foreground": "#586e75",
"Placeholder.selectedForeground": "#002b36",
"Preview.background": "#fdf6e3",
"stroke.acceleratorForeground": "#93a1a1"
},
"ValidationTooltip": {
"errorBackground": "#EDE8D4",
"errorBorderColor": "#EDE8D4",
"warningBackground": "#EDE8D4",
"warningBorderColor": "#EDE8D4"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#fdf6e3"
},
"GitCommits": {
"graphColor": "#d1cbb8"
},
"GitLog": {
"localBranchIconColor": "#d33682",
"otherIconColor": "#93a1a1",
"remoteBranchIconColor": "#586e75",
"tagIconColor": "#93a1a1"
},
"HgLog": {
"branchIconColor": "#d33682",
"bookmarkIconColor": "#002b36",
"closedBranchIconColor": "#C9CCC3",
"localTagIconColor": "#93a1a1",
"mqTagIconColor": "#93a1a1",
"tagIconColor": "#93a1a1",
"tipIconColor": "#93a1a1"
},
"Log": {
"Commit.unmatchedForeground": "#93a1a1",
"Commit.currentBranchBackground": "#F6F0DE"
},
"RefLabel": {
"foreground": "#002b36",
"backgroundBase": "#d1cbb8"
}
},
"Viewport": {
"background": "#eee8d5",
"foreground": "#586e75"
},
"WelcomeScreen": {
"background": "#fdf6e3",
"borderColor": "#fdf6e3",
"captionBackground": "#eee8d5",
"captionForeground": "#586e75",
"footerBackground": "#eee8d5",
"footerForeground": "#586e75",
"headerBackground": "#fdf6e3",
"headerForeground": "#586e75",
"separatorColor": "#edead9",
"Projects": {
"background": "#F6F0DE",
"selectionBackground": "#e8dcb6",
"selectionInactiveBackground": "#F6F0DE"
}
},
"window": "#eee8d5",
"windowBorder": "#edead9",
"windowText": "#93a1a1",
"Window.border": "#edead9"
},
"icons": {
"ColorPalette": {
"#43494A": "#eee8d5",
"#6B6B6B": "#93a1a1",
"#A7A7A7": "#fdf6e3",
"#3D6185": "#d33682",
"#466D94": "#d33682",
"#3C3F41": "#fdf6e3",
"#545556": "#C9CCC3",
"#606060": "#C9CCC3",
"#9AA7B0": "#586e75",
"#675133": "#d33682",
"Actions.Blue": "#B58900",
"Actions.Green": "#2AA198",
"Actions.Grey": "#93a1a1",
"Actions.GreyInline": "#93A1A1",
"Actions.GreyInline.Dark": "#586e75",
"Actions.Red": "#268BD2",
"Actions.Yellow": "#657B83",
"Checkbox.Background.Default": "#eee8d5",
"Checkbox.Background.Default.Dark": "#eee8d5",
"Checkbox.Background.Disabled": "#E3DCC9",
"Checkbox.Background.Disabled.Dark": "#E3DCC9",
"Checkbox.Border.Default": "#edead9",
"Checkbox.Border.Default.Dark": "#edead9",
"Checkbox.Border.Disabled": "#C9CCC3",
"Checkbox.Border.Disabled.Dark": "#C9CCC3",
"Checkbox.Focus.Thin.Default": "#d33682",
"Checkbox.Focus.Thin.Default.Dark": "#d33682",
"Checkbox.Focus.Wide": "#d33682",
"Checkbox.Focus.Wide.Dark": "#d33682",
"Checkbox.Foreground.Disabled": "#C9CCC3",
"Checkbox.Foreground.Disabled.Dark": "#C9CCC3",
"Checkbox.Background.Selected": "#d33682",
"Checkbox.Background.Selected.Dark": "#fdf6e3",
"Checkbox.Border.Selected": "#d33682",
"Checkbox.Border.Selected.Dark": "#d33682",
"Checkbox.Foreground.Selected": "#d33682",
"Checkbox.Foreground.Selected.Dark": "#d33682",
"Checkbox.Focus.Thin.Selected": "#586e75",
"Checkbox.Focus.Thin.Selected.Dark": "#586e75",
"Objects.Grey": "#93A1A1",
"Objects.Blue": "#B58900",
"Objects.RedStatus": "#268BD2",
"Objects.Red": "#268BD2",
"Objects.Pink": "#859900",
"Objects.Yellow": "#657B83",
"Objects.Green": "#2AA198",
"Objects.Purple": "#859900",
"Objects.BlackText": "#586e75",
"Objects.YellowDark": "#D33682",
"Objects.GreenAndroid": "#2AA198"
}
}
}

View File

@@ -1,917 +0,0 @@
{
"name": "Solarized Light",
"dark": false,
"author": "Mallowigi",
"editorScheme": "/colors/Solarized Light.xml",
"ui": {
"*": {
"acceleratorSelectionForeground": "#93a1a1",
"background": "#fdf6e3",
"borderColor": "#edead9",
"disabledBackground": "#E3DCC9",
"disabledForeground": "#C9CCC3",
"disabledText": "#C9CCC3",
"focusColor": "#d1cbb8",
"focusedBorderColor": "#d33682",
"foreground": "#586e75",
"inactiveBackground": "#E3DCC9",
"inactiveForeground": "#93a1a1",
"infoForeground": "#93a1a1",
"selectionBackground": "#e8dcb6",
"selectionBackgroundInactive": "#F6F0DE",
"selectionForeground": "#002b36",
"selectionInactiveBackground": "#F6F0DE",
"separatorColor": "#edead9"
},
"activeCaption": "#fdf6e3",
"ActionButton": {
"hoverBackground": "#d3368250",
"hoverBorderColor": "#d3368250",
"hoverSeparatorColor": "#d8d4c4",
"focusedBorderColor": "#d3368250",
"pressedBackground": "#d3368250",
"pressedBorderColor": "#d3368250"
},
"Autocomplete": {
"selectionBackground": "#e8dcb6"
},
"Borders.ContrastBorderColor": "#fdf6e3",
"Borders.color": "#edead9",
"Button": {
"arc": 0,
"background": "#fdf6e3",
"default": {
"endBackground": "#d1cbb8",
"endBorderColor": "#d1cbb8",
"foreground": "#002b36",
"focusColor": "#d33682",
"focusedBorderColor": "#d33682",
"shadowColor": "#d1cbb8",
"startBackground": "#d1cbb8",
"startBorderColor": "#d1cbb8"
},
"disabledBorderColor": "#d8d4c4",
"disabledText": "#C9CCC3",
"endBackground": "#d8d4c4",
"endBorderColor": "#d8d4c4",
"focus": "#d1cbb8",
"focusedBorderColor": "#d33682",
"foreground": "#93a1a1",
"highlight": "#002b36",
"mt.background": "#d8d4c4",
"mt.foreground": "#93a1a1",
"mt.selectedForeground": "#002b36",
"mt.selection.color1": "#d1cbb8",
"mt.selection.color2": "#d1cbb8",
"startBackground": "#d8d4c4",
"startBorderColor": "#d8d4c4",
"shadowColor": "#d8d4c4",
"shadowWidth": 0
},
"Canvas": {
"Tooltip.borderColor": "#edead9",
"Tooltip.background": "#EDE8D4"
},
"Content.background": "#eee8d5",
"CheckBox": {
"background": "#fdf6e3",
"disabledText": "#C9CCC3",
"foreground": "#586e75",
"select": "#d33682"
},
"CheckBoxMenuItem": {
"acceleratorForeground": "#93a1a1",
"acceleratorSelectionForeground": "#93a1a1",
"background": "#fdf6e3",
"disabledBackground": "#fdf6e3",
"disabledForeground": "#C9CCC3",
"foreground": "#586e75",
"selectionBackground": "#e8dcb6",
"selectionForeground": "#002b36"
},
"ColorChooser": {
"background": "#fdf6e3",
"foreground": "#586e75",
"swatchesDefaultRecentColor": "#586e75"
},
"ComboBoxButton.background": "#d8d4c4",
"ComboBox": {
"ArrowButton": {
"background": "#d8d4c4",
"disabledIconColor": "#C9CCC3",
"iconColor": "#586e75",
"nonEditableBackground": "#fdf6e3"
},
"background": "#fdf6e3",
"buttonBackground": "#d8d4c4",
"disabledForeground": "#C9CCC3",
"foreground": "#586e75",
"modifiedItemForeground": "#d33682",
"nonEditableBackground": "#F6F0DE",
"padding": "5,5,5,5",
"selectionBackground": "#d1cbb8",
"selectionForeground": "#002b36"
},
"ComboPopup.border": "#edead9",
"CompletionPopup": {
"background": "#F6F0DE",
"foreground": "#586e75",
"infoForeground": "#93a1a1",
"matchForeground": "#d33682",
"matchSelectionForeground": "#d33682",
"nonFocusedState": "false",
"selectedGrayedForeground": "#002b36",
"selectionGrayForeground": "#002b36",
"selectionInactiveInfoForeground": "#93a1a1",
"selectionInactiveBackground": "#e8dcb650",
"selectionBackground": "#e8dcb680",
"selectionForeground": "#002b36",
"selectionInfoForeground": "#002b36"
},
"Component": {
"arc": 4,
"borderColor": "#d1cbb8",
"disabledBorderColor": "#d8d4c4",
"focusColor": "#d33682",
"focusedBorderColor": "#d33682",
"hoverIconColor": "#d33682",
"infoForeground": "#93a1a1",
"iconColor": "#586e75"
},
"control": "#fdf6e3",
"controlText": "#93a1a1",
"Counter": {
"background": "#d33682",
"foreground": "#002b36"
},
"Debugger": {
"Variables": {
"collectingDataForeground": "#93a1a1",
"changedValueForeground": "#d33682",
"errorMessageForeground": "#268BD2",
"evaluatingExpressionForeground": "#93a1a1",
"exceptionForeground": "#657B83",
"modifyingValueForeground": "#d33682",
"valueForeground": "#d33682"
}
},
"DebuggerTabs": {
"selectedBackground": "#d1cbb8",
"underlinedTabBackground": "#d1cbb8"
},
"DebuggerPopup": {
"borderColor": "#d1cbb8"
},
"DefaultTabs": {
"background": "#fdf6e3",
"borderColor": "#fdf6e3",
"hoverBackground": "#d1cbb8",
"hoverColor": "#fdf6e3",
"hoverMaskColor": "#d1cbb8",
"inactiveColoredFileBackground": "#d8d4c4",
"inactiveUnderlineColor": "#C9CCC3",
"inactiveMaskColor": "#fdf6e3",
"underlineColor": "#d33682",
"underlinedTabBackground": "#d1cbb8"
},
"Desktop.background": "#fdf6e3",
"DialogWrapper.southPanelBackground": "#fdf6e3",
"DialogWrapper.southPanelDivider": "#fdf6e3",
"DragAndDrop": {
"areaBackground": "#fdf6e3",
"areaBorderColor": "#fdf6e3",
"areaForeground": "#586e75"
},
"Editor": {
"background": "#fdf6e3",
"foreground": "#586e75",
"shortcutForeground": "#93a1a1"
},
"EditorPane": {
"background": "#fdf6e3",
"caretForeground": "#d33682",
"foreground": "#586e75",
"inactiveBackground": "#fdf6e3",
"inactiveForeground": "#C9CCC3",
"selectionBackground": "#e8dcb6",
"selectionForeground": "#002b36"
},
"EditorTabs": {
"borderColor": "#F6F0DE",
"hoverColor": "#d1cbb8",
"hoverMaskColor": "#d1cbb8",
"inactiveMaskColor": "#fdf6e3",
"inactiveColoredFileBackground": "#fdf6e32",
"inactiveUnderlineColor": "#C9CCC3",
"selectedForeground": "#586e75",
"selectedBackground": "#d1cbb8",
"underlineColor": "#d33682",
"underlinedTabBackground": "#d1cbb8"
},
"EditorGroupsTabs": {
"background": "#fdf6e3",
"borderColor": "#F6F0DE",
"hoverBackground": "#d1cbb8",
"hoverColor": "#d1cbb8",
"inactiveUnderlineColor": "#d33682",
"underlineColor": "#d33682",
"underlinedTabBackground": "#d1cbb8",
"underlinedTabForeground": "#586e75"
},
"FileColor": {
"Green": "#387002",
"Blue": "#004BA0",
"Yellow": "#E3DCC9",
"Orange": "#B53D00",
"Violet": "#4D2C91",
"Rose": "#A00037"
},
"FlameGraph": {
"JVMBackground": "#89DDF7",
"JVMFocusBackground": "#82AAFF",
"JVMSearchNotMatchedBackground": "#FF5370",
"JVMFocusSearchNotMatchedBackground": "#AB7967",
"nativeBackground": "#FFCB6B",
"nativeFocusBackground": "#F78C6C",
"nativeSearchNotMatchedBackground": "#C792EA",
"nativeFocusSearchNotMatchedBackground": "#BB80B3"
},
"Focus.color": "#edead9",
"FormattedTextField": {
"background": "#fdf6e3",
"caretForeground": "#d33682",
"foreground": "#586e75",
"inactiveBackground": "#d8d4c4",
"inactiveForeground": "#C9CCC3",
"selectionForeground": "#002b36",
"selectionBackground": "#d1cbb8"
},
"Group": {
"disabledSeparatorColor": "#edead9",
"separatorColor": "#edead9"
},
"GutterTooltip": {
"infoForeground": "#586e75",
"lineSeparatorColor": "#fdf6e3"
},
"HeaderColor": {
"active": "#fdf6e3",
"inactive": "#eee8d5"
},
"HelpTooltip": {
"background": "#fdf6e3",
"borderColor": "#edead9",
"foreground": "#586e75",
"infoForeground": "#93a1a1",
"shortcutForeground": "#93a1a1"
},
"Hyperlink.linkColor": "#d33682",
"inactiveCaption": "#F6F0DE",
"inactiveCaptionBorder": "#fdf6e3",
"inactiveCaptionText": "#93a1a1",
"info": "#93a1a1",
"infoText": "#93a1a1",
"IdeStatusBar.border": "4,4,4,4",
"InformationHint.borderColor": "#edead9",
"InplaceRefactoringPopup": {
"borderColor": "#fdf6e3"
},
"InternalFrame": {
"activeTitleForeground": "#586e75",
"background": "#fdf6e3",
"inactiveTitleForeground": "#93a1a1"
},
"Label": {
"background": "#fdf6e3",
"disabledForeground": "#C9CCC3",
"disabledShadow": "#fdf6e3",
"disabledText": "#C9CCC3",
"foreground": "#586e75",
"infoForeground": "#93a1a1",
"selectedForeground": "#002b36"
},
"Link": {
"activeForeground": "#d33682",
"hoverForeground": "#d33682",
"pressedForeground": "#d33682",
"secondaryForeground": "#93a1a1",
"visitedForeground": "#d33682"
},
"link.foreground": "#d33682",
"List": {
"background": "#F6F0DE",
"foreground": "#586e75",
"selectionBackground": "#e8dcb650",
"selectionForeground": "#002b36",
"selectionInactiveForeground": "#002b36",
"selectionInactiveBackground": "#e8dcb6b0"
},
"material": {
"background": "#fdf6e3",
"branchColor": "#586e75",
"contrast": "#eee8d5",
"foreground": "#586e75",
"mergeCommits": "#d8d4c4",
"primaryColor": "#93a1a1",
"selectionForeground": "#002b36",
"tab.backgroundColor": "#fdf6e3",
"tab.borderColor": "#d33682",
"tagColor": "#93a1a1"
},
"MemoryIndicator": {
"allocatedBackground": "#F6F0DE",
"usedColor": "#d1cbb8",
"usedBackground": "#d1cbb8"
},
"Menu": {
"acceleratorForeground": "#93a1a1",
"acceleratorSelectionForeground": "#002b36",
"background": "#fdf6e3",
"border": "4,2,4,2",
"borderColor": "#F6F0DE",
"disabledBackground": "#F6F0DE",
"disabledForeground": "#C9CCC3",
"foreground": "#586e75",
"selectionBackground": "#e8dcb6",
"selectionForeground": "#002b36",
"separatorColor": "#edead9"
},
"MenuBar": {
"background": "#fdf6e3",
"borderColor": "#fdf6e3",
"disabledBackground": "#fdf6e3",
"disabledForeground": "#C9CCC3",
"foreground": "#586e75",
"highlight": "#fdf6e3",
"selectionBackground": "#e8dcb6",
"selectionForeground": "#002b36",
"shadow": "#fdf6e3"
},
"MenuItem": {
"acceleratorForeground": "#93a1a1",
"acceleratorSelectionForeground": "#002b36",
"border": "4,2,4,2",
"background": "#fdf6e3",
"disabledBackground": "#fdf6e3",
"disabledForeground": "#C9CCC3",
"foreground": "#586e75",
"selectionBackground": "#e8dcb6",
"selectionForeground": "#002b36"
},
"NavBar": {
"arrowColor": "#586e75",
"borderColor": "#fdf6e3"
},
"NewClass": {
"Panel": {
"background": "#fdf6e3"
},
"SearchField": {
"background": "#fdf6e3"
}
},
"NewPSD.warning": "#d33682",
"Notification": {
"background": "#EDE8D4",
"borderColor": "#EDE8D4",
"errorBackground": "#EDE8D4",
"errorBorderColor": "#EDE8D4",
"foreground": "#586e75",
"MoreButton": {
"background": "#d8d4c4",
"foreground": "#586e75",
"innerBorderColor": "#d8d4c4"
},
"ToolWindow": {
"errorBackground": "#EDE8D4",
"errorBorderColor": "#EDE8D4",
"informativeBackground": "#EDE8D4",
"informativeBorderColor": "#EDE8D4",
"warningBackground": "#EDE8D4",
"warningBorderColor": "#EDE8D4"
}
},
"OnePixelDivider.background": "#edead9",
"OptionPane": {
"background": "#fdf6e3",
"foreground": "#586e75",
"messageForeground": "#586e75"
},
"Outline": {
"color": "#d8d4c4",
"focusedColor": "#d33682",
"disabledColor": "#C9CCC3"
},
"Panel": {
"background": "#fdf6e3",
"foreground": "#586e75"
},
"ParameterInfo": {
"background": "#F6F0DE",
"borderColor": "#d1cbb8",
"currentOverloadBackground": "#d1cbb8",
"currentParameterForeground": "#d33682",
"disabledForeground": "#C9CCC3",
"foreground": "#586e75",
"infoForeground": "#93a1a1",
"lineSeparatorColor": "#d1cbb8"
},
"PasswordField": {
"background": "#fdf6e3",
"capsLockIconColor": "#d33682",
"caretForeground": "#d33682",
"foreground": "#586e75",
"inactiveForeground": "#C9CCC3",
"selectionBackground": "#d1cbb8",
"selectionForeground": "#002b36"
},
"Plugins": {
"background": "#fdf6e3",
"disabledForeground": "#C9CCC3",
"eapTagBackground": "#d1cbb8",
"lightSelectionBackground": "#e8dcb6",
"paidTagBackground": "#d1cbb8",
"selectionBackground": "#e8dcb6",
"tagForeground": "#d33682",
"tagBackground": "#d1cbb8",
"trialTagBackground": "#d1cbb8",
"Button": {
"installBackground": "#d8d4c4",
"installBorderColor": "#d8d4c4",
"installForeground": "#586e75",
"installFocusedBackground": "#d1cbb8",
"installFillForeground": "#C9CCC3",
"installFillBackground": "#d8d4c4",
"updateBackground": "#d8d4c4",
"updateBorderColor": "#d8d4c4",
"updateForeground": "#586e75"
},
"SearchField": {
"background": "#fdf6e3",
"borderColor": "#edead9"
},
"SectionHeader": {
"background": "#F6F0DE",
"foreground": "#586e75"
},
"Tab": {
"hoverBackground": "#d1cbb8",
"selectedForeground": "#002b36",
"selectedBackground": "#d1cbb8"
}
},
"Popup": {
"Advertiser": {
"background": "#fdf6e3",
"borderColor": "#fdf6e3",
"foreground": "#d33682"
},
"borderColor": "#eee8d5",
"inactiveBorderColor": "#fdf6e3",
"innerBorderColor": "#F6F0DE",
"Header": {
"activeBackground": "#fdf6e3",
"inactiveBackground": "#eee8d5"
},
"paintBorder": true,
"separatorForeground": "#586e75",
"separatorColor": "#F6F0DE",
"Toolbar": {
"Floating.background": "#eee8d5",
"background": "#eee8d5",
"borderColor": "#eee8d5"
}
},
"PopupMenu": {
"background": "#fdf6e3",
"border": "2,0,2,0",
"foreground": "#586e75",
"translucentBackground": "#fdf6e3"
},
"PopupMenuSeparator.height": 10,
"PopupMenuSeparator.stripeIndent": 5,
"ProgressBar": {
"background": "#fdf6e3",
"foreground": "#d33682",
"indeterminateEndColor": "#d33682",
"indeterminateStartColor": "#d33682",
"progressColor": "#d33682",
"selectionBackground": "#d1cbb8",
"trackColor": "#d1cbb8"
},
"PsiViewer": {
"referenceHighlightColor": "#d33682"
},
"RadioButton": {
"background": "#fdf6e3",
"disabledText": "#C9CCC3",
"foreground": "#586e75"
},
"RadioButtonMenuItem": {
"acceleratorForeground": "#93a1a1",
"acceleratorSelectionForeground": "#93a1a1",
"background": "#fdf6e3",
"disabledBackground": "#fdf6e3",
"disabledForeground": "#C9CCC3",
"foreground": "#586e75",
"selectionBackground": "#e8dcb6",
"selectionForeground": "#002b36"
},
"ScrollBar": {
"background": "#fdf6e3",
"hoverThumbBorderColor": "#d33682",
"hoverThumbColor": "#d33682",
"hoverTrackColor": "#fdf6e330",
"Mac": {
"hoverThumbBorderColor": "#d33682",
"hoverThumbColor": "#d33682",
"hoverTrackColor": "#fdf6e330",
"thumbBorderColor": "#d3368270",
"thumbColor": "#d3368270",
"trackColor": "#fdf6e330",
"Transparent": {
"hoverThumbBorderColor": "#d33682",
"hoverThumbColor": "#d33682",
"hoverTrackColor": "#fdf6e330",
"thumbBorderColor": "#d3368270",
"thumbColor": "#d3368270",
"trackColor": "#fdf6e330"
}
},
"thumb": "#d1cbb8",
"thumbBorderColor": "#d3368270",
"thumbColor": "#d3368270",
"trackColor": "#fdf6e330",
"Transparent": {
"hoverThumbBorderColor": "#d33682",
"hoverThumbColor": "#d33682",
"hoverTrackColor": "#fdf6e330",
"thumbBorderColor": "#d3368270",
"thumbColor": "#d3368270",
"trackColor": "#fdf6e330"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#eee8d5",
"foreground": "#93a1a1"
},
"Header": {
"background": "#fdf6e3"
},
"List": {
"separatorForeground": "#93a1a1",
"separatorColor": "#edead9"
},
"SearchField": {
"background": "#fdf6e3",
"borderColor": "#eee8d5",
"infoForeground": "#93a1a1"
},
"Tab": {
"active.foreground": "#002b36",
"selectedForeground": "#002b36",
"selectedBackground": "#d1cbb8"
}
},
"SearchMatch": {
"endBackground": "#d33682",
"startBackground": "#d33682"
},
"SearchField.errorBackground": "#EDE8D4",
"Separator": {
"background": "#F6F0DE",
"foreground": "#F6F0DE",
"separatorColor": "#F6F0DE"
},
"SidePanel": {
"background": "#fdf6e3"
},
"Slider": {
"background": "#fdf6e3",
"buttonBorderColor": "#d33682",
"buttonColor": "#d33682",
"foreground": "#586e75",
"majorTickLength": 6,
"tickColor": "#F6F0DE",
"trackColor": "#d1cbb8",
"trackWidth": 7,
"thumb": "#d33682"
},
"SpeedSearch": {
"background": "#d1cbb8",
"borderColor": "#edead9",
"foreground": "#586e75",
"errorForeground": "#586e75"
},
"Spinner": {
"background": "#fdf6e3",
"border": "3,3,3,3",
"foreground": "#586e75",
"selectionForeground": "#002b36"
},
"SplitPane": {
"background": "#fdf6e3",
"highlight": "#fdf6e3"
},
"SplitPaneDivider.draggingColor": "#F6F0DE",
"StatusBar": {
"borderColor": "#fdf6e3"
},
"TabbedPane": {
"background": "#fdf6e3",
"contentAreaColor": "#d1cbb8",
"contentBorderInsets": "3,1,1,1",
"darkShadow": "#edead9",
"disabledForeground": "#C9CCC3",
"disabledUnderlineColor": "#C9CCC3",
"focus": "#d1cbb8",
"focusColor": "#d1cbb8",
"fontSizeOffset": 0,
"foreground": "#586e75",
"highlight": "#edead9",
"hoverColor": "#d1cbb8",
"labelShift": 0,
"selectedForeground": "#002b36",
"selectedLabelShift": 0,
"selectedTabPadInsets": "0,0,0,0",
"tabsOverlapBorder": true,
"tabHeight": 32,
"tabInsets": "5,10,5,10",
"tabSelectionHeight": 2,
"underlineColor": "#d33682"
},
"TabbedPane.mt.tab.background": "#fdf6e3",
"Table": {
"background": "#fdf6e3",
"cellNoFocusBorder": "10,5,10,5",
"focusCellHighlightBorder": "10,5,10,5",
"dropLineColor": "#d33682",
"dropLineShortColor": "#d33682",
"focusCellBackground": "#d1cbb8",
"focusCellForeground": "#002b36",
"foreground": "#586e75",
"gridColor": "#fdf6e3",
"highlightOuter": "#d1cbb8",
"lightSelectionForeground": "#002b36",
"lightSelectionInactiveForeground": "#93a1a1",
"lightSelectionInactiveBackground": "#F6F0DE",
"selectionBackground": "#d1cbb8",
"selectionForeground": "#002b36",
"selectionInactiveBackground": "#d1cbb8",
"selectionInactiveForeground": "#002b36",
"sortIconColor": "#586e75",
"stripeColor": "#eee8d5"
},
"TableHeader": {
"background": "#fdf6e3",
"borderColor": "#fdf6e3",
"bottomSeparatorColor": "#F6F0DE",
"cellBorder": "4,0,4,0",
"disabledForeground": "#C9CCC3",
"foreground": "#586e75",
"focusCellBackground": "#d1cbb8",
"focusCellForeground": "#002b36",
"height": 25,
"separatorColor": "#F6F0DE"
},
"text": "#93a1a1",
"textInactiveText": "#93a1a1",
"textText": "#93a1a1",
"TextArea": {
"background": "#fdf6e3",
"caretForeground": "#d33682",
"foreground": "#586e75",
"inactiveForeground": "#C9CCC3",
"selectionBackground": "#d1cbb8",
"selectionForeground": "#002b36"
},
"TextField": {
"background": "#fdf6e3",
"caretForeground": "#d33682",
"foreground": "#586e75",
"inactiveForeground": "#C9CCC3",
"selectionBackground": "#d1cbb8",
"selectionForeground": "#002b36"
},
"TextPane": {
"background": "#fdf6e3",
"caretForeground": "#d33682",
"foreground": "#586e75",
"inactiveForeground": "#C9CCC3",
"selectionBackground": "#d1cbb8",
"selectionForeground": "#002b36"
},
"TitlePane": {
"background": "#eee8d5",
"Button.hoverBackground": "#d1cbb8",
"inactiveBackground": "#fdf6e3",
"infoForeground": "#93a1a1",
"inactiveInfoForeground": "#93a1a1"
},
"TitledBorder.titleColor": "#586e75",
"ToggleButton": {
"borderColor": "#d8d4c4",
"buttonColor": "#586e75",
"disabledText": "#C9CCC3",
"foreground": "#586e75",
"offForeground": "#fdf6e3",
"offBackground": "#fdf6e3",
"onBackground": "#d33682",
"onForeground": "#d33682"
},
"ToolBar": {
"background": "#fdf6e3",
"borderHandleColor": "#93a1a1",
"floatingForeground": "#93a1a1",
"foreground": "#586e75"
},
"ToolTip": {
"Actions.background": "#fdf6e3",
"Actions.infoForeground": "#93a1a1",
"background": "#fdf6e3",
"borderColor": "#d1cbb8",
"foreground": "#586e75",
"infoForeground": "#93a1a1",
"separatorColor": "#edead9",
"shortcutForeground": "#93a1a1"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#d1cbb8",
"selectedForeground": "#002b36",
"selectedBackground": "#eee8d5"
},
"Header": {
"background": "#fdf6e3",
"borderColor": "#F6F0DE",
"inactiveBackground": "#fdf6e3"
},
"HeaderCloseButton": {
"background": "#fdf6e3"
},
"HeaderTab": {
"hoverBackground": "#d1cbb8",
"hoverInactiveBackground": "#F6F0DE",
"inactiveUnderlineColor": "#d33682",
"selectedBackground": "#eee8d5",
"selectedInactiveBackground": "#eee8d5",
"underlineColor": "#d33682",
"underlinedTabBackground": "#d1cbb8",
"underlinedTabInactiveBackground": "#F6F0DE"
}
},
"Tree": {
"background": "#fdf6e3",
"foreground": "#93a1a1",
"hash": "#edead9",
"modifiedItemForeground": "#d33682",
"rowHeight": 28,
"selectionBackground": "#e8dcb6b0",
"selectionForeground": "#002b36",
"selectionInactiveForeground": "#002b36",
"selectionInactiveBackground": "#e8dcb6b0",
"textBackground": "#fdf6e3"
},
"Tree.leftChildIndent": 10,
"Tree.rightChildIndent": 5,
"UiDesigner": {
"Activity.borderColor": "#edead9",
"ColorPicker.background": "#fdf6e3",
"ColorPicker.foreground": "#586e75",
"Component.borderColor": "#edead9",
"Component.background": "#fdf6e3",
"Component.foreground": "#586e75",
"Connector.borderColor": "#edead9",
"Connector.hoverBorderColor": "#d1cbb8",
"Canvas.background": "#eee8d5",
"highStroke.foreground": "#586e75",
"Label.foreground": "#93a1a1",
"List.selectionBackground": "#e8dcb6b0",
"Panel.borderColor": "#edead9",
"Panel.background": "#fdf6e3",
"percent.foreground": "#586e75",
"Placeholder.background": "#fdf6e3",
"Placeholder.borderColor": "#edead9",
"Placeholder.foreground": "#586e75",
"Placeholder.selectedForeground": "#002b36",
"Preview.background": "#fdf6e3",
"stroke.acceleratorForeground": "#93a1a1"
},
"ValidationTooltip": {
"errorBackground": "#EDE8D4",
"errorBorderColor": "#EDE8D4",
"warningBackground": "#EDE8D4",
"warningBorderColor": "#EDE8D4"
},
"VersionControl": {
"FileHistory.Commit": {
"selectedBranchBackground": "#fdf6e3"
},
"GitCommits": {
"graphColor": "#d1cbb8"
},
"GitLog": {
"localBranchIconColor": "#d33682",
"otherIconColor": "#93a1a1",
"remoteBranchIconColor": "#586e75",
"tagIconColor": "#93a1a1"
},
"HgLog": {
"branchIconColor": "#d33682",
"bookmarkIconColor": "#002b36",
"closedBranchIconColor": "#C9CCC3",
"localTagIconColor": "#93a1a1",
"mqTagIconColor": "#93a1a1",
"tagIconColor": "#93a1a1",
"tipIconColor": "#93a1a1"
},
"Log": {
"Commit.unmatchedForeground": "#93a1a1",
"Commit.currentBranchBackground": "#F6F0DE"
},
"RefLabel": {
"foreground": "#002b36",
"backgroundBase": "#d1cbb8"
}
},
"Viewport": {
"background": "#fdf6e3",
"foreground": "#586e75"
},
"WelcomeScreen": {
"background": "#fdf6e3",
"borderColor": "#fdf6e3",
"captionBackground": "#eee8d5",
"captionForeground": "#586e75",
"footerBackground": "#eee8d5",
"footerForeground": "#586e75",
"headerBackground": "#fdf6e3",
"headerForeground": "#586e75",
"separatorColor": "#edead9",
"Projects": {
"background": "#F6F0DE",
"selectionBackground": "#e8dcb6",
"selectionInactiveBackground": "#F6F0DE"
}
},
"window": "#fdf6e3",
"windowBorder": "#edead9",
"windowText": "#93a1a1",
"Window.border": "#edead9"
},
"icons": {
"ColorPalette": {
"#43494A": "#eee8d5",
"#6B6B6B": "#93a1a1",
"#A7A7A7": "#fdf6e3",
"#3D6185": "#d33682",
"#466D94": "#d33682",
"#3C3F41": "#fdf6e3",
"#545556": "#C9CCC3",
"#606060": "#C9CCC3",
"#9AA7B0": "#586e75",
"#675133": "#d33682",
"Actions.Blue": "#B58900",
"Actions.Green": "#2AA198",
"Actions.Grey": "#93a1a1",
"Actions.GreyInline": "#93A1A1",
"Actions.GreyInline.Dark": "#586e75",
"Actions.Red": "#268BD2",
"Actions.Yellow": "#657B83",
"Checkbox.Background.Default": "#eee8d5",
"Checkbox.Background.Default.Dark": "#eee8d5",
"Checkbox.Background.Disabled": "#E3DCC9",
"Checkbox.Background.Disabled.Dark": "#E3DCC9",
"Checkbox.Border.Default": "#edead9",
"Checkbox.Border.Default.Dark": "#edead9",
"Checkbox.Border.Disabled": "#C9CCC3",
"Checkbox.Border.Disabled.Dark": "#C9CCC3",
"Checkbox.Focus.Thin.Default": "#d33682",
"Checkbox.Focus.Thin.Default.Dark": "#d33682",
"Checkbox.Focus.Wide": "#d33682",
"Checkbox.Focus.Wide.Dark": "#d33682",
"Checkbox.Foreground.Disabled": "#C9CCC3",
"Checkbox.Foreground.Disabled.Dark": "#C9CCC3",
"Checkbox.Background.Selected": "#d33682",
"Checkbox.Background.Selected.Dark": "#fdf6e3",
"Checkbox.Border.Selected": "#d33682",
"Checkbox.Border.Selected.Dark": "#d33682",
"Checkbox.Foreground.Selected": "#d33682",
"Checkbox.Foreground.Selected.Dark": "#d33682",
"Checkbox.Focus.Thin.Selected": "#586e75",
"Checkbox.Focus.Thin.Selected.Dark": "#586e75",
"Objects.Grey": "#93A1A1",
"Objects.Blue": "#B58900",
"Objects.RedStatus": "#268BD2",
"Objects.Red": "#268BD2",
"Objects.Pink": "#859900",
"Objects.Yellow": "#657B83",
"Objects.Green": "#2AA198",
"Objects.Purple": "#859900",
"Objects.BlackText": "#586e75",
"Objects.YellowDark": "#D33682",
"Objects.GreenAndroid": "#2AA198"
}
}
}

View File

@@ -1,22 +0,0 @@
MIT License (MIT)
Copyright (C) 2016-present Arctic Ice Studio <development@arcticicestudio.com> (https://www.arcticicestudio.com)
Copyright (C) 2016-present Sven Greb <development@svengreb.de> (https://www.svengreb.de)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -1,470 +0,0 @@
{
"name": "Nord",
"dark": true,
"author": "Arctic Ice Studio",
"editorScheme": "/themes/nord.xml",
"ui": {
"*": {
"acceleratorForeground": "#88c0d0",
"acceleratorSelectionForeground": "#88c0d0",
"background": "#2e3440",
"borderColor": "#3b4252",
"disabledBackground": "#2e3440",
"disabledBorderColor": "#3b4252",
"disabledForeground": "#616e88",
"disabledText": "#616e88",
"errorForeground": "#bf616a",
"focusColor": "#88c0d0",
"focusedBorderColor": "#88c0d0",
"foreground": "#d8dee9",
"inactiveBackground": "#3b4252",
"inactiveForeground": "#d8dee9",
"infoForeground": "#d8dee9",
"lightSelectionBackground": "#4c566a",
"lightSelectionForeground": "#eceff4",
"lightSelectionInactiveBackground": "#434c5e",
"lightSelectionInactiveForeground": "#d8dee9",
"lineSeparatorColor": "#4c566a",
"modifiedItemForeground": "#ebcb8b",
"selectionBackground": "#4c566a",
"selectionBackgroundInactive": "#434c5e",
"selectionForeground": "#eceff4",
"selectionInactiveBackground": "#434c5e",
"separatorColor": "#4c566a",
"separatorForeground": "#616e88"
},
"ActionButton": {
"hoverBackground": "#4c566a",
"hoverBorderColor": "#4c566a",
"pressedBackground": "#434c5e",
"pressedBorderColor": "#434c5e"
},
"Borders": {
"ContrastBorderColor": "#3b4252"
},
"Button": {
"endBackground": "#4c566a",
"endBorderColor": "#4c566a",
"focusedBorderColor": "#4c566a",
"shadowColor": "#2e3440",
"startBackground": "#4c566a",
"startBorderColor": "#4c566a",
"default": {
"endBackground": "#88c0d0",
"endBorderColor": "#88c0d0",
"focusColor": "#d8dee9",
"focusedBorderColor": "#d8dee9",
"foreground": "#2e3440",
"shadowColor": "#2e3440",
"startBackground": "#88c0d0",
"startBorderColor": "#88c0d0"
}
},
"ColorChooser": {
"swatchesDefaultRecentColor": "#88c0d0"
},
"ComboBox": {
"nonEditableBackground": "#3b4252",
"selectionBackground": "#88c0d0",
"selectionForeground": "#2e3440",
"ArrowButton": {
"disabledIconColor": "#4c566a",
"iconColor": "#616e88",
"nonEditableBackground": "#3b4252"
}
},
"ComboBoxButton": {
"background": "#3b4252"
},
"ComboPopup": {
"border": "#3b4252"
},
"CompletionPopup": {
"background": "#323846",
"matchForeground": "#88c0d0",
"matchSelectionForeground": "#88c0d0",
"nonFocusedState": "#2e3440",
"selectionBackground": "#4c566a",
"selectionInactiveBackground": "#4c566a",
"selectionInactiveInfoForeground": "#4c566a",
"selectionInfoForeground": "#eceff4"
},
"Component": {
"errorFocusColor": "#bf616a",
"focusColor": "#88c0d0",
"focusedBorderColor": "#2e3440",
"focusWidth": 1,
"inactiveErrorFocusColor": "#bf616a",
"inactiveWarningFocusColor": "#ebcb8b",
"infoForeground": "#88c0d0",
"warningFocusColor": "#ebcb8b"
},
"Counter": {
"background": "#88c0d0",
"foreground": "#2e3440"
},
"DebuggerTabs": {
"selectedBackground": "#3b4252",
"underlinedTabBackground": "#3b4252"
},
"DragAndDrop": {
"areaBackground": "#2e3440",
"areaBorderColor": "#4c566a",
"areaForeground": "#eceff4"
},
"Editor": {
"shortcutForeground": "#88c0d0"
},
"EditorPane": {
"caretForeground": "#eceff4"
},
"EditorTabs": {
"borderColor": "#2e3440",
"hoverMaskColor": "#4c566a",
"inactiveColoredFileBackground": "#2e3440",
"inactiveMaskColor": "#3b4252",
"inactiveUnderlineColor": "#616e88",
"selectedBackground": "#4c566a",
"selectedForeground": "#d8dee9",
"underlineColor": "#88c0d0",
"underlinedTabBackground": "#4c566a"
},
"FileColor": {
"Blue": "#88c0d01a",
"Green": "#a3be8c1a",
"Orange": "#d087701a",
"Rose": "#bf616a1a",
"Violet": "#b48ead1a",
"Yellow": "#ebcb8b1a"
},
"Group": {
"disabledSeparatorColor": "#3b4252"
},
"GutterTooltip": {
"infoForeground": "#88c0d0"
},
"HelpTooltip": {
"background": "#3b4252",
"shortcutForeground": "#88c0d0"
},
"Label": {
"foreground": "#eceff4",
"selectedForeground": "#3b4252"
},
"Link": {
"activeForeground": "#88c0d0",
"hoverForeground": "#88c0d0",
"pressedForeground": "#88c0d0",
"secondaryForeground": "#81a1c1",
"visitedForeground": "#88c0d0"
},
"List": {
"background": "#323846",
"selectionInactiveForeground": "#e5e9f0"
},
"Menu": {
"background": "#323846",
"borderColor": "#3b4252",
"selectionForeground": "#d8dee9"
},
"MenuItem": {
"selectionForeground": "#d8dee9"
},
"Notification": {
"background": "#3b4252",
"errorBackground": "#bf616a",
"errorBorderColor": "#bf616a",
"errorForeground": "#d8dee9",
"MoreButton": {
"background": "#434c5e",
"foreground": "#e5e9f0",
"innerBorderColor": "#434c5e"
},
"ToolWindow": {
"errorBackground": "#bf616a",
"errorBorderColor": "#bf616a",
"errorForeground": "#eceff4",
"informativeBackground": "#3b4252",
"informativeBorderColor": "#3b4252",
"informativeForeground": "#d8dee9",
"warningBackground": "#ebcb8b",
"warningBorderColor": "#ebcb8b",
"warningForeground": "#2e3440"
}
},
"OptionPane": {
"messageForeground": "#88c0d0"
},
"Plugins": {
"eapTagBackground": "#8fbcbb",
"tagBackground": "#4c566a",
"tagForeground": "#d8dee9",
"Button": {
"installBackground": "#88c0d0",
"installBorderColor": "#88c0d0",
"installFillBackground": "#88c0d0",
"installFillForeground": "#2e3440",
"installFocusedBackground": "#88c0d0",
"installForeground": "#2e3440",
"updateBackground": "#81a1c1",
"updateBorderColor": "#81a1c1",
"updateForeground": "#2e3440"
},
"SearchField": {
"borderColor": "#3b4252"
},
"SectionHeader": {
"background": "#3b4252"
},
"Tab": {
"hoverBackground": "#3b4252",
"selectedBackground": "#3b4252",
"selectedForeground": "#d8dee9"
}
},
"Popup": {
"inactiveBorderColor": "#323846",
"innerBorderColor": "#323846",
"Header": {
"activeBackground": "#434c5e"
}
},
"ProgressBar": {
"background": "#88c0d0",
"failedColor": "#bf616a",
"failedEndColor": "#bf616a",
"indeterminateEndColor": "#88c0d0",
"indeterminateStartColor": "#88c0d0",
"passedColor": "#a3be8c",
"passedEndColor": "#a3be8c",
"progressColor": "#88c0d0",
"selectionBackground": "#3b4252",
"selectionForeground": "#d8dee9",
"trackColor": "#4c566a"
},
"RadioButtonMenuItem": {
"selectionBackground": "#3b4252"
},
"ScrollBar": {
"hoverThumbBorderColor": "#4c566a",
"hoverThumbColor": "#4c566a",
"hoverTrackColor": "#2e3440",
"thumb": "#434c5e",
"thumbBorderColor": "#434c5e",
"thumbColor": "#434c5e",
"thumbDarkShadow": "#2e3440",
"thumbHighlight": "#2e3440",
"thumbShadow": "#2e3440",
"track": "#2e3440",
"trackColor": "#2e3440",
"trackHighlight": "#4c566a",
"Mac": {
"hoverThumbBorderColor": "#4c566a",
"hoverThumbColor": "#4c566a",
"hoverTrackColor": "#2e3440",
"thumbBorderColor": "#434c5e",
"thumbColor": "#434c5e",
"trackColor": "#2e3440",
"Transparent": {
"hoverThumbColor": "#4c566a",
"hoverTrackColor": "#2e3440",
"thumbBorderColor": "#434c5e",
"thumbColor": "#434c5e",
"trackColor": "#2e3440"
}
},
"Transparent": {
"hoverThumbBorderColor": "#4c566a",
"hoverThumbColor": "#4c566a",
"hoverTrackColor": "#2e3440",
"thumbBorderColor": "#434c5e",
"thumbColor": "#434c5e",
"trackColor": "#2e3440"
}
},
"SearchEverywhere": {
"Advertiser": {
"background": "#3b4252",
"foreground": "#d8dee9"
},
"SearchField": {
"borderColor": "#3b4252",
"infoForeground": "#81a1c1"
},
"Tab": {
"selectedBackground": "#3b4252",
"selectedForeground": "#d8dee9"
}
},
"SearchMatch": {
"endBackground": "#88c0d0",
"startBackground": "#88c0d0"
},
"SidePanel": {
"background": "#323846"
},
"SpeedSearch": {
"background": "#3b4252",
"borderColor": "#3b4252",
"foreground": "#88c0d0"
},
"StatusBar": {
"hoverBackground": "#4c566a",
"borderColor": "#3b4252"
},
"TabbedPane": {
"contentAreaColor": "#4c566a",
"disabledUnderlineColor": "#4c566a",
"focus": "#3b4252",
"focusColor": "#3b4252",
"hoverColor": "#3b4252",
"underlineColor": "#88c0d0"
},
"Table": {
"background": "#323846",
"gridColor": "#2e3440",
"selectionInactiveForeground": "#e5e9f0",
"stripeColor": "#3b4252"
},
"TableHeader": {
"background": "#434c5e",
"cellBorder": "#434c5e",
"foreground": "#88c0d0"
},
"TextArea": {
"background": "#3b4252",
"caretForeground": "#eceff4",
"selectionForeground": "#d8dee9"
},
"TextField": {
"background": "#3b4252",
"caretForeground": "#eceff4",
"darkShadow": "#3b4252"
},
"ToggleButton": {
"background": "#3b4252",
"buttonColor": "#2e3440",
"offBackground": "#4c566a",
"offForeground": "#d8dee9",
"onBackground": "#88c0d0",
"onForeground": "#2e3440"
},
"ToolTip": {
"background": "#3b4252",
"infoForeground": "#88c0d0",
"Actions": {
"background": "#3b4252",
"infoForeground": "#88c0d0"
}
},
"ToolWindow": {
"Button": {
"hoverBackground": "#3b4252",
"selectedBackground": "#4c566a",
"selectedForeground": "#eceff4"
},
"Header": {
"background": "#4c566a"
},
"HeaderCloseButton": {
"background": "#4c566a"
},
"HeaderTab": {
"hoverBackground": "#81a1c1",
"hoverInactiveBackground": "#4c566a",
"selectedBackground": "#81a1c1",
"selectedInactiveBackground": "#4c566a"
}
},
"Tree": {
"background": "#323846",
"selectionBackground": "#88c0d0",
"selectionForeground": "#2e3440"
},
"ValidationTooltip": {
"errorBackground": "#bf616a",
"errorBorderColor": "#bf616a",
"warningBackground": "#ebcb8b",
"warningBorderColor": "#ebcb8b"
},
"VersionControl": {
"FileHistory": {
"Commit": {
"selectedBranchBackground": "#4c566a"
}
},
"GitLog": {
"headIconColor": "#a3be8c",
"localBranchIconColor": "#5e81ac",
"otherIconColor": "#b48ead",
"remoteBranchIconColor": "#8fbcbb",
"tagIconColor": "#88c0d0"
},
"HgLog": {
"bookmarkIconColor": "#d08770",
"branchIconColor": "#88c0d0",
"closedBranchIconColor": "#616e88",
"headIconColor": "#a3be8c",
"localTagIconColor": "#5e81ac",
"mqTagIconColor": "#8fbcbb",
"tagIconColor": "#88c0d0",
"tipIconColor": "#5e81ac"
},
"Log": {
"Commit": {
"currentBranchBackground": "#2e3440",
"unmatchedForeground": "#d8dee9"
}
},
"RefLabel": {
"backgroundBase": "#4c566a",
"foreground": "#81a1c1"
}
},
"WelcomeScreen": {
"separatorColor": "#2e3440",
"captionBackground": "#2e3440",
"captionForeground": "#88c0d0",
"footerBackground": "#3b4252",
"footerForeground": "#eceff4",
"groupIconBorderColor": "#88c0d0",
"headerBackground": "#3b4252",
"headerForeground": "#d8dee9",
"Projects": {
"background": "#3b4252"
}
}
},
"icons": {
"ColorPalette": {
"Actions.Blue": "#88c0d0",
"Actions.Green": "#a3be8c",
"Actions.Grey": "#7b88a1",
"Actions.GreyInline": "#7b88a1",
"Actions.GreyInline.Dark": "#616e88",
"Actions.Red": "#bf616a",
"Actions.Yellow": "#ebcb8b",
"Checkbox.Background.Default.Dark": "#4c566a",
"Checkbox.Background.Disabled.Dark": "#2e3440",
"Checkbox.Background.Selected.Dark": "#4c566a",
"Checkbox.Border.Default.Dark": "#4c566a",
"Checkbox.Border.Disabled.Dark": "#3b4252",
"Checkbox.Border.Selected.Dark": "#4c566a",
"Checkbox.Focus.Thin.Default.Dark": "#88c0d0",
"Checkbox.Focus.Thin.Selected.Dark": "#4c566a",
"Checkbox.Focus.Wide.Dark": "#88c0d0",
"Checkbox.Foreground.Disabled.Dark": "#4c566a",
"Checkbox.Foreground.Selected.Dark": "#88c0d0",
"Objects.BlackText": "#2e3440",
"Objects.Blue": "#88c0d0",
"Objects.Green": "#a3be8c",
"Objects.GreenAndroid": "#a3be8c",
"Objects.Grey": "#7b88a1",
"Objects.Purple": "#b48ead",
"Objects.Red": "#bf616a",
"Objects.RedStatus": "#bf616a",
"Objects.Yellow": "#ebcb8b",
"Objects.YellowDark": "#ebcb8b"
}
}
}

View File

@@ -1,21 +0,0 @@
MIT License
Copyright (c) 2019 Mark Skelton
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -1,372 +0,0 @@
{
"name": "One Dark",
"dark": true,
"author": "Mark Skelton",
"editorScheme": "/themes/one_dark.xml",
"ui": {
"*": {
"background": "#21252b",
"foreground": "#abb2bf",
"infoForeground": "#5c6370",
"selectionBackground": "#323844",
"selectionInactiveBackground": "#2c313a",
"selectionBackgroundInactive": "#2c313a",
"selectionForeground": "#d7dae0",
"disabledBackground": "#21252b",
"inactiveBackground": "#21252b",
"acceleratorForeground": "#E6E6E6",
"acceleratorSelectionForeground": "#E6E6E6",
"errorForeground": "#cd3359",
"borderColor": "#46494f",
"disabledBorderColor": "#2d3137",
"focusColor": "#21252b",
"focusedBorderColor": "#568AF2",
"separatorColor": "#32363c"
},
"ActionButton": {
"hoverBackground": "#3d424b",
"hoverBorderColor": "#3d424b",
"pressedBackground": "#333841",
"pressedBorderColor": "#333841"
},
"Button": {
"foreground": "#a0a7b4",
"startBackground": "#3d424b",
"endBackground": "#3d424b",
"startBorderColor": "#464c55",
"endBorderColor": "#464c55",
"shadowColor": "#21252b",
"focusedBorderColor": "#646a73",
"default": {
"foreground": "#ffffff",
"startBackground": "#568AF2",
"endBackground": "#568AF2",
"startBorderColor": "#568AF2",
"endBorderColor": "#568AF2",
"focusedBorderColor": "#4269b9",
"focusColor": "#4269b9"
}
},
"Borders": {
"color": "#333841",
"ContrastBorderColor": "#333841"
},
"ComboBox": {
"nonEditableBackground": "#333841",
"background": "#333841",
"selectionBackground": "#4d78cc",
"ArrowButton": {
"iconColor": "#abb2bf",
"disabledIconColor": "#2c313a",
"nonEditableBackground": "#333841"
}
},
"ComboPopup.border": "1,1,1,1,2d3137",
"CompletionPopup": {
"matchForeground": "#568AF2"
},
"Component": {
"errorFocusColor": "#802d43",
"inactiveErrorFocusColor": "#522530",
"warningFocusColor": "#8c812b",
"inactiveWarningFocusColor": "#47441f"
},
"Counter": {
"background": "#3d424b",
"foreground": "#abb2bf"
},
"DebuggerPopup.borderColor": "#46494f",
"DefaultTabs": {
"underlineColor": "#568AF2",
"inactiveUnderlineColor": "#4269b9",
"hoverBackground": "#323844"
},
"DragAndDrop": {
"areaForeground": "#abb2bf",
"areaBackground": "#323844",
"areaBorderColor": "#46494f"
},
"Editor": {
"background": "#282c34",
"foreground": "#abb2bf",
"shortcutForeground": "#568AF2"
},
"EditorPane.inactiveBackground": "#282c34",
"EditorTabs": {
"underlinedTabBackground": "#3d424b"
},
"FileColor": {
"Yellow": "#563b2255",
"Green": "#334e1f55",
"Blue": "#28436d55",
"Violet": "#37115655",
"Orange": "#562b2255",
"Rose": "#561a2b55"
},
"Label": {
"infoForeground": "#7e8491"
},
"Link": {
"activeForeground": "#6494ed",
"hoverForeground": "#6494ed",
"pressedForeground": "#6494ed",
"visitedForeground": "#6494ed"
},
"MenuBar.borderColor": "#46494f",
"Menu.borderColor": "#2d3137",
"NavBar.borderColor": "#46494f",
"Notification": {
"background": "#3d424b",
"borderColor": "#53565f",
"errorForeground": "#abb2bf",
"errorBackground": "#4d232e",
"errorBorderColor": "#692746",
"MoreButton": {
"background": "#2f343c",
"innerBorderColor": "#53565f"
},
"ToolWindow": {
"informativeForeground": "#abb2bf",
"informativeBackground": "#2e4280",
"informativeBorderColor": "#252555",
"warningForeground": "#abb2bf",
"warningBackground": "#735822",
"warningBorderColor": "#5f4422",
"errorForeground": "#abb2bf",
"errorBackground": "#802d43",
"errorBorderColor": "#552029"
}
},
"ParameterInfo": {
"background": "#3d424b",
"foreground": "#abb2bf",
"infoForeground": "#5c6370",
"currentParameterForeground": "#ffffff"
},
"Plugins": {
"disabledForeground": "#5c6370",
"lightSelectionBackground": "#323844",
"tagBackground": "#414855",
"tagForeground": "#abb2bf",
"Button": {
"installForeground": "#568AF2",
"installBorderColor":"#568AF2",
"installFillForeground": "#ffffff",
"installFillBackground": "#568AF2",
"updateForeground":"#ffffff",
"updateBackground": "#568AF2",
"updateBorderColor": "#568AF2"
},
"SearchField": {
"background": "#282c34",
"borderColor": "#1b1d21"
},
"SectionHeader.background": "#414855",
"Tab": {
"selectedForeground": "#abb2bf",
"selectedBackground": "#323844",
"hoverBackground": "#323844"
}
},
"Popup": {
"paintBorder": false,
"Toolbar.borderColor": "#3d424b",
"Header.activeBackground": "#414855",
"Header.inactiveBackground": "#2c313a",
"Advertiser": {
"foreground": "#5c6370",
"borderColor": "#2d3137"
}
},
"ProgressBar": {
"trackColor": "#1D1D26",
"progressColor": "#568AF2",
"indeterminateStartColor": "#568AF2",
"indeterminateEndColor": "#313469",
"failedColor": "#bd3c5f",
"failedEndColor": "#472c33",
"passedColor": "#239E62",
"passedEndColor": "#2b4242"
},
"SearchEverywhere": {
"Advertiser.foreground": "#5c6370",
"Header.background": "#21252b",
"SearchField":{
"background": "#282c34",
"borderColor": "#1b1d21"
},
"Tab": {
"selectedForeground": "#abb2bf",
"selectedBackground": "#323844"
}
},
"SearchMatch": {
"startBackground": "#568AF2",
"endBackground": "#568AF2"
},
"SpeedSearch": {
"foreground": "#abb2bf",
"borderColor": "#3d424b",
"background": "#3d424b",
"errorForeground": "#e06c75"
},
"TabbedPane": {
"underlineColor": "#568AF2",
"contentAreaColor": "#323844",
"hoverColor": "#323844"
},
"Table": {
"background": "#282c34",
"stripeColor": "#2c313a",
"selectionForeground": "#ffffff",
"foreground": "#abb2bf",
"dropLineColor": "#abb2bf",
"focusCellForeground": "#abb2bf",
"gridColor": "#5c6370",
"lightSelectionInactiveForeground": "#abb2bf",
"lightSelectionForeground": "#abb2bf",
"selectionBackground": "#3d424b",
"selectionInactiveForeground": "#abb2bf",
"lightSelectionBackground": "#414855",
"lightSelectionInactiveBackground": "#323844"
},
"TextArea": {
"background": "#282c34",
"selectionBackground": "#414855"
},
"TextField": {
"background": "#282c34",
"selectionBackground": "#414855"
},
"ToggleButton": {
"onForeground": "#ffffff",
"onBackground": "#568AF2",
"offForeground": "#9f9fa6",
"offBackground": "#3d424b",
"borderColor": "#3d424b",
"buttonColor": "#5c6370"
},
"ToolTip": {
"background": "#3d424b"
},
"ToolWindow": {
"Button": {
"hoverBackground": "#323844",
"selectedBackground": "#3d424b",
"selectedForeground": "#abb2bf"
},
"Header": {
"background": "#414855",
"inactiveBackground": "#323844",
"borderColor": "#21252b"
},
"HeaderTab": {
"hoverBackground": "#323844",
"hoverInactiveBackground": "#3d424b",
"selectedBackground": "#323844",
"selectedInactiveBackground": "#3d424b"
}
},
"Tree": {
"selectionBackground": "#4d78cc",
"modifiedItemForeground": "#568AF2",
"rowHeight": 20
},
"ValidationTooltip": {
"errorBackground": "#802d43",
"errorBorderColor": "#802d43",
"warningBackground": "#735822",
"warningBorderColor": "#5f4422"
},
"VersionControl": {
"Log.Commit": {
"currentBranchBackground": "#21252b",
"unmatchedForeground": "#5c6370"
},
"RefLabel": {
"backgroundBrightness": 0.3,
"backgroundBase": "#5c6370",
"foreground": "#abb2bf"
}
},
"WelcomeScreen": {
"Projects.selectionInactiveBackground": "#2c313a",
"separatorColor": "#2c313a"
}
},
"icons": {
"ColorPalette": {
"Checkbox.Background.Default.Dark": "#282c34",
"Checkbox.Border.Default.Dark": "#414855",
"Checkbox.Foreground.Selected.Dark": "#abb2bf",
"Checkbox.Focus.Wide.Dark": "#568AF2",
"Checkbox.Focus.Thin.Default.Dark": "#568AF2",
"Checkbox.Focus.Thin.Selected.Dark": "#568AF2",
"Checkbox.Background.Disabled.Dark": "#21252b",
"Checkbox.Border.Disabled.Dark": "#2c313a",
"Checkbox.Foreground.Disabled.Dark": "#5c6370"
}
}
}

View File

@@ -1,7 +0,0 @@
Copyright 2019 Tyler B. Thrailkill
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@@ -1,433 +0,0 @@
{
"name": "Solarized Dark",
"dark": true,
"author": "Tyler Thrailkill",
"editorScheme": "/themes/solarizedDark.xml",
"colors": {
"background": "#002b36",
"backgroundEmpty": "#00212c",
"backgroundHighlights": "#073642",
"backgroundHighlightsShading": "#073642ab",
"primaryText": "#839496",
"inverseBackground": "#fdf6e3",
"inverseBackgroundHighlights": "#eee8d5",
"inversePrimaryText": "#657b83",
"inverseSecondaryText": "#93a1a1",
"inverseEmphasizedContent": "#586e75",
"secondaryText": "#586e75",
"backgroundHighlightsShade1": "#074855",
"backgroundHighlightsShade2": "#0A677A",
"backgroundHighlightsShade2Shading": "#0A677Ac3",
"emphasizedContent": "#93a1a1",
"yellow": "#074855",
"green": "#213d37",
"blue": "#2aa198",
"violet": "#6c71c4",
"orange": "#cb4b16",
"rose": "#dc322f",
"maskColor": "#0d0d0d"
},
"ui": {
"*": {
"background": "backgroundHighlights",
"foreground": "primaryText",
"infoForeground": "secondaryText",
"selectionBackground": "inverseEmphasizedContent",
"selectionForeground": "inverseBackground",
"selectionInactiveBackground": "backgroundHighlightsShade1",
"selectionBackgroundInactive": "backgroundHighlightsShade1",
"lightSelectionBackground": "backgroundHighlightsShade1",
"lightSelectionForeground": "primaryText",
"lightSelectionInactiveBackground": "backgroundHighlights",
"lightSelectionInactiveForeground":"primaryText",
"disabledBackground": "background",
"inactiveBackground": "background",
"disabledForeground": "secondaryText",
"disabledText": "secondaryText",
"inactiveForeground": "secondaryText",
"acceleratorForeground": "primaryText",
"acceleratorSelectionForeground": "primaryText",
"errorForeground": "#dd3962",
"borderColor": "emphasizedContent",
"disabledBorderColor": "secondaryText",
"focusColor": "#778282",
"focusedBorderColor": "emphasizedContent",
"separatorForeground": "secondaryText",
"separatorColor": "backgroundHighlightsShade1",
"lineSeparatorColor": "#55506b",
"modifiedItemForeground": "#b279f2"
},
"//": "affects buttons like the 'Play' or 'Debug' buttons",
"ActionButton": {
"hoverBackground": "backgroundHighlightsShade1",
"hoverBorderColor": "backgroundHighlightsShade1",
"pressedBackground": "backgroundHighlightsShade1",
"pressedBorderColor": "backgroundHighlightsShade1"
},
"Button": {
"startBackground": "backgroundHighlightsShade1",
"endBackground": "backgroundHighlightsShade1",
"startBorderColor": "backgroundHighlights",
"endBorderColor": "backgroundHighlights",
"shadowColor": "background",
"default": {
"foreground": "inverseBackground",
"startBackground": "backgroundHighlightsShade2",
"endBackground": "backgroundHighlightsShade2",
"startBorderColor": "backgroundHighlightsShade2Shading",
"endBorderColor": "backgroundHighlightsShade2Shading",
"focusedBorderColor": "primaryText",
"focusColor": "#778282",
"shadowColor": "background"
}
},
"Borders": {
"color": "backgroundHighlights",
"ContrastBorderColor": "background"
},
"CheckBox": {
"background": "background"
},
"COMMENT:": "you can put comments in like this",
"ComboBox": {
"nonEditableBackground": "backgroundHighlightsShade1",
"background": "backgroundHighlightsShading",
"ArrowButton": {
"iconColor": "emphasizedContent",
"disabledIconColor": "primaryText",
"nonEditableBackground": "backgroundHighlightsShade1"
}
},
"ComboPopup.border": "1,1,1,1,64647A",
"CompletionPopup": {
"matchForeground": "#ED94FF",
"matchSelectionForeground": "#ED94FF"
},
"Component": {
"errorFocusColor": "#993750",
"inactiveErrorFocusColor": "#522530",
"warningFocusColor": "#8c812b",
"inactiveWarningFocusColor": "#47441f",
"iconColor": "#77728fCC",
"hoverIconColor": "#8b85a6"
},
"Counter": {
"background": "#FFFFFF80",
"foreground": "#000000"
},
"DebuggerPopup.borderColor": "#524e66",
"DefaultTabs": {
"background": "backgroundHighlightsShade1",
"borderColor": "backgroundHighlightsShade1",
"hoverBackground": "backgroundHighlightsShade2",
"inactiveUnderlineColor": "backgroundHighlightsShade2",
"underlineColor": "backgroundHighlightsShade2",
"underlinedTabBackground": "backgroundHighlights",
"underlinedTabForeground": "primaryText",
"underlineHeight": 5
},
"DragAndDrop": {
"areaForeground": "primaryText",
"areaBackground": "#702F91",
"areaBorderColor": "#343142"
},
"Editor": {
"background": "background",
"foreground": "emphasizedContent",
"shortcutForeground": "#2aa198"
},
"EditorPane.inactiveBackground": "background",
"EditorTabs": {
"borderColor": "background",
"underlineColor": "backgroundHighlights",
"inactiveUnderlineColor": "background",
"background": "backgroundHighlightsShade1",
"underlinedTabBackground": "background",
"hoverMaskColor": "backgroundHighlightsShade2",
"underlinedTabForeground": "primaryText",
"inactiveColoredFileBackground": "backgroundHighlightsShade1",
"underlineHeight": 0
},
"FileColor": {
"Yellow": "yellow",
"Green": "green",
"Blue": "blue",
"Violet": "violet",
"Orange": "orange",
"Rose": "rose"
},
"InplaceRefactoringPopup.borderColor": "#474359",
"Link": {
"activeForeground": "#7094ff",
"hoverForeground": "#7094FF",
"pressedForeground": "#7094FF",
"visitedForeground": "#7094FF"
},
"NavBar.borderColor": "#1a1721",
"Notification": {
"background": "backgroundHighlightsShade1",
"borderColor": "backgroundHighlights",
"errorForeground": "primaryText",
"errorBackground": "#4d232e",
"errorBorderColor": "#802e44",
"MoreButton.innerBorderColor": "#1a1721",
"ToolWindow": {
"informativeForeground": "primaryText",
"informativeBackground": "#2e4280",
"informativeBorderColor": "#17254d",
"warningForeground": "primaryText",
"warningBackground": "backgroundHighlights",
"warningBorderColor": "#403013",
"errorForeground": "primaryText",
"errorBackground": "#802d43",
"errorBorderColor": "#4d1c2b"
}
},
"Panel": {
"background": "background"
},
"ParameterInfo": {
"background": "backgroundHighlightsShade1",
"foreground": "primaryText",
"infoForeground": "ababb3",
"currentOverloadBackground": "backgroundHighlights",
"currentParameterForeground": "primaryText"
},
"Plugins": {
"SearchField.borderColor": "emphasizedContent",
"SearchField.background": "background",
"SectionHeader.background": "backgroundHighlights",
"tagBackground": "backgroundHighlightsShade1",
"tagForeground": "primaryText",
"Button": {
"installForeground": "primaryText",
"installBorderColor":"backgroundHighlightsShade1",
"installFillForeground": "primaryText",
"installFillBackground": "#713a91",
"updateForeground":"primaryText",
"updateBackground": "backgroundHighlightsShade1",
"updateBorderColor": "secondaryText"
}
},
"Popup": {
"paintBorder": true,
"borderColor": "backgroundHighlightsShade1",
"inactiveBorderColor": "backgroundHighlights",
"Toolbar.borderColor": "#1a1721",
"Header.activeBackground": "backgroundHighlightsShade1",
"Header.inactiveBackground": "backgroundHighlightsShade1",
"Advertiser": {
"foreground": "secondaryText",
"borderColor": "backgroundHighlightsShade1",
"borderInsets": "4,8,3,0"
}
},
"PopupMenu": {
"borderWidth": 1,
"borderInsets": "4,1,4,1"
},
"ProgressBar": {
"trackColor": "#1D1D26",
"progressColor": "#268bd2",
"indeterminateStartColor": "#268bd2",
"indeterminateEndColor": "#2aa198",
"failedColor": "#bd3c5f",
"failedEndColor": "#472c33",
"passedColor": "#239E62",
"passedEndColor": "#2b4242"
},
"SearchEverywhere": {
"Header.background": "backgroundHighlights",
"Tab": {
"selectedForeground": "primaryText",
"selectedBackground": "backgroundHighlightsShade1"
},
"SearchField":{
"background": "background",
"borderColor": "#1a1721"
},
"Advertiser.foreground": "#8785a6"
},
"SearchMatch": {
"startBackground": "#cca929",
"endBackground": "#cca929"
},
"SpeedSearch": {
"foreground": "primaryText",
"borderColor": "backgroundHighlights",
"background": "background",
"errorForeground": "#ff80a1"
},
"StatusBar.borderColor": "background",
"TabbedPane": {
"underlineColor": "backgroundHighlightsShade2",
"disabledUnderlineColor": "backgroundHighlightsShade2",
"contentAreaColor": "backgroundHighlights",
"background": "backgroundHighlightsShade1",
"foreground": "primaryText",
"disabledForeground": "primaryText",
"focusColor": "backgroundHighlights",
"hoverColor": "backgroundHighlightsShade2"
},
"TableHeader.cellBorder": "3,0,3,0",
"Table.stripeColor": "backgroundHighlightsShade1",
"TextArea": {
"background": "backgroundHighlights",
"selectionBackground": "backgroundHighlightsShade2"
},
"TextField": {
"background": "backgroundHighlights",
"selectionBackground": "backgroundHighlightsShade2"
},
"ToggleButton": {
"onForeground": "primaryText",
"onBackground": "#543073",
"offForeground": "#9f9fa6",
"offBackground": "background",
"buttonColor": "#666380",
"borderColor": "#666380"
},
"ToolTip": {
"background": "backgroundHighlightsShade1",
"Actions.background": "#323245"
},
"ToolWindow": {
"Header": {
"background": "backgroundHighlightsShade1",
"inactiveBackground": "backgroundHighlights",
"borderColor": "backgroundHighlights"
},
"HeaderTab": {
"selectedBackground": "#0a0a0a66",
"selectedInactiveBackground": "#0a0a0a4D",
"hoverBackground": "#0a0a0a66",
"hoverInactiveBackground": "#0a0a0a66"
},
"Button": {
"hoverBackground": "backgroundHighlightsShade1",
"selectedBackground": "backgroundHighlightsShade1",
"selectedForeground": "primaryText"
}
},
"Tree": {
"rowHeight": 20,
"background": "backgroundEmpty"
},
"ValidationTooltip": {
"errorBackground": "#802d43",
"errorBorderColor": "#4d1c2b",
"warningBackground": "#735822",
"warningBorderColor": "#403013"
},
"VersionControl": {
"Log.Commit": {
"currentBranchBackground": "green",
"unmatchedForeground": "#6d6a80"
},
"FileHistory.Commit.selectedBranchBackground": "#202340"
},
"WelcomeScreen": {
"comments": "#713a91",
"separatorColor": "backgroundHighlights",
"Projects": {
"background": "backgroundHighlights",
"selectionBackground": "backgroundHighlightsShade1",
"selectionInactiveBackground": "backgroundHighlightsShade1"
}
}
},
"icons": {
"ColorPalette": {
"Actions.Grey": "#a4a1b3",
"Actions.Red": "#cb4b16",
"Actions.Yellow": "#b58900",
"Actions.Green": "#5c65b8",
"Actions.Blue": "#268bd2",
"Actions.GreyInline.Dark": "#9f99bfb3",
"Objects.Grey": "#9790ad",
"Objects.RedStatus": "#dd3962",
"Objects.Red": "#c63a5d",
"Objects.Pink": "#f98b9e",
"Objects.Yellow": "#caba2d",
"Objects.Green": "#239e62",
"Objects.Blue": "#598bff",
"Objects.Purple": "#af71e0",
"Objects.BlackText": "#000000ff",
"Objects.YellowDark": "#988c26",
"Objects.GreenAndroid": "#78c257",
"Checkbox.Background.Default.Dark": "backgroundHighlightsShade1",
"Checkbox.Border.Default.Dark": "secondaryText",
"Checkbox.Foreground.Selected.Dark": "#a4a1b3",
"Checkbox.Focus.Wide.Dark": "emphasizedContent",
"Checkbox.Focus.Thin.Default.Dark": "primaryText",
"Checkbox.Focus.Thin.Selected.Dark": "primaryText",
"Checkbox.Background.Disabled.Dark": "backgroundHighlights",
"Checkbox.Border.Disabled.Dark": "backgroundHighlightsShade1",
"Checkbox.Foreground.Disabled.Dark": "secondaryText"
}
}
}

View File

@@ -1,7 +0,0 @@
Copyright 2019 Tyler B. Thrailkill
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@@ -1,433 +0,0 @@
{
"name": "Solarized Light",
"dark": false,
"author": "Tyler Thrailkill",
"editorScheme": "/themes/solarizedLight.xml",
"colors": {
"background": "#fdf6e3",
"backgroundEmpty": "#eee8d4",
"backgroundHighlights": "#eee8d5",
"backgroundHighlightsShading": "#073642ab",
"primaryText": "#657b83",
"inverseBackground": "#002b36",
"inverseBackgroundHighlights": "#073642",
"inversePrimaryText": "#839496",
"inverseSecondaryText": "#586e75",
"inverseEmphasizedContent": "#93a1a1",
"secondaryText": "#93a1a1",
"backgroundHighlightsShade1": "#cdc8b7",
"backgroundHighlightsShade2": "#A4A092",
"backgroundHighlightsShade2Shading": "#0A677Ac3",
"emphasizedContent": "#586e75",
"yellow": "#b5890066",
"green": "#baebda",
"blue": "#2aa198",
"violet": "#6c71c4",
"orange": "#cb4b16",
"rose": "#dc322f",
"maskColor": "#b58900"
},
"ui": {
"*": {
"background": "backgroundHighlights",
"foreground": "primaryText",
"infoForeground": "secondaryText",
"selectionBackground": "inverseEmphasizedContent",
"selectionForeground": "inverseBackground",
"selectionInactiveBackground": "backgroundHighlightsShade1",
"selectionBackgroundInactive": "backgroundHighlightsShade1",
"lightSelectionBackground": "backgroundHighlightsShade1",
"lightSelectionForeground": "primaryText",
"lightSelectionInactiveBackground": "backgroundHighlights",
"lightSelectionInactiveForeground":"primaryText",
"disabledBackground": "background",
"inactiveBackground": "background",
"disabledForeground": "secondaryText",
"disabledText": "secondaryText",
"inactiveForeground": "secondaryText",
"acceleratorForeground": "primaryText",
"acceleratorSelectionForeground": "primaryText",
"errorForeground": "#dd3962",
"borderColor": "emphasizedContent",
"disabledBorderColor": "secondaryText",
"focusColor": "#778282",
"focusedBorderColor": "emphasizedContent",
"separatorForeground": "secondaryText",
"separatorColor": "backgroundHighlightsShade1",
"lineSeparatorColor": "#55506b",
"modifiedItemForeground": "#b279f2"
},
"//": "affects buttons like the 'Play' or 'Debug' buttons",
"ActionButton": {
"hoverBackground": "backgroundHighlightsShade1",
"hoverBorderColor": "backgroundHighlightsShade1",
"pressedBackground": "backgroundHighlightsShade1",
"pressedBorderColor": "backgroundHighlightsShade1"
},
"Button": {
"startBackground": "backgroundHighlightsShade1",
"endBackground": "backgroundHighlightsShade1",
"startBorderColor": "backgroundHighlights",
"endBorderColor": "backgroundHighlights",
"shadowColor": "background",
"default": {
"foreground": "inverseBackground",
"startBackground": "backgroundHighlightsShade2",
"endBackground": "backgroundHighlightsShade2",
"startBorderColor": "backgroundHighlightsShade2Shading",
"endBorderColor": "backgroundHighlightsShade2Shading",
"focusedBorderColor": "primaryText",
"focusColor": "#778282",
"shadowColor": "background"
}
},
"Borders": {
"color": "backgroundHighlights",
"ContrastBorderColor": "background"
},
"CheckBox": {
"background": "background"
},
"COMMENT:": "you can put comments in like this",
"ComboBox": {
"nonEditableBackground": "backgroundHighlightsShade1",
"background": "backgroundHighlightsShading",
"ArrowButton": {
"iconColor": "emphasizedContent",
"disabledIconColor": "primaryText",
"nonEditableBackground": "backgroundHighlightsShade1"
}
},
"ComboPopup.border": "1,1,1,1,64647A",
"CompletionPopup": {
"matchForeground": "#ED94FF",
"matchSelectionForeground": "#ED94FF"
},
"Component": {
"errorFocusColor": "#993750",
"inactiveErrorFocusColor": "#522530",
"warningFocusColor": "#8c812b",
"inactiveWarningFocusColor": "#47441f",
"iconColor": "#77728fCC",
"hoverIconColor": "#8b85a6"
},
"Counter": {
"background": "#FFFFFF80",
"foreground": "#000000"
},
"DebuggerPopup.borderColor": "#524e66",
"DefaultTabs": {
"background": "backgroundHighlightsShade1",
"borderColor": "backgroundHighlightsShade1",
"hoverBackground": "backgroundHighlightsShade2",
"inactiveUnderlineColor": "backgroundHighlightsShade2",
"underlineColor": "backgroundHighlightsShade2",
"underlinedTabBackground": "backgroundHighlights",
"underlinedTabForeground": "primaryText",
"underlineHeight": 5
},
"DragAndDrop": {
"areaForeground": "primaryText",
"areaBackground": "#702F91",
"areaBorderColor": "#343142"
},
"Editor": {
"background": "background",
"foreground": "emphasizedContent",
"shortcutForeground": "#2aa198"
},
"EditorPane.inactiveBackground": "background",
"EditorTabs": {
"borderColor": "background",
"underlineColor": "backgroundHighlights",
"inactiveUnderlineColor": "background",
"background": "backgroundHighlightsShade1",
"underlinedTabBackground": "background",
"hoverMaskColor": "backgroundHighlightsShade2",
"underlinedTabForeground": "primaryText",
"inactiveColoredFileBackground": "backgroundHighlightsShade1",
"underlineHeight": 0
},
"FileColor": {
"Yellow": "yellow",
"Green": "green",
"Blue": "blue",
"Violet": "violet",
"Orange": "orange",
"Rose": "rose"
},
"InplaceRefactoringPopup.borderColor": "#474359",
"Link": {
"activeForeground": "#7094ff",
"hoverForeground": "#7094FF",
"pressedForeground": "#7094FF",
"visitedForeground": "#7094FF"
},
"NavBar.borderColor": "#1a1721",
"Notification": {
"background": "backgroundHighlightsShade1",
"borderColor": "backgroundHighlights",
"errorForeground": "primaryText",
"errorBackground": "#4d232e",
"errorBorderColor": "#802e44",
"MoreButton.innerBorderColor": "#1a1721",
"ToolWindow": {
"informativeForeground": "primaryText",
"informativeBackground": "#2e4280",
"informativeBorderColor": "#17254d",
"warningForeground": "primaryText",
"warningBackground": "backgroundHighlights",
"warningBorderColor": "#403013",
"errorForeground": "primaryText",
"errorBackground": "#802d43",
"errorBorderColor": "#4d1c2b"
}
},
"Panel": {
"background": "background"
},
"ParameterInfo": {
"background": "backgroundHighlightsShade1",
"foreground": "primaryText",
"infoForeground": "ababb3",
"currentOverloadBackground": "backgroundHighlights",
"currentParameterForeground": "primaryText"
},
"Plugins": {
"SearchField.borderColor": "emphasizedContent",
"SearchField.background": "background",
"SectionHeader.background": "backgroundHighlights",
"tagBackground": "backgroundHighlightsShade1",
"tagForeground": "primaryText",
"Button": {
"installForeground": "primaryText",
"installBorderColor":"backgroundHighlightsShade1",
"installFillForeground": "primaryText",
"installFillBackground": "#713a91",
"updateForeground":"primaryText",
"updateBackground": "backgroundHighlightsShade1",
"updateBorderColor": "secondaryText"
}
},
"Popup": {
"paintBorder": true,
"borderColor": "backgroundHighlightsShade1",
"inactiveBorderColor": "backgroundHighlights",
"Toolbar.borderColor": "#1a1721",
"Header.activeBackground": "backgroundHighlightsShade1",
"Header.inactiveBackground": "backgroundHighlightsShade1",
"Advertiser": {
"foreground": "secondaryText",
"borderColor": "backgroundHighlightsShade1",
"borderInsets": "4,8,3,0"
}
},
"PopupMenu": {
"borderWidth": 1,
"borderInsets": "4,1,4,1"
},
"ProgressBar": {
"trackColor": "#1D1D26",
"progressColor": "#268bd2",
"indeterminateStartColor": "#268bd2",
"indeterminateEndColor": "#2aa198",
"failedColor": "#bd3c5f",
"failedEndColor": "#472c33",
"passedColor": "#239E62",
"passedEndColor": "#2b4242"
},
"SearchEverywhere": {
"Header.background": "backgroundHighlights",
"Tab": {
"selectedForeground": "primaryText",
"selectedBackground": "backgroundHighlightsShade1"
},
"SearchField":{
"background": "background",
"borderColor": "#1a1721"
},
"Advertiser.foreground": "#8785a6"
},
"SearchMatch": {
"startBackground": "#cca929",
"endBackground": "#cca929"
},
"SpeedSearch": {
"foreground": "primaryText",
"borderColor": "backgroundHighlights",
"background": "background",
"errorForeground": "#ff80a1"
},
"StatusBar.borderColor": "background",
"TabbedPane": {
"underlineColor": "backgroundHighlightsShade2",
"disabledUnderlineColor": "backgroundHighlightsShade2",
"contentAreaColor": "backgroundHighlights",
"background": "backgroundHighlightsShade1",
"foreground": "primaryText",
"disabledForeground": "primaryText",
"focusColor": "backgroundHighlights",
"hoverColor": "backgroundHighlightsShade2"
},
"TableHeader.cellBorder": "3,0,3,0",
"Table.stripeColor": "backgroundHighlightsShade1",
"TextArea": {
"background": "backgroundHighlights",
"selectionBackground": "backgroundHighlightsShade2"
},
"TextField": {
"background": "backgroundHighlights",
"selectionBackground": "backgroundHighlightsShade2"
},
"ToggleButton": {
"onForeground": "primaryText",
"onBackground": "#543073",
"offForeground": "#9f9fa6",
"offBackground": "background",
"buttonColor": "#666380",
"borderColor": "#666380"
},
"ToolTip": {
"background": "backgroundHighlightsShade1",
"Actions.background": "#323245"
},
"ToolWindow": {
"Header": {
"background": "backgroundHighlightsShade1",
"inactiveBackground": "backgroundHighlights",
"borderColor": "backgroundHighlights"
},
"HeaderTab": {
"selectedBackground": "#0a0a0a66",
"selectedInactiveBackground": "#0a0a0a4D",
"hoverBackground": "#0a0a0a16",
"hoverInactiveBackground": "#0a0a0a16"
},
"Button": {
"hoverBackground": "backgroundHighlightsShade1",
"selectedBackground": "backgroundHighlightsShade1",
"selectedForeground": "primaryText"
}
},
"Tree": {
"rowHeight": 20,
"background": "backgroundEmpty"
},
"ValidationTooltip": {
"errorBackground": "#802d43",
"errorBorderColor": "#4d1c2b",
"warningBackground": "#735822",
"warningBorderColor": "#403013"
},
"VersionControl": {
"Log.Commit": {
"currentBranchBackground": "green",
"unmatchedForeground": "#6d6a80"
},
"FileHistory.Commit.selectedBranchBackground": "#202340"
},
"WelcomeScreen": {
"comments": "#713a91",
"separatorColor": "backgroundHighlights",
"Projects": {
"background": "backgroundHighlights",
"selectionBackground": "backgroundHighlightsShade1",
"selectionInactiveBackground": "backgroundHighlightsShade1"
}
}
},
"icons": {
"ColorPalette": {
"Actions.Grey": "#a4a1b3",
"Actions.Red": "#cb4b16",
"Actions.Yellow": "#b58900",
"Actions.Green": "#859900",
"Actions.Blue": "#268bd2",
"Actions.GreyInline.Dark": "#9f99bfb3",
"Objects.Grey": "#9790ad",
"Objects.RedStatus": "#dd3962",
"Objects.Red": "#c63a5d",
"Objects.Pink": "#f98b9e",
"Objects.Yellow": "#caba2d",
"Objects.Green": "#239e62",
"Objects.Blue": "#598bff",
"Objects.Purple": "#af71e0",
"Objects.BlackText": "#000000ff",
"Objects.YellowDark": "#988c26",
"Objects.GreenAndroid": "#78c257",
"Checkbox.Background.Default.Dark": "backgroundHighlightsShade1",
"Checkbox.Border.Default.Dark": "secondaryText",
"Checkbox.Foreground.Selected.Dark": "#a4a1b3",
"Checkbox.Focus.Wide.Dark": "emphasizedContent",
"Checkbox.Focus.Thin.Default.Dark": "primaryText",
"Checkbox.Focus.Thin.Selected.Dark": "primaryText",
"Checkbox.Background.Disabled.Dark": "backgroundHighlights",
"Checkbox.Border.Disabled.Dark": "backgroundHighlightsShade1",
"Checkbox.Foreground.Disabled.Dark": "secondaryText"
}
}
}

View File

@@ -1,21 +0,0 @@
MIT License
Copyright (c) 2019 Johannes Werner
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -1,431 +0,0 @@
{
"name": "vuesion-theme",
"dark": true,
"author": "Johannes Werner <johannes.werner8@gmail.com>",
"editorScheme": "/META-INF/vuesion_theme.xml",
"ui": {
"*": {
"background": "#202831",
"foreground": "#c9cbcf",
"infoForeground": "#6f7a86",
"selectionBackground": "#303a45",
"selectionForeground": "#ececee",
"selectionInactiveBackground": "#303a45",
"selectionBackgroundInactive": "#303a45",
"disabledBackground": "#70011f",
"inactiveBackground": "#70011f",
"disabledForeground": "#303a45",
"disabledText": "#303a45",
"inactiveForeground": "#ececee",
"acceleratorForeground": "#ececee",
"acceleratorSelectionForeground": "#ececee",
"errorForeground": "#c82600",
"borderColor": "#303a45",
"disabledBorderColor": "#303a45",
"focusColor": "#434e5b",
"focusedBorderColor": "#434e5b",
"hoverBorderColor": "#434e5b",
"pressedBorderColor": "#434e5b",
"separatorColor": "#303a45",
"lineSeparatorColor": "#434e5b"
},
"ActionButton": {
"hoverBackground": "#202831",
"pressedBackground": "#202831",
"hoverBorderColor": "#303a45",
"pressedBorderColor": "#303a45"
},
"Button": {
"startBackground": "#202831",
"endBackground": "#202831",
"startBorderColor": "#303a45",
"endBorderColor": "#303a45",
"default": {
"foreground": "#ececee",
"startBackground": "#f43b6c",
"endBackground": "#cd0940",
"startBorderColor": "#f43b6c",
"endBorderColor": "#cd0940",
"focusedBorderColor": "#ececee"
}
},
"Borders": {
"color": "#303a45",
"ContrastBorderColor": "#434e5b"
},
"ComboBox": {
"nonEditableBackground": "#202831",
"modifiedItemForeground": "#3d8beb",
"ArrowButton": {
"iconColor": "#ececee",
"disabledIconColor": "#303a45",
"nonEditableBackground": "#202831"
}
},
"ComboPopup.border": "1,1,1,1,303a45",
"CompletionPopup": {
"matchForeground": "#f43b6c",
"selectionBackground": "#202831",
"selectionInactiveBackground": "#202831"
},
"Component": {
"errorFocusColor": "#f43b6c",
"inactiveErrorFocusColor": "#c82600",
"warningFocusColor": "#f3c811",
"inactiveWarningFocusColor": "#864800",
"iconColor": "#c9cbcf",
"hoverIconColor": "#ececee"
},
"Counter": {
"background": "#202831",
"foreground": "#ececee"
},
"DebuggerPopup.borderColor": "#202831",
"DebuggerTabs.selectedBackground": "#303a45",
"DebuggerTabs.underlineHeight": 1,
"DefaultTabs": {
"underlineColor": "#3d8beb",
"inactiveUnderlineColor": "#8dc3f9",
"underlineHeight": 1,
"hoverBackground": "#303a45"
},
"DragAndDrop": {
"areaForeground": "#0c1014",
"areaBackground": "#303a45",
"areaBorderColor": "#303a45"
},
"Editor": {
"background": "#202831",
"foreground": "#ececee",
"shortcutForeground": "#6f7a86"
},
"EditorPane.inactiveBackground": "#202831",
"EditorTabs": {
"underlineColor": "#3d8beb",
"underlineHeight": 1,
"underlinedTabBackground": "#303a45",
"inactiveColoredFileBackground": "#202831"
},
"FileColor": {
"Yellow": "#202831",
"Green": "#202831",
"Blue": "#202831",
"Violet": "#202831",
"Orange": "#202831",
"Rose": "#202831"
},
"InplaceRefactoringPopup": {
"borderColor": "#303a45"
},
"Link": {
"activeForeground": "#3d8beb",
"hoverForeground": "#216fe0",
"pressedForeground": "#216fe0",
"visitedForeground": "#216fe0"
},
"MemoryIndicator": {
"usedBackground": "#202831",
"allocatedBackground": "#216fe0"
},
"NavBar.borderColor": "#303a45",
"Notification": {
"background": "#202831",
"errorForeground": "#ececee",
"errorBackground": "#70011f",
"errorBorderColor": "#70011f",
"MoreButton.innerBorderColor": "#0c1014",
"ToolWindow": {
"informativeForeground": "#ececee",
"informativeBackground": "#045a3f",
"informativeBorderColor": "#045a3f",
"warningForeground": "#ececee",
"warningBackground": "#864800",
"warningBorderColor": "#864800",
"errorForeground": "#ececee",
"errorBackground": "#70011f",
"errorBorderColor": "#70011f"
}
},
"ParameterInfo": {
"background": "#303a45",
"foreground": "#ececee",
"currentOverloadBackground": "#303a45",
"currentParameterForeground": "#f3c811",
"lineSeparatorColor": "#434e5b"
},
"Plugins": {
"Tab": {
"selectedForeground": "#ececee",
"selectedBackground": "#202831",
"hoverBackground": "#303a45"
},
"SearchField.borderColor": "#303a45",
"SectionHeader.background": "#303a45",
"tagBackground": "#303a45",
"tagForeground": "#ececee",
"Button": {
"installForeground": "#f43b6c",
"installBorderColor": "#f43b6c",
"installFillForeground": "#ececee",
"installFillBackground": "#f43b6c",
"updateForeground": "#ececee",
"updateBackground": "#f43b6c"
},
"lightSelectionBackground": "#303a45"
},
"Popup": {
"paintBorder": true,
"inactiveBorderColor": "#303a45",
"Toolbar.borderColor": "#303a45",
"separatorForeground": "#ececee",
"Header.activeBackground": "#216fe0",
"Header.inactiveBackground": "#063cbe",
"Advertiser": {
"background": "#202831",
"borderColor": "#303a45",
"borderInsets": "3,8,5,0"
}
},
"PopupMenu": {
"borderWidth": 1,
"borderInsets": "4,1,4,1"
},
"ProgressBar": {
"trackColor": "#ececee",
"progressColor": "#303a45",
"indeterminateStartColor": "#3d8beb",
"indeterminateEndColor": "#216fe0",
"failedColor": "#c82600",
"failedEndColor": "#570000",
"passedColor": "#40bf77",
"passedEndColor": "#096e4c"
},
"ScrollBar": {
"Transparent": {
"thumbColor": "#303a45",
"thumbBorderColor": "#303a45",
"hoverThumbColor": "#434e5b",
"hoverThumbBorderColor": "#434e5b",
"hoverTrackColor": "#434e5b"
},
"thumbColor": "#303a45",
"thumbBorderColor": "#303a45",
"hoverThumbColor": "#434e5b",
"hoverThumbBorderColor": "#434e5b",
"trackColor": "#434e5b",
"hoverTrackColor": "#434e5b",
"Mac": {
"Transparent": {
"thumbColor": "#303a45",
"thumbBorderColor": "#303a45",
"hoverThumbColor": "#434e5b",
"hoverThumbBorderColor": "#434e5b",
"hoverTrackColor": "#434e5b"
},
"thumbColor": "#303a45",
"thumbBorderColor": "#303a45",
"hoverThumbColor": "#434e5b",
"hoverThumbBorderColor": "#434e5b",
"trackColor": "#434e5b",
"hoverTrackColor": "#434e5b"
}
},
"SearchEverywhere": {
"Tab": {
"selectedForeground": "#ececee",
"selectedBackground": "#216fe0"
},
"SearchField.borderColor": "#303a45",
"Advertiser": {
"background": "#202831",
"borderInsets": "3,8,5,0"
}
},
"SearchMatch": {
"startBackground": "#90e0a4",
"endBackground": "#90e0a4"
},
"SpeedSearch": {
"foreground": "#ececee",
"borderColor": "#303a45",
"background": "#202831"
},
"StatusBar.borderColor": "#303a45",
"TabbedPane": {
"underlineColor": "#216fe0",
"tabSelectionHeight": 1,
"disabledUnderlineColor": "#d5aa00",
"contentAreaColor": "#ececee",
"hoverColor": "#303a45",
"focusColor": "#303a45"
},
"TableHeader": {
"cellBorder": "8,0,8,0"
},
"Table": {
"stripeColor": "#303a45",
"lightSelectionForeground": "#ececee",
"lightSelectionInactiveForeground": "#ececee",
"lightSelectionBackground": "#303a45",
"lightSelectionInactiveBackground": "#303a45"
},
"ToggleButton": {
"onForeground": "#ececee",
"onBackground": "#216fe0",
"offForeground": "#ececee",
"offBackground": "#0c1014",
"buttonColor": "#ececee",
"borderColor": "#303a45"
},
"ToolTip": {
"background": "#202831",
"Actions.background": "#202831"
},
"ToolWindow": {
"Header": {
"background": "#202831",
"inactiveBackground": "#202831"
},
"HeaderTab": {
"selectedBackground": "#303a45",
"selectedInactiveBackground": "#303a45",
"hoverBackground": "#303a45",
"hoverInactiveBackground": "#303a45",
"underlinedTabInactiveBackground": "#303a45",
"underlinedTabBackground": "#303a45",
"underlineColor": "#3d8beb",
"inactiveUnderlineColor": "#8dc3f9",
"underlineHeight": 1
},
"Button": {
"hoverBackground": "#303a45",
"selectedBackground": "#303a45",
"selectedForeground": "#ececee"
}
},
"Tree.modifiedItemForeground": "#216fe0",
"ValidationTooltip": {
"errorBackground": "#cd0940",
"errorBorderColor": "#cd0940",
"warningBackground": "#a56a01",
"warningBorderColor": "#a56a01"
},
"VersionControl": {
"Log.Commit": {
"currentBranchBackground": "#303a45",
"unmatchedForeground": "#ececee"
},
"RefLabel": {
"backgroundBase": "#303a45",
"backgroundBrightness": 0.7
},
"FileHistory.Commit.selectedBranchBackground": "#303a45"
},
"WelcomeScreen": {
"Projects.selectionInactiveBackground": "#216fe0",
"separatorColor": "#303a45"
},
"Window.border": "1,1,1,1,303a45"
},
"icons": {
"ColorPalette": {
"Actions.Grey": "#ececee",
"Actions.Red": "#c82600",
"Actions.Yellow": "#f3c811",
"Actions.Green": "#40bf77",
"Actions.Blue": "#216fe0",
"Actions.GreyInline.Dark": "#ececee",
"Objects.Grey": "#ececee",
"Objects.RedStatus": "#e84606",
"Objects.Red": "#e84606",
"Objects.Pink": "#ff92bb",
"Objects.Yellow": "#f3c811",
"Objects.Green": "#40bf77",
"Objects.Blue": "#216fe0",
"Objects.Purple": "#b30636",
"Objects.BlackText": "#0c1014",
"Objects.YellowDark": "#d5aa00",
"Objects.GreenAndroid": "#0d9660",
"Checkbox.Background.Default.Dark": "#202831",
"Checkbox.Border.Default.Dark": "#303a45",
"Checkbox.Foreground.Selected.Dark": "#ececee",
"Checkbox.Focus.Wide.Dark": "#216fe0",
"Checkbox.Focus.Thin.Default.Dark": "#216fe0",
"Checkbox.Focus.Thin.Selected.Dark": "#216fe0",
"Checkbox.Background.Disabled.Dark": "#202831",
"Checkbox.Border.Disabled.Dark": "#303a45",
"Checkbox.Foreground.Disabled.Dark": "#a56a01"
}
}
}