Advertisement
constantin-net

theme-translate.rasi

Apr 23rd, 2021
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.31 KB | None | 0 0
  1. /**
  2. * ROFI Color theme
  3. */
  4. * {
  5. spacing: 8px;
  6. foreground: #ffffff;
  7. background: #3F3F3F;
  8. separatorcolor: #4f4f4f;
  9. bordercolor: #4f4f4f;
  10.  
  11. border-color: @bordercolor;
  12. background-color: @background;
  13. text-color: @foreground;
  14.  
  15. normal-foreground: @foreground;
  16. active-foreground: #FFFFFF;
  17. urgent-foreground: #161719;
  18.  
  19. alternate-normal-foreground: @normal-foreground;
  20. alternate-active-foreground: @active-foreground;
  21. alternate-urgent-foreground: @urgent-foreground;
  22.  
  23. normal-background: @background;
  24. active-background: @normal-background;
  25. urgent-background: @normal-background;
  26.  
  27. alternate-normal-background: @normal-background;
  28. alternate-urgent-background: @active-background;
  29. alternate-active-background: @urgent-background;
  30.  
  31. selected-normal-foreground: #FFFFFF;
  32. selected-active-foreground: @selected-normal-foreground;
  33. selected-urgent-foreground: @selected-normal-foreground;
  34.  
  35. selected-normal-background: @background;
  36. selected-active-background: @selected-normal-background;
  37. selected-urgent-background: @selected-normal-background;
  38.  
  39. lightfg: #000000;
  40. lightbg: #000000;
  41.  
  42. }
  43. #window {
  44. width: 100%;
  45. height: 100%;
  46. padding: 20% 40% 10% 10%;
  47. border: 0;
  48. }
  49. #mainbox {
  50. border: 0;
  51. padding: 0;
  52. }
  53. #message {
  54. border: 2px 0px 0px ;
  55. border-color: @separatorcolor;
  56. padding: 1px ;
  57. }
  58. #textbox {
  59. text-color: @foreground;
  60. font: "Tahoma 20";
  61. }
  62. #listview {
  63. cycle: false;
  64. margin: 0px 0px 0px 0px;
  65. scrollbar: true;
  66. scrollbar-width: 8;
  67. dynamic: true;
  68. }
  69. #element {
  70. orientation: horizontal;
  71. spacing: 0px;
  72. }
  73. #element normal.normal {
  74. background-color: @normal-background;
  75. text-color: @normal-foreground;
  76. }
  77.  
  78. #element alternate.normal {
  79. background-color: @alternate-normal-background;
  80. text-color: @alternate-normal-foreground;
  81. }
  82.  
  83. #element normal.active {
  84. background-color: @active-background;
  85. text-color: @active-foreground;
  86. }
  87.  
  88. #element alternate.active {
  89. background-color: @alternate-active-background;
  90. text-color: @alternate-active-foreground;
  91. }
  92.  
  93. #element normal.urgent {
  94. background-color: @urgent-background;
  95. text-color: @urgent-foreground;
  96. }
  97.  
  98. #element alternate.urgent {
  99. background-color: @alternate-urgent-background;
  100. text-color: @alternate-urgent-foreground;
  101. }
  102.  
  103. #element selected {
  104. background-color: @selected-normal-background;
  105. text-color: @selected-normal-foreground;
  106. border: 0px;
  107. }
  108. #element-text {
  109. horizontal-align: 0;
  110. padding: 0px 0px 0px 0px;
  111. }
  112. #scrollbar {
  113. width: 4px ;
  114. border: 0;
  115. handle-color: @separatorcolor;
  116. handle-width: 8px ;
  117. padding: 0;
  118. }
  119. #inputbar {
  120. border: 0 0 0 0;
  121. children: [prompt,entry];
  122. }
  123. #entry {
  124. padding: 16px;
  125. font: "Tahoma Italic 20";
  126. placeholder: " Введи слово для перевода";
  127. placeholder-color: @separatorcolor;
  128. }
  129. #prompt {
  130. padding: 16px;
  131. border: 0 0 0 0;
  132. font: "Tahoma Bold 20";
  133. }
  134. #inputbar {
  135. children: [ prompt,entry ];
  136. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement