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.

142 lines
4.0 KiB

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