-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.hpp
47 lines (42 loc) · 1.16 KB
/
config.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#ifndef CONFIG_HPP
#define CONFIG_HPP
/* #define nord0 #2E3440 */
/* #define nord1 #3B4252 */
/* #define nord2 #434C5E */
/* #define nord3 #4C566A */
/* #define nord4 #D8DEE9 */
/* #define nord5 #E5E9F0 */
/* #define nord6 #ECEFF4 */
/* #define nord7 #8FBCBB */
/* #define nord8 #88C0D0 */
/* #define nord9 #81A1C1 */
/* #define nord10 #5E81AC */
/* #define nord11 #BF616A */
/* #define nord12 #D08770 */
/* #define nord13 #EBCB8B */
/* #define nord14 #A3BE8C */
/* #define nord15 #B48EAD */
#define nord0 0x2E3440
#define nord1 0x3B4252
#define nord2 0x434C5E
#define nord3 0x4C566A
#define nord4 0xD8DEE9
#define nord5 0xE5E9F0
#define nord6 0xECEFF4
#define nord7 0x8FBCBB
#define nord8 0x88C0D0
#define nord9 0x81A1C1
#define nord10 0x5E81AC
#define nord11 0xBF616A
#define nord12 0xD08770
#define nord13 0xEBCB8B
#define nord14 0xA3BE8C
#define nord15 0xB48EAD
#define MODKEY Mod1Mask
static const unsigned int BORDER_WIDTH = 2;
static const unsigned int GAP = 5;
static const unsigned long BORDER_ACTIVE_COLOR = nord9;
static const unsigned long BORDER_INACTIVE_COLOR = nord10;
static const unsigned long BG_COLOR = nord0;
static const unsigned long FG_COLOR = nord4;
#endif