diff --git a/src/FileManagement.ts b/src/FileManagement.ts index e7fee20..d87be58 100644 --- a/src/FileManagement.ts +++ b/src/FileManagement.ts @@ -136,7 +136,7 @@ export class AppSettings { */ public vimMode: boolean = false; - public theme: string = "Dracula"; + public theme: string = "Everblush"; public font: string = "IBM Plex Mono"; public font_size: number = 24; public universes: Universes; diff --git a/src/main.ts b/src/main.ts index d5cc11d..b6268d2 100644 --- a/src/main.ts +++ b/src/main.ts @@ -214,7 +214,7 @@ export class Editor { if (this.settings.theme in available_themes) { this.readTheme(this.settings.theme); } else { - this.settings.theme = "Dracula"; + this.settings.theme = "Everblush"; this.readTheme(this.settings.theme); } }