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.

149 lines
4.3 KiB

4 years ago
  1. /* vim:ft=css */
  2. /************************************************
  3. * ROFI Color theme
  4. * User: leofa
  5. * Copyright: 2017 leofa
  6. ***********************************************/
  7. * {
  8. selected-normal-foreground: rgba ( 249, 249, 249, 100 % );
  9. foreground: rgba ( 248, 248, 242, 100 % );
  10. normal-foreground: @foreground;
  11. alternate-normal-background: rgba ( 35, 49, 63, 95%);
  12. red: rgba ( 189, 147, 249, 100 % );
  13. selected-urgent-foreground: rgba ( 249, 249, 249, 100 % );
  14. blue: rgba ( 38, 139, 210, 100 % );
  15. urgent-foreground: rgba ( 204, 102, 102, 100 % );
  16. alternate-urgent-background: rgba ( 75, 81, 96, 90 % );
  17. active-foreground: rgba ( 101, 172, 255, 100 % );
  18. lightbg: rgba ( 238, 232, 213, 100 % );
  19. selected-active-foreground: rgba ( 249, 249, 249, 100 % );
  20. alternate-active-background: rgba ( 52,73,94, 60%);
  21. background: rgba ( 189, 147, 249, 95 % );
  22. alternate-normal-foreground: @foreground;
  23. normal-background: @background;
  24. lightfg: rgba ( 88, 104, 117, 100 % );
  25. selected-normal-background: rgba ( 189, 147, 249, 100 % );
  26. border-color: rgba ( 124, 131, 137, 100 % );
  27. spacing: 2;
  28. separatorcolor: rgba ( 29, 31, 33, 100 % );
  29. urgent-background: rgba ( 29, 31, 33, 17 % );
  30. selected-urgent-background: rgba ( 189, 147, 249, 100 % );
  31. alternate-urgent-foreground: @urgent-foreground;
  32. background-color: rgba ( 0, 0, 0, 0 % );
  33. alternate-active-foreground: @active-foreground;
  34. active-background: rgba ( 29, 31, 33, 17 % );
  35. selected-active-background: rgba ( 189, 147, 249, 100 % );
  36. }
  37. #window {
  38. background-color: @background;
  39. border: 1;
  40. padding: 5;
  41. }
  42. #mainbox {
  43. border: 0;
  44. padding: 0;
  45. }
  46. #message {
  47. border: 2px 0px 0px ;
  48. border-color: @separatorcolor;
  49. padding: 1px ;
  50. }
  51. #textbox {
  52. text-color: @foreground;
  53. }
  54. #listview {
  55. fixed-height: 0;
  56. border: 0px 0px 0px ;
  57. border-color: @separatorcolor;
  58. spacing: 2px ;
  59. scrollbar: true;
  60. padding: 2px 0px 0px ;
  61. }
  62. #element {
  63. border: 0;
  64. padding: 1px;
  65. }
  66. #element.normal.normal {
  67. background-color: @normal-background;
  68. text-color: @normal-foreground;
  69. }
  70. #element.normal.urgent {
  71. background-color: @urgent-background;
  72. text-color: @urgent-foreground;
  73. }
  74. #element.normal.active {
  75. background-color: @active-background;
  76. text-color: @active-foreground;
  77. }
  78. #element.selected.normal {
  79. background-color: @selected-normal-background;
  80. text-color: @selected-normal-foreground;
  81. }
  82. #element.selected.urgent {
  83. background-color: @selected-urgent-background;
  84. text-color: @selected-urgent-foreground;
  85. }
  86. #element.selected.active {
  87. background-color: @selected-active-background;
  88. text-color: @selected-active-foreground;
  89. }
  90. #element.alternate.normal {
  91. background-color: @alternate-normal-background;
  92. text-color: @alternate-normal-foreground;
  93. }
  94. #element.alternate.urgent {
  95. background-color: @alternate-urgent-background;
  96. text-color: @alternate-urgent-foreground;
  97. }
  98. #element.alternate.active {
  99. background-color: @alternate-active-background;
  100. text-color: @alternate-active-foreground;
  101. }
  102. #scrollbar {
  103. width: 4px ;
  104. border: 0;
  105. handle-color: @normal-foreground;
  106. handle-width: 8px ;
  107. padding: 0;
  108. }
  109. #sidebar {
  110. border: 0px 0px 0px;
  111. padding: 5px 0 0;
  112. border-color: @separatorcolor;
  113. }
  114. #button {
  115. spacing: 0;
  116. text-color: @normal-foreground;
  117. }
  118. #button.selected {
  119. background-color: @selected-normal-background;
  120. text-color: @selected-normal-foreground;
  121. }
  122. #inputbar {
  123. spacing: 0;
  124. text-color: @normal-foreground;
  125. padding: 1px ;
  126. }
  127. #case-indicator {
  128. spacing: 0;
  129. text-color: @normal-foreground;
  130. }
  131. #entry {
  132. spacing: 0;
  133. text-color: @normal-foreground;
  134. }
  135. #prompt {
  136. spacing: 0;
  137. text-color: @normal-foreground;
  138. }
  139. #inputbar {
  140. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  141. }
  142. #textbox-prompt-colon {
  143. expand: false;
  144. str: ":";
  145. margin: 0px 0.3em 0em 0em ;
  146. text-color: @normal-foreground;
  147. }