aboutsummaryrefslogtreecommitdiff
path: root/.config/awesome/ui/wicked/consts.lua
blob: 31e31d5bf57bdfd42bfcebe200e72ac8ccc78ed1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
local qcolor = require "quarrel.color"

local C = {}

C.NOTIF_TIMEOUT = 3
C.LEVEL_PRIORITIES = {
    debug = 0,
    info = 1,
    warn = 2,
    error = 3
}
C.LEVEL_COLORS = {
    debug = qcolor.palette.purple(),
    info = qcolor.palette.blue(),
    warn = qcolor.palette.orange(),
    error = qcolor.palette.red(),
}

return C