From 5f062add108822009dbc98b316eab6f91af762d3 Mon Sep 17 00:00:00 2001 From: Vittorio Distefano <101409677+blackopsrepl@users.noreply.github.com> Date: Fri, 3 Apr 2026 18:55:51 +0200 Subject: [PATCH] style banner with tailwind emerald SolverForge text --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 520b6c8..7a1d234 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,7 @@ # ============== Colors & Symbols ============== GREEN := \033[92m +EMERALD := \033[38;2;16;185;129m CYAN := \033[96m YELLOW := \033[93m MAGENTA := \033[95m @@ -38,8 +39,8 @@ VERSIONED_JS := static/sf/sf.$(VERSION).js # ============== Banner ============== banner: - @printf "$(CYAN)$(BOLD) SolverForge UI$(RESET)\n" - @printf " $(GRAY)v$(VERSION)$(RESET) $(CYAN)Component Library$(RESET)\n\n" + @printf "$(EMERALD)$(BOLD) SolverForge UI$(RESET)\n" + @printf " $(GRAY)v$(VERSION)$(RESET) $(EMERALD)Component Library$(RESET)\n\n" # ============== Asset Targets ==============