.Xresources 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. ! .Xresources - My configs for urxvt and xclock
  2. !
  3. ! Written in 2017 by Caleb Herbert <csh@bluehome.net>
  4. !
  5. ! To the extent possible under law, the author(s) have dedicated all
  6. ! copyright and related and neighboring rights to this software to the
  7. ! public domain worldwide. This software is distributed without any
  8. ! warranty.
  9. !
  10. ! You should have received a copy of the CC0 Public Domain Dedication
  11. ! along with this software. If not, see
  12. ! <http://creativecommons.org/publicdomain/zero/1.0/>.
  13. #define SOLARIZED_LIGHT
  14. #if !defined(SOLARIZED_LIGHT) && !defined(SOLARIZED_DARK)
  15. #define SOLARIZED_DARK
  16. #elif defined(SOLARIZED_LIGHT) && defined(SOLARIZED_DARK)
  17. #undef SOLARIZED_LIGHT
  18. #endif
  19. ! Define Solarized colors
  20. #define S_base03 #002b36
  21. #define S_base02 #073642
  22. #define S_base01 #586e75
  23. #define S_base00 #657b83
  24. #define S_base0 #839496
  25. #define S_base1 #93a1a1
  26. #define S_base2 #eee8d5
  27. #define S_base3 #fdf6e3
  28. #define S_yellow #b58900
  29. #define S_orange #cb4b16
  30. #define S_red #dc322f
  31. #define S_magenta #d33682
  32. #define S_violet #6c71c4
  33. #define S_blue #268bd2
  34. #define S_cyan #2aa198
  35. #define S_green #859900
  36. #ifdef SOLARIZED_LIGHT
  37. #define S_emph S_base01
  38. #define S_primary S_base00
  39. #define S_secondary S_base1
  40. #define S_bgrnd_hi S_base2
  41. #define S_bgrnd S_base3
  42. #endif
  43. #ifdef SOLARIZED_DARK
  44. #define S_emph S_base1
  45. #define S_primary S_base0
  46. #define S_secondary S_base01
  47. #define S_bgrnd_hi S_base02
  48. #define S_bgrnd S_base03
  49. #endif
  50. ! Settings for urxvt
  51. ! Font
  52. URxvt.font: -*-terminus-medium-*-*-*-*-140-*-*-*-*-iso8859-1
  53. ! Disable scrollbar
  54. URxvt.scrollBar: False
  55. ! Colors
  56. URxvt.background: S_bgrnd
  57. URxvt.foreground: S_primary
  58. ! ! Colors for xclock
  59. ! XClock*Background: #000000
  60. ! XClock*hourColor: #FFFFFF
  61. ! XClock*minuteColor: #FFFFFF
  62. ! XClock*secondColor: #FF7E00
  63. ! XClock*majorColor: #FFFFFF
  64. ! XClock*minorColor: #FF7E00
  65. ! Colors for xclock (Solarized)
  66. XClock*Background: S_bgrnd
  67. XClock*hourColor: S_primary
  68. XClock*minuteColor: S_primary
  69. XClock*secondColor: S_orange
  70. XClock*majorColor: S_primary
  71. XClock*minorColor: S_secondary