nixos/dotfiles/wofi/style.css

71 lines
1.1 KiB
CSS
Raw Permalink Normal View History

2023-12-14 17:23:01 -07:00
/*
Nordic Color Scheme
*/
@define-color nord2 #434c5e;
@define-color nord3 #4c566a;
@define-color nord4 #d8dee9;
@define-color nord8 #88c0d0;
@define-color nord_cyan #8fbcbb;
@define-color nord_orange #d08770;
@define-color nord_red #bf616a;
@define-color nord_green #a3be8c;
@define-color nord_yellow #ebcb8b;
@define-color nord_purple #b48ead;
*{
font-family: Overpass Nerd Font;
font-size: 16;
}
window {
border-radius: 10px;
border: 2px solid @nord_purple;
padding: 5px;
}
#input {
margin-bottom: 15px;
padding:6px;
border-radius: 20px;
border:none;
color: @nord4;
font-family: Overpass Nerd Font 18;
}
#inner-box {
border-radius: 10px;
background-color: @nord3;
}
#outer-box {
border-radius: 10px;
margin: 5px;
padding:15px;
background-color: @nord2;
}
#text {
padding: 5px;
color: @nord4;
}
#entry:nth-child(even) {
background-color: @nord2;
}
#entry:selected {
color: @nord_cyan;
background-color: @nord_cyan;
}
#text:selected {
color: @nord_2;
background-color: @nord_cyan;
}
#scroll {
margin: -2px 0px;
}