Update and add bling task_preview, tag_preview and window_switcher Add catppuccin-macchiato Use my weather key Update keybindings Update autorun Fix sliders
27 lines
821 B
Lua
27 lines
821 B
Lua
-- Colors :
|
|
colors = {}
|
|
-- Dark colors
|
|
colors.black = "#181926"
|
|
colors.red = "#ed8796"
|
|
colors.green = "#a6da95"
|
|
colors.yellow = "#f5a97f"
|
|
colors.blue = "#8aadf4"
|
|
colors.magenta = "#c6a0f6"
|
|
colors.cyan = "#91d7e3"
|
|
colors.white = "#cad3f5"
|
|
-- Bright colors
|
|
colors.brightblack = "#24273a"
|
|
colors.brightred = "#ee99a0"
|
|
colors.brightgreen = "#8bd5ca"
|
|
colors.brightyellow = "#eed49f"
|
|
colors.brightblue = "#b7bdf8"
|
|
colors.brightmagenta = "#f5bde6"
|
|
colors.brightcyan = "#7dc4e4"
|
|
colors.brightwhite = "#a5adcb"
|
|
-- Other
|
|
colors.transparent = "#00000000"
|
|
colors.container = "#1e2030"
|
|
colors.main_scheme = "#f4dbd6"
|
|
colors.main_transparent = "#262626CC"
|
|
|
|
return colors
|