Skip to content

Commit 49e3928

Browse files
committed
fix(UI): use Dark Soul as default theme
1 parent f6d5491 commit 49e3928

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/ui/card_ui/card_ui.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ func _ready() -> void:
163163
input_plumber.composite_device_added.connect(on_device_changed)
164164

165165
# Set the theme if one was set
166-
var theme_path := settings_manager.get_value("general", "theme", "res://assets/themes/card_ui-dracula.tres") as String
166+
var theme_path := settings_manager.get_value("general", "theme", "res://assets/themes/card_ui-darksoul.tres") as String
167167
logger.debug("Setting theme to: " + theme_path)
168168
var loaded_theme = load(theme_path)
169169
if loaded_theme != null:

core/ui/card_ui_overlay_mode/card_ui_overlay_mode.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ func _ready() -> void:
118118
_setup_overlay_mode(launch_args)
119119

120120
# Set the theme if one was set
121-
var theme_path := settings_manager.get_value("general", "theme", "res://assets/themes/card_ui-dracula.tres") as String
121+
var theme_path := settings_manager.get_value("general", "theme", "res://assets/themes/card_ui-darksoul.tres") as String
122122
if theme_path.is_empty():
123123
logger.error("Failed to load theme from settings manager.")
124124
return

0 commit comments

Comments
 (0)