From 78dc200233bfa7d703ca85374a26d088735b249b Mon Sep 17 00:00:00 2001 From: autocommit Date: Thu, 4 Jun 2026 20:09:12 -0700 Subject: [PATCH] =?UTF-8?q?style(throne-room):=20=F0=9F=8E=A8=20Update=20t?= =?UTF-8?q?ext=20color=20in=20throne=5Froom.gd=20to=20enforce=20theme=20to?= =?UTF-8?q?ken=20consistency?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- src/game/engine/scenes/menus/throne_room.gd | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/game/engine/scenes/menus/throne_room.gd b/src/game/engine/scenes/menus/throne_room.gd index 24d940e0..3a634186 100644 --- a/src/game/engine/scenes/menus/throne_room.gd +++ b/src/game/engine/scenes/menus/throne_room.gd @@ -143,7 +143,9 @@ func _build_placeholder(dec: Dictionary, slot_size: Vector2) -> Control: lbl.horizontal_alignment = HORIZONTAL_ALIGNMENT_CENTER lbl.vertical_alignment = VERTICAL_ALIGNMENT_CENTER lbl.add_theme_font_size_override("font_size", clampi(int(slot_size.y / 8), 8, 13)) - lbl.add_theme_color_override("font_color", Color(0.90, 0.82, 0.65, 0.65)) + var lbl_color: Color = ThemeAssets.color("text.primary") + lbl_color.a = 0.65 + lbl.add_theme_color_override("font_color", lbl_color) lbl.set_anchors_and_offsets_preset(Control.PRESET_FULL_RECT) lbl.mouse_filter = MOUSE_FILTER_IGNORE container.add_child(lbl)