Advertisement
Guest User

rofi-theme.rasi

a guest
Jan 26th, 2020
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.18 KB | None | 0 0
  1. --------------------------------
  2. - ROFI Color theme
  3. - User: josef156
  4. - Copyright: 2020 josef156
  5. -------------------------------
  6.  
  7. * {
  8. selected-normal-foreground: #000000;
  9. foreground: #FFFFFF;
  10. normal-foreground: @foreground;
  11. alternate-normal-background: #2e3440;
  12. red: rgba ( 220, 50, 47, 100 % );
  13. selected-urgent-foreground: #FFFFFF;
  14. blue: rgba ( 38, 139, 210, 100 % );
  15. urgent-foreground: rgba ( 204, 102, 102, 100 % );
  16. alternate-urgent-background: rgba ( 75, 81, 96, 100 % );
  17. active-foreground: #FFFFFF;
  18. lightbg: #2e3440;
  19. selected-active-foreground: #FFFFFF;
  20. alternate-active-background: rgba ( 75, 81, 96, 100 % );
  21. background: #2e3440;
  22. alternate-normal-foreground: @foreground;
  23. normal-background: @background;
  24. lightfg: #2e3440;
  25. selected-normal-background: #e5a077;
  26. border-color: #2e3440;
  27. spacing: 2;
  28. separatorcolor: #2e3440;
  29. urgent-background: rgba ( 29, 31, 33, 100 % );
  30. selected-urgent-background: rgba ( 165, 66, 66, 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, 100 % );
  35. selected-active-background: rgba ( 68, 145, 237, 100 % );
  36. }
  37. #window {
  38. background-color: @background;
  39. border: 10;
  40. padding: 20px 20px 20px ;
  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: 2px 0px 0px ;
  57. border-color: @separatorcolor;
  58. spacing: 6px ;
  59. scrollbar: false;
  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: 2px 0px 0px ;
  111. border-color: @separatorcolor;
  112. }
  113. #button {
  114. spacing: 0;
  115. text-color: @normal-foreground;
  116. }
  117. #button.selected {
  118. background-color: @selected-normal-background;
  119. text-color: @selected-normal-foreground;
  120. }
  121. #inputbar {
  122. spacing: 0;
  123. text-color: @normal-foreground;
  124. padding: 1px ;
  125. }
  126. #case-indicator {
  127. spacing: 0;
  128. text-color: @normal-foreground;
  129. }
  130. #entry {
  131. spacing: 0;
  132. text-color: @normal-foreground;
  133. }
  134. #prompt {
  135. spacing: 0;
  136. text-color: @normal-foreground;
  137. }
  138. #inputbar {
  139. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  140. }
  141. #textbox-prompt-colon {
  142. expand: false;
  143. str: ":";
  144. margin: 0px 0.3em 0em 0em ;
  145. text-color: @normal-foreground;
  146. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement