Advertisement
gda

rofi theme: debxp-arc-dark-center.rasi

gda
Apr 19th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 4.09 KB | None | 0 0
  1. /**
  2.  * Author: Blau Araujo
  3.  */
  4.  
  5. configuration {
  6.     show-icons:     true;
  7.     drun-icon-theme: "Numix-Circle";
  8.     modi:           "window,run,drun";
  9.     columns:        1;
  10.     lines:          10;
  11.     location:       0;
  12.     display-drun:   "Application";
  13.     display-run:    "Shell";
  14.     display-window: "Window";
  15. }
  16.  
  17. * {
  18.     text-color:                  #E7E8EB;
  19.     background-color:            #282c3a66;
  20.     lightbg:                     #7c818cAA;
  21.     red:                         #C64E44;
  22.     orange:                      #E9A86F;
  23.     blue:                        #5294E2;
  24.    
  25.     font: "Open Sans 12";
  26.    
  27.     spacing:                     0;
  28.     background:                  @background-color;
  29.     foreground:                  @text-color;
  30.     selected-normal-foreground:  @text-color;
  31.     normal-foreground:           @text-color;
  32.     alternate-normal-background: @background-color;
  33.     selected-urgent-foreground:  @text-color;
  34.     urgent-foreground:           @text-color;
  35.     alternate-urgent-background: @background-color;
  36.     active-foreground:           @text-color;
  37.     selected-active-foreground:  @text-color;
  38.     alternate-normal-foreground: @text-color;
  39.     alternate-active-background: @blue;
  40.     bordercolor:                 @text-color;
  41.     normal-background:           @background-color;
  42.     selected-normal-background:  @lightbg;
  43.     separatorcolor:              @orange;
  44.     urgent-background:           @red;
  45.     alternate-urgent-foreground: @text-color;
  46.     selected-urgent-background:  @red;
  47.     alternate-active-foreground: @text-color;
  48.     selected-active-background:  @blue;
  49.     active-background:           @orange;
  50. }
  51. #window {
  52.     border:           0;
  53.     padding:          5;
  54.     text-color:       @foreground;
  55.     background-color: @lightbg;
  56.     width:            40%;
  57. }
  58. #mainbox {
  59.     border:  0px;
  60.     padding: 0px;
  61. }
  62. #message {
  63.     border:     1px dash 0px 0px ;
  64.     text-color: @separatorcolor;
  65.     padding:    2px 0px 0px ;
  66. }
  67. #textbox {
  68.     text-color: @foreground;
  69. }
  70. #listview {
  71.     fixed-height: 0;
  72.     border:       2px 0px 0px ;
  73.     padding:      2px 0px 0px ;
  74.     text-color: @separatorcolor;
  75. }
  76. #element {
  77.     border: 0;
  78.     padding: 5px;
  79. }
  80. #element.normal.normal {
  81.     text-color: @normal-foreground;
  82.     background-color: @normal-background;
  83. }
  84. #element.normal.urgent {
  85.     text-color: @urgent-foreground;
  86.     background-color: @urgent-background;
  87. }
  88. #element.normal.active {
  89.     text-color: @active-foreground;
  90.     background-color: @active-background;
  91. }
  92. #element.selected.normal {
  93.     text-color: @selected-normal-foreground;
  94.     background-color: @selected-normal-background;
  95. }
  96. #element.selected.urgent {
  97.     text-color: @selected-urgent-foreground;
  98.     background-color: @selected-urgent-background;
  99. }
  100. #element.selected.active {
  101.     text-color: @selected-active-foreground;
  102.     background-color: @selected-active-background;
  103. }
  104. #element.alternate.normal {
  105.     text-color: @alternate-normal-foreground;
  106.     background-color: @alternate-normal-background;
  107. }
  108. #element.alternate.urgent {
  109.     text-color: @alternate-urgent-foreground;
  110.     background-color: @alternate-urgent-background;
  111. }
  112. #element.alternate.active {
  113.     text-color: @alternate-active-foreground;
  114.     background-color: @alternate-active-background;
  115. }
  116. #sidebar {
  117.     border: 1px dash 0px 0px ;
  118. }
  119. #button selected {
  120.     text-color: @selected-normal-foreground;
  121.     background-color: @selected-normal-background;
  122. }
  123. #inputbar {
  124.     spacing: 0;
  125.     border: 0px 0px 1px 0px;
  126.     border-color: @lightbg;
  127. }
  128. #button normal {
  129.     text-color: @foreground;
  130. }
  131.  
  132. #inputbar {
  133.     children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  134. }
  135.  
  136. #prompt {
  137.     padding:5px;
  138.     text-color:@blue;
  139.     font: "Open Sans Semibold 12";
  140. }
  141. #textbox-prompt-colon {
  142.     expand:     false;
  143.     str:        ":";
  144.     margin:     0px;
  145.     padding:5px 5px 5px 0px;
  146.     font: "Open Sans Semibold 12";
  147.     text-color: @blue;
  148. }
  149. #entry {
  150.     padding:5px;
  151. }
  152. #case-indicator {
  153.     padding:5px;
  154.     text-color:@blue;
  155.     font: "Open Sans Semibold 12";
  156. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement