dotfiles/hyprland/.config/wofi/style.css

58 lines
962 B
CSS

/* ::root{ */
/* --accent: #5291e2; */
/* --dark: #383C4A; */
/* --light: #7C818C; */
/* --ld: #404552; */
/* --dl: #4B5162 */
/* --white: white; */
/* } */
/* The whole window */
window {
background-color: transparent;
border-radius: 8px;
color: #ebdbb2;
}
/* The outermost box that contains everything */
#outer-box {
border-radius: 8px;
padding: 1em;
background-color: rgba(40,40,40,0.8);
}
/* The box that contains all the search results */
#inner-box {
background: transparent
margin: 5px;
}
/* The search bar */
#input {
margin: 5px;
border-radius: 8px;
border: none;
background-color: #32302f;
color: #ebdbb2;
}
/* The scrollbar */
#scroll {
}
/* The text for every search result entry */
#text {
padding: 5px;
color: #ebdbb2;
}
/* The container for every entry */
#entry {
background-color: transparent;
border: 4px solid transparent;
border-radius: 8px;
}
#entry:selected {
border: 4px solid #83a598;
}