mirror of
https://github.com/ksyasuda/aniwrapper.git
synced 2024-10-28 04:44:11 -07:00
114 lines
2.0 KiB
Plaintext
114 lines
2.0 KiB
Plaintext
/*******************************************************************************
|
|
* ROUNDED THEME FOR ROFI
|
|
* User : LR-Tech
|
|
* Theme Repo : https://github.com/lr-tech/rofi-themes-collection
|
|
*******************************************************************************/
|
|
|
|
* {
|
|
font: "Roboto 12";
|
|
|
|
background-color: transparent;
|
|
text-color: @fg0;
|
|
|
|
margin: 0px;
|
|
padding: 0px;
|
|
spacing: 0px;
|
|
bg0: #2E3440F2;
|
|
bg1: #3B4252;
|
|
bg2: #4C566A80;
|
|
bg3: #88C0D0F2;
|
|
fg0: #D8DEE9;
|
|
fg1: #ECEFF4;
|
|
fg2: #D8DEE9;
|
|
fg3: #4C566A;
|
|
}
|
|
|
|
window {
|
|
location: center;
|
|
width: 80%;
|
|
border-radius: 24px;
|
|
background-color: @bg0;
|
|
anchor: center;
|
|
}
|
|
|
|
mainbox {
|
|
padding: 12px;
|
|
}
|
|
|
|
inputbar {
|
|
background-color: @bg1;
|
|
border-color: @bg3;
|
|
|
|
border: 2px;
|
|
border-radius: 16px;
|
|
|
|
padding: 8px 16px;
|
|
spacing: 8px;
|
|
children: [ prompt, entry, case-indicator ];
|
|
}
|
|
|
|
prompt {
|
|
text-color: @fg2;
|
|
}
|
|
|
|
entry {
|
|
placeholder: "Search";
|
|
placeholder-color: @fg3;
|
|
text-color: @fg0;
|
|
}
|
|
|
|
case-indicator {
|
|
spacing: 0;
|
|
text-color: @bg3;
|
|
}
|
|
|
|
message {
|
|
margin: 12px 0 0;
|
|
border-radius: 16px;
|
|
border-color: @bg2;
|
|
background-color: @bg2;
|
|
}
|
|
|
|
textbox {
|
|
padding: 8px 24px;
|
|
}
|
|
|
|
listview {
|
|
background-color: transparent;
|
|
|
|
margin: 12px 0 0;
|
|
lines: 12;
|
|
columns: 2;
|
|
|
|
fixed-height: false;
|
|
scrollbar: false;
|
|
}
|
|
|
|
element {
|
|
padding: 8px 16px;
|
|
spacing: 8px;
|
|
border-radius: 16px;
|
|
}
|
|
|
|
|
|
element normal active, element alternate active {
|
|
background-color: @bg3;
|
|
}
|
|
|
|
element selected normal, element selected active {
|
|
background-color: @bg3;
|
|
text-color: @bg1;
|
|
}
|
|
|
|
element-icon {
|
|
size: 1em;
|
|
vertical-align: 0.5;
|
|
}
|
|
|
|
element-text {
|
|
text-color: inherit;
|
|
}
|
|
element selected {
|
|
text-color: @bg1;
|
|
}
|