mirror of
https://github.com/alexadhy/tokyonight-jetbrains.git
synced 2024-11-21 20:36:53 -05:00
fixes UI theme colors scrollbar, and tabs
This commit is contained in:
parent
1ca5f8cb83
commit
640d1e4c7a
2 changed files with 388 additions and 379 deletions
|
@ -85,11 +85,11 @@ tasks {
|
|||
systemProperty("jb.consents.confirmation.enabled", "false")
|
||||
}
|
||||
|
||||
signPlugin {
|
||||
certificateChain.set(System.getenv("CERTIFICATE_CHAIN"))
|
||||
privateKey.set(System.getenv("PRIVATE_KEY"))
|
||||
password.set(System.getenv("PRIVATE_KEY_PASSWORD"))
|
||||
}
|
||||
// signPlugin {
|
||||
// certificateChain.set(System.getenv("CERTIFICATE_CHAIN"))
|
||||
// privateKey.set(System.getenv("PRIVATE_KEY"))
|
||||
// password.set(System.getenv("PRIVATE_KEY_PASSWORD"))
|
||||
// }
|
||||
|
||||
publishPlugin {
|
||||
dependsOn("patchChangelog")
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
"background": "bgDark",
|
||||
"selectionForeground": "fg",
|
||||
"selectionInactiveForeground": "fg",
|
||||
"selectionBackground": "blue0",
|
||||
"selectionBackground": "hoverBackground",
|
||||
"selectionInactiveBackground": "selectionInactiveBackground",
|
||||
"inactiveBackground": "bgDark",
|
||||
"disabledBackground": "bgDark",
|
||||
|
@ -88,13 +88,13 @@
|
|||
"focusedBorderColor": "blue0",
|
||||
"disabledBorderColor": "bgDark",
|
||||
"default": {
|
||||
"foreground": "comment",
|
||||
"startBackground": "blue0",
|
||||
"endBackground": "blue0",
|
||||
"foreground": "bg",
|
||||
"startBackground": "blue",
|
||||
"endBackground": "blue",
|
||||
"startBorderColor": "blue0",
|
||||
"endBorderColor": "blue0",
|
||||
"focusColor": "blue0",
|
||||
"focusedBorderColor": "fgGutter"
|
||||
"focusColor": "fg",
|
||||
"focusedBorderColor": "fg"
|
||||
}
|
||||
},
|
||||
"Counter": {
|
||||
|
@ -102,15 +102,14 @@
|
|||
"background": "blue0"
|
||||
},
|
||||
"ComboBox": {
|
||||
"modifiedItemForeground": "blue",
|
||||
"ArrowButton": {
|
||||
"background": "hoverBackground",
|
||||
"nonEditableBackground": "hoverBackground",
|
||||
"disabledIconColor": "purple",
|
||||
"disabledIconColor": "comment",
|
||||
"iconColor": "blue"
|
||||
},
|
||||
"selectionBackground": "blue0",
|
||||
"nonEditableBackground": "blue0"
|
||||
"nonEditableBackground": "hoverBackground"
|
||||
},
|
||||
"CompletionPopup": {
|
||||
"selectionBackground": "hoverBackground",
|
||||
|
@ -118,7 +117,7 @@
|
|||
"matchForeground": "green1"
|
||||
},
|
||||
"Component": {
|
||||
"focusColor": "blue",
|
||||
"focusColor": "hoverBackground",
|
||||
"borderColor": "bgDark",
|
||||
"focusedBorderColor": "blue0",
|
||||
"disabledBorderColor": "blue0",
|
||||
|
@ -130,6 +129,13 @@
|
|||
"DragAndDrop": {
|
||||
"borderColor": "blue0"
|
||||
},
|
||||
"DefaultTabs": {
|
||||
"background": "bg",
|
||||
"borderColor": "hoverBackground",
|
||||
"hoverBackground": "hoverBackground",
|
||||
"inactiveUnderlineColor": "comment",
|
||||
"underlineColor": "blue"
|
||||
},
|
||||
"Editor": {
|
||||
"background": "bgDark",
|
||||
"shortcutForeground": "blue"
|
||||
|
@ -218,11 +224,14 @@
|
|||
"inactiveBackground": "hoverBackground"
|
||||
}
|
||||
},
|
||||
"RadioButtonMenuItem": {
|
||||
"selectionBackground": "hoverBackground"
|
||||
},
|
||||
"ScrollBar": {
|
||||
"Mac": {
|
||||
"hoverThumbColor": "magenta",
|
||||
"hoverThumbColor": "hoverBackground",
|
||||
"Transparent": {
|
||||
"hoverThumbColor": "magenta"
|
||||
"hoverThumbColor": "hoverBackground"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue