Created
March 27, 2019 11:55
-
-
Save mustaqimM/cba74886f15039767db18e8aaeef6aff to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* -*-css-*- vim: set ft=css: */ | |
configuration { | |
display-combi: "$>"; | |
display-drun: ""; | |
display-window: " "; | |
show-icons: true; | |
lines: 10; | |
columns: 1; | |
} | |
* { | |
black: #000000; | |
red: #eb6e67; | |
green: #95ee8f; | |
yellow: #f8c456; | |
blue: #6eaafb; | |
mangenta: #d886f3; | |
cyan: #6cdcf7; | |
emphasis: #50536b; | |
text: #dfdfdf; | |
text-alt: #b2b2b2; | |
fg: #abb2bf; | |
bg: #282c34; | |
spacing: 0; | |
padding: 0px 0px; | |
background-color: transparent; | |
font: "Liga Iosevka 14"; | |
text-color: @text; | |
} | |
window { | |
transparency: "real"; | |
border-radius: 10px; | |
width: 800px; | |
/*padding: 10px;*/ | |
/*fullscreen: true;*/ | |
background-color: #282c34dd; | |
} | |
mainbox { | |
padding: 2% 2%; | |
} | |
inputbar { | |
margin: 0px 0px 2px 0px; | |
children: [prompt, textbox-prompt-colon, entry, case-indicator]; | |
} | |
prompt { | |
text-color: @blue; | |
} | |
textbox-prompt-colon { | |
expand: false; | |
str: ""; | |
text-color: @text-alt; | |
} | |
entry { | |
margin: 0px 310px; | |
} | |
listview { | |
padding: 10px 0px 10px 0px; | |
spacing: 0.3em; | |
dynamic: true; | |
scrollbar: false; | |
} | |
element { | |
padding: 3px; | |
text-color: @text-alt; | |
highlight: bold #6eaafb; /* blue */ | |
border-radius: 13px; | |
} | |
element selected { | |
background-color: @emphasis; | |
text-color: @text; | |
} | |
element urgent, element selected urgent { | |
text-color: @red; | |
} | |
element active, element selected active { | |
text-color: @purple; | |
} | |
message { | |
padding: 5px; | |
border-radius: 3px; | |
background-color: @emphasis; | |
border: 1px; | |
border-color: @cyan; | |
} | |
button selected { | |
padding: 5px; | |
border-radius: 3px; | |
background-color: @emphasis; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment