Variables: explain that rgb(a) supports hex and decimal values (#876)

This commit is contained in:
Maximilian Seidler 2024-11-18 20:45:38 +01:00 committed by GitHub
parent ad67df8000
commit 7ace19d41b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -31,9 +31,9 @@ the layout pages and not here. (See the Sidebar for Dwindle and Master layouts)
You have 3 options: 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 legacy, e.g. `0xeeb3ff1a` -> ARGB order