From a5b17f6faa2a5593222fa13a8261d8efa5e2ed7f Mon Sep 17 00:00:00 2001 From: Guldoman Date: Mon, 13 Jun 2022 23:30:44 +0200 Subject: `duorand`: Set alpha channel of randomized color --- colors/duorand.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/colors/duorand.lua b/colors/duorand.lua index dabde42..3a5bdd7 100644 --- a/colors/duorand.lua +++ b/colors/duorand.lua @@ -6,7 +6,8 @@ math.randomseed(os.time()) local color = { math.random(90, 255), math.random(90, 255), - math.random(90, 255) + math.random(90, 255), + 255 } style.background = { common.color "#151515" } -- cgit v1.2.3