Advertisement
constantin-net

rofi_win7_colors_rasi

Aug 18th, 2021
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.66 KB | None | 0 0
  1. configuration {
  2. font: "Segoe UI 11";
  3. icon-theme: "Windows";
  4. cycle: true;
  5. disable-history: false;
  6. modi: "run";
  7. location: 7;
  8. terminal: "rofi-sensible-terminal";
  9. me-select-entry: "MouseDPrimary";
  10. me-accept-entry: "MousePrimary";
  11. separator-style: "none";
  12. display-run: "Выполнить";
  13. scroll-method: 0;
  14. sort: true;
  15. }
  16.  
  17. /**
  18. * ROFI Color theme
  19. */
  20. * {
  21. spacing: 0px;
  22. foreground: #000000;
  23. background: #FFFFFF;
  24. separatorcolor: #FFFFFF;
  25. bordercolor: #A4BDD9;
  26.  
  27. border-color: @bordercolor;
  28. background-color: @background;
  29. text-color: @foreground;
  30.  
  31. normal-foreground: @foreground;
  32. active-foreground: @background;
  33. urgent-foreground: #161719;
  34.  
  35. alternate-normal-foreground: @normal-foreground;
  36. alternate-active-foreground: @active-foreground;
  37. alternate-urgent-foreground: @urgent-foreground;
  38.  
  39. normal-background: @background;
  40. active-background: #C6DFFD;
  41. urgent-background: @normal-background;
  42.  
  43. alternate-normal-background: @normal-background;
  44. alternate-urgent-background: @active-background;
  45. alternate-active-background: @urgent-background;
  46.  
  47. selected-normal-foreground: #282828;
  48. selected-active-foreground: @selected-normal-foreground;
  49. selected-urgent-foreground: @selected-normal-foreground;
  50.  
  51. selected-normal-background: @active-background;
  52. selected-active-background: @selected-normal-background;
  53. selected-urgent-background: @selected-normal-background;
  54.  
  55. lightfg: #000000;
  56. lightbg: #FFFFFF;
  57.  
  58. }
  59. #window {
  60. width: 430px;
  61. height: 20%;
  62. padding: 0% 0% 0% 0%;
  63. border: 8px;
  64. border-color: @background;
  65. }
  66. #inputbar {
  67. border: 0 0 0 0;
  68. children: [prompt,entry];
  69. }
  70. #prompt {
  71. padding: 16px;
  72. border: 0 0 0 0;
  73. font: "Segoe UI 14";
  74. }
  75. #entry {
  76. padding: 16px;
  77. font: "Segoe UI 14";
  78. placeholder: " поиск";
  79. placeholder-color: @active-background;
  80. }
  81. #listview {
  82. cycle: false;
  83. margin: 2px 2px 2px 2px;
  84. scrollbar: true;
  85. scrollbar-width: 8;
  86. dynamic: false;
  87. fixed-columns: true;
  88. columns: 1;
  89. lines: 9;
  90. }
  91. #element {
  92. orientation: horizontal;
  93. spacing: 2px;
  94. padding: 2px;
  95. }
  96. #element-icon {
  97. size: 24;
  98. padding: 6px;
  99. background-color: #0077E7;
  100. }
  101. #element-text {
  102. horizontal-align: 0;
  103. padding: 0px 0px 0px 0px;
  104. }
  105. #element normal.normal {
  106. background-color: @normal-background;
  107. text-color: @normal-foreground;
  108. }
  109. #element alternate.normal {
  110. background-color: @alternate-normal-background;
  111. text-color: @alternate-normal-foreground;
  112. }
  113. #element normal.active {
  114. background-color: @active-background;
  115. text-color: @active-foreground;
  116. }
  117. #element alternate.active {
  118. background-color: @alternate-active-background;
  119. text-color: @alternate-active-foreground;
  120. }
  121. #element normal.urgent {
  122. background-color: @urgent-background;
  123. text-color: @urgent-foreground;
  124. }
  125. #element alternate.urgent {
  126. background-color: @alternate-urgent-background;
  127. text-color: @alternate-urgent-foreground;
  128. }
  129. #element selected {
  130. background-color: @selected-normal-background;
  131. text-color: @selected-normal-foreground;
  132. border: 0px;
  133. }
  134. #scrollbar {
  135. padding: 2px;
  136. border: 0;
  137. handle-width: 8px ;
  138. handle-color: @selected-normal-background;
  139. background-color: @background;
  140. border-color: @background;
  141. }
  142.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement