From f0a050fdc57ecc7e6cd6e6a5517df241bf058b17 Mon Sep 17 00:00:00 2001 From: Breadway Date: Tue, 16 Jun 2026 09:17:10 +0800 Subject: [PATCH] Make Plymouth splash black to match the black-base theme The boot splash still used the old bread-brown background (#230b00) after the rest of the theme moved to a black base (#0c0c0c). Switch bos.script's background to black so the boot splash is consistent with the wallpaper/pywal palette and breadbar. --- iso/airootfs/usr/share/plymouth/themes/bos/bos.script | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/iso/airootfs/usr/share/plymouth/themes/bos/bos.script b/iso/airootfs/usr/share/plymouth/themes/bos/bos.script index e201f5d..1fe0c09 100644 --- a/iso/airootfs/usr/share/plymouth/themes/bos/bos.script +++ b/iso/airootfs/usr/share/plymouth/themes/bos/bos.script @@ -1,10 +1,10 @@ # BOS Plymouth boot splash (script module). -# Bread-brown background, centred white BOS logo, a spinning accent ring, and a -# status line at the bottom. Colours match the bread palette. +# Black background, centred white BOS logo, a spinning accent ring, and a +# status line at the bottom. Colours match the bread palette (black base + warm accent). -# --- background (#230b00) --- -Window.SetBackgroundTopColor(0.137, 0.043, 0.0); -Window.SetBackgroundBottomColor(0.137, 0.043, 0.0); +# --- background (#0c0c0c) --- +Window.SetBackgroundTopColor(0.047, 0.047, 0.047); +Window.SetBackgroundBottomColor(0.047, 0.047, 0.047); screen_w = Window.GetWidth(); screen_h = Window.GetHeight();