Skip to content

Commit

Permalink
Update defaults to use RGBA
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashlynn Anderson committed Apr 10, 2022
1 parent 0f5a0a9 commit 42b3794
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/wm.nim
Original file line number Diff line number Diff line change
Expand Up @@ -147,14 +147,14 @@ proc initWm*(): Wm =
netAtoms: netAtoms,
ipcAtoms: getIpcAtoms dpy,
config: Config(
borderActivePixel: 0x7499CC,
borderInactivePixel: 0x000000,
borderActivePixel: 0xFF7499CC,
borderInactivePixel: 0xFF000000,
borderWidth: 1,
frameActivePixel: 0x161821,
frameInactivePixel: 0x666666,
frameActivePixel: 0xFF161821,
frameInactivePixel: 0xFF666666,
frameHeight: 30,
textActivePixel: 0xffffff,
textInactivePixel: 0x000000,
textActivePixel: 0xFFFFFFFF,
textInactivePixel: 0xFF000000,
textOffset: (x: uint 10, y: uint 20),
gaps: 0,
buttonSize: 14,
Expand Down

0 comments on commit 42b3794

Please sign in to comment.