Update colors with catppuccin

This commit is contained in:
Hydroxycarbamide 2022-09-15 00:44:25 +02:00
parent 0ff84042ab
commit b725dccade
29 changed files with 162 additions and 138 deletions

View file

@ -5,6 +5,7 @@
-- Awesome Libs
local awful = require("awful")
local color = require("src.theme.colors")
local cat = require("src.theme.catppuccin")
local dpi = require("beautiful").xresources.apply_dpi
local gears = require("gears")
local naughty = require("naughty")
@ -34,7 +35,7 @@ return function()
widget = wibox.container.margin
},
bg = color["Blue200"],
fg = color["Grey900"],
fg = cat["Crust"],
shape = function(cr, width, height)
gears.shape.rounded_rect(cr, width, height, 5)
end,
@ -76,13 +77,13 @@ return function()
end
)
end
bluetooth_widget.icon_margin.icon_layout.icon:set_image(gears.color.recolor_image(icon .. ".svg", color["Grey900"]))
bluetooth_widget.icon_margin.icon_layout.icon:set_image(gears.color.recolor_image(icon .. ".svg", cat["Crust"]))
end,
bluetooth_widget
)
-- Signals
Hover_signal(bluetooth_widget, color["Blue200"], color["Grey900"])
Hover_signal(bluetooth_widget, color["Blue200"], cat["Crust"])
bluetooth_widget:connect_signal(
"button::press",