home | blog | art | git gpg | email | rss

morph

A Linux rice color switching tool
git clone git://pollux.codes/git/morph.git
Log | Files | Refs
commit 764d0546041779508138d21a83d3649b05dec023
parent 71f4b4b3206d7f479e6adab2a26989a8d377c7f8
Author: Pollux <pollux@pollux.codes>
Date:   Sun, 13 Apr 2025 23:37:58 -0500

feat: add hex_argb format

Signed-off-by: Pollux <pollux@pollux.codes>

Diffstat:
Msrc/morph.py | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/morph.py b/src/morph.py @@ -55,6 +55,8 @@ def replace_colors(theme): match format: case "hex_rgba": return hex + case "hex_argb": + return hex[6:] + hex[:6] case "hex_rgb": return hex[:6] case "int_rgba":