From 869913ab8e833f586659d04312aa0c0c0389bbb6 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Tue, 2 Jun 2026 11:08:48 +0100 Subject: [PATCH] bios: Make the background black Signed-off-by: Michael Tremer --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 98838b7..13e4054 100644 --- a/Makefile +++ b/Makefile @@ -39,6 +39,7 @@ OBJECTS += \ # Colors PRIMARY = ff2e52 DARK = 363636 +BLACK = 000000 WHITE = ffffff # rsvg-convert command line @@ -182,10 +183,10 @@ standard/favicon.svg: favicon-standalone.svg $(TO_INVERTED) # BIOS Boot Logo -bios/boot-logo.bmp: logo-standalone.svg +bios/boot-logo.bmp: logo-inverted-standalone.svg mkdir -p $(dir $@) && \ $(RSVG_CONVERT) --width=360 $< | \ - $(MAGICK) - -background "#$(WHITE)" -gravity center -extent 800x600 \ + $(MAGICK) - -background "#$(BLACK)" -gravity center -extent 800x600 \ -alpha remove -alpha off -type TrueColor BMP3:$@ .PHONY: clean -- 2.47.3