From Mustard Treeshrew, 9 Years ago, written in Plain Text.
Embed
  1. ! -----------------------------------------------------------------------------
  2. ! File: gruvbox-dark.xresources
  3. ! Description: Retro groove colorscheme generalized
  4. ! Author: morhetz <morhetz@gmail.com>
  5. ! Source: https://github.com/morhetz/gruvbox-generalized
  6. ! Last Modified: 6 Sep 2014
  7. ! -----------------------------------------------------------------------------
  8.  
  9. ! hard contrast: *background: #1d2021
  10. *background: #282828
  11. ! soft contrast: *background: #32302f
  12. *foreground: #ebdbb2
  13. ! Black + DarkGrey
  14. *color0:  #282828
  15. *color8:  #928374
  16. ! DarkRed + Red
  17. *color1:  #cc241d
  18. *color9:  #fb4934
  19. ! DarkGreen + Green
  20. *color2:  #98971a
  21. *color10: #b8bb26
  22. ! DarkYellow + Yellow
  23. *color3:  #d79921
  24. *color11: #fabd2f
  25. ! DarkBlue + Blue
  26. *color4:  #458588
  27. *color12: #83a598
  28. ! DarkMagenta + Magenta
  29. *color5:  #b16286
  30. *color13: #d3869b
  31. ! DarkCyan + Cyan
  32. *color6:  #689d6a
  33. *color14: #8ec07c
  34. ! LightGrey + White
  35. *color7:  #a89984
  36. *color15: #ebdbb2
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44. rofi.separator-style: none
  45. rofi.sidebar-mode: false
  46. rofi.bw: 0
  47. rofi.columns: 1
  48.  
  49. rofi.yoffset: 0
  50. rofi.opacity: 100
  51. rofi.fake-transparency: false
  52. rofi.location: 0
  53. rofi.padding: 700
  54. rofi.font: RobotoMono 30
  55.  
  56. rofi.modi:                           combi,calc
  57. rofi.combi-modi:                     window,run,ssh
  58.  
  59. rofi.width: 2560
  60. rofi.fullscreen: false
  61.  
  62. rofi.fixed-num-lines: true
  63.  
  64. rofi.eh: 1
  65. rofi.line-margin: 20
  66. rofi.lines: 9
  67. rofi.hide-scrollbar: true
  68.  
  69. rofi.color-enabled: true
  70. rofi.color-window: argb:ee282828, #282828, #000000
  71. rofi.color-normal: argb:0fdf6e3, #44ebdbb2, argb:0eee8d5, argb:0586e75, #ebdbb2
  72. rofi.color-active: argb:0fdf6e3, #268bd2, argb:0eee8d5, argb:0268bd2, #fdf6e3
  73. rofi.color-urgent: argb:0fdf6e3, #dc322f, argb:0eee8d5, argb:0dc322f, #fdf6e3
  74.  
  75.  
  76.  
  77.  
  78.  
  79. ! ------------------------------------------------------------------------------
  80. ! Mouse cursor stuff
  81. ! ------------------------------------------------------------------------------
  82. Xcursor.theme: Adwaita
  83. Xcursor.size: 20
  84.  
  85. ! ------------------------------------------------------------------------------
  86. ! urxvt stuff
  87. ! ------------------------------------------------------------------------------
  88. !! General URxvt settings
  89. URxvt.depth:        32
  90. URxvt.scrollBar:    false
  91. URxvt.saveLines: 10000
  92. URxvt.internalBorder: 12
  93.  
  94. URxvt.color24:  #076678
  95. URxvt.color66:  #427b58
  96. URxvt.color88:  #9d0006
  97. URxvt.color96:  #8f3f71
  98. URxvt.color100: #79740e
  99. URxvt.color108: #8ec07c
  100. URxvt.color109: #83a598
  101. URxvt.color130: #af3a03
  102. URxvt.color136: #b57614
  103. URxvt.color142: #b8bb26
  104. URxvt.color167: #fb4934
  105. URxvt.color175: #d3869b
  106. URxvt.color208: #fe8019
  107. URxvt.color214: #fabd2f
  108. URxvt.color223: #ebdbb2
  109. URxvt.color228: #f2e5bc
  110. URxvt.color229: #fbf1c7
  111. URxvt.color230: #f9f5d7
  112. URxvt.color234: #1d2021
  113. URxvt.color235: #282828
  114. URxvt.color236: #32302f
  115. URxvt.color237: #3c3836
  116. URxvt.color239: #504945
  117. URxvt.color241: #665c54
  118. URxvt.color243: #7c6f64
  119. URxvt.color244: #928374
  120. URxvt.color245: #928374
  121. URxvt.color246: #a89984
  122. URxvt.color248: #bdae93
  123. URxvt.color250: #d5c4a1
  124.  
  125.  
  126. !! Font settings
  127. !! URxvt.font: xft:RobotoMono:size=13, xft:Hack for Powerline
  128. URxvt.font:     xft:Roboto Mono for Powerline:style=Regular:size=12:antialias=true
  129. URxvt.boldFont:     xft:Roboto Mono for Powerline:style=Bold:size=12:antialias=true
  130. !! URxvt.boldFont: xft:Hack:bold:size=10:antialias=true
  131. URxvt.letterSpace: -1
  132.  
  133. !! Load perl extentions
  134. URxvt.perl-ext-common: default,matcher,font-size
  135.  
  136. !! Open links with Ctrl+left mouse in firefox
  137. URxvt.url-launcher: /usr/bin/firefox
  138. URxvt.matcher.button: C1
  139.  
  140. !! Change font size on Control-Plus/Minus
  141. URxvt.keysym.Control-0x2b: perl:font-size:increase
  142. URxvt.keysym.Control-0x2d: perl:font-size:decrease
  143. URxvt.keysym.Control-0:    perl:font-size:reset
  144.  
  145. !! Moving around with Control+arrow keys
  146. URxvt.keysym.Control-Up: \033[1;5A
  147. URxvt.keysym.Control-Down: \033[1;5B
  148. URxvt.keysym.Control-Left: \033[1;5D
  149. URxvt.keysym.Control-Right: \033[1;5C
  150.  
  151. Xft*dpi: 96
  152. Xft*antialias: true
  153. Xft*hinting: full
  154.  
  155. !URxvt*inheritPixmap: true
  156. URxvt*.transparent: true
  157. ! URxvt*.shading: 0 to 99 darkens, 101 to 200 lightens
  158. URxvt*.shading: 20
  159.