Skip to content

Commit

Permalink
Improve UI colours (#2)
Browse files Browse the repository at this point in the history
* feat: Improve UI colours

* feat: Improve UI colours
  • Loading branch information
dyriavin authored Apr 25, 2023
1 parent b268deb commit afbaa6d
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 24 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
58 changes: 35 additions & 23 deletions src/main/resources/theme/mimesis.theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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"
}
}
}

0 comments on commit afbaa6d

Please sign in to comment.