IntelliJ Themes: updated themes to newest versions (used IJThemesUpdater)

This commit is contained in:
Karl Tauber
2023-08-02 15:03:57 +02:00
parent 170c22c5ed
commit 7a9bdf9be0
12 changed files with 347 additions and 202 deletions

View File

@@ -12,8 +12,10 @@ FlatLaf Change Log
scrollable. scrollable.
- Added system property `flatlaf.useNativeLibrary` to allow disabling loading of - Added system property `flatlaf.useNativeLibrary` to allow disabling loading of
FlatLaf native library. (issue #674) FlatLaf native library. (issue #674)
- IntelliJ Themes: Reduced memory footprint and improved setup speed by ignoring - IntelliJ Themes:
IntelliJ UI properties that are not used in FlatLaf. - Reduced memory footprint by releasing Json data and ignoring IntelliJ UI
properties that are not used in FlatLaf.
- Updated "Hiberbee Dark" and "Gradianto" themes.
#### Fixed bugs #### Fixed bugs

View File

@@ -502,8 +502,6 @@ public class IntelliJTheme
if( !key.startsWith( "Checkbox." ) || !(value instanceof String) ) if( !key.startsWith( "Checkbox." ) || !(value instanceof String) )
continue; continue;
String key2 = checkboxDuplicateColors.get( key );
if( dark ) if( dark )
key = StringUtils.removeTrailing( key, ".Dark" ); key = StringUtils.removeTrailing( key, ".Dark" );
@@ -517,6 +515,7 @@ public class IntelliJTheme
if( color != null ) { if( color != null ) {
defaults.put( newKey, color ); defaults.put( newKey, color );
String key2 = checkboxDuplicateColors.get( key + ".Dark");
if( key2 != null ) { if( key2 != null ) {
// When IDEA replaces colors in SVGs it uses color values and not the keys // When IDEA replaces colors in SVGs it uses color values and not the keys
// from com.intellij.ide.ui.UITheme.colorPalette, but there are some keys that // from com.intellij.ide.ui.UITheme.colorPalette, but there are some keys that

View File

@@ -370,7 +370,10 @@ public class IJThemesPanel
if( themeInfo == null || themeInfo.resourceName == null ) if( themeInfo == null || themeInfo.resourceName == null )
return; return;
String themeUrl = (themeInfo.sourceCodeUrl + '/' + themeInfo.sourceCodePath).replace( " ", "%20" ); String themeUrl = themeInfo.sourceCodeUrl;
if( themeInfo.sourceCodePath != null )
themeUrl += '/' + themeInfo.sourceCodePath;
themeUrl = themeUrl.replace( " ", "%20" );
try { try {
Desktop.getDesktop().browse( new URI( themeUrl ) ); Desktop.getDesktop().browse( new URI( themeUrl ) );
} catch( IOException | URISyntaxException ex ) { } catch( IOException | URISyntaxException ex ) {

View File

@@ -145,7 +145,7 @@
"license": "MIT", "license": "MIT",
"licenseFile": "Hiberbee.LICENSE.txt", "licenseFile": "Hiberbee.LICENSE.txt",
"sourceCodeUrl": "https://github.com/Hiberbee/themes", "sourceCodeUrl": "https://github.com/Hiberbee/themes",
"sourceCodePath": "blob/latest/src/main/resources/themes/HiberbeeDark.theme.json" "sourceCodePath": "blob/latest/src/intellij/src/main/resources/themes/HiberbeeDark.theme.json"
}, },
"HighContrast.theme.json": { "HighContrast.theme.json": {
"name": "High contrast", "name": "High contrast",

View File

@@ -41,23 +41,17 @@
"Bookmark": { "Bookmark": {
"iconBackground": "accentColor", "iconBackground": "accentColor",
"Mnemonic": { "Mnemonic": {
"iconForeground": "primaryForeground", "iconForeground": "primaryForeground"
"iconBackground": "#8d6b81", },
"iconBorderColor": "accentColor" "MnemonicAssigned": {
"foreground": "primaryForeground",
"background": "#786299"
},
"MnemonicCurrent": {
"foreground": "primaryForeground",
"background": "#8d6b81"
} }
}, },
"BookmarkMnemonicAssigned": {
"buttonForeground": "primaryForeground",
"buttonBackground": "#786299",
"borderColor": "secondaryAccentColor"
},
"BookmarkMnemonicAvailable": {
},
"BookmarkMnemonicCurrent": {
"buttonForeground": "primaryForeground",
"buttonBackground": "#8d6b81",
"borderColor": "accentColor"
},
"Button": { "Button": {
"foreground": "primaryForeground", "foreground": "primaryForeground",
"startBorderColor": "selectionBackground", "startBorderColor": "selectionBackground",
@@ -156,6 +150,15 @@
"informativeBorderColor": "#50fa7b" "informativeBorderColor": "#50fa7b"
} }
}, },
"NotificationsToolwindow": {
"newNotification": {
"hoverBackground": "secondaryBackground",
"background": "secondaryBackground"
},
"Notification": {
"hoverBackground": "secondaryBackground"
}
},
"PasswordField": { "PasswordField": {
"background": "secondaryBackground" "background": "secondaryBackground"
}, },
@@ -255,6 +258,7 @@
}, },
"ToolWindow": { "ToolWindow": {
"Button": { "Button": {
"selectedBackground": "secondaryAccentColor",
"hoverBackground": "hoverBackground" "hoverBackground": "hoverBackground"
}, },
"Header": { "Header": {
@@ -271,7 +275,8 @@
"Tree": { "Tree": {
"modifiedItemForeground": "accentColor", "modifiedItemForeground": "accentColor",
"selectionBackground": "selectionBackground", "selectionBackground": "selectionBackground",
"selectionInactiveBackground": "selectionInactiveBackground" "selectionInactiveBackground": "selectionInactiveBackground",
"hash": "hoverBackground"
}, },
"ValidationTooltip": { "ValidationTooltip": {
"errorBackground": "#4c273c", "errorBackground": "#4c273c",

View File

@@ -45,8 +45,10 @@
"separatorColor": "#20574f" "separatorColor": "#20574f"
}, },
"Tree": { "Tree": {
"background": "#203a40", "background": "#20403f",
"selectionBackground": "#00695c" "selectionBackground": "#00695c",
"hoverBackground": "#386d54f8",
"hoverInactiveBackground": "#386d54f8"
}, },
"ActionButton": { "ActionButton": {
"hoverBackground": "#084934", "hoverBackground": "#084934",
@@ -103,6 +105,13 @@
"Editor": { "Editor": {
"shortcutForeground": "#3f795b" "shortcutForeground": "#3f795b"
}, },
"MemoryIndicator": {
"usedBackground": "#386d54f8",
"allocatedBackground": "#2f5e47e8"
},
"NotificationsToolwindow.newNotification.background": "#2f5e47e8",
"NotificationsToolwindow.newNotification.hoverBackground": "#386d54f8",
"NotificationsToolwindow.Notification.hoverBackground": "#386d54f8",
"EditorTabs": { "EditorTabs": {
"selectedForeground": "#eceff1", "selectedForeground": "#eceff1",
"selectedBackground": "#006448", "selectedBackground": "#006448",
@@ -215,17 +224,28 @@
}, },
"DragAndDrop": { "DragAndDrop": {
"areaForeground": "#e5e5e5", "areaForeground": "#e5e5e5",
"areaBackground": "#243937", "areaBackground": "#2439378a",
"areaBorderColor": "#143427" "areaBorderColor": "#143427"
}, },
"Plugins": { "Plugins": {
"SectionHeader.background": "#2a6346", "SectionHeader.background": "#2a6346",
"tagBackground": "#3d5a50", "tagBackground": "#3d5a50",
"lightSelectionBackground": "#3c7e64" "lightSelectionBackground": "#356f58",
"hoverBackground": "#325e4d"
}, },
"VersionControl": { "VersionControl": {
"Log.Commit.currentBranchBackground": "#225740", "Log.Commit.currentBranchBackground": "#1e3938",
"Log.Commit.unmatchedForeground": "#94aba8" "Log.Commit.unmatchedForeground": "#94aba8",
"GitLog.localBranchIconColor": "#65a05c",
"GitLog.tagIconColor": "#bcc4ce",
"Log.Commit.hoveredBackground": "#34634dff",
"Log.Commit.rowHeight": 30,
"Log.Commit.selectionBackground": "#00695c",
"Log.Commit.selectionInactiveBackground": "#004b41",
"RefLabel.backgroundBase": "#04d9ffff",
"RefLabel.backgroundBrightness": 0.99
}, },
"ScrollBar" : { "ScrollBar" : {
"hoverThumbBorderColor" : "#39666394", "hoverThumbBorderColor" : "#39666394",

View File

@@ -30,10 +30,29 @@
"separatorColor": "#4b2665" "separatorColor": "#4b2665"
}, },
"Tree": {
"hoverBackground": "#71468f",
"hoverInactiveBackground": "#71468f"
},
"MemoryIndicator": {
"usedBackground": "#6f3986",
"allocatedBackground": "#4a2b5e"
},
"NotificationsToolwindow.newNotification.background": "#4a2b5e",
"NotificationsToolwindow.newNotification.hoverBackground": "#6f3986",
"NotificationsToolwindow.Notification.hoverBackground": "#6f3986",
"VersionControl" :{ "VersionControl" :{
"Log.Commit.currentBranchBackground": "#442661", "Log.Commit.currentBranchBackground": "#2e1e38",
"Log.Commit.unmatchedForeground": "#8f7fa8" "Log.Commit.unmatchedForeground": "#8f7fa8",
"GitLog.localBranchIconColor": "#65a05c",
"GitLog.tagIconColor": "#bcc4ce",
"Log.Commit.hoveredBackground": "#512663",
"Log.Commit.rowHeight": 30,
"Log.Commit.selectionBackground": "#402a4b",
"Log.Commit.selectionInactiveBackground": "#402a4b",
"RefLabel.backgroundBase": "#04d9ffff",
"RefLabel.backgroundBrightness": 0.99
}, },
"ActionButton": { "ActionButton": {
"hoverBackground": "#512663", "hoverBackground": "#512663",
@@ -71,9 +90,9 @@
"RadioButton": { "RadioButton": {
"foreground": "#c8ccd0" "foreground": "#c8ccd0"
}, },
"CompletionPopup": { "CompletionPopup": {
"matchForeground": "#652683",
"matchForeground": "#cf98db",
"matchSelectionForeground": "#9057f2" "matchSelectionForeground": "#9057f2"
}, },
@@ -123,7 +142,7 @@
"selectedBackground": "#8a599e", "selectedBackground": "#8a599e",
"underlinedTabBackground": "#5c306f", "underlinedTabBackground": "#5c306f",
"background": "#3e1c4c", "background": "#3e1c4c",
"underlineColor": "#693d6c", "underlineColor": "#8b5c8e",
"hoverMaskColor": "#71468f", "hoverMaskColor": "#71468f",
"inactiveMaskColor": "#34244aff" "inactiveMaskColor": "#34244aff"
}, },
@@ -239,12 +258,13 @@
}, },
"DragAndDrop": { "DragAndDrop": {
"areaForeground": "#FFFFFF", "areaForeground": "#FFFFFF",
"areaBackground": "#745382", "areaBackground": "#7453829a",
"areaBorderColor": "#392d42" "areaBorderColor": "#392d42"
}, },
"Plugins": { "Plugins": {
"SectionHeader.background": "#7b638b", "SectionHeader.background": "#7b638b",
"tagBackground": "#7d6089", "tagBackground": "#7d6089",
"hoverBackground": "#7a5a89",
"lightSelectionBackground": "#4e3a57", "lightSelectionBackground": "#4e3a57",
"Tab.selectedBackground": "#a778bfff", "Tab.selectedBackground": "#a778bfff",
"Tab.hoverBackground": "#82519cff" "Tab.hoverBackground": "#82519cff"
@@ -295,7 +315,9 @@
"Checkbox.Background.Default.Dark": "#442557", "Checkbox.Background.Default.Dark": "#442557",
"Checkbox.Border.Default.Dark": "#532d68", "Checkbox.Border.Default.Dark": "#532d68",
"Checkbox.Foreground.Selected.Dark": "#6aae41", "Checkbox.Foreground.Selected.Dark": "#6aae41",
"Checkbox.Background.Default": "#532e6a",
"Checkbox.Background.Disabled": "#321d3d",
"Checkbox.Background.Disabled.Dark": "#321d3d",
"Objects.Grey": "#a098a0", "Objects.Grey": "#a098a0",
"Objects.Blue": "#55a9c2", "Objects.Blue": "#55a9c2",
"Objects.RedStatus": "#a74d4dff", "Objects.RedStatus": "#a74d4dff",

View File

@@ -30,9 +30,30 @@
"separatorColor": "#1d304b" "separatorColor": "#1d304b"
}, },
"Tree.background": "#24334a", "Tree.background": "#24334a",
"Tree": {
"hoverInactiveBackground": "#324565",
"hoverBackground": "#324565"
},
"NotificationsToolwindow.newNotification.background" : "#314465",
"NotificationsToolwindow.newNotification.hoverBackground" : "#3c557cff",
"NotificationsToolwindow.Notification.hoverBackground" : "#3c557cff",
"MemoryIndicator": {
"usedBackground": "#324565",
"allocatedBackground": "#25334b"
},
"VersionControl" :{ "VersionControl" :{
"Log.Commit.currentBranchBackground": "#263d61", "Log.Commit.currentBranchBackground": "#1b2638",
"Log.Commit.unmatchedForeground": "#7f8aa8" "Log.Commit.unmatchedForeground": "#9ea8c2",
"Log.Commit.hoveredBackground": "#324565",
"Log.Commit.rowHeight": 30,
"Log.Commit.selectionInactiveBackground": "#283752",
"Log.Commit.selectionBackground": "#384d6f",
"GitLog.tagIconColor": "#bcc4ce",
"GitLog.localBranchIconColor": "#65a05c",
"RefLabel.backgroundBrightness": 0.99,
"RefLabel.backgroundBase": "#04d9ffff"
}, },
"ActionButton": { "ActionButton": {
"hoverBackground": "#324565", "hoverBackground": "#324565",
@@ -141,7 +162,7 @@
"selectedBackground": "#324d65", "selectedBackground": "#324d65",
"underlinedTabBackground": "#324d65", "underlinedTabBackground": "#324d65",
"background": "#243647", "background": "#243647",
"underlineColor": "#46628f", "underlineColor": "#4d6690",
"hoverMaskColor": "#46628f", "hoverMaskColor": "#46628f",
"inactiveMaskColor": "#24334aff" "inactiveMaskColor": "#24334aff"
}, },
@@ -247,12 +268,13 @@
}, },
"DragAndDrop": { "DragAndDrop": {
"areaForeground": "#e5e5e5", "areaForeground": "#e5e5e5",
"areaBackground": "#242b39", "areaBackground": "#242b394a",
"areaBorderColor": "#141834" "areaBorderColor": "#141834"
}, },
"Plugins": { "Plugins": {
"SectionHeader.background": "#2a3563", "SectionHeader.background": "#2a3563",
"tagBackground": "#3d445a", "tagBackground": "#3d445a",
"hoverBackground": "#495787",
"lightSelectionBackground": "#3c4b7e" "lightSelectionBackground": "#3c4b7e"
}, },
"EditorPane.inactiveBackground": "#25334aff" "EditorPane.inactiveBackground": "#25334aff"

View File

@@ -30,9 +30,29 @@
"separatorColor": "#383850" "separatorColor": "#383850"
}, },
"Tree": {
"hoverBackground": "#5841a7",
"hoverInactiveBackground": "#5841a7"
},
"MemoryIndicator": {
"usedBackground": "#504480",
"allocatedBackground": "#493c6c"
},
"NotificationsToolwindow.newNotification.background": "#504480",
"NotificationsToolwindow.newNotification.hoverBackground": "#493c6c",
"NotificationsToolwindow.Notification.hoverBackground": "#493c6c",
"VersionControl" :{ "VersionControl" :{
"Log.Commit.currentBranchBackground": "#3e2e61", "Log.Commit.currentBranchBackground": "#333345",
"Log.Commit.unmatchedForeground": "#7f80a8" "Log.Commit.unmatchedForeground": "#7f80a8",
"GitLog.localBranchIconColor": "#65a05c",
"GitLog.tagIconColor": "#bcc4ce",
"Log.Commit.hoveredBackground": "#5841a7",
"Log.Commit.rowHeight": 30,
"Log.Commit.selectionBackground": "#4a3889",
"Log.Commit.selectionInactiveBackground": "#4a3889"
}, },
"Tree.background": "#2c2c3e", "Tree.background": "#2c2c3e",
@@ -43,8 +63,8 @@
"pressedBorderColor": "#4b3a81" "pressedBorderColor": "#4b3a81"
}, },
"Borders": { "Borders": {
"color": "#1b092f", "color": "#221b3c",
"ContrastBorderColor": "#1a1328" "ContrastBorderColor": "#221b3c"
}, },
"Button": { "Button": {
"startBackground": "#544c91", "startBackground": "#544c91",
@@ -66,11 +86,13 @@
}, },
"CompletionPopup": { "CompletionPopup": {
"matchForeground": "#cecb46", "matchForeground": "#cecb46",
"matchSelectionForeground": "#ffcd7e" "matchSelectionForeground": "#ffcd7e",
"foreground": "#c2c2c2",
"selectionBackground": "#5d5d84"
}, },
"MenuBar.borderColor": "#221b3c", "MenuBar.borderColor": "#221b3c",
"Menu.borderColor": "#140928", "Menu.borderColor": "#221b3c",
"NavBar.borderColor": "#140928", "NavBar.borderColor": "#221b3c",
"Notification": { "Notification": {
@@ -108,9 +130,9 @@
"EditorTabs": { "EditorTabs": {
"underlinedTabBackground": "#3d3d56", "underlinedTabBackground": "#3d3d56",
"selectedBackground": "#3d3d56", "selectedBackground": "#3d3d56",
"underlineColor": "#44346e" "underlineColor": "#6b53a5",
"hoverBackground": "#493c6c"
}, },
"Link": { "Link": {
"activeForeground": "#ede891", "activeForeground": "#ede891",
"hoverForeground": "#ede891", "hoverForeground": "#ede891",
@@ -137,8 +159,11 @@
}, },
"WelcomeScreen": { "WelcomeScreen": {
"Projects.selectionInactiveBackground": "#323247", "separatorColor": "#323247",
"separatorColor": "#323247" "borderColor": "#221b3c",
"SidePanel.background": "#2c2c3e",
"Details.background": "2c2c3e"
}, },
"ValidationTooltip": { "ValidationTooltip": {
@@ -175,7 +200,7 @@
"separatorForeground": "#654bbe", "separatorForeground": "#654bbe",
"Advertiser": { "Advertiser": {
"background": "#323247", "background": "#323247",
"borderColor": "#140928", "borderColor": "#221b3c",
"borderInsets": "3,8,5,0" "borderInsets": "3,8,5,0"
} }
}, },
@@ -185,7 +210,7 @@
"offForeground": "#646464", "offForeground": "#646464",
"offBackground": "#232332", "offBackground": "#232332",
"buttonColor": "#411e85", "buttonColor": "#411e85",
"borderColor": "#140928" "borderColor": "#221b3c"
}, },
"ToolTip": { "ToolTip": {
"background": "#5c5c83", "background": "#5c5c83",
@@ -212,12 +237,15 @@
}, },
"DragAndDrop": { "DragAndDrop": {
"areaForeground": "#f5f5f5", "areaForeground": "#f5f5f5",
"areaBackground": "#282839", "rowBackground": "#2828399a",
"areaBorderColor": "#140928" "areaBackground": "#2828399a",
"areaBorderColor": "#221b3c",
"borderColor": "#221b3c"
}, },
"Plugins": { "Plugins": {
"SectionHeader.background": "#392c63", "SectionHeader.background": "#392c63",
"tagBackground": "#40405a", "tagBackground": "#40405a",
"hoverBackground": "#5e4e93",
"lightSelectionBackground": "#48387e" "lightSelectionBackground": "#48387e"
}, },
"TabbedPane": { "TabbedPane": {
@@ -242,7 +270,7 @@
"hoverThumbBorderColor" : "#281c39ff", "hoverThumbBorderColor" : "#281c39ff",
"hoverThumbColor": "#423162ff", "hoverThumbColor": "#423162ff",
"hoverTrackColor": "#2d2240ff", "hoverTrackColor": "#2d2240ff",
"thumbBorderColor": "#261b3bff" "thumbBorderColor": "#221b3cff"
}, },
"Mac" : { "Mac" : {
"Transparent": { "Transparent": {

View File

@@ -5,17 +5,26 @@
"editorScheme": "/colors/Dark.icls", "editorScheme": "/colors/Dark.icls",
"icons": { "icons": {
"ColorPalette": { "ColorPalette": {
"#2b2d30": "#323130",
"#3574f0": "#ffb900",
"#3c3f41": "#323130",
"#43494a": "#424140",
"#6B6B6B": "#525150",
"#134d80": "#202635",
"#a1a3a4": "light7",
"#A7A7A7": "light4",
"#3D6185": "#ffb900",
"Actions.GreyInline.Dark": "light4", "Actions.GreyInline.Dark": "light4",
"Checkbox.Background.Disabled.Dark": "dark6", "Checkbox.Background.Disabled.Dark": "#323130",
"Checkbox.Background.Default.Dark": "dark8", "Checkbox.Background.Default.Dark": "#424140",
"Checkbox.Background.Selected.Dark": "dark8", "Checkbox.Background.Selected.Dark": "#424140",
"Checkbox.Focus.Thin.Selected.Dark": "dark10", "Checkbox.Focus.Thin.Selected.Dark": "#525150",
"Checkbox.Focus.Wide.Dark": "dark10", "Checkbox.Focus.Wide.Dark": "#525150",
"Checkbox.Foreground.Selected.Dark": "accent", "Checkbox.Foreground.Selected.Dark": "#ffb900",
"Checkbox.Border.Selected": "#ffb900",
"Checkbox.Border.Default.Dark": "dark9", "Checkbox.Border.Default.Dark": "dark9",
"Checkbox.Border.Disabled.Dark": "dark7", "Checkbox.Border.Disabled.Dark": "dark7",
"Checkbox.Border.Selected.Dark": "dark10", "Checkbox.Border.Selected.Dark": "dark10",
"Tree.iconColor": "accent",
"Actions.Blue": "blue", "Actions.Blue": "blue",
"Actions.Green": "green", "Actions.Green": "green",
"Actions.Grey": "dark10", "Actions.Grey": "dark10",
@@ -43,16 +52,16 @@
"dark8": "#424140", "dark8": "#424140",
"dark9": "#474645", "dark9": "#474645",
"dark10": "#525150", "dark10": "#525150",
"accent": "#ffB900", "accent": "#ffb900",
"green": "#92D923", "green": "#92D923",
"greenDark": "#3d521b", "greenDark": "#92D923a0",
"blueDark": "#0078D7", "blueDark": "#253047a0",
"blue": "#5EFBEF", "blue": "#409cff",
"red": "#e81123", "red": "#d70751",
"redDark": "#8c131c", "redDark": "#260b08a0",
"yellow": "#ffB900", "yellow": "#ffb900",
"yellowLight": "#ffc900", "yellowLight": "#f5d277",
"yellowDark": "#cc9300", "yellowDark": "#ffb900a0",
"light1": "#6f6e6d", "light1": "#6f6e6d",
"light2": "#7f7e7d", "light2": "#7f7e7d",
"light3": "#8f8e8d", "light3": "#8f8e8d",
@@ -66,32 +75,32 @@
}, },
"ui": { "ui": {
"*": { "*": {
"arc": 0,
"selectedBackground": "dark4",
"selectionBackground": "dark3",
"selectionInactiveBackground": "dark4",
"selectedInactiveBackground": "dark5",
"hoverBackground": "dark4",
"headerBackground": "dark5",
"background": "dark6", "background": "dark6",
"borderColor": "dark8",
"disabledBackground": "dark7", "disabledBackground": "dark7",
"inactiveBackground": "dark8", "disabledForeground": "light5",
"lineSeparatorColor": "dark9", "disabledText": "light3",
"separatorColor": "dark10",
"borderColor": "dark10",
"focusedBorderColor": "dark10", "focusedBorderColor": "dark10",
"disabledForeground": "light1", "foreground": "light7",
"disabledText": "light2", "headerBackground": "dark5",
"foreground": "light6", "hoverBackground": "dark5",
"inactiveBackground": "dark8",
"inactiveForeground": "light4", "inactiveForeground": "light4",
"infoForeground": "light3", "infoForeground": "light3",
"selectionForeground": "light10", "lineSeparatorColor": "dark9",
"shortcutForeground": "light7" "selectedBackground": "dark4",
"selectedInactiveBackground": "dark5",
"selectionBackground": "dark4",
"selectionForeground": "light8",
"selectionInactiveBackground": "dark6",
"separatorColor": "dark10",
"shortcutForeground": "light10"
}, },
"ActionButton": { "ActionButton": {
"pressedBackground": "dark3",
"hoverBorderColor": "dark10", "hoverBorderColor": "dark10",
"pressedBorderColor": "dark10" "separatorColor": "dark10",
"pressedBackground": "dark4",
"pressedBorderColor": "dark7"
}, },
"Button": { "Button": {
"default": { "default": {
@@ -105,10 +114,10 @@
}, },
"focusedBorderColor": "dark10", "focusedBorderColor": "dark10",
"disabledText": "light2", "disabledText": "light2",
"disabledBorderColor": "dark8",
"endBackground": "dark8", "endBackground": "dark8",
"endBorderColor": "dark9", "endBorderColor": "dark9",
"foreground": "light8", "foreground": "light9",
"disabledBorderColor": "dark8",
"startBackground": "dark8", "startBackground": "dark8",
"startBorderColor": "dark9" "startBorderColor": "dark9"
}, },
@@ -116,31 +125,32 @@
"ContrastBorderColor": "dark10", "ContrastBorderColor": "dark10",
"color": "dark9" "color": "dark9"
}, },
"CheckBox": { "CheckBox": { "select": "light10" },
"select": "light10" "CheckBoxMenuItem": { "background": "dark7", "selectionBackground": "dark4" },
},
"ColorChooser": { "ColorChooser": {
"foreground": "light6", "foreground": "light6",
"background": "dark6" "background": "dark6"
}, },
"ComboBox": { "ComboBox": {
"ArrowButton": { "ArrowButton": {
"disabledIconColor": "light2", "disabledIconColor": "light1",
"iconColor": "yellow", "iconColor": "accent",
"background": "dark7", "background": "dark7",
"nonEditableBackground": "dark7" "nonEditableBackground": "dark7"
}, },
"background": "dark8", "background": "dark7",
"disabledForeground": "light2", "disabledForeground": "light2",
"foreground": "light8",
"modifiedItemForeground": "yellow", "modifiedItemForeground": "yellow",
"nonEditableBackground": "dark8" "nonEditableBackground": "dark8"
}, },
"CompletionPopup": { "CompletionPopup": {
"Advertiser": { "Advertiser": {
"background": "dark5", "background": "dark7",
"foreground": "light5" "foreground": "light4"
}, },
"foreground": "light6", "selectionBackground": "dark4",
"foreground": "light8",
"matchForeground": "accent" "matchForeground": "accent"
}, },
"ComplexPopup": { "ComplexPopup": {
@@ -149,19 +159,19 @@
} }
}, },
"Component": { "Component": {
"arc": 0,
"disabledBorderColor": "dark8", "disabledBorderColor": "dark8",
"borderColor": "dark9", "borderColor": "dark9",
"errorFocusColor": "red", "errorFocusColor": "red",
"iconColor": "accent",
"focusColor": "dark10", "focusColor": "dark10",
"focusedBorderColor": "dark10", "focusedBorderColor": "dark9",
"inactiveErrorFocusColor": "redDark", "inactiveErrorFocusColor": "redDark",
"inactiveWarningFocusColor": "yellowDark", "inactiveWarningFocusColor": "yellowDark",
"infoForeground": "light3", "infoForeground": "light3",
"warningFocusColor": "yellow" "warningFocusColor": "yellow"
}, },
"Counter": { "Counter": {
"background": "dark3", "background": "dark4",
"foreground": "yellow" "foreground": "yellow"
}, },
"Debugger": { "Debugger": {
@@ -179,38 +189,42 @@
}, },
"DefaultTabs": { "DefaultTabs": {
"underlineHeight": 1, "underlineHeight": 1,
"background": "dark6", "background": "dark7",
"inactiveUnderlineColor": "yellowDark", "inactiveUnderlineColor": "yellowDark",
"underlineColor": "accent", "underlineColor": "accent",
"underlinedTabBackground": "dark4" "underlinedTabBackground": "dark5"
}, },
"DragAndDrop": { "DragAndDrop": {
"areaBackground": "dark8", "areaBackground": "blueDark",
"rowBackground": "blueDark",
"areaForeground": "light4" "areaForeground": "light4"
}, },
"Editor": { "Editor": {
"SearchField": { "SearchField": {
"background": "dark8" "background": "dark7"
}, },
"Toolbar.borderColor": "dark8", "Toolbar.borderColor": "dark8",
"background": "dark4", "background": "dark5",
"shortcutForeground": "light5" "shortcutForeground": "light5"
}, },
"EditorPane": { "EditorPane": {
"inactiveBackground": "dark7", "inactiveBackground": "dark8",
"inactiveForeground": "light3", "inactiveForeground": "light2",
"splitBorder": "dark8", "splitBorder": "dark8",
"background": "dark5" "selectionBackground": "dark4",
"background": "dark7"
}, },
"EditorTabs": { "EditorTabs": {
"underlineHeight": 1 "inactiveUnderlineColor": "dark10",
"borderColor": "dark10",
"background": "dark6"
}, },
"FileColor": { "FileColor": {
"Gray": "dark5", "Gray": "dark7",
"Blue": "#23282d", "Blue": "blueDark",
"Green": "#232d28", "Green": "#232d28",
"Orange": "#2d2823", "Orange": "#2d2823",
"Rose": "#2d2323", "Rose": "redDark",
"Violet": "#2D232D", "Violet": "#2D232D",
"Yellow": "#3b3b19" "Yellow": "#3b3b19"
}, },
@@ -229,13 +243,15 @@
"errorBackground": "red", "errorBackground": "red",
"infoBackground": "blue", "infoBackground": "blue",
"successBackground": "green", "successBackground": "green",
"dotRadius": 4,
"borderWidth": 1,
"warningBackground": "yellow" "warningBackground": "yellow"
}, },
"InformationHint": { "InformationHint": {
"borderColor": "green" "borderColor": "green"
}, },
"InplaceRefactoringPopup": { "InplaceRefactoringPopup": {
"borderColor": "yellow" "borderColor": "blue"
}, },
"Label": { "Label": {
"errorForeground": "red", "errorForeground": "red",
@@ -249,54 +265,62 @@
"activeForeground": "accent", "activeForeground": "accent",
"hoverForeground": "light10", "hoverForeground": "light10",
"secondaryForeground": "blue", "secondaryForeground": "blue",
"visitedForeground": "blueDark", "visitedForeground": "light10",
"pressedForeground": "yellowDark" "pressedForeground": "light4"
}, },
"List": { "List": {
"Tag": { "Tag": {
"background": "dark7", "background": "dark6"
"foreground": "light6"
}, },
"background": "dark7", "background": "dark7",
"hoverInactiveBackground": "dark5", "hoverInactiveBackground": "dark6",
"hoverBackground": "dark4", "hoverBackground": "dark5",
"selectionBackground": "dark4", "selectionBackground": "dark4",
"selectionInactiveBackground": "dark5" "selectionInactiveBackground": "dark5"
}, },
"MemoryIndicator": { "MemoryIndicator": {
"allocatedBackground": "dark10", "allocatedBackground": "dark7",
"usedBackground": "redDark" "usedBackground": "redDark"
}, },
"Menu": { "Menu": {
"Selection.arc": 0,
"borderColor": "dark9", "borderColor": "dark9",
"background": "dark7",
"separatorColor": "dark8",
"disabledBackground": "dark8", "disabledBackground": "dark8",
"selectionBackground": "dark5",
"acceleratorSelectionForeground": "light10", "acceleratorSelectionForeground": "light10",
"acceleratorForeground": "light10" "acceleratorForeground": "light10"
}, },
"Notification": { "Notification": {
"arc": 0,
"ToolWindow": { "ToolWindow": {
"errorBackground": "dark4", "errorBackground": "dark5",
"errorBorderColor": "red", "errorBorderColor": "dark10",
"errorForeground": "light10", "errorForeground": "light6",
"informativeBackground": "dark4", "informativeBackground": "blueDark",
"informativeBorderColor": "green", "informativeBorderColor": "blue",
"informativeForeground": "light10", "informativeForeground": "light6",
"warningBackground": "dark4", "warningBackground": "yellowDark",
"warningBorderColor": "yellow", "warningBorderColor": "yellow",
"warningForeground": "light10" "warningForeground": "light6"
}, },
"background": "dark4", "borderColor": "dark10",
"borderColor": "dark9", "background": "blueDark",
"errorBackground": "dark4", "arc": 12,
"errorBorderColor": "red", "Button.background": "dark8",
"Button.borderColor": "dark10",
"linkForeground": "accent",
"Button.foreground": "light10",
"errorBackground": "redDark",
"errorBorderColor": "dark10",
"MoreButton.foreground": "light6",
"errorForeground": "light10", "errorForeground": "light10",
"foreground": "light10" "foreground": "light10"
}, },
"NotificationsToolwindow": { "NotificationsToolwindow": {
"newNotification.background": "dark4", "newNotification.background": "dark5",
"newNotification.hoverBackground": "dark3" "Notification.hoverBackground": "dark6",
"newNotification.hoverBackground": "dark4"
}, },
"Panel": { "Panel": {
"background": "dark6", "background": "dark6",
@@ -304,10 +328,10 @@
}, },
"ParameterInfo": { "ParameterInfo": {
"background": "dark5", "background": "dark5",
"currentOverloadBackground": "yellow", "currentOverloadBackground": "light7",
"currentParameterForeground": "blue", "currentParameterForeground": "light5",
"foreground": "light6", "foreground": "light6",
"infoForeground": "light2", "infoForeground": "light3",
"lineSeparatorColor": "dark9" "lineSeparatorColor": "dark9"
}, },
"PasswordField": { "PasswordField": {
@@ -327,41 +351,45 @@
"background": "dark8" "background": "dark8"
}, },
"SectionHeader": { "SectionHeader": {
"background": "dark5", "background": "dark4",
"foreground": "light5" "foreground": "light4"
}, },
"hoverBackground": "dark4", "Tab": {
"hoverBackground": "dark5",
"selectedBackground": "dark4",
"selectedForeground": "light4"
},
"hoverBackground": "dark5",
"background": "dark7", "background": "dark7",
"lightSelectionBackground": "dark5", "lightSelectionBackground": "dark5",
"tagBackground": "dark8", "tagBackground": "dark8",
"tagForeground": "light10" "tagForeground": "light10"
}, },
"Popup": { "Popup": {
"borderColor": "dark9",
"inactiveBorderColor": "dark8",
"innerBorderColor": "dark9",
"Advertiser": { "Advertiser": {
"background": "dark4", "background": "dark4",
"borderColor": "dark8", "borderColor": "dark7",
"foreground": "light3" "foreground": "light4"
}, },
"Header": { "Header": {
"activeBackground": "dark4", "activeBackground": "dark5",
"activeForeground": "light4", "activeForeground": "light5",
"inactiveBackground": "dark5" "inactiveForeground": "light6",
"inactiveBackground": "dark6"
}, },
"Selection": { "separatorColor": "dark8"
"arc": 0
}
}, },
"PopupMenu": { "PopupMenu": {
"Selection": { "background": "dark7",
"arc": 0 "foreground": "light7"
},
"background": "dark6",
"foreground": "light6"
}, },
"ProgressBar": { "ProgressBar": {
"failedColor": "red", "failedColor": "red",
"failedEndColor": "dark6", "failedEndColor": "dark6",
"indeterminateEndColor": "yellowDark", "indeterminateEndColor": "#ffb900f0",
"indeterminateStartColor": "yellow", "indeterminateStartColor": "yellow",
"passedColor": "green", "passedColor": "green",
"passedEndColor": "dark6", "passedEndColor": "dark6",
@@ -376,7 +404,8 @@
}, },
"RunWidget": { "RunWidget": {
"background": "dark6", "background": "dark6",
"pressedBackground": "dark3", "pressedBackground": "dark4",
"runModeIconColor": "light10",
"runningBackground": "dark5" "runningBackground": "dark5"
}, },
"ScrollBar": { "ScrollBar": {
@@ -395,12 +424,12 @@
"settingsBackground": "dark5" "settingsBackground": "dark5"
}, },
"SearchField": { "SearchField": {
"background": "dark9", "background": "dark8",
"borderColor": "dark9", "borderColor": "dark10",
"infoForeground": "light2" "infoForeground": "light3"
}, },
"Tab": { "Tab": {
"selectedBackground": "dark2", "selectedBackground": "dark3",
"selectedForeground": "yellow" "selectedForeground": "yellow"
} }
}, },
@@ -418,7 +447,7 @@
"separatorColor": "dark9" "separatorColor": "dark9"
}, },
"SidePanel": { "SidePanel": {
"background": "dark5" "background": "dark7"
}, },
"SpeedSearch": { "SpeedSearch": {
"borderColor": "dark9", "borderColor": "dark9",
@@ -426,32 +455,31 @@
"foreground": "yellow" "foreground": "yellow"
}, },
"SplitPane": { "SplitPane": {
"background": "dark5", "background": "dark",
"highlight": "yellow" "highlight": "yellow"
}, },
"TabbedPane": { "TabbedPane": {
"contentAreaColor": "dark7", "contentAreaColor": "dark7",
"disabledForeground": "light2", "disabledForeground": "light3",
"disabledUnderlineColor": "light2", "disabledUnderlineColor": "light3",
"focusColor": "dark4", "focusColor": "dark4",
"focus": "dark9", "focus": "dark9",
"tabSelectionArc": 0,
"underlineColor": "accent" "underlineColor": "accent"
}, },
"Table": { "Table": {
"background": "dark7", "background": "dark7",
"alternativeRowBackground": "dark5", "alternativeRowBackground": "dark6",
"dropLineColor": "dark10", "dropLineColor": "dark10",
"dropLineShortColor": "dark10", "dropLineShortColor": "dark10",
"focusCellBackground": "dark4", "focusCellBackground": "dark5",
"focusCellForeground": "yellow", "focusCellForeground": "yellow",
"lightSelectionBackground": "dark4", "lightSelectionBackground": "dark5",
"gridColor": "dark9", "gridColor": "dark9",
"sortIconColor": "yellow", "sortIconColor": "yellow",
"stripeColor": "dark9" "stripeColor": "dark9"
}, },
"TableHeader": { "TableHeader": {
"background": "dark4", "background": "dark5",
"bottomSeparatorColor": "dark9" "bottomSeparatorColor": "dark9"
}, },
"TextArea": { "TextArea": {
@@ -466,20 +494,20 @@
"foreground": "light6", "foreground": "light6",
"highlight": "yellow", "highlight": "yellow",
"inactiveForeground": "light2", "inactiveForeground": "light2",
"selectionBackground": "dark4", "selectionBackground": "dark5",
"selectionForeground": "yellow" "selectionForeground": "yellow"
}, },
"TextPane": { "TextPane": {
"background": "dark6", "background": "dark6",
"inactiveBackground": "dark7", "inactiveBackground": "dark7",
"inactiveForeground": "light2", "inactiveForeground": "light3",
"selectionBackground": "dark4" "selectionBackground": "dark4"
}, },
"TitlePane": { "TitlePane": {
"background": "dark5" "background": "dark5"
}, },
"ToggleButton": { "ToggleButton": {
"buttonColor": "dark9", "buttonColor": "dark8",
"disabledText": "light2", "disabledText": "light2",
"offBackground": "dark4", "offBackground": "dark4",
"offForeground": "light6", "offForeground": "light6",
@@ -487,17 +515,18 @@
"onForeground": "dark1" "onForeground": "dark1"
}, },
"ToolBar": { "ToolBar": {
"borderHandleColor": "dark9" "background": "dark5",
"borderHandleColor": "dark10"
}, },
"ToolTip": { "ToolTip": {
"Actions.background": "dark5", "Actions.background": "dark5",
"Actions.infoForeground": "light3", "Actions.infoForeground": "light3",
"background": "dark5", "background": "dark5",
"paintBorder": true,
"infoForeground": "light2" "infoForeground": "light2"
}, },
"ToolWindow": { "ToolWindow": {
"Button": { "Button": {
"hoverBackground": "dark5",
"selectedBackground": "dark4", "selectedBackground": "dark4",
"selectedForeground": "yellow" "selectedForeground": "yellow"
}, },
@@ -509,43 +538,51 @@
"underlineHeight": 1, "underlineHeight": 1,
"hoverInactiveBackground": "dark5", "hoverInactiveBackground": "dark5",
"inactiveUnderlineColor": "yellowDark", "inactiveUnderlineColor": "yellowDark",
"underlinedTabInactiveBackground": "dark3", "underlinedTabInactiveBackground": "dark4",
"underlinedTabBackground": "dark2", "underlinedTabBackground": "dark3",
"underlineColor": "yellow" "underlineColor": "yellow"
}, },
"background": "dark7" "background": "dark7"
}, },
"GotItTooltip.arc": 4,
"Tree": { "Tree": {
"Selection": {
"arc": 4
},
"background": "dark7", "background": "dark7",
"foreground": "light6", "errorForeground": "red",
"hash": "dark9", "foreground": "light7",
"hash": "dark10",
"hoverInactiveBackground": "dark5", "hoverInactiveBackground": "dark5",
"modifiedItemForeground": "yellow", "modifiedItemForeground": "blue",
"selectionInactiveBackground": "dark5" "selectionBackground": "dark5",
"selectionInactiveBackground": "dark6"
}, },
"ScrollPane": { "ScrollPane": {
"background": "dark7", "background": "dark6",
"foreground": "light6" "foreground": "light6"
}, },
"ValidationTooltip": { "ValidationTooltip": {
"errorBackground": "dark4", "errorBackground": "redDark",
"errorBorderColor": "red", "errorBorderColor": "red",
"warningBackground": "dark4", "warningBackground": "yellowDark",
"warningBorderColor": "yellow" "warningBorderColor": "yellow"
}, },
"VersionControl": { "VersionControl": {
"MarkerPopup.Toolbar.background": "dark4", "MarkerPopup.Toolbar.background": "dark5",
"FileHistory": { "FileHistory": {
"Commit.selectedBranchBackground": "dark7" "Commit.selectedBranchBackground": "dark7"
}, },
"Log": { "Log": {
"Commit": { "Commit": {
"currentBranchBackground": "dark7", "currentBranchBackground": "dark6",
"unmatchedForeground": "light2", "unmatchedForeground": "light2",
"selectionForeground": "light10", "selectionForeground": "light10",
"selectionInactiveBackground": "dark9", "Reference.foreground": "accent",
"hoveredBackground": "dark3", "selectionInactiveBackground": "dark5",
"selectionBackground": "dark4" "hoveredBackground": "dark5",
"selectionBackground": "dark4",
"selectionInactiveForeground": "light4"
} }
} }
}, },
@@ -554,19 +591,26 @@
"foreground": "light7" "foreground": "light7"
}, },
"WelcomeScreen": { "WelcomeScreen": {
"captionBackground": "dark5",
"Details": { "Details": {
"background": "dark7" "background": "dark6"
}, },
"Projects": { "Projects": {
"background": "dark6", "actions.selectionBackground": "dark5",
"selectionBackground": "dark55", "background": "dark7",
"selectionInactiveBackground": "dark5" "actions.selectionBorderColor": "dark10",
"selectionBackground": "dark5",
"selectionInactiveBackground": "dark6"
}, },
"SidePanel": { "SidePanel": {
"background": "dark5" "background": "dark7"
}, },
"footerBackground": "dark4",
"headerBackground": "dark5",
"background": "dark6", "background": "dark6",
"separatorColor": "dark9" "groupIconBorderColor": "dark9",
},"Window.border": "0,0,0,0,525150" "borderColor": "dark9",
"separatorColor": "dark8"
}
} }
} }

View File

@@ -1,7 +1,7 @@
{ {
"name": "Nord", "name": "Nord",
"dark": true, "dark": true,
"author": "Arctic Ice Studio", "author": "Sven Greb",
"editorScheme": "/themes/nord.xml", "editorScheme": "/themes/nord.xml",
"ui": { "ui": {
"*": { "*": {

View File

@@ -52,8 +52,8 @@
"ActionButton": { "ActionButton": {
"hoverBackground": "#3d424b", "hoverBackground": "#3d424b",
"hoverBorderColor": "#3d424b", "hoverBorderColor": "#3d424b",
"pressedBackground": "#333841", "pressedBackground": "#3f444d",
"pressedBorderColor": "#333841" "pressedBorderColor": "#3f444d"
}, },
"BookmarkIcon.background": "#d9a343", "BookmarkIcon.background": "#d9a343",