Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ patchPluginXml {

changeNotes = """
<ul>
<li>3.3.0 Add JetBrains AI compatibility to themes</li>
<li>3.2.0 Improve caret colors and blue theme</li>
<li>3.1.0 Add support to 2025.1 IDEs</li>
<li>3.0.0 Add support to 2024.3 IDEs and remove support for 2023.3 or previous</li>
Expand Down
16 changes: 15 additions & 1 deletion src/main/resources/codely.theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,21 @@
"background": "bg",
"separatorColor": "bg"
},
"Window.border": "bg1"
"Window.border": "bg1",
"JetBrainsAI": {
"Button.background": "bg",
"Button.foreground": "fg",
"Button.startBorderColor": "#504945",
"Button.endBorderColor": "#504945",
"Button.focusedBorderColor": "blue",
"CompletionPopup.foreground": "fg",
"Editor.background": "dark_grey",
"Editor.foreground": "fg",
"Notification.background": "dark_grey",
"Notification.borderColor": "bg1",
"Notification.foreground": "fg",
"ToolWindow.background": "dark_grey"
}
},
"icons": {
"ColorPalette": {
Expand Down
16 changes: 15 additions & 1 deletion src/main/resources/codely_blue.theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,21 @@
"background": "bg",
"separatorColor": "bg"
},
"Window.border": "bg1"
"Window.border": "bg1",
"JetBrainsAI": {
"Button.background": "bg",
"Button.foreground": "fg",
"Button.startBorderColor": "bg2",
"Button.endBorderColor": "bg2",
"Button.focusedBorderColor": "blue",
"CompletionPopup.foreground": "fg",
"Editor.background": "dark_blue",
"Editor.foreground": "fg",
"Notification.background": "dark_blue",
"Notification.borderColor": "bg1",
"Notification.foreground": "fg",
"ToolWindow.background": "dark_blue"
}
},
"icons": {
"ColorPalette": {
Expand Down
16 changes: 15 additions & 1 deletion src/main/resources/codely_dark.theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,21 @@
"background": "bg",
"separatorColor": "bg"
},
"Window.border": "bg1"
"Window.border": "bg1",
"JetBrainsAI": {
"Button.background": "bg",
"Button.foreground": "fg",
"Button.startBorderColor": "#504945",
"Button.endBorderColor": "#504945",
"Button.focusedBorderColor": "blue",
"CompletionPopup.foreground": "fg",
"Editor.background": "dark_grey",
"Editor.foreground": "fg",
"Notification.background": "dark_grey",
"Notification.borderColor": "bg1",
"Notification.foreground": "fg",
"ToolWindow.background": "dark_grey"
}
},
"icons": {
"ColorPalette": {
Expand Down
16 changes: 15 additions & 1 deletion src/main/resources/codely_light.theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,21 @@
"background": "bg",
"separatorColor": "bg"
},
"Window.border": "bg1"
"Window.border": "bg1",
"JetBrainsAI": {
"Button.background": "bg",
"Button.foreground": "fg",
"Button.startBorderColor": "bg2",
"Button.endBorderColor": "bg2",
"Button.focusedBorderColor": "classic_blue",
"CompletionPopup.foreground": "fg",
"Editor.background": "bg0",
"Editor.foreground": "fg",
"Notification.background": "bg0",
"Notification.borderColor": "bg1",
"Notification.foreground": "fg",
"ToolWindow.background": "bg0"
}
},
"icons": {
"ColorPalette": {
Expand Down