Rebrand project and refresh title presentation

This commit is contained in:
Alexander Sellite 2026-08-25 17:14:12 -04:00
parent 17fef2c5d4
commit 7ae20789a9
138 changed files with 1511 additions and 1498 deletions

View file

@ -21,6 +21,10 @@ extends Resource
@export_range(0, 12, 1) var normal_border_width: int = 2
@export_range(0, 12, 1) var emphasized_border_width: int = 3
@export_group("Gradient")
@export var gradient_enabled: bool = false
@export_range(0.0, 0.5, 0.01) var gradient_top_lift: float = 0.12
@export_group("Colors")
@export var normal_fill: Color = Color(0.82, 0.93, 0.96, 0.96)
@export var normal_border: Color = Color(0.91, 0.98, 1.0, 0.85)
@ -78,7 +82,11 @@ func _make_style(
style.content_margin_top = content_margin
style.content_margin_right = content_margin
style.content_margin_bottom = content_margin
style.bg_color = fill_color
style.bg_color = (
Color(fill_color.r, fill_color.g, fill_color.b, 0.0)
if gradient_enabled
else fill_color
)
style.border_width_left = outline_width
style.border_width_top = outline_width
style.border_width_right = outline_width