initalize

This commit is contained in:
xenomxrph
2025-07-16 15:00:51 +02:00
commit 8d16baf6f1
40 changed files with 2353 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
local padding <const> = {
background = 8,
icon = 10,
label = 8,
bar = 20,
left = 12,
right = 12,
item = 18,
popup = 8,
}
local graphics <const> = {
bar = {
height = 32,
offset = 6,
},
background = {
height = 24,
corner_radius = 9,
},
slider = {
height = 20,
},
popup = {
width = 200,
large_width = 300,
},
blur_radius = 30,
}
local text <const> = {
icon = 16.0,
label = 14.0,
}
return {
padding = padding,
graphics = graphics,
text = text,
}