Another copy of my dotfiles. Because I don't completely trust GitHub.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

109 lines
2.0 KiB

4 years ago
  1. /**
  2. * User: qball
  3. * Copyright: Dave Davenport
  4. */
  5. * {
  6. text-color: #f4f2f0;
  7. background-color: rgba(0,0,0,0);
  8. dark: #2c2541;
  9. // Black
  10. black: #3d335c;
  11. lightblack: #483c6c;
  12. //
  13. // Red
  14. red: #cd5c5c;
  15. lightred: #cc5533;
  16. //
  17. // Green
  18. green: #86af80;
  19. lightgreen: #88cc22;
  20. //
  21. // Yellow
  22. yellow: #e8ae5b;
  23. lightyellow: #ffa75d;
  24. //
  25. // Blue
  26. blue: #6495ed;
  27. lightblue: #87ceeb;
  28. //
  29. // Magenta
  30. magenta: #deb887;
  31. lightmagenta: #996600;
  32. //
  33. // Cyan
  34. cyan: #b0c4de;
  35. lightcyan: #b0c4de;
  36. //
  37. // White
  38. white: #bbaa99;
  39. lightwhite: #ddccbb;
  40. //
  41. // Bold, Italic, Underline
  42. highlight: bold #ffffff;
  43. }
  44. #window {
  45. height: 50%;
  46. width: 15em;
  47. location: north east;
  48. anchor: north east;
  49. border: 0px 0px 0px 0px;
  50. x-offset: -30px;
  51. y-offset: 39px;
  52. text-color: @lightwhite;
  53. border-radius: 0px 0px 19px 19px;
  54. }
  55. #mode-switcher {
  56. border: 2px 0px 0px 0px;
  57. background-color: @lightblack;
  58. padding: 4px;
  59. }
  60. #button selected {
  61. border-color: @lightgreen;
  62. text-color: @lightgreen;
  63. }
  64. #inputbar {
  65. background-color: #2c2541;
  66. text-color: @lightgreen;
  67. padding: 4px 4px 4px 4px;
  68. border: 0px 0px 0px 0px;
  69. }
  70. #mainbox {
  71. expand: true;
  72. background-color: #1c1c1cee;
  73. spacing: 1em;
  74. }
  75. #listview {
  76. padding: 0em 1em 0em 1em;
  77. dynamic: false;
  78. lines: 0;
  79. }
  80. #prompt {
  81. margin: 0px 6px 0px 0px;
  82. }
  83. #element selected normal {
  84. background-color: #da0f7a;
  85. }
  86. #element normal active {
  87. text-color: @lightblue;
  88. }
  89. #element normal urgent {
  90. text-color: @lightred;
  91. }
  92. #element alternate normal {
  93. }
  94. #element alternate active {
  95. text-color: @lightblue;
  96. }
  97. #element alternate urgent {
  98. text-color: @lightred;
  99. }
  100. #element selected active {
  101. background-color: @lightblue;
  102. text-color: @dark;
  103. }
  104. #element selected urgent {
  105. background-color: @lightred;
  106. text-color: @dark;
  107. }