From afbaa6da3127cbeb45e8061aa1ffd273aec979d4 Mon Sep 17 00:00:00 2001 From: Alexander Dyriavin Date: Tue, 25 Apr 2023 07:50:23 -0700 Subject: [PATCH] Improve UI colours (#2) * feat: Improve UI colours * feat: Improve UI colours --- gradle.properties | 2 +- src/main/resources/theme/mimesis.theme.json | 58 +++++++++++++-------- 2 files changed, 36 insertions(+), 24 deletions(-) diff --git a/gradle.properties b/gradle.properties index 9a37f74..06d3fbc 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ pluginGroup = com.github.dyriavin.mimesistheme pluginName = mimesis-theme pluginRepositoryUrl = https://github.com/dyriavin/mimesis-theme # SemVer format -> https://semver.org -pluginVersion = 1.0.5 +pluginVersion = 1.0.6 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild = 213 diff --git a/src/main/resources/theme/mimesis.theme.json b/src/main/resources/theme/mimesis.theme.json index 3ee6a5d..278d845 100644 --- a/src/main/resources/theme/mimesis.theme.json +++ b/src/main/resources/theme/mimesis.theme.json @@ -25,44 +25,56 @@ "shadowColor": "#A6A6A620", "startBorderColor": "#b1b1b3", "endBorderColor": "#b1b1b3", + "focusedBorderColor": "#45A1FF", "default": { "foreground": "#EDEDED", - "startBackground": "#003eaa", - "endBackground": "#003eaa", - "startBorderColor": "#003eaa", - "endBorderColor": "#003eaa", - "shadowColor": "#A6A6A650", - "focusedBorderColor": "#0a84ff4d" + "startBackground": "#0060DF", + "endBackground": "#0060DF", + "startBorderColor": "#0060DF", + "endBorderColor": "#0060DF", + "focusedBorderColor": "#0060DF", + "shadowColor": "#A6A6A650" } }, + "ActionButton.focusedBorderColor": "#45A1FF", + "Component": { + "focusedBorderColor": "#63B0FF", + "focusColor": "#63B0FF" + }, "ComboBox": { "background": "#FFFFFF", "nonEditableBackground": "#FFFFFF", "ArrowButton.background": "#fafafa" }, + "FormattedTextField.selectionBackground": "#074382", "ComboBoxButton.background": "#FFFFFF", "CompletionPopup": { - "selectionBackground": "#0a84ff4d", + "selectionBackground": "#81C8E1", "selectionInactiveBackground": "#d1d5da" }, + "List.selectionBackground": "#0060DF", "Component.borderColor": "#b1b1b3", "DefaultTabs.background": "#F2F2F2", - "EditorTabs.underlinedTabBackground": "#ffffff", + "EditorTabs": { + "underlinedTabBackground": "#ffffff", + "underlineColor": "#B5007F" + }, "Editor": { "background": "#cccccc", - "foreground": "#737373", - "shortcutForeground": "#296C96" + "foreground": "#293338", + "shortcutForeground": "#722291" }, "Label.errorForeground": "#D70022", "Link": { - "activeForeground": "#0060df", - "hoverForeground": "#0060df", - "pressedForeground": "#0060df", - "visitedForeground": "#0060df", - "secondaryForeground": "#63B0FF" + "activeForeground": "#002275", + "hoverForeground": "#722291", + "pressedForeground": "#722291", + "visitedForeground": "#722291", + "secondaryForeground": "#722291" }, "Notification": { - "borderColor": "#d7d7db" + "borderColor": "#d7d7db", + "foreground" : "#293338" }, "Menu.borderColor": "#d9d9d9", "Panel.background": "#F2F2F2", @@ -74,20 +86,20 @@ }, "ProgressBar": { "trackColor": "#d7d7db", - "progressColor": "#0A84FF", - "indeterminateStartColor": "#0060DF", - "indeterminateEndColor": "#0060DF" + "progressColor": "#058B00", + "indeterminateStartColor": "#12BC00", + "indeterminateEndColor": "#006504" }, "StatusBar.borderColor": "#D1D1D1", "ToolWindow.Header.inactiveBackground": "#F2F2F2", - "Tree.foreground": "#212C31", + "Tree.foreground": "#404B53", "Tree.rowHeight": 20 }, "icons": { "ColorPalette": { - "Checkbox.Border.Default": "#b0b0b0", - "Checkbox.Background.Selected": "#4F9EE3", - "Checkbox.Border.Selected": "#4B97D9" + "Checkbox.Border.Default": "#B1B1B3", + "Checkbox.Background.Selected": "#0060DF", + "Checkbox.Border.Selected": "#0060DF" } } }