Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Jenkins colour palette for Prism instead of tomorrow #499

Merged
merged 1 commit into from
May 7, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ public class DarkThemeManagerFactory extends ThemeManagerFactory {
public static final String THEME_CSS = "theme.css";
public static final String THEME_URL_NAME = "theme-dark";
public static final String ACE_EDITOR_THEME = "tomorrow_night";
public static final String PRISM_THEME = "tomorrow";
public static final String BOOTSTRAP_THEME = "dark";
public static final String ENTRA_ID_THEME = "dark";

Expand All @@ -26,7 +25,6 @@ public Theme getTheme() {
.withCssUrl(getCssUrl())
.withProperty("ace-editor", "theme", ACE_EDITOR_THEME)
.withProperty("entra-id", "theme", ENTRA_ID_THEME)
.withProperty("prism-api", "theme", PRISM_THEME)
.withProperty("bootstrap", "theme", BOOTSTRAP_THEME)
.build();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ public Theme getTheme() {
.respectSystemAppearance()
.withProperty("ace-editor", "theme-dark", ACE_EDITOR_THEME)
.withProperty("entra-id", "theme-dark", ENTRA_ID_THEME)
.withProperty("prism-api", "theme-dark", PRISM_THEME)
.withProperty("bootstrap", "theme-dark", BOOTSTRAP_THEME)
.build();
}
Expand Down