68 lines
1.2 KiB
CSS
68 lines
1.2 KiB
CSS
/* Tokyo Night Moon — matches quickshell/config/Theme.qml.
|
|
* Fallback launcher; see ./config for why this exists at all. */
|
|
|
|
* {
|
|
font-family: "Adwaita Sans", sans-serif;
|
|
font-size: 14px;
|
|
}
|
|
|
|
window {
|
|
background-color: rgba(30, 32, 48, 0.96); /* bg_dark */
|
|
border: 1px solid #444a73; /* terminal_black */
|
|
border-radius: 18px;
|
|
}
|
|
|
|
#input {
|
|
margin: 12px;
|
|
padding: 10px 14px;
|
|
border: 1px solid #3b4261; /* fg_gutter */
|
|
border-radius: 12px;
|
|
background-color: #222436; /* bg */
|
|
color: #c8d3f5; /* fg */
|
|
}
|
|
|
|
#input:focus {
|
|
border-color: #82aaff; /* accent */
|
|
}
|
|
|
|
#outer-box {
|
|
margin: 0;
|
|
padding: 0 8px 12px 8px;
|
|
}
|
|
|
|
#scroll {
|
|
margin: 0;
|
|
}
|
|
|
|
#inner-box {
|
|
margin: 0;
|
|
}
|
|
|
|
#entry {
|
|
padding: 8px 10px;
|
|
border-radius: 12px;
|
|
color: #c8d3f5;
|
|
}
|
|
|
|
#entry:selected {
|
|
background-color: #2f334d; /* bg_highlight */
|
|
outline: none;
|
|
}
|
|
|
|
#entry image {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
#text {
|
|
color: #c8d3f5;
|
|
}
|
|
|
|
#entry:selected #text {
|
|
color: #ffffff;
|
|
}
|
|
|
|
/* wofi renders no match text here; keep it muted rather than alarming. */
|
|
#unselected {
|
|
color: #828bb8; /* fg_dark */
|
|
}
|