diff --git a/CHANGELOG.md b/CHANGELOG.md index 8cbd0f39..7ce652ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,8 +19,10 @@ FlatLaf Change Log 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.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. +- IntelliJ Themes: + - Added "Arc Dark" and "Arc Dark - Orange" themes. + - Replaced "Solarized" themes with much better ones from 4lex4. + - Updated "Arc", "One Dark" and "Vuesion" themes. ## 0.38 diff --git a/flatlaf-demo/src/main/resources/com/formdev/flatlaf/demo/intellijthemes/themes.json b/flatlaf-demo/src/main/resources/com/formdev/flatlaf/demo/intellijthemes/themes.json index 26335464..c6333ee8 100644 --- a/flatlaf-demo/src/main/resources/com/formdev/flatlaf/demo/intellijthemes/themes.json +++ b/flatlaf-demo/src/main/resources/com/formdev/flatlaf/demo/intellijthemes/themes.json @@ -153,19 +153,19 @@ "sourceCodeUrl": "https://github.com/one-dark/jetbrains-one-dark-theme", "sourceCodePath": "blob/master/buildSrc/templates/oneDark.template.theme.json" }, - "solarized_dark_theme.theme.json": { + "SolarizedDark.theme.json": { "name": "Solarized Dark", - "license": "MIT", - "licenseFile": "solarized_dark_theme.LICENSE.txt", - "sourceCodeUrl": "https://github.com/snowe2010/solarized-jetbrains", - "sourceCodePath": "blob/master/src/solarized_dark_theme.theme.json" + "license": "The Unlicense", + "licenseFile": "Solarized.LICENSE.txt", + "sourceCodeUrl": "https://github.com/4lex4/intellij-platform-solarized", + "sourceCodePath": "blob/master/resources/SolarizedDark.theme.json" }, - "solarized_light_theme.theme.json": { + "SolarizedLight.theme.json": { "name": "Solarized Light", - "license": "MIT", - "licenseFile": "solarized_light_theme.LICENSE.txt", - "sourceCodeUrl": "https://github.com/snowe2010/solarized-jetbrains", - "sourceCodePath": "blob/master/src/solarized_light_theme.theme.json" + "license": "The Unlicense", + "licenseFile": "Solarized.LICENSE.txt", + "sourceCodeUrl": "https://github.com/4lex4/intellij-platform-solarized", + "sourceCodePath": "blob/master/resources/SolarizedLight.theme.json" }, "Spacegray.theme.json": { "name": "Spacegray", diff --git a/flatlaf-intellij-themes/README.md b/flatlaf-intellij-themes/README.md index a2fc5655..818b263c 100644 --- a/flatlaf-intellij-themes/README.md +++ b/flatlaf-intellij-themes/README.md @@ -69,8 +69,8 @@ Name | Class [Monocai](https://github.com/bmikaili/intellij-monocai-theme) | `com.formdev.flatlaf.intellijthemes.FlatMonocaiIJTheme` [Nord](https://github.com/arcticicestudio/nord-jetbrains) | `com.formdev.flatlaf.intellijthemes.FlatNordIJTheme` [One Dark](https://github.com/one-dark/jetbrains-one-dark-theme) | `com.formdev.flatlaf.intellijthemes.FlatOneDarkIJTheme` -[Solarized Dark](https://github.com/snowe2010/solarized-jetbrains) | `com.formdev.flatlaf.intellijthemes.FlatSolarizedDarkIJTheme` -[Solarized Light](https://github.com/snowe2010/solarized-jetbrains) | `com.formdev.flatlaf.intellijthemes.FlatSolarizedLightIJTheme` +[Solarized Dark](https://github.com/4lex4/intellij-platform-solarized) | `com.formdev.flatlaf.intellijthemes.FlatSolarizedDarkIJTheme` +[Solarized Light](https://github.com/4lex4/intellij-platform-solarized) | `com.formdev.flatlaf.intellijthemes.FlatSolarizedLightIJTheme` [Spacegray](https://github.com/mturlo/intellij-spacegray) | `com.formdev.flatlaf.intellijthemes.FlatSpacegrayIJTheme` [Vuesion](https://github.com/vuesion/intellij-theme) | `com.formdev.flatlaf.intellijthemes.FlatVuesionIJTheme` diff --git a/flatlaf-intellij-themes/src/main/java/com/formdev/flatlaf/intellijthemes/FlatSolarizedDarkIJTheme.java b/flatlaf-intellij-themes/src/main/java/com/formdev/flatlaf/intellijthemes/FlatSolarizedDarkIJTheme.java index 4d231107..1b143bd4 100644 --- a/flatlaf-intellij-themes/src/main/java/com/formdev/flatlaf/intellijthemes/FlatSolarizedDarkIJTheme.java +++ b/flatlaf-intellij-themes/src/main/java/com/formdev/flatlaf/intellijthemes/FlatSolarizedDarkIJTheme.java @@ -33,6 +33,6 @@ public class FlatSolarizedDarkIJTheme } public FlatSolarizedDarkIJTheme() { - super( Utils.loadTheme( "solarized_dark_theme.theme.json" ) ); + super( Utils.loadTheme( "SolarizedDark.theme.json" ) ); } } diff --git a/flatlaf-intellij-themes/src/main/java/com/formdev/flatlaf/intellijthemes/FlatSolarizedLightIJTheme.java b/flatlaf-intellij-themes/src/main/java/com/formdev/flatlaf/intellijthemes/FlatSolarizedLightIJTheme.java index 7aa48fc7..e1ecf544 100644 --- a/flatlaf-intellij-themes/src/main/java/com/formdev/flatlaf/intellijthemes/FlatSolarizedLightIJTheme.java +++ b/flatlaf-intellij-themes/src/main/java/com/formdev/flatlaf/intellijthemes/FlatSolarizedLightIJTheme.java @@ -33,6 +33,6 @@ public class FlatSolarizedLightIJTheme } public FlatSolarizedLightIJTheme() { - super( Utils.loadTheme( "solarized_light_theme.theme.json" ) ); + super( Utils.loadTheme( "SolarizedLight.theme.json" ) ); } } diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/Solarized.LICENSE.txt b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/Solarized.LICENSE.txt new file mode 100644 index 00000000..fdddb29a --- /dev/null +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/Solarized.LICENSE.txt @@ -0,0 +1,24 @@ +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a compiled +binary, for any purpose, commercial or non-commercial, and by any +means. + +In jurisdictions that recognize copyright laws, the author or authors +of this software dedicate any and all copyright interest in the +software to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of +relinquishment in perpetuity of all present and future rights to this +software under copyright law. + +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 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. + +For more information, please refer to diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/SolarizedDark.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/SolarizedDark.theme.json new file mode 100644 index 00000000..83b34d8b --- /dev/null +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/SolarizedDark.theme.json @@ -0,0 +1,671 @@ +{ + "name": "Solarized Dark", + "dark": true, + "author": "4lex4", + "editorScheme": "/editor/SolarizedDark.xml", + "colors": { + "colorBackground": "#0E3C4A", + "colorForeground": "#A9B3AE", + "colorInactiveForeground": "#839496", + "colorSelectionBackground": "#1C62C9", + "colorSelectionBackgroundInactive": "#00243C", + "colorSelectionForeground": "#C2C5BC", + "colorSelectionForegroundInactive": "#A9B3AE", + "colorHoverBackground": "#284E5B", + "colorBorder": "#04343F", + "colorDisabledForeground": "#657B83", + "colorAlternativeBackground": "#1B4854", + "colorSeparator": "#2E4E58", + "colorAcceleratorForeground": "#527FBF", + "colorAcceleratorSelectionForeground": "#C2C5BC", + "colorHighlight": "#FFFFEB", + "colorShadow": "#B2CEE6" + }, + "ui": { + "*": { + "background": "colorBackground", + "caretForeground": "colorForeground", + "disabledForeground": "colorDisabledForeground", + "disabledText": "colorDisabledForeground", + "foreground": "colorForeground", + "inactiveBackground": "colorBackground", + "inactiveForeground": "colorInactiveForeground", + "selectionBackground": "colorSelectionBackground", + "selectionBackgroundInactive": "colorSelectionBackgroundInactive", + "selectionForeground": "colorSelectionForeground", + "selectionForegroundInactive": "colorSelectionForegroundInactive", + "selectionInactiveBackground": "colorSelectionBackgroundInactive", + "selectionInactiveForeground": "colorSelectionForegroundInactive", + "textBackground": "colorBackground", + "textForeground": "colorForeground" + }, + "ActionButton": { + "hoverBackground": "colorHoverBackground", + "hoverBorderColor": "colorHoverBackground", + "pressedBackground": "#43616C", + "pressedBorderColor": "#43616C" + }, + "Borders": { + "color": "colorBorder", + "ContrastBorderColor": "colorBorder" + }, + "Button": { + "default": { + "endBackground": "#0F5282", + "endBorderColor": "#2D6D90", + "focusColor": "#25648F", + "focusedBorderColor": "#3B749E", + "shadowColor": "#00151F1A", + "startBackground": "#0F5282", + "startBorderColor": "#2D6D90" + }, + "disabledBorderColor": "#476069", + "endBackground": "#284E5B", + "endBorderColor": "#476069", + "focusedBorderColor": "#296996", + "shadowColor": "#00151F1A", + "startBackground": "#284E5B", + "startBorderColor": "#476069" + }, + "CheckBox": {}, + "CheckBoxMenuItem": { + "acceleratorForeground": "colorAcceleratorForeground", + "acceleratorSelectionForeground": "colorAcceleratorSelectionForeground" + }, + "ColorChooser": { + "swatchesDefaultRecentColor": "colorBackground" + }, + "ComboBox": { + "ArrowButton": { + "disabledIconColor": "#49636B", + "iconColor": "#8D9FA2", + "nonEditableBackground": "colorBackground" + }, + "disabledBackground": "colorBackground", + "modifiedItemForeground": "#519AF2", + "nonEditableBackground": "colorBackground" + }, + "ComboBoxButton": {}, + "ComboPopup": { + "border": "1,1,1,1,04343F" + }, + "CompletionPopup": { + "foreground": "colorForeground", + "matchForeground": "#519AF2", + "selectionBackground": "#003359", + "selectionInactiveBackground": "#295462" + }, + "Component": { + "borderColor": "#49636B", + "disabledBorderColor": "#49636B", + "errorFocusColor": "#743D44", + "focusColor": "#26608A", + "focusedBorderColor": "#296996", + "hoverIconColor": "#8D9FA2", + "iconColor": "#8D9FA2", + "inactiveErrorFocusColor": "#53515A", + "inactiveWarningFocusColor": "#555129", + "infoForeground": "#657B83", + "warningFocusColor": "#9A7926" + }, + "Counter": { + "background": "#99A6A5B0", + "foreground": "#002B36" + }, + "Debugger": { + "Variables": { + "changedValueForeground": "#519AF2", + "collectingDataForeground": "#93A1A1", + "errorMessageForeground": "#FA6060", + "evaluatingExpressionForeground": "#93A1A1", + "exceptionForeground": "#FA6060", + "modifyingValueForeground": "#519AF2", + "valueForeground": "#FD7E7A" + } + }, + "DebuggerPopup": { + "borderColor": "colorBorder" + }, + "DebuggerTabs": {}, + "DefaultTabs": { + "borderColor": "colorBorder", + "hoverBackground": "#00131F82", + "inactiveUnderlineColor": "#577A88", + "underlineColor": "#3985C7", + "underlinedTabBackground": "colorBackground", + "underlinedTabForeground": "colorForeground" + }, + "DragAndDrop": { + "areaBackground": "#17475F", + "areaBorderColor": "#386FA8", + "areaForeground": "colorForeground" + }, + "Editor": { + "background": "#0E272F", + "foreground": "#93A1A1", + "shortcutForeground": "#519AF2" + }, + "EditorPane": { + "inactiveBackground": "colorAlternativeBackground", + "inactiveForeground": "colorForeground" + }, + "EditorTabs": { + "inactiveColoredFileBackground": "#0E3C4A99", + "underlinedTabBackground": "#225261" + }, + "FileColor": { + "Blue": "#2B5372", + "Green": "#215354", + "Orange": "#67625D", + "Rose": "#4D5264", + "Violet": "#534A57", + "Yellow": "#274A4C" + }, + "FlameGraph": { + "JavaCell": { + "background": "#B29F66", + "foreground": "#002B36", + "hoverBackground": "#8E865F", + "hoverForeground": "#002B36", + "hoverInactiveBackground": "#76704A", + "hoverInactiveForeground": "#002B36", + "inactiveBackground": "#96854E", + "inactiveForeground": "#586E75", + "searchFailBackground": "#536861", + "searchFailHoverBackground": "#3D5853", + "searchFailHoverInactiveBackground": "#29423F", + "searchFailInactiveBackground": "#3E524C", + "searchOkBackground": "#B29F66", + "searchOkHoverBackground": "#8E865F", + "searchOkHoverInactiveBackground": "#76704A", + "searchOkInactiveBackground": "#988750" + }, + "NativeCell": { + "background": "#75ABCA", + "foreground": "#002B36", + "hoverBackground": "#5B8DAC", + "hoverForeground": "#002B36", + "hoverInactiveBackground": "#437694", + "hoverInactiveForeground": "#002B36", + "inactiveBackground": "#5B90AF", + "inactiveForeground": "#586E75", + "searchFailBackground": "#376375", + "searchFailHoverBackground": "#265465", + "searchFailHoverInactiveBackground": "#0C3F4F", + "searchFailInactiveBackground": "#1E4D5E", + "searchOkBackground": "#75ABCA", + "searchOkHoverBackground": "#5B8DAC", + "searchOkHoverInactiveBackground": "#437694", + "searchOkInactiveBackground": "#5D93B1" + }, + "ParentCell": { + "background": "#95A3A4", + "foreground": "#002B36", + "hoverBackground": "#7D8F92", + "hoverForeground": "#002B36", + "hoverInactiveBackground": "#627880", + "hoverInactiveForeground": "#002B36", + "inactiveBackground": "#778A8F", + "inactiveForeground": "#586E75", + "searchFailBackground": "#476069", + "searchFailHoverBackground": "#566C73", + "searchFailHoverInactiveBackground": "#3B5760", + "searchFailInactiveBackground": "#2B4C56", + "searchOkBackground": "#95A3A4", + "searchOkHoverBackground": "#7D8F92", + "searchOkHoverInactiveBackground": "#627880", + "searchOkInactiveBackground": "#7B8C8F" + } + }, + "FormattedTextField": { + "background": "colorAlternativeBackground" + }, + "Group": { + "disabledSeparatorColor": "colorSeparator", + "separatorColor": "colorSeparator" + }, + "GutterTooltip": { + "infoForeground": "#708589", + "lineSeparatorColor": "colorBorder" + }, + "HelpTooltip": { + "borderColor": "#486671" + }, + "InformationHint": { + "borderColor": "colorBorder" + }, + "InplaceRefactoringPopup": { + "borderColor": "colorBorder" + }, + "Label": { + "errorForeground": "#FA6060", + "infoForeground": "#778A8F", + "selectedForeground": "colorForeground" + }, + "Link": { + "activeForeground": "#519AF2", + "hoverForeground": "#519AF2", + "pressedForeground": "#AA6E28", + "secondaryForeground": "#3B72A2", + "visitedForeground": "#519AF2" + }, + "List": { + "dropLineColor": "colorAcceleratorForeground" + }, + "MemoryIndicator": { + "allocatedBackground": "#3B5760", + "usedBackground": "#566C73" + }, + "Menu": { + "acceleratorForeground": "colorAcceleratorForeground", + "acceleratorSelectionForeground": "colorAcceleratorSelectionForeground", + "borderColor": "colorSeparator", + "separatorColor": "colorSeparator" + }, + "MenuBar": { + "borderColor": "colorSeparator", + "disabledBackground": "colorBackground", + "highlight": "colorHighlight", + "shadow": "colorShadow" + }, + "MenuItem": { + "acceleratorForeground": "colorForeground", + "disabledBackground": "colorBackground" + }, + "NavBar": { + "borderColor": "colorSeparator" + }, + "Notification": { + "borderColor": "#365863CD", + "errorBackground": "#353E4D", + "errorBorderColor": "#564755", + "errorForeground": "colorForeground", + "MoreButton": { + "background": "#0F3945", + "foreground": "#839496", + "innerBorderColor": "#073642" + }, + "ToolWindow": { + "errorBackground": "#524950", + "errorBorderColor": "#828A91", + "errorForeground": "colorForeground", + "informativeBackground": "#123F35", + "informativeBorderColor": "#6D977F", + "informativeForeground": "colorForeground", + "warningBackground": "#435126", + "warningBorderColor": "#93A16A", + "warningForeground": "colorForeground" + } + }, + "OptionPane": { + "messageForeground": "colorForeground" + }, + "Panel": {}, + "ParameterInfo": { + "background": "#254C57", + "borderColor": "#415E69", + "currentOverloadBackground": "#415E69", + "currentParameterForeground": "colorForeground", + "disabledForeground": "#60767D", + "infoForeground": "#708589", + "lineSeparatorColor": "#415E69" + }, + "PasswordField": { + "background": "colorAlternativeBackground" + }, + "Plugins": { + "background": "#013441", + "Button": { + "installBackground": "#013441", + "installBorderColor": "#057A56", + "installFillBackground": "#057A56", + "installFillForeground": "colorForeground", + "installFocusedBackground": "#DFF6DB", + "installForeground": "#057A56", + "updateBackground": "#004880", + "updateBorderColor": "#004880", + "updateForeground": "colorForeground" + }, + "disabledForeground": "#546971", + "eapTagBackground": "#EFD2CF", + "lightSelectionBackground": "#0B3A48", + "SearchField": { + "background": "#013441", + "borderColor": "#30505B" + }, + "SectionHeader": { + "background": "#0C3D45", + "foreground": "#88999B" + }, + "Tab": {}, + "tagBackground": "#2E4E58", + "tagForeground": "#88999B" + }, + "Popup": { + "Advertiser": { + "borderColor": "#708589" + }, + "borderColor": "#476069", + "Header": { + "activeBackground": "#204D5C", + "inactiveBackground": "#1B4555" + }, + "inactiveBorderColor": "#38555E", + "separatorColor": "colorSeparator", + "separatorForeground": "#6B8086", + "Toolbar": { + "borderColor": "#264C59" + } + }, + "PopupMenu": { + "translucentBackground": "colorBackground" + }, + "ProgressBar": { + "failedColor": "#DE4647", + "failedEndColor": "#EFA0A0", + "foreground": "#6B8086", + "indeterminateEndColor": "#6D8289", + "indeterminateStartColor": "#4E6770", + "passedColor": "#008A4B", + "passedEndColor": "#4FC392", + "progressColor": "#93A1A1", + "trackColor": "#36525B" + }, + "RadioButton": {}, + "RadioButtonMenuItem": { + "acceleratorForeground": "colorAcceleratorForeground", + "acceleratorSelectionForeground": "colorAcceleratorSelectionForeground" + }, + "ScrollBar": { + "background": "#14414F", + "hoverThumbBorderColor": "#0A384459", + "hoverThumbColor": "#99A6A559", + "hoverTrackColor": "", + "Mac": { + "hoverThumbBorderColor": "#0027328C", + "hoverThumbColor": "#6B80868C", + "hoverTrackColor": "", + "thumbBorderColor": "#00273259", + "thumbColor": "#6B808659", + "trackColor": "", + "Transparent": { + "hoverThumbBorderColor": "#0027328C", + "hoverThumbColor": "#6B80868C", + "hoverTrackColor": "#6B80861A", + "thumbBorderColor": "", + "thumbColor": "", + "trackColor": "" + } + }, + "thumbBorderColor": "#0A384447", + "thumbColor": "#99A6A547", + "trackColor": "", + "Transparent": { + "hoverThumbBorderColor": "#0A384459", + "hoverThumbColor": "#99A6A559", + "hoverTrackColor": "#6B80861A", + "thumbBorderColor": "#0A384447", + "thumbColor": "#99A6A547", + "trackColor": "" + } + }, + "ScrollPane": {}, + "SearchEverywhere": { + "Advertiser": { + "background": "colorAlternativeBackground", + "foreground": "#6B8086" + }, + "Header": { + "background": "colorAlternativeBackground" + }, + "List": { + "separatorColor": "#2E4E58", + "separatorForeground": "#6B8086" + }, + "SearchField": { + "borderColor": "#49636B", + "infoForeground": "#6B8086" + }, + "Tab": { + "selectedBackground": "#365863", + "selectedForeground": "colorForeground" + } + }, + "SearchField": { + "errorBackground": "#5B3C43" + }, + "SearchMatch": { + "endBackground": "#FCCE40", + "startBackground": "#FFEAA2" + }, + "Separator": { + "separatorColor": "colorSeparator" + }, + "SidePanel": { + "background": "#0E4155" + }, + "Slider": { + "buttonBorderColor": "#023B49", + "buttonColor": "#909E9E", + "tickColor": "#4C656D", + "trackColor": "#4C656D" + }, + "SpeedSearch": { + "borderColor": "#6B8086", + "errorForeground": "#FA6060" + }, + "Spinner": {}, + "SplitPane": { + "darkShadow": "#628A9F", + "highlight": "colorBackground", + "shadow": "colorShadow" + }, + "SplitPaneDivider": { + "draggingColor": "#193E49" + }, + "StatusBar": { + "borderColor": "#204550", + "hoverBackground": "colorHoverBackground" + }, + "TabbedPane": { + "contentAreaColor": "#04343F", + "disabledUnderlineColor": "#627880", + "focus": "colorAcceleratorForeground", + "focusColor": "#164864", + "hoverColor": "#003240", + "underlineColor": "#3985C7" + }, + "Table": { + "dropLineColor": "colorAcceleratorForeground", + "dropLineShortColor": "#0C3542", + "focusCellBackground": "colorAlternativeBackground", + "focusCellForeground": "colorForeground", + "gridColor": "#284E5B", + "lightSelectionBackground": "#1B4755", + "lightSelectionForeground": "colorForeground", + "lightSelectionInactiveBackground": "#1B4755", + "lightSelectionInactiveForeground": "colorForeground", + "sortIconColor": "#839496", + "stripeColor": "#174351" + }, + "TableHeader": { + "background": "#194553", + "bottomSeparatorColor": "#003442", + "focusCellBackground": "colorAlternativeBackground", + "separatorColor": "#003442" + }, + "TextArea": { + "background": "colorAlternativeBackground" + }, + "TextComponent": {}, + "TextField": { + "background": "colorAlternativeBackground", + "darkShadow": "#628A9F", + "highlight": "colorHighlight" + }, + "TextPane": {}, + "TitledBorder": { + "titleColor": "colorForeground" + }, + "TitlePane": { + "Button": { + "hoverBackground": "#FFFFEB1A" + }, + "inactiveInfoForeground": "#586E75", + "infoForeground": "#839496" + }, + "ToggleButton": { + "borderColor": "#2E4E58", + "buttonColor": "#49636B", + "offBackground": "colorAlternativeBackground", + "offForeground": "colorDisabledForeground", + "onBackground": "#2B6955", + "onForeground": "colorForeground" + }, + "ToolBar": { + "darkShadow": "#628A9F", + "floatingForeground": "#A2CAF1", + "highlight": "colorHighlight", + "light": "colorHighlight", + "shadow": "colorShadow" + }, + "Toolbar": { + "Floating": { + "background": "#174857" + } + }, + "ToolTip": { + "Actions": { + "background": "#1A4653", + "infoForeground": "#7D8F92" + }, + "background": "#254C57", + "borderColor": "#486671", + "infoForeground": "#778A8F", + "shortcutForeground": "#88999B" + }, + "Tooltip": { + "separatorColor": "#38555E" + }, + "ToolWindow": { + "Button": { + "hoverBackground": "#00151F30", + "selectedBackground": "#00151F5A", + "selectedForeground": "#CCCDC1" + }, + "Header": { + "background": "#11435A", + "borderColor": "colorBorder", + "inactiveBackground": "colorBackground" + }, + "HeaderCloseButton": { + "background": "#123E4F" + }, + "HeaderTab": { + "selectedInactiveBackground": "#0D3340" + } + }, + "Tree": { + "errorForeground": "#FA6060", + "hash": "#2B515E", + "modifiedItemForeground": "#519AF2" + }, + "UiDesigner": { + "Panel": {}, + "Preview": {} + }, + "ValidationTooltip": { + "errorBackground": "#353E4D", + "errorBorderColor": "#564755", + "warningBackground": "#384E3C", + "warningBorderColor": "#6E5209" + }, + "VersionControl": { + "FileHistory": { + "Commit": { + "selectedBranchBackground": "#224849" + } + }, + "GitLog": { + "headIconColor": "#DAC732", + "localBranchIconColor": "#2AB15E", + "otherIconColor": "#7D8F92", + "remoteBranchIconColor": "#8D78B9", + "tagIconColor": "#7D8F92" + }, + "HgLog": { + "bookmarkIconColor": "#8D78B9", + "branchIconColor": "#2AB15E", + "closedBranchIconColor": "#FD5C6C", + "headIconColor": "#B51D8F", + "localTagIconColor": "#00F1F0", + "mqTagIconColor": "#0050F8", + "tagIconColor": "#7D8F92", + "tipIconColor": "#DAC732" + }, + "Log": { + "Commit": { + "currentBranchBackground": "#044452", + "unmatchedForeground": "#657B83" + } + }, + "RefLabel": { + "backgroundBase": "#FFFFEB", + "foreground": "#7D8F92" + } + }, + "Viewport": {}, + "WelcomeScreen": { + "background": "#1D4553", + "borderColor": "#31535F", + "captionBackground": "#294953", + "captionForeground": "#C2C5BC", + "footerBackground": "#294953", + "footerForeground": "#C2C5BC", + "groupIconBorderColor": "#0A3844", + "headerBackground": "#294953", + "headerForeground": "#C2C5BC", + "Projects": { + "background": "#113842", + "selectionBackground": "#396AB0", + "selectionInactiveBackground": "#1E434E" + }, + "separatorColor": "#244A57" + }, + "Window": { + "border": "colorBorder" + } + }, + "icons": { + "ColorPalette": { + "Actions.Red": "#DC322F", + "Actions.Yellow": "#B58900", + "Actions.Green": "#859900", + "Actions.Blue": "#268BD2", + "Actions.Grey": "#93A1A1", + "Actions.GreyInline.Dark": "#93A1A1", + "Objects.Grey": "#93A1A1", + "Objects.Blue": "#268BD2", + "Objects.Green": "#859900", + "Objects.Yellow": "#B58900", + "Objects.YellowDark": "#CB4B16", + "Objects.Purple": "#6C71C4", + "Objects.Pink": "#D33682", + "Objects.Red": "#DC322F", + "Objects.RedStatus": "#DC322F", + "Objects.BlackText": "#002B36FF", + "Objects.GreenAndroid": "#859900", + "Checkbox.Background.Default.Dark": "#1B4854", + "Checkbox.Border.Default.Dark": "#476069", + "Checkbox.Background.Selected.Dark": "#1B4854", + "Checkbox.Border.Selected.Dark": "#42646D", + "Checkbox.Foreground.Selected.Dark": "#A9B3AE", + "Checkbox.Background.Disabled.Dark": "#0E3C4A", + "Checkbox.Border.Disabled.Dark": "#476069", + "Checkbox.Foreground.Disabled.Dark": "#476069", + "Checkbox.Focus.Thin.Default.Dark": "#296996", + "Checkbox.Focus.Thin.Selected.Dark": "#296996", + "Checkbox.Focus.Wide.Dark": "#296996" + } + } +} \ No newline at end of file diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/SolarizedLight.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/SolarizedLight.theme.json new file mode 100644 index 00000000..c7d83c1f --- /dev/null +++ b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/SolarizedLight.theme.json @@ -0,0 +1,676 @@ +{ + "name": "Solarized Light", + "dark": false, + "author": "4lex4", + "editorScheme": "/editor/SolarizedLight.xml", + "colors": { + "colorBackground": "#EEE8D5", + "colorForeground": "#2E4E58", + "colorInactiveForeground": "#657B83", + "colorSelectionBackground": "#3570CD", + "colorSelectionBackgroundInactive": "#D3D2C6", + "colorSelectionForeground": "#FFFFEB", + "colorSelectionForegroundInactive": "#2E4E58", + "colorHoverBackground": "#D9D7CA", + "colorBorder": "#C8CAC0", + "colorDisabledForeground": "#839496", + "colorAlternativeBackground": "#FDF6E3", + "colorSeparator": "#C8CAC0", + "colorAcceleratorForeground": "#617EB3", + "colorAcceleratorSelectionForeground": "#FFFFEB", + "colorHighlight": "#FFFFEB", + "colorShadow": "#B5C7CF" + }, + "ui": { + "*": { + "background": "colorBackground", + "caretForeground": "colorForeground", + "disabledForeground": "colorDisabledForeground", + "disabledText": "colorDisabledForeground", + "foreground": "colorForeground", + "inactiveBackground": "colorBackground", + "inactiveForeground": "colorInactiveForeground", + "selectionBackground": "colorSelectionBackground", + "selectionBackgroundInactive": "colorSelectionBackgroundInactive", + "selectionForeground": "colorSelectionForeground", + "selectionForegroundInactive": "colorSelectionForegroundInactive", + "selectionInactiveBackground": "colorSelectionBackgroundInactive", + "selectionInactiveForeground": "colorSelectionForegroundInactive", + "textBackground": "colorBackground", + "textForeground": "colorForeground" + }, + "ActionButton": { + "hoverBackground": "colorHoverBackground", + "hoverBorderColor": "colorHoverBackground", + "pressedBackground": "#C6C7BD", + "pressedBorderColor": "#C6C7BD" + }, + "Borders": { + "color": "colorBorder", + "ContrastBorderColor": "colorBorder" + }, + "Button": { + "default": { + "endBackground": "#4681BB", + "endBorderColor": "#3065A7", + "focusedBorderColor": "#A5C7E2", + "foreground": "#FDF6E3", + "shadowColor": "#000E1B0F", + "startBackground": "#4681BB", + "startBorderColor": "#4676B2" + }, + "disabledBorderColor": "#C6C7BD", + "endBackground": "colorAlternativeBackground", + "endBorderColor": "#A7B0AC", + "focusedBorderColor": "#86ABCB", + "shadowColor": "#000E1B0F", + "startBackground": "colorAlternativeBackground", + "startBorderColor": "#B4BAB5" + }, + "CheckBox": {}, + "CheckBoxMenuItem": { + "acceleratorForeground": "colorAcceleratorForeground", + "acceleratorSelectionForeground": "colorAcceleratorSelectionForeground" + }, + "ColorChooser": { + "swatchesDefaultRecentColor": "#CFD0C3" + }, + "ComboBox": { + "ArrowButton": { + "background": "#F7F0DD", + "disabledIconColor": "#A1ABA8", + "iconColor": "#4E6770", + "nonEditableBackground": "colorAlternativeBackground" + }, + "background": "colorAlternativeBackground", + "disabledBackground": "colorBackground", + "modifiedItemForeground": "#3961FA", + "nonEditableBackground": "colorAlternativeBackground" + }, + "ComboBoxButton": { + "background": "colorAlternativeBackground" + }, + "ComboPopup": { + "border": "1,1,1,1,C8CAC0" + }, + "CompletionPopup": { + "foreground": "colorForeground", + "matchForeground": "#4975B9", + "selectionBackground": "#BED8F0", + "selectionInactiveBackground": "#D9D7CA" + }, + "Component": { + "borderColor": "#BAC0B8", + "disabledBorderColor": "#C6C7BD", + "errorFocusColor": "#DE3641", + "focusColor": "#95BDE1", + "focusedBorderColor": "#86ABCB", + "hoverIconColor": "#4E6770", + "iconColor": "#4E6770", + "inactiveErrorFocusColor": "#E8B4A6", + "inactiveWarningFocusColor": "#F6CA7C", + "infoForeground": "#839496", + "warningFocusColor": "#DC9E2F" + }, + "Counter": { + "background": "#99A6A5B0", + "foreground": "#002B36" + }, + "Debugger": { + "Variables": { + "changedValueForeground": "#3961FA", + "collectingDataForeground": "#586E75", + "errorMessageForeground": "#F94A26", + "evaluatingExpressionForeground": "#586E75", + "exceptionForeground": "#F94A26", + "modifyingValueForeground": "#3961FA", + "valueForeground": "#C44C30" + } + }, + "DebuggerPopup": { + "borderColor": "colorBorder" + }, + "DebuggerTabs": {}, + "DefaultTabs": { + "borderColor": "colorBorder", + "hoverBackground": "#000E1B1A", + "inactiveUnderlineColor": "#92A4A7", + "underlineColor": "#3D7EC0", + "underlinedTabBackground": "colorBackground", + "underlinedTabForeground": "colorForeground" + }, + "DragAndDrop": { + "areaBackground": "#DEE3DE", + "areaBorderColor": "#88ACCD", + "areaForeground": "#657B83" + }, + "Editor": { + "background": "#B5B0A2", + "foreground": "#36525B", + "shortcutForeground": "#516091" + }, + "EditorPane": { + "background": "colorAlternativeBackground", + "inactiveBackground": "colorAlternativeBackground" + }, + "EditorTabs": { + "inactiveColoredFileBackground": "#0B080112", + "underlinedTabBackground": "colorAlternativeBackground" + }, + "FileColor": { + "Blue": "#E8EEE5", + "Green": "#EDF2CE", + "Orange": "#F2E0C2", + "Rose": "#F0D4C2", + "Violet": "#E4D8D8", + "Yellow": "#FBF4C9" + }, + "FlameGraph": { + "JavaCell": { + "background": "#F8D583", + "foreground": "#073642", + "hoverBackground": "#E5C67B", + "hoverForeground": "#073642", + "hoverInactiveBackground": "#C9A95A", + "hoverInactiveForeground": "#073642", + "inactiveBackground": "#DBB969", + "inactiveForeground": "#657B83", + "searchFailBackground": "#C0A86D", + "searchFailHoverBackground": "#9A865B", + "searchFailHoverInactiveBackground": "#7F6D43", + "searchFailInactiveBackground": "#A48E54", + "searchOkBackground": "#F8D583", + "searchOkHoverBackground": "#E5C67B", + "searchOkHoverInactiveBackground": "#C7AA60", + "searchOkInactiveBackground": "#DBB969" + }, + "NativeCell": { + "background": "#A7D1DD", + "foreground": "#073642", + "hoverBackground": "#98BBCD", + "hoverForeground": "#073642", + "hoverInactiveBackground": "#7CA5B1", + "hoverInactiveForeground": "#073642", + "inactiveBackground": "#8CB5C1", + "inactiveForeground": "#657B83", + "searchFailBackground": "#8DADBA", + "searchFailHoverBackground": "#72858C", + "searchFailHoverInactiveBackground": "#596B72", + "searchFailInactiveBackground": "#75939F", + "searchOkBackground": "#A7D1DD", + "searchOkHoverBackground": "#98BBCD", + "searchOkHoverInactiveBackground": "#7FA1B2", + "searchOkInactiveBackground": "#8CB5C1" + }, + "ParentCell": { + "background": "#D3D2C6", + "foreground": "#073642", + "hoverBackground": "#BEC2B9", + "hoverForeground": "#073642", + "hoverInactiveBackground": "#9DA8A7", + "hoverInactiveForeground": "#073642", + "inactiveBackground": "#B1B8B2", + "inactiveForeground": "#657B83", + "searchFailBackground": "#7B8C8F", + "searchFailHoverBackground": "#9DA8A7", + "searchFailHoverInactiveBackground": "#7D8F92", + "searchFailInactiveBackground": "#5D737B", + "searchOkBackground": "#D3D2C6", + "searchOkHoverBackground": "#BEC2B9", + "searchOkHoverInactiveBackground": "#9DA8A7", + "searchOkInactiveBackground": "#B1B8B2" + } + }, + "FormattedTextField": { + "background": "colorAlternativeBackground", + "inactiveBackground": "colorAlternativeBackground" + }, + "Group": { + "disabledSeparatorColor": "colorSeparator", + "separatorColor": "colorSeparator" + }, + "GutterTooltip": { + "infoForeground": "#657B83", + "lineSeparatorColor": "colorBorder" + }, + "HelpTooltip": { + "borderColor": "#A1ABA8" + }, + "InformationHint": { + "borderColor": "colorBorder" + }, + "InplaceRefactoringPopup": { + "borderColor": "colorBorder" + }, + "Label": { + "errorForeground": "#F95551", + "infoForeground": "#657B83", + "selectedForeground": "colorForeground" + }, + "Link": { + "activeForeground": "#4975B9", + "hoverForeground": "#4975B9", + "pressedForeground": "#2857A1", + "secondaryForeground": "#7598AF", + "visitedForeground": "#516091" + }, + "List": { + "background": "colorAlternativeBackground", + "dropLineColor": "colorAcceleratorForeground" + }, + "MemoryIndicator": { + "allocatedBackground": "#CFD0C3", + "usedBackground": "#ADB5AF" + }, + "Menu": { + "acceleratorForeground": "colorAcceleratorForeground", + "acceleratorSelectionForeground": "colorAcceleratorSelectionForeground", + "borderColor": "#D3D2C6", + "disabledBackground": "colorBackground", + "separatorColor": "colorSeparator" + }, + "MenuBar": { + "borderColor": "colorSeparator", + "disabledBackground": "colorBackground", + "highlight": "colorHighlight", + "shadow": "colorShadow" + }, + "MenuItem": { + "acceleratorForeground": "#49636B", + "disabledBackground": "colorBackground" + }, + "NavBar": { + "borderColor": "colorSeparator" + }, + "Notification": { + "borderColor": "#A7B0ACCD", + "errorBackground": "#F2DED1", + "errorBorderColor": "#DDA195", + "errorForeground": "colorForeground", + "MoreButton": { + "background": "#DDDACB", + "foreground": "#586E75", + "innerBorderColor": "#D3D2C6" + }, + "ToolWindow": { + "errorBackground": "#F8C4C5", + "errorBorderColor": "#D49084", + "errorForeground": "colorForeground", + "informativeBackground": "#B4E4A2", + "informativeBorderColor": "#9DB88A", + "informativeForeground": "colorForeground", + "warningBackground": "#F7F280", + "warningBorderColor": "#B4B21A", + "warningForeground": "colorForeground" + } + }, + "OptionPane": { + "messageForeground": "colorForeground" + }, + "Panel": {}, + "ParameterInfo": { + "background": "#F5F1E5", + "borderColor": "#D9D7CA", + "currentOverloadBackground": "#D9D7CA", + "currentParameterForeground": "colorForeground", + "disabledForeground": "#A3ADAB", + "infoForeground": "#657B83", + "lineSeparatorColor": "#D9D7CA" + }, + "PasswordField": { + "background": "colorAlternativeBackground" + }, + "Plugins": { + "background": "colorAlternativeBackground", + "Button": { + "installBackground": "colorAlternativeBackground", + "installBorderColor": "#81BA5C", + "installFillBackground": "#81BA5C", + "installFillForeground": "colorAlternativeBackground", + "installFocusedBackground": "#DFEEC2", + "installForeground": "#81BA5C", + "updateBackground": "#5F9DE7", + "updateBorderColor": "#5F9DE7", + "updateForeground": "colorAlternativeBackground" + }, + "disabledForeground": "#A3ADAB", + "eapTagBackground": "#EECAB6", + "lightSelectionBackground": "#F3F1E3", + "SearchField": { + "background": "colorAlternativeBackground", + "borderColor": "#B4BAB5" + }, + "SectionHeader": { + "background": "#F4EDDA", + "foreground": "#627880" + }, + "Tab": {}, + "tagBackground": "#E8E2D2", + "tagForeground": "#627880" + }, + "Popup": { + "Advertiser": { + "borderColor": "colorBorder" + }, + "borderColor": "#A1ABA8", + "Header": { + "activeBackground": "#E2DCCA", + "inactiveBackground": "#EBE5D2" + }, + "inactiveBorderColor": "#9DA8A7", + "separatorColor": "#D3D2C6", + "separatorForeground": "#6B8086", + "Toolbar": { + "borderColor": "#F7F0DD" + } + }, + "PopupMenu": { + "translucentBackground": "colorBackground" + }, + "ProgressBar": { + "failedColor": "#D14943", + "failedEndColor": "#F6887C", + "indeterminateEndColor": "#6B8086", + "indeterminateStartColor": "#BAC0B8", + "passedColor": "#2DAA66", + "passedEndColor": "#77DF92", + "progressColor": "#6B8086", + "trackColor": "#BAC0B8" + }, + "RadioButton": {}, + "RadioButtonMenuItem": { + "acceleratorForeground": "colorAcceleratorForeground", + "acceleratorSelectionForeground": "colorAcceleratorSelectionForeground" + }, + "ScrollBar": { + "background": "#F5F0E3", + "hoverThumbBorderColor": "#4B5A5F47", + "hoverThumbColor": "#5D737B47", + "hoverTrackColor": "", + "Mac": { + "hoverThumbBorderColor": "#002B3680", + "hoverThumbColor": "#002B3680", + "hoverTrackColor": "", + "thumbBorderColor": "#002B3633", + "thumbColor": "#002B3633", + "trackColor": "", + "Transparent": { + "hoverThumbBorderColor": "#002B3680", + "hoverThumbColor": "#002B3680", + "hoverTrackColor": "#6D82891A", + "thumbBorderColor": "", + "thumbColor": "", + "trackColor": "" + } + }, + "thumbBorderColor": "#4B5A5F33", + "thumbColor": "#5D737B33", + "trackColor": "", + "Transparent": { + "hoverThumbBorderColor": "#4B5A5F47", + "hoverThumbColor": "#5D737B47", + "hoverTrackColor": "#6D82891A", + "thumbBorderColor": "#4B5A5F33", + "thumbColor": "#5D737B33", + "trackColor": "" + } + }, + "ScrollPane": {}, + "SearchEverywhere": { + "Advertiser": { + "foreground": "#6B8086" + }, + "Header": {}, + "List": { + "separatorColor": "#D7D5C7", + "separatorForeground": "#657B83" + }, + "SearchField": { + "background": "colorAlternativeBackground", + "borderColor": "#B4BAB5", + "infoForeground": "#6B8086" + }, + "Tab": { + "selectedBackground": "#DAD5C3", + "selectedForeground": "colorForeground" + } + }, + "SearchField": { + "errorBackground": "#FCC4B3" + }, + "SearchMatch": { + "endBackground": "#F8C734", + "startBackground": "#FAE08D" + }, + "Separator": { + "separatorColor": "colorSeparator" + }, + "SidePanel": { + "background": "#E2E2D4" + }, + "Slider": { + "buttonBorderColor": "#95A3A4", + "buttonColor": "colorAlternativeBackground", + "tickColor": "#869798", + "trackColor": "#BEC2B9" + }, + "SpeedSearch": { + "borderColor": "#6B8086", + "errorForeground": "#F94A26" + }, + "Spinner": {}, + "SplitPane": { + "darkShadow": "#78858B", + "highlight": "colorBackground", + "shadow": "colorShadow" + }, + "SplitPaneDivider": { + "draggingColor": "#1E434E" + }, + "StatusBar": { + "borderColor": "colorBorder", + "hoverBackground": "colorHoverBackground" + }, + "TabbedPane": { + "contentAreaColor": "#B4BAB5", + "disabledUnderlineColor": "#A1ABA8", + "focus": "colorAcceleratorForeground", + "focusColor": "#D6DBD3", + "hoverColor": "#D3D2C6", + "underlineColor": "#3D7EC0" + }, + "Table": { + "background": "colorAlternativeBackground", + "dropLineColor": "colorAcceleratorForeground", + "dropLineShortColor": "#5F63A9", + "focusCellBackground": "colorAlternativeBackground", + "focusCellForeground": "colorForeground", + "gridColor": "#F4EDDA", + "lightSelectionBackground": "#E7E6DA", + "lightSelectionForeground": "colorForeground", + "lightSelectionInactiveBackground": "#F4EDDA", + "lightSelectionInactiveForeground": "colorForeground", + "sortIconColor": "colorShadow", + "stripeColor": "#F3EDDE" + }, + "TableHeader": { + "background": "colorAlternativeBackground", + "bottomSeparatorColor": "#E0DDCD", + "focusCellBackground": "colorAlternativeBackground", + "separatorColor": "#E0DDCD" + }, + "TextArea": { + "background": "colorAlternativeBackground" + }, + "TextComponent": {}, + "TextField": { + "background": "colorAlternativeBackground", + "darkShadow": "#73888C", + "highlight": "colorHighlight" + }, + "TextPane": {}, + "TitledBorder": { + "titleColor": "colorForeground" + }, + "TitlePane": { + "Button": { + "hoverBackground": "#0001181A" + }, + "inactiveInfoForeground": "#839496", + "infoForeground": "#586E75" + }, + "ToggleButton": { + "borderColor": "#B7BDB6", + "buttonColor": "#BEC2B9", + "offBackground": "colorAlternativeBackground", + "offForeground": "colorDisabledForeground", + "onBackground": "#6FB460", + "onForeground": "colorForeground" + }, + "ToolBar": { + "darkShadow": "#78858B", + "floatingForeground": "colorShadow", + "highlight": "colorHighlight", + "light": "colorHighlight", + "shadow": "colorShadow" + }, + "Toolbar": { + "Floating": { + "background": "#EBE5D2" + } + }, + "ToolTip": { + "Actions": { + "background": "#E9E2CF", + "infoForeground": "#93A1A1" + }, + "background": "#F7F0DD", + "borderColor": "#A1ABA8", + "infoForeground": "#657B83", + "shortcutForeground": "#566C73" + }, + "Tooltip": { + "separatorColor": "colorSeparator" + }, + "ToolWindow": { + "Button": { + "hoverBackground": "#3B576025", + "selectedBackground": "#3B576050", + "selectedForeground": "#002B36" + }, + "Header": { + "background": "#DEDDD1", + "borderColor": "colorBorder", + "inactiveBackground": "colorBackground" + }, + "HeaderCloseButton": { + "background": "#ADB5AF" + }, + "HeaderTab": { + "selectedInactiveBackground": "#D3D2C6" + } + }, + "Tree": { + "background": "colorAlternativeBackground", + "errorForeground": "#F94A26", + "hash": "#E0DDCD", + "modifiedItemForeground": "#3961FA" + }, + "UiDesigner": { + "Panel": {}, + "Preview": {} + }, + "ValidationTooltip": { + "errorBackground": "#F2DED1", + "errorBorderColor": "#DDA195", + "warningBackground": "#F2E8D0", + "warningBorderColor": "#DDC794" + }, + "VersionControl": { + "FileHistory": { + "Commit": { + "selectedBranchBackground": "#FBF4C7" + } + }, + "GitLog": { + "headIconColor": "#EABE00", + "localBranchIconColor": "#2DA54A", + "otherIconColor": "#627880", + "remoteBranchIconColor": "#976EA1", + "tagIconColor": "#627880" + }, + "HgLog": { + "bookmarkIconColor": "#976EA1", + "branchIconColor": "#2DA54A", + "closedBranchIconColor": "#7B2A2D", + "headIconColor": "#832460", + "localTagIconColor": "#008687", + "mqTagIconColor": "#002C8B", + "tagIconColor": "#627880", + "tipIconColor": "#EABE00" + }, + "Log": { + "Commit": { + "currentBranchBackground": "#E3F2E4", + "unmatchedForeground": "#6B8086" + } + }, + "RefLabel": { + "backgroundBase": "#000118", + "foreground": "#627880" + } + }, + "Viewport": {}, + "WelcomeScreen": { + "background": "#F7F0DD", + "borderColor": "#B4BAB5", + "captionBackground": "#CCCDC1", + "captionForeground": "colorForeground", + "footerBackground": "#CCCDC1", + "footerForeground": "colorForeground", + "groupIconBorderColor": "#B4BAB5", + "headerBackground": "#D9D7CA", + "headerForeground": "#36525B", + "Projects": { + "background": "colorAlternativeBackground", + "selectionInactiveBackground": "#D7D5C7" + }, + "separatorColor": "#ECE5D3" + }, + "Window": { + "border": "colorBorder" + } + }, + "icons": { + "ColorPalette": { + "Actions.Red": "#DC322F", + "Actions.Yellow": "#B58900", + "Actions.Green": "#859900", + "Actions.Blue": "#268BD2", + "Actions.Grey": "#586E75", + "Actions.GreyInline": "#586E75", + "Objects.Grey": "#657B83", + "Objects.Blue": "#268BD2", + "Objects.Green": "#859900", + "Objects.Yellow": "#B58900", + "Objects.YellowDark": "#CB4B16", + "Objects.Purple": "#6C71C4", + "Objects.Pink": "#D33682", + "Objects.Red": "#DC322F", + "Objects.RedStatus": "#DC322F", + "Objects.BlackText": "#002B36FF", + "Objects.GreenAndroid": "#859900", + "Checkbox.Background.Default": "#FDF6E3", + "Checkbox.Border.Default": "#B4BAB5", + "Checkbox.Background.Selected": "#4984BE", + "Checkbox.Border.Selected": "#4984BE", + "Checkbox.Foreground.Selected": "#FDF6E3", + "Checkbox.Background.Disabled": "#EEE8D5", + "Checkbox.Border.Disabled": "#C6C7BD", + "Checkbox.Foreground.Disabled": "#C6C7BD", + "Checkbox.Focus.Thin.Default": "#86ABCB", + "Checkbox.Focus.Thin.Selected": "#86ABCB", + "Checkbox.Focus.Wide": "#86ABCB" + } + } +} \ No newline at end of file diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/solarized_dark_theme.LICENSE.txt b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/solarized_dark_theme.LICENSE.txt deleted file mode 100644 index 68011d97..00000000 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/solarized_dark_theme.LICENSE.txt +++ /dev/null @@ -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. diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/solarized_dark_theme.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/solarized_dark_theme.theme.json deleted file mode 100644 index ee1f247b..00000000 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/solarized_dark_theme.theme.json +++ /dev/null @@ -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" - } - } -} diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/solarized_light_theme.LICENSE.txt b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/solarized_light_theme.LICENSE.txt deleted file mode 100644 index 68011d97..00000000 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/solarized_light_theme.LICENSE.txt +++ /dev/null @@ -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. diff --git a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/solarized_light_theme.theme.json b/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/solarized_light_theme.theme.json deleted file mode 100644 index e8960754..00000000 --- a/flatlaf-intellij-themes/src/main/resources/com/formdev/flatlaf/intellijthemes/themes/solarized_light_theme.theme.json +++ /dev/null @@ -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" - } - } -}