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")
|
systemProperty("jb.consents.confirmation.enabled", "false")
|
||||||
}
|
}
|
||||||
|
|
||||||
signPlugin {
|
// signPlugin {
|
||||||
certificateChain.set(System.getenv("CERTIFICATE_CHAIN"))
|
// certificateChain.set(System.getenv("CERTIFICATE_CHAIN"))
|
||||||
privateKey.set(System.getenv("PRIVATE_KEY"))
|
// privateKey.set(System.getenv("PRIVATE_KEY"))
|
||||||
password.set(System.getenv("PRIVATE_KEY_PASSWORD"))
|
// password.set(System.getenv("PRIVATE_KEY_PASSWORD"))
|
||||||
}
|
// }
|
||||||
|
|
||||||
publishPlugin {
|
publishPlugin {
|
||||||
dependsOn("patchChangelog")
|
dependsOn("patchChangelog")
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
"background": "bgDark",
|
"background": "bgDark",
|
||||||
"selectionForeground": "fg",
|
"selectionForeground": "fg",
|
||||||
"selectionInactiveForeground": "fg",
|
"selectionInactiveForeground": "fg",
|
||||||
"selectionBackground": "blue0",
|
"selectionBackground": "hoverBackground",
|
||||||
"selectionInactiveBackground": "selectionInactiveBackground",
|
"selectionInactiveBackground": "selectionInactiveBackground",
|
||||||
"inactiveBackground": "bgDark",
|
"inactiveBackground": "bgDark",
|
||||||
"disabledBackground": "bgDark",
|
"disabledBackground": "bgDark",
|
||||||
|
@ -88,13 +88,13 @@
|
||||||
"focusedBorderColor": "blue0",
|
"focusedBorderColor": "blue0",
|
||||||
"disabledBorderColor": "bgDark",
|
"disabledBorderColor": "bgDark",
|
||||||
"default": {
|
"default": {
|
||||||
"foreground": "comment",
|
"foreground": "bg",
|
||||||
"startBackground": "blue0",
|
"startBackground": "blue",
|
||||||
"endBackground": "blue0",
|
"endBackground": "blue",
|
||||||
"startBorderColor": "blue0",
|
"startBorderColor": "blue0",
|
||||||
"endBorderColor": "blue0",
|
"endBorderColor": "blue0",
|
||||||
"focusColor": "blue0",
|
"focusColor": "fg",
|
||||||
"focusedBorderColor": "fgGutter"
|
"focusedBorderColor": "fg"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Counter": {
|
"Counter": {
|
||||||
|
@ -102,15 +102,14 @@
|
||||||
"background": "blue0"
|
"background": "blue0"
|
||||||
},
|
},
|
||||||
"ComboBox": {
|
"ComboBox": {
|
||||||
"modifiedItemForeground": "blue",
|
|
||||||
"ArrowButton": {
|
"ArrowButton": {
|
||||||
"background": "hoverBackground",
|
"background": "hoverBackground",
|
||||||
"nonEditableBackground": "hoverBackground",
|
"nonEditableBackground": "hoverBackground",
|
||||||
"disabledIconColor": "purple",
|
"disabledIconColor": "comment",
|
||||||
"iconColor": "blue"
|
"iconColor": "blue"
|
||||||
},
|
},
|
||||||
"selectionBackground": "blue0",
|
"selectionBackground": "blue0",
|
||||||
"nonEditableBackground": "blue0"
|
"nonEditableBackground": "hoverBackground"
|
||||||
},
|
},
|
||||||
"CompletionPopup": {
|
"CompletionPopup": {
|
||||||
"selectionBackground": "hoverBackground",
|
"selectionBackground": "hoverBackground",
|
||||||
|
@ -118,7 +117,7 @@
|
||||||
"matchForeground": "green1"
|
"matchForeground": "green1"
|
||||||
},
|
},
|
||||||
"Component": {
|
"Component": {
|
||||||
"focusColor": "blue",
|
"focusColor": "hoverBackground",
|
||||||
"borderColor": "bgDark",
|
"borderColor": "bgDark",
|
||||||
"focusedBorderColor": "blue0",
|
"focusedBorderColor": "blue0",
|
||||||
"disabledBorderColor": "blue0",
|
"disabledBorderColor": "blue0",
|
||||||
|
@ -130,6 +129,13 @@
|
||||||
"DragAndDrop": {
|
"DragAndDrop": {
|
||||||
"borderColor": "blue0"
|
"borderColor": "blue0"
|
||||||
},
|
},
|
||||||
|
"DefaultTabs": {
|
||||||
|
"background": "bg",
|
||||||
|
"borderColor": "hoverBackground",
|
||||||
|
"hoverBackground": "hoverBackground",
|
||||||
|
"inactiveUnderlineColor": "comment",
|
||||||
|
"underlineColor": "blue"
|
||||||
|
},
|
||||||
"Editor": {
|
"Editor": {
|
||||||
"background": "bgDark",
|
"background": "bgDark",
|
||||||
"shortcutForeground": "blue"
|
"shortcutForeground": "blue"
|
||||||
|
@ -218,11 +224,14 @@
|
||||||
"inactiveBackground": "hoverBackground"
|
"inactiveBackground": "hoverBackground"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"RadioButtonMenuItem": {
|
||||||
|
"selectionBackground": "hoverBackground"
|
||||||
|
},
|
||||||
"ScrollBar": {
|
"ScrollBar": {
|
||||||
"Mac": {
|
"Mac": {
|
||||||
"hoverThumbColor": "magenta",
|
"hoverThumbColor": "hoverBackground",
|
||||||
"Transparent": {
|
"Transparent": {
|
||||||
"hoverThumbColor": "magenta"
|
"hoverThumbColor": "hoverBackground"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue