mine-hyprdots/rofi/powermenu/style.rasi

113 lines
2 KiB
Text
Raw Permalink Normal View History

2024-10-21 22:35:37 +05:30
/*****----- Configuration -----*****/
configuration {
show-icons: false;
2024-10-21 22:35:37 +05:30
}
/*****----- Global Properties -----*****/
* {
font: "JetBrainsMono Nerd Font Mono 12";
background: #11111b;
foreground: #cdd6f4;
selected: #cba6f7;
active: #f5e0dc;
urgent: #f38ba8;
2024-10-21 22:35:37 +05:30
}
/*****----- Main Window -----*****/
window {
transparency: "real";
location: center;
anchor: center;
fullscreen: false;
width: 300px;
x-offset: 0px;
y-offset: 0px;
2024-10-21 22:35:37 +05:30
padding: 4px;
border-radius: 4px;
background-color: @background;
2024-10-21 22:35:37 +05:30
}
/*****----- Main Box -----*****/
mainbox {
enabled: true;
spacing: 2px;
margin: 4px;
padding: 2px;
background-color: @background;
children: [ "listview" ];
2024-10-21 22:35:37 +05:30
}
2024-10-21 22:35:37 +05:30
/*****----- Inputbar -----*****/
inputbar {
enabled: true;
background-color: @background;
text-color: @foreground;
children: ["dummy", "prompt"];
2024-10-21 22:35:37 +05:30
}
prompt {
enabled: true;
padding: 4px;
border-radius: 4px;
background-color: #a6e3a1;
text-color: #313244;
2024-10-21 22:35:37 +05:30
}
/*****----- Listview -----*****/
listview {
enabled: true;
columns: 1;
lines: 6;
cycle: true;
dynamic: true;
scrollbar: false;
layout: vertical;
reverse: false;
fixed-height: true;
fixed-columns: true;
spacing: 4px;
padding: 4px;
background-color: @background;
2024-10-21 22:35:37 +05:30
}
/*****----- Elements (Text Instead of Icons) -----*****/
2024-10-21 22:35:37 +05:30
element {
enabled: true;
padding: 10px;
border-radius: 2px;
background-color: #313244;
text-color: #cdd6f4;
cursor: pointer;
2024-10-21 22:35:37 +05:30
}
2024-10-21 22:35:37 +05:30
element selected.normal {
background-color: #cba6f7;
text-color: #1e1e2e;
}
element-text {
font: "JetBrainsMono Nerd Font Mono 9";
background-color: transparent;
text-color: inherit;
cursor: inherit;
2024-10-21 22:35:37 +05:30
}
/*****----- Message Box -----*****/
2024-10-21 22:35:37 +05:30
message {
enabled: true;
margin: 2px;
padding: 4px;
border-radius: 2px;
background-color: #f5e0dc;
text-color: #1e1e2e;
2024-10-21 22:35:37 +05:30
}
2024-10-21 22:35:37 +05:30
textbox {
background-color: transparent;
text-color: @foreground;
2024-10-21 22:35:37 +05:30
}