IntelliJ Themes:

- added "Arc Dark" and "Arc Dark - Orange" themes
- updated themes to newest versions (used IJThemesUpdater)
This commit is contained in:
Karl Tauber
2020-07-30 15:00:31 +02:00
parent 5ebdf64d30
commit a5b2c50f24
12 changed files with 754 additions and 45 deletions

View File

@@ -19,6 +19,8 @@ FlatLaf Change Log
combo box and vertical scroll bar is visible. (issue #137) combo box and vertical scroll bar is visible. (issue #137)
- ComboBox: Changed maximum row count of popup list to 15 (was 20). Set UI value - ComboBox: Changed maximum row count of popup list to 15 (was 20). Set UI value
`ComboBox.maximumRowCount` to any integer to use a different value. `ComboBox.maximumRowCount` to any integer to use a different value.
- IntelliJ Themes: Added "Arc Dark" and "Arc Dark - Orange" themes.
- IntelliJ Themes: Updated "Arc", "One Dark" and "Vuesion" themes.
## 0.38 ## 0.38

View File

@@ -13,6 +13,20 @@
"sourceCodeUrl": "https://gitlab.com/zlamalp/arc-theme-idea", "sourceCodeUrl": "https://gitlab.com/zlamalp/arc-theme-idea",
"sourceCodePath": "blob/master/resources/arc-theme-orange.theme.json" "sourceCodePath": "blob/master/resources/arc-theme-orange.theme.json"
}, },
"arc_theme_dark.theme.json": {
"name": "Arc Dark",
"license": "MIT",
"licenseFile": "arc-themes.LICENSE.txt",
"sourceCodeUrl": "https://gitlab.com/zlamalp/arc-theme-idea",
"sourceCodePath": "blob/master/resources/arc_theme_dark.theme.json"
},
"arc_theme_dark_orange.theme.json": {
"name": "Arc Dark - Orange",
"license": "MIT",
"licenseFile": "arc-themes.LICENSE.txt",
"sourceCodeUrl": "https://gitlab.com/zlamalp/arc-theme-idea",
"sourceCodePath": "blob/master/resources/arc_theme_dark_orange.theme.json"
},
"Cyan.theme.json": { "Cyan.theme.json": {
"name": "Cyan light", "name": "Cyan light",
"license": "MIT", "license": "MIT",
@@ -137,7 +151,7 @@
"license": "MIT", "license": "MIT",
"licenseFile": "one_dark.LICENSE.txt", "licenseFile": "one_dark.LICENSE.txt",
"sourceCodeUrl": "https://github.com/one-dark/jetbrains-one-dark-theme", "sourceCodeUrl": "https://github.com/one-dark/jetbrains-one-dark-theme",
"sourceCodePath": "blob/master/src/main/resources/themes/one_dark.theme.json" "sourceCodePath": "blob/master/buildSrc/templates/oneDark.template.theme.json"
}, },
"solarized_dark_theme.theme.json": { "solarized_dark_theme.theme.json": {
"name": "Solarized Dark", "name": "Solarized Dark",

View File

@@ -49,6 +49,8 @@ Name | Class
-----|------ -----|------
[Arc](https://gitlab.com/zlamalp/arc-theme-idea) | `com.formdev.flatlaf.intellijthemes.FlatArcIJTheme` [Arc](https://gitlab.com/zlamalp/arc-theme-idea) | `com.formdev.flatlaf.intellijthemes.FlatArcIJTheme`
[Arc - Orange](https://gitlab.com/zlamalp/arc-theme-idea) | `com.formdev.flatlaf.intellijthemes.FlatArcOrangeIJTheme` [Arc - Orange](https://gitlab.com/zlamalp/arc-theme-idea) | `com.formdev.flatlaf.intellijthemes.FlatArcOrangeIJTheme`
[Arc Dark](https://gitlab.com/zlamalp/arc-theme-idea) | `com.formdev.flatlaf.intellijthemes.FlatArcDarkIJTheme`
[Arc Dark - Orange](https://gitlab.com/zlamalp/arc-theme-idea) | `com.formdev.flatlaf.intellijthemes.FlatArcDarkOrangeIJTheme`
[Cyan light](https://github.com/OlyaB/CyanTheme) | `com.formdev.flatlaf.intellijthemes.FlatCyanLightIJTheme` [Cyan light](https://github.com/OlyaB/CyanTheme) | `com.formdev.flatlaf.intellijthemes.FlatCyanLightIJTheme`
[Dark Flat](https://github.com/nerzhulart/DarkFlatTheme) | `com.formdev.flatlaf.intellijthemes.FlatDarkFlatIJTheme` [Dark Flat](https://github.com/nerzhulart/DarkFlatTheme) | `com.formdev.flatlaf.intellijthemes.FlatDarkFlatIJTheme`
[Dark purple](https://github.com/OlyaB/DarkPurpleTheme) | `com.formdev.flatlaf.intellijthemes.FlatDarkPurpleIJTheme` [Dark purple](https://github.com/OlyaB/DarkPurpleTheme) | `com.formdev.flatlaf.intellijthemes.FlatDarkPurpleIJTheme`

View File

@@ -26,6 +26,8 @@ public class FlatAllIJThemes
public static final LookAndFeelInfo[] INFOS = { public static final LookAndFeelInfo[] INFOS = {
new LookAndFeelInfo( "Arc", "com.formdev.flatlaf.intellijthemes.FlatArcIJTheme" ), new LookAndFeelInfo( "Arc", "com.formdev.flatlaf.intellijthemes.FlatArcIJTheme" ),
new LookAndFeelInfo( "Arc - Orange", "com.formdev.flatlaf.intellijthemes.FlatArcOrangeIJTheme" ), new LookAndFeelInfo( "Arc - Orange", "com.formdev.flatlaf.intellijthemes.FlatArcOrangeIJTheme" ),
new LookAndFeelInfo( "Arc Dark", "com.formdev.flatlaf.intellijthemes.FlatArcDarkIJTheme" ),
new LookAndFeelInfo( "Arc Dark - Orange", "com.formdev.flatlaf.intellijthemes.FlatArcDarkOrangeIJTheme" ),
new LookAndFeelInfo( "Cyan light", "com.formdev.flatlaf.intellijthemes.FlatCyanLightIJTheme" ), new LookAndFeelInfo( "Cyan light", "com.formdev.flatlaf.intellijthemes.FlatCyanLightIJTheme" ),
new LookAndFeelInfo( "Dark Flat", "com.formdev.flatlaf.intellijthemes.FlatDarkFlatIJTheme" ), new LookAndFeelInfo( "Dark Flat", "com.formdev.flatlaf.intellijthemes.FlatDarkFlatIJTheme" ),
new LookAndFeelInfo( "Dark purple", "com.formdev.flatlaf.intellijthemes.FlatDarkPurpleIJTheme" ), new LookAndFeelInfo( "Dark purple", "com.formdev.flatlaf.intellijthemes.FlatDarkPurpleIJTheme" ),

View File

@@ -0,0 +1,38 @@
/*
* Copyright 2020 FormDev Software GmbH
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
/**
* @author Karl Tauber
*/
public class FlatArcDarkIJTheme
extends IntelliJTheme.ThemeLaf
{
public static boolean install( ) {
try {
return install( new FlatArcDarkIJTheme() );
} catch( RuntimeException ex ) {
return false;
}
}
public FlatArcDarkIJTheme() {
super( Utils.loadTheme( "arc_theme_dark.theme.json" ) );
}
}

View File

@@ -0,0 +1,38 @@
/*
* Copyright 2020 FormDev Software GmbH
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
/**
* @author Karl Tauber
*/
public class FlatArcDarkOrangeIJTheme
extends IntelliJTheme.ThemeLaf
{
public static boolean install( ) {
try {
return install( new FlatArcDarkOrangeIJTheme() );
} catch( RuntimeException ex ) {
return false;
}
}
public FlatArcDarkOrangeIJTheme() {
super( Utils.loadTheme( "arc_theme_dark_orange.theme.json" ) );
}
}

View File

@@ -2,6 +2,7 @@
"name": "Arc Theme - Orange", "name": "Arc Theme - Orange",
"dark": false, "dark": false,
"author": "Pavel Zlámal", "author": "Pavel Zlámal",
"editorScheme": "/arc-theme-light.xml",
"ui": { "ui": {
@@ -15,8 +16,8 @@
}, },
"Borders": { "Borders": {
"color": "#e1e3e6", "color": "#C4C4C4",
"ContrastBorderColor": "#E1E3E6" "ContrastBorderColor": "#C4C4C4"
}, },
"Button": { "Button": {
@@ -25,6 +26,8 @@
"endBorderColor": "#C4C4C4", "endBorderColor": "#C4C4C4",
"focusedBorderColor" : "#f57900", "focusedBorderColor" : "#f57900",
"background" : "#F5F5F5", "background" : "#F5F5F5",
"startBackground" : "#fcfdfd",
"endBackground" : "#fcfdfd",
"default": { "default": {
"foreground": "#FFFFFF", "foreground": "#FFFFFF",
"startBackground": "#f57900", "startBackground": "#f57900",
@@ -36,6 +39,13 @@
} }
}, },
"ActionButton.hoverBackground" : "#ffffff",
"ActionButton.hoverBorderColor" : "#C4C4C4",
"ActionButton.pressedBorderColor" : "#C4C4C4",
"ActionButton.pressedBackground" : "#ffffff",
"StatusBar.hoverBackground" : "#ffffff",
"StatusBar.borderColor" : "#C4C4C4",
"ToolBar.highlight" : "#ffffff",
"ToolBar.background" : "#F5F5F5", "ToolBar.background" : "#F5F5F5",
"Popup.Toolbar.background" : "#F5F5F5", "Popup.Toolbar.background" : "#F5F5F5",
"Panel.background": "#F5F5F5", "Panel.background": "#F5F5F5",
@@ -92,6 +102,7 @@
"TabbedPane.underlineColor" : "#f57900", "TabbedPane.underlineColor" : "#f57900",
"TabbedPane.tabSelectionHeight" : 2, "TabbedPane.tabSelectionHeight" : 2,
"TabbedPane.background" : "#F5F5F5", "TabbedPane.background" : "#F5F5F5",
"TabbedPane.hoverColor" : "#ffffff",
"Link.hoverForeground" : "#f57900", "Link.hoverForeground" : "#f57900",
"Link.activeForeground" : "#f57900", "Link.activeForeground" : "#f57900",
@@ -111,6 +122,18 @@
"Editor.background" : "#f5f5f5", "Editor.background" : "#f5f5f5",
"EditorPane.background" : "#ffffff", "EditorPane.background" : "#ffffff",
"Component.borderColor" : "#C4C4C4",
"HelpTooltip.borderColor" : "#C4C4C4",
"InplaceRefactoringPopup.borderColor" : "#C4C4C4",
"NavBar.borderColor" : "#C4C4C4",
"ComboPopup.border": "#C4C4C4",
"Popup.Header.activeBackground" : "#e7e8eb",
"Popup.borderColor" : "#C4C4C4",
"Popup.inactiveBorderColor" : "#C4C4C4",
"Popup.Advertiser.borderColor" : "#C4C4C4",
"Popup.Toolbar.borderColor" : "#C4C4C4",
"SpeedSearch.borderColor" : "#C4C4C4",
"CheckBox.background" : "#F5F5F5", "CheckBox.background" : "#F5F5F5",
"RadioButton.background" : "#F5F5F5", "RadioButton.background" : "#F5F5F5",
"Slider.background" : "#F5F5F5", "Slider.background" : "#F5F5F5",
@@ -146,17 +169,25 @@
"ToolWindow.Header.background" : "#e7e8eb", "ToolWindow.Header.background" : "#e7e8eb",
"ToolWindow.HeaderTab.selectedBackground" : "#dddee1", "ToolWindow.HeaderTab.selectedBackground" : "#dddee1",
"ToolWindow.HeaderTab.hoverInactiveBackground" : "#dddee1",
"ToolWindow.HeaderTab.selectedInactiveBackground" : "#dddee1", "ToolWindow.HeaderTab.selectedInactiveBackground" : "#dddee1",
"ToolWindow.Button.selectedBackground" : "#dddee1", "ToolWindow.Button.selectedBackground" : "#dddee1",
"ToolWindow.Button.hoverBackground" : "#ffffff",
"ToolWindow.HeaderTab.underlineHeight" : 2, "ToolWindow.HeaderTab.underlineHeight" : 2,
"ToolWindow.HeaderTab.underlineColor" : "#f57900", "ToolWindow.HeaderTab.underlineColor" : "#f57900",
"ToolWindow.HeaderTab.underlinedTabBackground" : "#F5F5F500",
"ToolWindow.HeaderTab.hoverBackground" : "#F5F5F5",
"ToolWindow.HeaderTab.hoverInactiveBackground" : "#F5F5F5",
"DefaultTabs.underlineHeight" : 2, "DefaultTabs.underlineHeight" : 2,
"DefaultTabs.underlineColor" : "#f57900", "DefaultTabs.underlineColor" : "#f57900",
"DefaultTabs.underlinedTabBackground" : "#ffffff",
"DefaultTabs.background" : "#F5F5F5", "DefaultTabs.background" : "#F5F5F5",
"DefaultTabs.borderColor" : "#C4C4C4",
"DefaultTabs.hoverBackground" : "#ffffff90",
"EditorTabs.underlineHeight" : 2, "EditorTabs.underlineHeight" : 2,
"EditorTabs.underlineColor" : "#f57900", "EditorTabs.underlineColor" : "#f57900",
"EditorTabs.background" : "#F5F5F5", "EditorTabs.background" : "#F5F5F5",
"EditorTabs.borderColor": "#C4C4C4",
"EditorTabs.hoverBackground" : "#ffffff",
"Notification.background" : "#F5F5F5", "Notification.background" : "#F5F5F5",
"Notification.MoreButton.background" : "#dddee1", "Notification.MoreButton.background" : "#dddee1",

View File

@@ -2,6 +2,7 @@
"name": "Arc Theme", "name": "Arc Theme",
"dark": false, "dark": false,
"author": "Pavel Zlámal", "author": "Pavel Zlámal",
"editorScheme": "/arc-theme-light.xml",
"ui": { "ui": {
@@ -15,8 +16,8 @@
}, },
"Borders": { "Borders": {
"color": "#e1e3e6", "color": "#C4C4C4",
"ContrastBorderColor": "#E1E3E6" "ContrastBorderColor": "#C4C4C4"
}, },
"Button": { "Button": {
@@ -25,6 +26,8 @@
"endBorderColor": "#C4C4C4", "endBorderColor": "#C4C4C4",
"focusedBorderColor" : "#2679db", "focusedBorderColor" : "#2679db",
"background" : "#F5F5F5", "background" : "#F5F5F5",
"startBackground" : "#fcfdfd",
"endBackground" : "#fcfdfd",
"default": { "default": {
"foreground": "#FFFFFF", "foreground": "#FFFFFF",
"startBackground": "#2679db", "startBackground": "#2679db",
@@ -36,6 +39,13 @@
} }
}, },
"ActionButton.hoverBackground" : "#ffffff",
"ActionButton.hoverBorderColor" : "#C4C4C4",
"ActionButton.pressedBorderColor" : "#C4C4C4",
"ActionButton.pressedBackground" : "#ffffff",
"StatusBar.hoverBackground" : "#ffffff",
"StatusBar.borderColor" : "#C4C4C4",
"ToolBar.highlight" : "#ffffff",
"ToolBar.background" : "#F5F5F5", "ToolBar.background" : "#F5F5F5",
"Popup.Toolbar.background" : "#F5F5F5", "Popup.Toolbar.background" : "#F5F5F5",
"Panel.background": "#F5F5F5", "Panel.background": "#F5F5F5",
@@ -92,6 +102,7 @@
"TabbedPane.underlineColor" : "#2679db", "TabbedPane.underlineColor" : "#2679db",
"TabbedPane.tabSelectionHeight" : 2, "TabbedPane.tabSelectionHeight" : 2,
"TabbedPane.background" : "#F5F5F5", "TabbedPane.background" : "#F5F5F5",
"TabbedPane.hoverColor" : "#ffffff",
"Link.hoverForeground" : "#2679db", "Link.hoverForeground" : "#2679db",
"Link.activeForeground" : "#2679db", "Link.activeForeground" : "#2679db",
@@ -111,6 +122,18 @@
"Editor.background" : "#f5f5f5", "Editor.background" : "#f5f5f5",
"EditorPane.background" : "#ffffff", "EditorPane.background" : "#ffffff",
"Component.borderColor" : "#C4C4C4",
"HelpTooltip.borderColor" : "#C4C4C4",
"InplaceRefactoringPopup.borderColor" : "#C4C4C4",
"NavBar.borderColor" : "#C4C4C4",
"ComboPopup.border": "#C4C4C4",
"Popup.Header.activeBackground" : "#e7e8eb",
"Popup.borderColor" : "#C4C4C4",
"Popup.inactiveBorderColor" : "#C4C4C4",
"Popup.Advertiser.borderColor" : "#C4C4C4",
"Popup.Toolbar.borderColor" : "#C4C4C4",
"SpeedSearch.borderColor" : "#C4C4C4",
"CheckBox.background" : "#F5F5F5", "CheckBox.background" : "#F5F5F5",
"RadioButton.background" : "#F5F5F5", "RadioButton.background" : "#F5F5F5",
"Slider.background" : "#F5F5F5", "Slider.background" : "#F5F5F5",
@@ -145,18 +168,26 @@
"ToolTip.Actions.background" : "#F5F5F5", "ToolTip.Actions.background" : "#F5F5F5",
"ToolWindow.Header.background" : "#e7e8eb", "ToolWindow.Header.background" : "#e7e8eb",
"ToolWindow.HeaderTab.selectedBackground" : "#dddee1", "ToolWindow.HeaderTab.selectedBackground" : "#fcfdfd",
"ToolWindow.HeaderTab.hoverInactiveBackground" : "#dddee1",
"ToolWindow.HeaderTab.selectedInactiveBackground" : "#dddee1", "ToolWindow.HeaderTab.selectedInactiveBackground" : "#dddee1",
"ToolWindow.Button.selectedBackground" : "#dddee1", "ToolWindow.Button.selectedBackground" : "#dddee1",
"ToolWindow.Button.hoverBackground" : "#ffffff",
"ToolWindow.HeaderTab.underlineHeight" : 2, "ToolWindow.HeaderTab.underlineHeight" : 2,
"ToolWindow.HeaderTab.underlineColor" : "#2679db", "ToolWindow.HeaderTab.underlineColor" : "#2679db",
"ToolWindow.HeaderTab.underlinedTabBackground" : "#F5F5F500",
"ToolWindow.HeaderTab.hoverBackground" : "#F5F5F5",
"ToolWindow.HeaderTab.hoverInactiveBackground" : "#F5F5F5",
"DefaultTabs.underlineHeight" : 2, "DefaultTabs.underlineHeight" : 2,
"DefaultTabs.underlineColor" : "#2679db", "DefaultTabs.underlineColor" : "#2679db",
"DefaultTabs.underlinedTabBackground" : "#ffffff",
"DefaultTabs.background" : "#F5F5F5", "DefaultTabs.background" : "#F5F5F5",
"DefaultTabs.borderColor" : "#C4C4C4",
"DefaultTabs.hoverBackground" : "#ffffff90",
"EditorTabs.underlineHeight" : 2, "EditorTabs.underlineHeight" : 2,
"EditorTabs.underlineColor" : "#2679db", "EditorTabs.underlineColor" : "#2679db",
"EditorTabs.background" : "#F5F5F5", "EditorTabs.background" : "#F5F5F5",
"EditorTabs.borderColor": "#C4C4C4",
"EditorTabs.hoverBackground" : "#ffffff",
"Notification.background" : "#F5F5F5", "Notification.background" : "#F5F5F5",
"Notification.MoreButton.background" : "#dddee1", "Notification.MoreButton.background" : "#dddee1",

View File

@@ -0,0 +1,275 @@
{
"name": "Arc Theme Dark",
"dark": true,
"author": "Pavel Zlámal",
"editorScheme": "/arc-theme-dark.xml",
"ui": {
"*": {
"selectionBackground": "#2679db",
"selectionForeground": "#ffffff",
"selectionInactiveBackground": "#1e61b0",
"selectionBackgroundInactive": "#1e61b0",
"background" : "#383c4a",
"focusColor" : "#2679db",
"windowText" : "#d3dae3",
"darcula.foreground" : "#d3dae3"
},
"Borders": {
"color": "#2b2e39",
"ContrastBorderColor": "#2b2e39"
},
"Button": {
"shadowColor": "#383c4a20",
"startBorderColor": "#2b2e39",
"endBorderColor": "#2b2e39",
"focusedBorderColor" : "#2679db",
"background" : "#383c4a",
"startBackground" : "#474c5b",
"endBackground" : "#474c5b",
"default": {
"foreground": "#d3dae3",
"startBackground": "#2679db",
"endBackground": "#2679db",
"startBorderColor": "#2679db",
"endBorderColor": "#2679db",
"shadowColor": "#383c4a50",
"focusedBorderColor": "#2679db"
},
"disabledBorderColor" : "#2b2e39",
"disabledText" : "#9ba2ab"
},
"ToolBar.background" : "#474c5b",
"ToolBar.highlight" : "#4e5467",
"Popup.Toolbar.borderColor" : "#2b2e39",
"ActionButton.hoverBorderColor" : "#2b2e39",
"ActionButton.hoverBackground" : "#4e5467",
"ActionButton.pressedBackground" : "#4e5467",
"ActionButton.pressedBorderColor" : "#2b2e39",
"StatusBar.hoverBackground" : "#4e5467",
"StatusBar.borderColor" : "#2b2e39",
"Popup.Toolbar.background" : "#474c5b",
"Panel.background": "#383c4a",
"Panel.foreground" : "#d3dae3",
"Window.border" : "1,1,1,1,#2b2e39",
"WelcomeScreen.background" : "#383c4a",
"WelcomeScreen.Projects.background" : "#474c5b",
"MenuBar.foreground" : "#d3dae3",
"MenuBar.borderColor" : "#2b2e39",
"Menu.background" : "#383c4a",
"Menu.separatorColor" : "#2b2e39",
"Menu.foreground" : "#d3dae3",
"Menu.borderColor" : "#2b2e39",
"MenuItem.foreground" : "#d3dae3",
"MenuItem.background" : "#383c4a",
"MenuItem.acceleratorForeground" : "#d3dae3",
"MenuItem.disabledForeground" : "#9ba2ab",
"PopupMenuSeparator.height" : "2",
"Separator.separatorColor" : "#9ba2ab",
"Group.separatorColor" : "#9ba2ab",
"Tree.background" : "#474c5b",
"Tree.foreground" : "#d3dae3",
"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" : "#383C4ACC",
"ParameterInfo.background" : "#fffae3",
"ParameterInfo.currentOverloadBackground" : "#fffae3",
"List.background" : "#474c5b",
"List.dropLineColor" : "#2679db",
"List.selectionBackground": "#2679db",
"List.selectionForeground": "#ffffff",
"List.selectionInactiveBackground": "#1e61b0",
"Table.background" : "#474c5b",
"Table.selectionBackground" : "#2679db",
"Table.selectionForeground" : "#ffffff",
"Table.lightSelectionBackground" : "#2679db",
"Table.lightSelectionForeground" : "#ffffff",
"Table.focusCellBackground" : "#2679db",
"Table.focusCellForeground" : "#ffffff",
"Table.dropLineColor": "#2679db",
"Table.dropLineShortColor": "#2679db",
"Table.gridColor" : "#383c4a",
"TabbedPane.underlineColor" : "#2679db",
"TabbedPane.tabSelectionHeight" : 2,
"TabbedPane.background" : "#383c4a",
"TabbedPane.hoverColor" : "#474c5b",
"Link.hoverForeground" : "#2679db",
"Link.activeForeground" : "#2679db",
"Link.pressedForeground" : "#2679db",
"Link.visitedForeground" : "#2679db",
"Link.secondaryForeground" : "#2679db",
"Hyperlink.linkColor" : "#2679db",
"ComboBox.background" : "#474c5b",
"ComboBox.nonEditableBackground" : "#474c5b",
"ComboBox.ArrowButton.background" : "#474c5b",
"ComboBox.ArrowButton.nonEditableBackground" : "#474c5b",
"ComboBoxButton.background" : "#474c5b",
"TextField.background" : "#474c5b",
"TextArea.background" : "#474c5b",
"TextPane.background" : "#474c5b",
"PasswordField.background" : "#474c5b",
"FormattedTextField.background" : "#474c5b",
"Editor.background" : "#474c5b",
"EditorPane.background" : "#474c5b",
"Component.borderColor" : "#2b2e39",
"HelpTooltip.borderColor" : "#2b2e39",
"InplaceRefactoringPopup.borderColor" : "#2b2e39",
"NavBar.borderColor" : "#2b2e39",
"ComboPopup.border": "#2b2e39",
"Popup.Header.activeBackground" : "#383c4a",
"Popup.Header.inactiveBackground" : "#383c4a",
"Popup.borderColor" : "#2b2e39",
"Popup.inactiveBorderColor" : "#2b2e39",
"Popup.Advertiser.borderColor" : "#2b2e39",
"SpeedSearch.borderColor" : "#2b2e39",
"CheckBox.background" : "#383c4a",
"RadioButton.background" : "#383c4a",
"Slider.background" : "#383c4a",
"Spinner.background" : "#383c4a",
"OptionPane.background" : "#383c4a",
"CompletionPopup": {
"selectionBackground" : "#2679db55",
"nonFocusedMask": false,
"matchForeground": "#2679db",
"selectionInactiveBackground": "#1e61b0"
},
"Plugins.lightSelectionBackground" : "#4e5467",
"Plugins.SearchField.background" : "#4e5467",
"Plugins.background" : "#383c4a",
"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",
"Plugins.SearchField.borderColor" : "#2b2e39",
"Plugins.tagBackground" : "#4e5467",
"Plugins.eapTagBackground" : "#4e5467",
"Counter.background" : "#ffffff",
"Counter.foreground" : "#5c616c",
"SearchEverywhere.SearchField.background" : "#4e5467",
"SearchEverywhere.Header.background" : "#383c4a",
"SearchEverywhere.Tab.selectedBackground" : "#4e5467",
"SearchEverywhere.Advertiser.foreground" : "#d3dae3",
"SearchEverywhere.List.separatorColor" : "#d3dae3",
"SearchEverywhere.List.separatorForeground" : "#d3dae3",
"SearchEverywhere.SearchField.borderColor" : "#2b2e39",
"ToolTip.background" : "#4e5467",
"ToolTip.Actions.background" : "#383c4a",
"ToolTip.borderColor" : "#2b2e39",
"ToolTip.foreground" : "#d3dae3",
"Tooltip.separatorColor" : "#2b2e39",
"ToolWindow.Header.background" : "#383C4ACC",
"ToolWindow.Header.inactiveBackground" : "#383c4a",
"ToolWindow.HeaderTab.selectedBackground" : "#4e5467",
"ToolWindow.HeaderTab.hoverInactiveBackground" : "#4e5467",
"ToolWindow.HeaderTab.selectedInactiveBackground" : "#4e5467",
"ToolWindow.HeaderTab.underlineHeight" : 2,
"ToolWindow.HeaderTab.underlinedTabBackground" : "#383c4a",
"ToolWindow.HeaderTab.underlineColor" : "#2679db",
"ToolWindow.Button.selectedBackground" : "#474c5b",
"ToolWindow.Button.hoverBackground" : "#4e5467",
"DefaultTabs.underlineHeight" : 2,
"DefaultTabs.underlineColor" : "#2679db",
"DefaultTabs.background" : "#383c4a",
"DefaultTabs.underlinedTabForeground" : "#d3dae3",
"DefaultTabs.underlinedTabBackground" : "#474c5b",
"DefaultTabs.hoverBackground" : "#4e5467",
"EditorTabs.underlinedTabBackground" : "#474c5b99",
"EditorTabs.underlineHeight" : 2,
"EditorTabs.underlineColor" : "#2679db",
"EditorTabs.background" : "#383c4a",
"EditorTabs.underlinedTabForeground" : "#d3dae3",
"EditorTabs.hoverBackground" : "#4e5467",
"Notification.background" : "#4e5467",
"Notification.MoreButton.background" : "#383c4a",
"Notification.borderColor" : "#2b2e39",
"ScrollBar.background" : "#4e5467",
"Label.foreground" : "#d3dae3",
"Label.disabledForeground" : "#9ba2ab",
"Label.disabledText" : "#9ba2ab",
"MemoryIndicator.allocatedBackground" : "#474c5b",
"MemoryIndicator.usedBackground" : "#4e5467",
"FileColor.Blue" : "#111d53",
"FileColor.Green" : "#155221",
"FileColor.Orange" : "#522911",
"FileColor.Rose" : "#581226",
"FileColor.Violet" : "#411357",
"FileColor.Yellow" : "#5c4814",
"Component.infoForeground" : "#9ba2ab",
"SearchEverywhere.SearchField.infoForeground" : "#9ba2ab",
"ColorChooser.background" : "#383c4a",
"Popup.innerBorderColor" : "#383c4a",
"InformationHint.borderColor" : "#383c4a"
},
"icons": {
"ColorPalette": {
"Checkbox.Focus.Wide.Dark": "#2679db",
"Checkbox.Focus.Thin.Selected.Dark": "#2679db",
"Checkbox.Focus.Thin.Default.Dark": "#2679db",
"Checkbox.Background.Default.Dark": "#474c5b",
"Checkbox.Background.Disabled.Dark": "#383c4a",
"Checkbox.Background.Selected.Dark": "#474c5b",
"Checkbox.Foreground.Selected.Dark": "#ffffff",
"Checkbox.Border.Default.Dark": "#2b2e39",
"Checkbox.Border.Disabled.Dark": "#2b2e39",
"Checkbox.Border.Selected.Dark": "#2b2e39",
"#43494A": "#383c4a",
"#6B6B6B": "#8b9eb5",
"#A7A7A7": "#8b9eb5",
"#3D6185": "#42A5F5",
"#466D94": "#42A5F5",
"#3C3F41": "#4e5467",
"#545556": "#D3DAE3",
"#606060": "#D3DAE3",
"#9AA7B0": "#8b9eb5"
}
}
}

View File

@@ -0,0 +1,273 @@
{
"name": "Arc Theme Dark - Orange",
"dark": true,
"author": "Pavel Zlámal",
"editorScheme": "/arc-theme-dark.xml",
"ui": {
"*": {
"selectionBackground": "#f57900",
"selectionForeground": "#ffffff",
"selectionInactiveBackground": "#C36200",
"selectionBackgroundInactive": "#C36200",
"background" : "#383c4a",
"focusColor" : "#f57900",
"windowText" : "#d3dae3",
"darcula.foreground" : "#d3dae3"
},
"Borders": {
"color": "#2b2e39",
"ContrastBorderColor": "#2b2e39"
},
"Button": {
"shadowColor": "#383c4a20",
"startBorderColor": "#2b2e39",
"endBorderColor": "#2b2e39",
"focusedBorderColor" : "#f57900",
"background" : "#383c4a",
"startBackground" : "#474c5b",
"endBackground" : "#474c5b",
"default": {
"foreground": "#d3dae3",
"startBackground": "#f57900",
"endBackground": "#f57900",
"startBorderColor": "#f57900",
"endBorderColor": "#f57900",
"shadowColor": "#383c4a50",
"focusedBorderColor": "#f57900"
},
"disabledBorderColor" : "#2b2e39",
"disabledText" : "#9ba2ab"
},
"ToolBar.background" : "#474c5b",
"ToolBar.highlight" : "#4e5467",
"Popup.Toolbar.borderColor" : "#2b2e39",
"ActionButton.hoverBorderColor" : "#2b2e39",
"ActionButton.hoverBackground" : "#4e5467",
"ActionButton.pressedBackground" : "#4e5467",
"ActionButton.pressedBorderColor" : "#2b2e39",
"StatusBar.hoverBackground" : "#4e5467",
"StatusBar.borderColor" : "#2b2e39",
"Popup.Toolbar.background" : "#474c5b",
"Panel.background": "#383c4a",
"Panel.foreground" : "#d3dae3",
"Window.border" : "1,1,1,1,#2b2e39",
"WelcomeScreen.background" : "#383c4a",
"WelcomeScreen.Projects.background" : "#474c5b",
"MenuBar.foreground" : "#d3dae3",
"MenuBar.borderColor" : "#2b2e39",
"Menu.background" : "#383c4a",
"Menu.separatorColor" : "#2b2e39",
"Menu.foreground" : "#d3dae3",
"Menu.borderColor" : "#2b2e39",
"MenuItem.foreground" : "#d3dae3",
"MenuItem.background" : "#383c4a",
"MenuItem.acceleratorForeground" : "#d3dae3",
"MenuItem.disabledForeground" : "#9ba2ab",
"PopupMenuSeparator.height" : "2",
"Separator.separatorColor" : "#9ba2ab",
"Group.separatorColor" : "#9ba2ab",
"Tree.background" : "#474c5b",
"Tree.foreground" : "#d3dae3",
"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" : "#383C4ACC",
"ParameterInfo.background" : "#fffae3",
"ParameterInfo.currentOverloadBackground" : "#fffae3",
"List.background" : "#474c5b",
"List.dropLineColor" : "#f57900",
"List.selectionBackground": "#f57900",
"List.selectionForeground": "#ffffff",
"List.selectionInactiveBackground": "#C36200",
"Table.background" : "#474c5b",
"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" : "#383c4a",
"TabbedPane.hoverColor" : "#474c5b",
"Link.hoverForeground" : "#f57900",
"Link.activeForeground" : "#f57900",
"Link.pressedForeground" : "#f57900",
"Link.visitedForeground" : "#f57900",
"Link.secondaryForeground" : "#f57900",
"Hyperlink.linkColor" : "#f57900",
"ComboBox.background" : "#474c5b",
"ComboBox.nonEditableBackground" : "#474c5b",
"ComboBox.ArrowButton.background" : "#474c5b",
"ComboBox.ArrowButton.nonEditableBackground" : "#474c5b",
"ComboBoxButton.background" : "#474c5b",
"TextField.background" : "#474c5b",
"TextArea.background" : "#474c5b",
"TextPane.background" : "#474c5b",
"PasswordField.background" : "#474c5b",
"FormattedTextField.background" : "#474c5b",
"Editor.background" : "#474c5b",
"EditorPane.background" : "#474c5b",
"Component.borderColor" : "#2b2e39",
"HelpTooltip.borderColor" : "#2b2e39",
"InplaceRefactoringPopup.borderColor" : "#2b2e39",
"NavBar.borderColor" : "#2b2e39",
"ComboPopup.border": "#2b2e39",
"Popup.Header.activeBackground" : "#383c4a",
"Popup.Header.inactiveBackground" : "#383c4a",
"Popup.borderColor" : "#2b2e39",
"Popup.inactiveBorderColor" : "#383c4a",
"Popup.Advertiser.borderColor" : "#383c4a",
"SpeedSearch.borderColor" : "#2b2e39",
"CheckBox.background" : "#383c4a",
"RadioButton.background" : "#383c4a",
"Slider.background" : "#383c4a",
"Spinner.background" : "#383c4a",
"OptionPane.background" : "#383c4a",
"CompletionPopup": {
"selectionBackground" : "#f5790055",
"nonFocusedMask": false,
"matchForeground": "#f57900",
"selectionInactiveBackground": "#C36200"
},
"Plugins.lightSelectionBackground" : "#4e5467",
"Plugins.SearchField.background" : "#4e5467",
"Plugins.background" : "#383c4a",
"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",
"Plugins.SearchField.borderColor" : "#2b2e39",
"Plugins.tagBackground" : "#4e5467",
"Plugins.eapTagBackground" : "#4e5467",
"Counter.background" : "#ffffff",
"Counter.foreground" : "#5c616c",
"SearchEverywhere.SearchField.background" : "#4e5467",
"SearchEverywhere.Header.background" : "#383c4a",
"SearchEverywhere.Tab.selectedBackground" : "#4e5467",
"SearchEverywhere.Advertiser.foreground" : "#d3dae3",
"SearchEverywhere.List.separatorColor" : "#d3dae3",
"SearchEverywhere.List.separatorForeground" : "#d3dae3",
"SearchEverywhere.SearchField.borderColor" : "#2b2e39",
"ToolTip.background" : "#4e5467",
"ToolTip.Actions.background" : "#383c4a",
"ToolTip.borderColor" : "#2b2e39",
"ToolTip.foreground" : "#d3dae3",
"Tooltip.separatorColor" : "#2b2e39",
"ToolWindow.Header.background" : "#383C4ACC",
"ToolWindow.Header.inactiveBackground" : "#383c4a",
"ToolWindow.HeaderTab.selectedBackground" : "#4e5467",
"ToolWindow.HeaderTab.hoverInactiveBackground" : "#4e5467",
"ToolWindow.HeaderTab.selectedInactiveBackground" : "#4e5467",
"ToolWindow.HeaderTab.underlineHeight" : 2,
"ToolWindow.HeaderTab.underlinedTabBackground" : "#383c4a",
"ToolWindow.HeaderTab.underlineColor" : "#f57900",
"ToolWindow.Button.selectedBackground" : "#474c5b",
"ToolWindow.Button.hoverBackground" : "#4e5467",
"DefaultTabs.underlineHeight" : 2,
"DefaultTabs.underlineColor" : "#f57900",
"DefaultTabs.background" : "#383c4a",
"DefaultTabs.underlinedTabForeground" : "#d3dae3",
"DefaultTabs.underlinedTabBackground" : "#474c5b",
"DefaultTabs.hoverBackground" : "#4e5467",
"EditorTabs.underlinedTabBackground" : "#474c5b99",
"EditorTabs.underlineHeight" : 2,
"EditorTabs.underlineColor" : "#f57900",
"EditorTabs.background" : "#383c4a",
"EditorTabs.underlinedTabForeground" : "#d3dae3",
"EditorTabs.hoverBackground" : "#4e5467",
"Notification.background" : "#4e5467",
"Notification.MoreButton.background" : "#383c4a",
"Notification.borderColor" : "#2b2e39",
"ScrollBar.background" : "#4e5467",
"Label.foreground" : "#d3dae3",
"Label.disabledForeground" : "#9ba2ab",
"Label.disabledText" : "#9ba2ab",
"MemoryIndicator.allocatedBackground" : "#474c5b",
"MemoryIndicator.usedBackground" : "#4e5467",
"FileColor.Blue" : "#111d53",
"FileColor.Green" : "#155221",
"FileColor.Orange" : "#522911",
"FileColor.Rose" : "#581226",
"FileColor.Violet" : "#411357",
"FileColor.Yellow" : "#5c4814",
"Component.infoForeground" : "#9ba2ab",
"SearchEverywhere.SearchField.infoForeground" : "#9ba2ab",
"ColorChooser.background" : "#383c4a",
"Popup.innerBorderColor" : "#383c4a",
"InformationHint.borderColor" : "#383c4a"
},
"icons": {
"ColorPalette": {
"Checkbox.Focus.Wide.Dark": "#f57900",
"Checkbox.Focus.Thin.Selected.Dark": "#f57900",
"Checkbox.Focus.Thin.Default.Dark": "#f57900",
"Checkbox.Background.Default.Dark": "#474c5b",
"Checkbox.Background.Disabled.Dark": "#383c4a",
"Checkbox.Background.Selected.Dark": "#474c5b",
"Checkbox.Foreground.Selected.Dark": "#ffffff",
"Checkbox.Border.Default.Dark": "#2b2e39",
"Checkbox.Border.Disabled.Dark": "#2b2e39",
"Checkbox.Border.Selected.Dark": "#2b2e39",
"#43494A": "#383c4a",
"#6B6B6B": "#8b9eb5",
"#A7A7A7": "#8b9eb5",
"#3D6185": "#f57900",
"#466D94": "#f57900",
"#3C3F41": "#4e5467",
"#545556": "#D3DAE3",
"#606060": "#D3DAE3",
"#9AA7B0": "#8b9eb5"
}
}
}

View File

@@ -1,9 +1,11 @@
{ {
"name": "One Dark", "name": "One Dark",
"dark": true, "dark": true,
"author": "Mark Skelton", "author": "Mark Skelton",
"editorScheme": "/themes/one_dark.xml", "editorScheme": "/themes/one_dark.xml",
"colors": {
"accentColor": "#568AF2"
},
"ui": { "ui": {
"*": { "*": {
"background": "#21252b", "background": "#21252b",
@@ -27,7 +29,7 @@
"borderColor": "#333841", "borderColor": "#333841",
"disabledBorderColor": "#2d3137", "disabledBorderColor": "#2d3137",
"focusColor": "#21252b", "focusColor": "#21252b",
"focusedBorderColor": "#568AF2", "focusedBorderColor": "accentColor",
"separatorColor": "#32363c" "separatorColor": "#32363c"
}, },
@@ -50,10 +52,10 @@
"default": { "default": {
"foreground": "#ffffff", "foreground": "#ffffff",
"startBackground": "#568AF2", "startBackground": "accentColor",
"endBackground": "#568AF2", "endBackground": "accentColor",
"startBorderColor": "#568AF2", "startBorderColor": "accentColor",
"endBorderColor": "#568AF2", "endBorderColor": "accentColor",
"focusedBorderColor": "#4269b9", "focusedBorderColor": "#4269b9",
"focusColor": "#4269b9" "focusColor": "#4269b9"
} }
@@ -78,7 +80,7 @@
"ComboPopup.border": "1,1,1,1,2d3137", "ComboPopup.border": "1,1,1,1,2d3137",
"CompletionPopup": { "CompletionPopup": {
"matchForeground": "#568AF2" "matchForeground": "accentColor"
}, },
"Component": { "Component": {
@@ -94,7 +96,7 @@
}, },
"DefaultTabs": { "DefaultTabs": {
"underlineColor": "#568AF2", "underlineColor": "accentColor",
"inactiveUnderlineColor": "#4269b9", "inactiveUnderlineColor": "#4269b9",
"hoverBackground": "#323844" "hoverBackground": "#323844"
}, },
@@ -108,7 +110,7 @@
"Editor": { "Editor": {
"background": "#282c34", "background": "#282c34",
"foreground": "#abb2bf", "foreground": "#abb2bf",
"shortcutForeground": "#568AF2" "shortcutForeground": "accentColor"
}, },
"EditorPane.inactiveBackground": "#282c34", "EditorPane.inactiveBackground": "#282c34",
@@ -179,13 +181,13 @@
"tagForeground": "#abb2bf", "tagForeground": "#abb2bf",
"Button": { "Button": {
"installForeground": "#568AF2", "installForeground": "accentColor",
"installBorderColor":"#568AF2", "installBorderColor":"accentColor",
"installFillForeground": "#ffffff", "installFillForeground": "#ffffff",
"installFillBackground": "#568AF2", "installFillBackground": "accentColor",
"updateForeground":"#ffffff", "updateForeground":"#ffffff",
"updateBackground": "#568AF2", "updateBackground": "accentColor",
"updateBorderColor": "#568AF2" "updateBorderColor": "accentColor"
}, },
"SearchField": { "SearchField": {
@@ -215,8 +217,8 @@
"ProgressBar": { "ProgressBar": {
"trackColor": "#1D1D26", "trackColor": "#1D1D26",
"progressColor": "#568AF2", "progressColor": "accentColor",
"indeterminateStartColor": "#568AF2", "indeterminateStartColor": "accentColor",
"indeterminateEndColor": "#313469", "indeterminateEndColor": "#313469",
"failedColor": "#bd3c5f", "failedColor": "#bd3c5f",
"failedEndColor": "#472c33", "failedEndColor": "#472c33",
@@ -240,8 +242,8 @@
}, },
"SearchMatch": { "SearchMatch": {
"startBackground": "#568AF2", "startBackground": "accentColor",
"endBackground": "#568AF2" "endBackground": "accentColor"
}, },
"SpeedSearch": { "SpeedSearch": {
@@ -251,8 +253,10 @@
"errorForeground": "#e06c75" "errorForeground": "#e06c75"
}, },
"Settings.Spotlight.borderColor": "accentColor",
"TabbedPane": { "TabbedPane": {
"underlineColor": "#568AF2", "underlineColor": "accentColor",
"contentAreaColor": "#323844", "contentAreaColor": "#323844",
"hoverColor": "#323844" "hoverColor": "#323844"
}, },
@@ -285,7 +289,7 @@
"ToggleButton": { "ToggleButton": {
"onForeground": "#ffffff", "onForeground": "#ffffff",
"onBackground": "#568AF2", "onBackground": "accentColor",
"offForeground": "#9f9fa6", "offForeground": "#9f9fa6",
"offBackground": "#3d424b", "offBackground": "#3d424b",
"borderColor": "#3d424b", "borderColor": "#3d424b",
@@ -318,7 +322,7 @@
"Tree": { "Tree": {
"selectionBackground": "#4d78cc", "selectionBackground": "#4d78cc",
"modifiedItemForeground": "#568AF2", "modifiedItemForeground": "accentColor",
"rowHeight": 20 "rowHeight": 20
}, },
@@ -353,9 +357,9 @@
"Checkbox.Background.Default.Dark": "#282c34", "Checkbox.Background.Default.Dark": "#282c34",
"Checkbox.Border.Default.Dark": "#414855", "Checkbox.Border.Default.Dark": "#414855",
"Checkbox.Foreground.Selected.Dark": "#abb2bf", "Checkbox.Foreground.Selected.Dark": "#abb2bf",
"Checkbox.Focus.Wide.Dark": "#568AF2", "Checkbox.Focus.Wide.Dark": "accentColor",
"Checkbox.Focus.Thin.Default.Dark": "#568AF2", "Checkbox.Focus.Thin.Default.Dark": "accentColor",
"Checkbox.Focus.Thin.Selected.Dark": "#568AF2", "Checkbox.Focus.Thin.Selected.Dark": "accentColor",
"Checkbox.Background.Disabled.Dark": "#21252b", "Checkbox.Background.Disabled.Dark": "#21252b",
"Checkbox.Border.Disabled.Dark": "#2c313a", "Checkbox.Border.Disabled.Dark": "#2c313a",
"Checkbox.Foreground.Disabled.Dark": "#5c6370" "Checkbox.Foreground.Disabled.Dark": "#5c6370"

View File

@@ -82,9 +82,10 @@
"ComboPopup.border": "1,1,1,1,303a45", "ComboPopup.border": "1,1,1,1,303a45",
"CompletionPopup": { "CompletionPopup": {
"matchForeground": "#f43b6c", "foreground": "#c9cbcf",
"selectionBackground": "#202831", "matchForeground": "#0d9660",
"selectionInactiveBackground": "#202831" "selectionBackground": "#0c1014",
"selectionInactiveBackground": "#0c1014"
}, },
"Component": { "Component": {
@@ -103,7 +104,6 @@
"DebuggerPopup.borderColor": "#202831", "DebuggerPopup.borderColor": "#202831",
"DebuggerTabs.selectedBackground": "#303a45",
"DebuggerTabs.underlineHeight": 1, "DebuggerTabs.underlineHeight": 1,
"DefaultTabs": { "DefaultTabs": {
@@ -254,14 +254,14 @@
"Transparent": { "Transparent": {
"thumbColor": "#303a45", "thumbColor": "#303a45",
"thumbBorderColor": "#303a45", "thumbBorderColor": "#303a45",
"hoverThumbColor": "#434e5b", "hoverThumbColor": "#9ca2aa",
"hoverThumbBorderColor": "#434e5b", "hoverThumbBorderColor": "#9ca2aa",
"hoverTrackColor": "#434e5b" "hoverTrackColor": "#434e5b"
}, },
"thumbColor": "#303a45", "thumbColor": "#303a45",
"thumbBorderColor": "#303a45", "thumbBorderColor": "#303a45",
"hoverThumbColor": "#434e5b", "hoverThumbColor": "#9ca2aa",
"hoverThumbBorderColor": "#434e5b", "hoverThumbBorderColor": "#9ca2aa",
"trackColor": "#434e5b", "trackColor": "#434e5b",
"hoverTrackColor": "#434e5b", "hoverTrackColor": "#434e5b",
@@ -269,14 +269,14 @@
"Transparent": { "Transparent": {
"thumbColor": "#303a45", "thumbColor": "#303a45",
"thumbBorderColor": "#303a45", "thumbBorderColor": "#303a45",
"hoverThumbColor": "#434e5b", "hoverThumbColor": "#9ca2aa",
"hoverThumbBorderColor": "#434e5b", "hoverThumbBorderColor": "#9ca2aa",
"hoverTrackColor": "#434e5b" "hoverTrackColor": "#434e5b"
}, },
"thumbColor": "#303a45", "thumbColor": "#303a45",
"thumbBorderColor": "#303a45", "thumbBorderColor": "#303a45",
"hoverThumbColor": "#434e5b", "hoverThumbColor": "#9ca2aa",
"hoverThumbBorderColor": "#434e5b", "hoverThumbBorderColor": "#9ca2aa",
"trackColor": "#434e5b", "trackColor": "#434e5b",
"hoverTrackColor": "#434e5b" "hoverTrackColor": "#434e5b"
} }
@@ -349,7 +349,6 @@
}, },
"HeaderTab": { "HeaderTab": {
"selectedBackground": "#303a45",
"selectedInactiveBackground": "#303a45", "selectedInactiveBackground": "#303a45",
"hoverBackground": "#303a45", "hoverBackground": "#303a45",
"hoverInactiveBackground": "#303a45", "hoverInactiveBackground": "#303a45",