diff options
-rw-r--r-- | .Xresources | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/.Xresources b/.Xresources new file mode 100644 index 0000000..e3bb46f --- /dev/null +++ b/.Xresources | |||
@@ -0,0 +1,53 @@ | |||
1 | #if __has_include(".extend.Xresources") | ||
2 | #include ".extend.Xresources" | ||
3 | #endif | ||
4 | |||
5 | ! ^ The above lines are no comments! | ||
6 | ! Leave them as they are if a file ~/.extend.Xresources is being used on your system. | ||
7 | ! config can be added there or also here below. | ||
8 | ! For comments use "!" | ||
9 | |||
10 | Xft.dpi: 96 | ||
11 | Xft.antialias: true | ||
12 | Xft.hinting: true | ||
13 | Xft.rgba: rgb | ||
14 | Xft.autohint: false | ||
15 | Xft.hintstyle: hintslight | ||
16 | Xft.lcdfilter: lcddefault | ||
17 | |||
18 | ! ----------------------------------------------------------------------------- | ||
19 | ! File: gruvbox-dark.xresources | ||
20 | ! Description: Retro groove colorscheme generalized | ||
21 | ! Author: morhetz <morhetz@gmail.com> | ||
22 | ! Source: https://github.com/morhetz/gruvbox-generalized | ||
23 | ! Last Modified: 6 Sep 2014 | ||
24 | ! ----------------------------------------------------------------------------- | ||
25 | |||
26 | ! hard contrast: *background: #1d2021 | ||
27 | *background: #282828 | ||
28 | ! soft contrast: *background: #32302f | ||
29 | *foreground: #ebdbb2 | ||
30 | ! Black + DarkGrey | ||
31 | *color0: #282828 | ||
32 | *color8: #928374 | ||
33 | ! DarkRed + Red | ||
34 | *color1: #cc241d | ||
35 | *color9: #fb4934 | ||
36 | ! DarkGreen + Green | ||
37 | *color2: #98971a | ||
38 | *color10: #b8bb26 | ||
39 | ! DarkYellow + Yellow | ||
40 | *color3: #d79921 | ||
41 | *color11: #fabd2f | ||
42 | ! DarkBlue + Blue | ||
43 | *color4: #458588 | ||
44 | *color12: #83a598 | ||
45 | ! DarkMagenta + Magenta | ||
46 | *color5: #b16286 | ||
47 | *color13: #d3869b | ||
48 | ! DarkCyan + Cyan | ||
49 | *color6: #689d6a | ||
50 | *color14: #8ec07c | ||
51 | ! LightGrey + White | ||
52 | *color7: #a89984 | ||
53 | *color15: #ebdbb2 | ||