mirror of
https://github.com/purhan/dotfiles.git
synced 2026-01-17 20:18:00 +08:00
31 lines
727 B
Lua
31 lines
727 B
Lua
local filesystem = require('gears.filesystem')
|
|
local mat_colors = require('theme.mat-colors')
|
|
local theme_dir = filesystem.get_configuration_dir() .. '/theme'
|
|
local dpi = require('beautiful').xresources.apply_dpi
|
|
|
|
local theme = {}
|
|
theme.icons = theme_dir .. '/icons/'
|
|
theme.font = 'Roboto medium 10'
|
|
|
|
-- Colors Pallets
|
|
|
|
-- Primary
|
|
theme.primary = mat_colors.grey
|
|
theme.primary.hue_500 = '#d03c3f'
|
|
-- theme.primary = mat_colors.indigo
|
|
-- Accent
|
|
theme.accent = mat_colors.orange
|
|
|
|
-- Background
|
|
theme.background = mat_colors.blue_grey
|
|
|
|
theme.background.hue_800 = '#2e2e2e'
|
|
theme.background.hue_900 = '#1a1a1a'
|
|
|
|
local awesome_overrides = function(theme)
|
|
--
|
|
end
|
|
return {
|
|
theme = theme,
|
|
awesome_overrides = awesome_overrides
|
|
}
|