- awesome: fg_normal is common between themes so make it somewhat lighter then it was on dark theme
58 lines
2.8 KiB
Lua
58 lines
2.8 KiB
Lua
local themes_path = require("gears.filesystem").get_themes_dir()
|
|
|
|
local xresources = require("beautiful.xresources")
|
|
local dpi = xresources.apply_dpi
|
|
|
|
local theme = {}
|
|
|
|
theme.font = "Fira Code Nerd Font 10"
|
|
theme.tasklist_disable_icon = true
|
|
theme.wibar_height = 30
|
|
|
|
theme.bg_normal = "#111c22" -- hsl(200 35% 10%)
|
|
theme.bg_focus = "#d0e3fb" -- hsl(214 85% 90%)
|
|
theme.bg_urgent = "#f2d1a6" -- hsl(34 75% 80%)
|
|
theme.bg_minimize = "#8596ad" -- hsl(214 20% 60%)
|
|
theme.bg_systray = theme.bg_normal
|
|
theme.tasklist_bg_focus = "#a6c7f2" -- hsl(214 75% 80%)
|
|
|
|
theme.fg_normal = "#8f9ca3" -- hsl(200 10% 60%)
|
|
theme.fg_focus = "#454b54" -- hsl(214 10% 30%)
|
|
theme.fg_urgent = "#70675c" -- hsl(34 10% 40%)
|
|
theme.fg_minimize = "#70675c" -- hsl(34 10% 40%)
|
|
theme.taglist_fg_empty = theme.fg_minimize
|
|
|
|
theme.gap_single_client = false
|
|
theme.useless_gap = dpi(1)
|
|
theme.border_width = dpi(2)
|
|
theme.border_normal = theme.bg_minimize
|
|
theme.border_focus = "#df8c20" -- hsl(34 75% 50%)
|
|
theme.border_marked = "#2073df" -- hsl(214 75% 50%)
|
|
|
|
theme.bg_wallpaper = theme.fg_normal
|
|
|
|
theme.hotkeys_font = theme.font
|
|
theme.hotkeys_description_font = theme.font
|
|
theme.hotkeys_bg = theme.border_normal
|
|
theme.hotkeys_modifiers_fg = theme.bg_focus
|
|
|
|
-- You can use your own layout icons like this:
|
|
theme.layout_fairh = themes_path .. "default/layouts/fairhw.png"
|
|
theme.layout_fairv = themes_path .. "default/layouts/fairvw.png"
|
|
theme.layout_floating = themes_path .. "default/layouts/floatingw.png"
|
|
theme.layout_magnifier = themes_path .. "default/layouts/magnifierw.png"
|
|
theme.layout_max = themes_path .. "default/layouts/maxw.png"
|
|
theme.layout_fullscreen = themes_path .. "default/layouts/fullscreenw.png"
|
|
theme.layout_tilebottom = themes_path .. "default/layouts/tilebottomw.png"
|
|
theme.layout_tileleft = themes_path .. "default/layouts/tileleftw.png"
|
|
theme.layout_tile = themes_path .. "default/layouts/tilew.png"
|
|
theme.layout_tiletop = themes_path .. "default/layouts/tiletopw.png"
|
|
theme.layout_spiral = themes_path .. "default/layouts/spiralw.png"
|
|
theme.layout_dwindle = themes_path .. "default/layouts/dwindlew.png"
|
|
theme.layout_cornernw = themes_path .. "default/layouts/cornernww.png"
|
|
theme.layout_cornerne = themes_path .. "default/layouts/cornernew.png"
|
|
theme.layout_cornersw = themes_path .. "default/layouts/cornersww.png"
|
|
theme.layout_cornerse = themes_path .. "default/layouts/cornersew.png"
|
|
|
|
return theme
|