89 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			89 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
| /************************************************
 | |
|  * ROFI Color theme
 | |
|  * User: leofa
 | |
|  * Copyright: 2017 leofa
 | |
|  ***********************************************/
 | |
| configuration {
 | |
| 	display-drun: "Apps";
 | |
| 	display-window: "Window";
 | |
| 	font: "JetBrainsMono Nerd Font Medium 10";
 | |
| 	drun-display-format: "{icon} {name}";
 | |
| 	show-icons: true;
 | |
| 	icon-theme: "Papirus";
 | |
| 	modi: "window, run, drun, emoji, calc";
 | |
| }
 | |
| 
 | |
| @theme "/dev/null"
 | |
| * {
 | |
|   bg: #BFD8AF;
 | |
|   bg-alt: #D4E7C5;
 | |
|   bg-selected: #E1F0DA;
 | |
| 
 | |
|   fg: #525e48;
 | |
|   fg-alt: #5d6f51;
 | |
| 
 | |
|   
 | |
|   border: 0;
 | |
|   margin: 0;
 | |
|   padding: 0;
 | |
|   spacing: 0;
 | |
| }
 | |
| 
 | |
| window {
 | |
|   width: 30%;
 | |
|   background-color: @bg;
 | |
| }
 | |
| 
 | |
| element {
 | |
|   padding: 8 12;
 | |
|   background-color: transparent;
 | |
|   text-color: @fg-alt;
 | |
| }
 | |
| 
 | |
| element selected {
 | |
|   text-color: @fg;
 | |
|   background-color: @bg-selected;
 | |
| }
 | |
| 
 | |
| element-text {
 | |
|   background-color: transparent;
 | |
|   text-color: inherit;
 | |
|   vertical-align: 0.5;
 | |
| }
 | |
| 
 | |
| element-icon {
 | |
|   size: 14;
 | |
|   padding: 0 10 0 0;
 | |
|   background-color: transparent;
 | |
| }
 | |
| 
 | |
| entry {
 | |
|   padding: 12;
 | |
|   background-color: @bg-alt;
 | |
|   text-color: @fg;
 | |
| }
 | |
| 
 | |
| inputbar {
 | |
|   children: [prompt, entry];
 | |
|   background-color: @bg;
 | |
| }
 | |
| 
 | |
| listview {
 | |
|   background-color: @bg;
 | |
|   columns: 1;
 | |
|   lines: 10;
 | |
| }
 | |
| 
 | |
| mainbox {
 | |
|   children: [inputbar, listview];
 | |
|   background-color: @bg;
 | |
| }
 | |
| 
 | |
| prompt {
 | |
|   enabled: true;
 | |
|   padding: 12 0 0 12;
 | |
|   background-color: @bg-alt;
 | |
|   text-color: @fg;
 | |
| }
 | |
| 
 |