From 7ace19d41bd76ded76e272bcfda514793d1a7711 Mon Sep 17 00:00:00 2001 From: Maximilian Seidler <78690852+PaideiaDilemma@users.noreply.github.com> Date: Mon, 18 Nov 2024 20:45:38 +0100 Subject: [PATCH] Variables: explain that rgb(a) supports hex and decimal values (#876) --- pages/Configuring/Variables.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/Configuring/Variables.md b/pages/Configuring/Variables.md index 9342c60..d5d33ce 100644 --- a/pages/Configuring/Variables.md +++ b/pages/Configuring/Variables.md @@ -31,9 +31,9 @@ the layout pages and not here. (See the Sidebar for Dwindle and Master layouts) You have 3 options: -rgba(), e.g. `rgba(b3ff1aee)` +rgba(), e.g. `rgba(b3ff1aee)`, or the decimal equivalent `rgba(179, 255, 26, 0.933)` -rgb(), e.g. `rgb(b3ff1a)` +rgb(), e.g. `rgb(b3ff1a)`, or the decimal equivalent `rgb(179, 255, 26)` legacy, e.g. `0xeeb3ff1a` -> ARGB order