Advertisement
mosaid

Monokai.rasi

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