Guest User

Untitled

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