mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 08:48:34 -05:00
added sketchybar config
This commit is contained in:
parent
87bb07f015
commit
95ebd7af03
38 changed files with 2329 additions and 0 deletions
28
dot_config/sketchybar/colors.lua
Normal file
28
dot_config/sketchybar/colors.lua
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
return {
|
||||
black = 0xff181819,
|
||||
white = 0xffe2e2e3,
|
||||
red = 0xfffc5d7c,
|
||||
green = 0xff9ed072,
|
||||
blue = 0xff76cce0,
|
||||
yellow = 0xffe7c664,
|
||||
orange = 0xfff39660,
|
||||
magenta = 0xffb39df3,
|
||||
grey = 0xff7f8490,
|
||||
transparent = 0x00000000,
|
||||
|
||||
bar = {
|
||||
bg = 0xf02c2e34,
|
||||
border = 0xff2c2e34,
|
||||
},
|
||||
popup = {
|
||||
bg = 0xc02c2e34,
|
||||
border = 0xff7f8490
|
||||
},
|
||||
bg1 = 0xff363944,
|
||||
bg2 = 0xff414550,
|
||||
|
||||
with_alpha = function(color, alpha)
|
||||
if alpha > 1.0 or alpha < 0.0 then return color end
|
||||
return (color & 0x00ffffff) | (math.floor(alpha * 255.0) << 24)
|
||||
end,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue