Skip to content

Commit e8962e3

Browse files
authored
feat: add JetBrains AI compatibility (#55)
1 parent 490edce commit e8962e3

File tree

5 files changed

+61
-4
lines changed

5 files changed

+61
-4
lines changed

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ patchPluginXml {
3737

3838
changeNotes = """
3939
<ul>
40+
<li>3.3.0 Add JetBrains AI compatibility to themes</li>
4041
<li>3.2.0 Improve caret colors and blue theme</li>
4142
<li>3.1.0 Add support to 2025.1 IDEs</li>
4243
<li>3.0.0 Add support to 2024.3 IDEs and remove support for 2023.3 or previous</li>

src/main/resources/codely.theme.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,21 @@
168168
"background": "bg",
169169
"separatorColor": "bg"
170170
},
171-
"Window.border": "bg1"
171+
"Window.border": "bg1",
172+
"JetBrainsAI": {
173+
"Button.background": "bg",
174+
"Button.foreground": "fg",
175+
"Button.startBorderColor": "#504945",
176+
"Button.endBorderColor": "#504945",
177+
"Button.focusedBorderColor": "blue",
178+
"CompletionPopup.foreground": "fg",
179+
"Editor.background": "dark_grey",
180+
"Editor.foreground": "fg",
181+
"Notification.background": "dark_grey",
182+
"Notification.borderColor": "bg1",
183+
"Notification.foreground": "fg",
184+
"ToolWindow.background": "dark_grey"
185+
}
172186
},
173187
"icons": {
174188
"ColorPalette": {

src/main/resources/codely_blue.theme.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,21 @@
171171
"background": "bg",
172172
"separatorColor": "bg"
173173
},
174-
"Window.border": "bg1"
174+
"Window.border": "bg1",
175+
"JetBrainsAI": {
176+
"Button.background": "bg",
177+
"Button.foreground": "fg",
178+
"Button.startBorderColor": "bg2",
179+
"Button.endBorderColor": "bg2",
180+
"Button.focusedBorderColor": "blue",
181+
"CompletionPopup.foreground": "fg",
182+
"Editor.background": "dark_blue",
183+
"Editor.foreground": "fg",
184+
"Notification.background": "dark_blue",
185+
"Notification.borderColor": "bg1",
186+
"Notification.foreground": "fg",
187+
"ToolWindow.background": "dark_blue"
188+
}
175189
},
176190
"icons": {
177191
"ColorPalette": {

src/main/resources/codely_dark.theme.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,21 @@
163163
"background": "bg",
164164
"separatorColor": "bg"
165165
},
166-
"Window.border": "bg1"
166+
"Window.border": "bg1",
167+
"JetBrainsAI": {
168+
"Button.background": "bg",
169+
"Button.foreground": "fg",
170+
"Button.startBorderColor": "#504945",
171+
"Button.endBorderColor": "#504945",
172+
"Button.focusedBorderColor": "blue",
173+
"CompletionPopup.foreground": "fg",
174+
"Editor.background": "dark_grey",
175+
"Editor.foreground": "fg",
176+
"Notification.background": "dark_grey",
177+
"Notification.borderColor": "bg1",
178+
"Notification.foreground": "fg",
179+
"ToolWindow.background": "dark_grey"
180+
}
167181
},
168182
"icons": {
169183
"ColorPalette": {

src/main/resources/codely_light.theme.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,21 @@
163163
"background": "bg",
164164
"separatorColor": "bg"
165165
},
166-
"Window.border": "bg1"
166+
"Window.border": "bg1",
167+
"JetBrainsAI": {
168+
"Button.background": "bg",
169+
"Button.foreground": "fg",
170+
"Button.startBorderColor": "bg2",
171+
"Button.endBorderColor": "bg2",
172+
"Button.focusedBorderColor": "classic_blue",
173+
"CompletionPopup.foreground": "fg",
174+
"Editor.background": "bg0",
175+
"Editor.foreground": "fg",
176+
"Notification.background": "bg0",
177+
"Notification.borderColor": "bg1",
178+
"Notification.foreground": "fg",
179+
"ToolWindow.background": "bg0"
180+
}
167181
},
168182
"icons": {
169183
"ColorPalette": {

0 commit comments

Comments
 (0)