Skip to content

Commit 296567a

Browse files
committed
fix: color on generate fix button
1 parent 5b9d3d2 commit 296567a

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

plugin/src/main/java/io/snyk/eclipse/plugin/html/CodeHtmlProvider.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,9 @@ public String replaceCssVariables(String html) {
6868
htmlStyled = htmlStyled.replace("var(--example-line-added-color)",
6969
super.getColorAsHex("ADDITION_COLOR", "#00ff00"));
7070
htmlStyled = htmlStyled.replace("var(--generated-ai-fix-button-background-color)",
71-
// super.getColorAsHex("org.eclipse.ui.workbench.INACTIVE_TAB_BG_START", "#F0F0F0"));
72-
super.getColorAsHex("ADDITION_COLOR", "#00ff00"));
71+
super.getColorAsHex("BUTTON_COLOR", "#375578"));
7372
htmlStyled = htmlStyled.replace("var(--disabled-background-color)",
74-
super.getColorAsHex("ADDITION_COLOR", "#00ff00"));
73+
super.getColorAsHex("ADDITION_COLOR", "#6e6e6e"));
7574

7675
String htmlWithScripts = replaceAIFixScripts(htmlStyled);
7776

0 commit comments

Comments
 (0)