Highlighting: - Dynamic plugin results (calculator, converter, websearch, filesearch) get a subtle accent left-border + background tint when auto-detected - Exact name matches (case-insensitive) are highlighted the same way - Exact match on apps gets a higher score boost (50k) than other providers (30k), so apps rank first when names match exactly Shadow: - Removed hardcoded box-shadow from all theme CSS files - Added --owlry-shadow variable in base.css (defaults to none) - Themes can opt into shadow via --owlry-shadow if desired CSS class: .owlry-result-highlight on ResultRow
113 lines
2.5 KiB
CSS
113 lines
2.5 KiB
CSS
/*
|
|
* Owlry - Nord Theme
|
|
* An arctic, north-bluish color palette
|
|
* https://nordtheme.com/
|
|
*
|
|
* Usage: Copy to ~/.config/owlry/themes/nord.css
|
|
* Set theme = "nord" in config.toml
|
|
*/
|
|
|
|
:root {
|
|
--owlry-bg: #2e3440;
|
|
--owlry-bg-secondary: #3b4252;
|
|
--owlry-border: #4c566a;
|
|
--owlry-text: #eceff4;
|
|
--owlry-text-secondary: #d8dee9;
|
|
--owlry-accent: #88c0d0;
|
|
--owlry-accent-bright: #8fbcbb;
|
|
--owlry-badge-app: #a3be8c;
|
|
--owlry-badge-cmd: #81a1c1;
|
|
--owlry-badge-dmenu: #ebcb8b;
|
|
--owlry-badge-uuctl: #bf616a;
|
|
}
|
|
|
|
.owlry-main {
|
|
background-color: rgba(46, 52, 64, 0.95);
|
|
border: 1px solid rgba(76, 86, 106, 0.6);
|
|
}
|
|
|
|
.owlry-search {
|
|
background-color: rgba(59, 66, 82, 0.8);
|
|
border: 2px solid rgba(76, 86, 106, 0.5);
|
|
color: var(--owlry-text);
|
|
caret-color: var(--owlry-accent);
|
|
}
|
|
|
|
.owlry-search:focus {
|
|
border-color: var(--owlry-accent);
|
|
box-shadow: 0 0 0 2px rgba(136, 192, 208, 0.2);
|
|
}
|
|
|
|
.owlry-result-row:hover {
|
|
background-color: rgba(59, 66, 82, 0.6);
|
|
}
|
|
|
|
.owlry-result-row:selected {
|
|
background-color: rgba(136, 192, 208, 0.15);
|
|
border-left: 3px solid var(--owlry-accent);
|
|
}
|
|
|
|
.owlry-result-row:selected .owlry-result-name {
|
|
color: var(--owlry-accent-bright);
|
|
}
|
|
|
|
.owlry-result-row:selected .owlry-result-icon {
|
|
color: var(--owlry-accent);
|
|
}
|
|
|
|
.owlry-badge-app {
|
|
background-color: rgba(163, 190, 140, 0.2);
|
|
color: var(--owlry-badge-app);
|
|
}
|
|
|
|
.owlry-badge-cmd {
|
|
background-color: rgba(129, 161, 193, 0.2);
|
|
color: var(--owlry-badge-cmd);
|
|
}
|
|
|
|
.owlry-badge-dmenu {
|
|
background-color: rgba(235, 203, 139, 0.2);
|
|
color: var(--owlry-badge-dmenu);
|
|
}
|
|
|
|
.owlry-badge-uuctl {
|
|
background-color: rgba(191, 97, 106, 0.2);
|
|
color: var(--owlry-badge-uuctl);
|
|
}
|
|
|
|
.owlry-filter-button:checked {
|
|
background-color: rgba(136, 192, 208, 0.2);
|
|
color: var(--owlry-accent);
|
|
border-color: rgba(136, 192, 208, 0.4);
|
|
}
|
|
|
|
.owlry-filter-app:checked {
|
|
background-color: rgba(163, 190, 140, 0.2);
|
|
color: var(--owlry-badge-app);
|
|
border-color: rgba(163, 190, 140, 0.4);
|
|
}
|
|
|
|
.owlry-filter-cmd:checked {
|
|
background-color: rgba(129, 161, 193, 0.2);
|
|
color: var(--owlry-badge-cmd);
|
|
border-color: rgba(129, 161, 193, 0.4);
|
|
}
|
|
|
|
.owlry-filter-uuctl:checked {
|
|
background-color: rgba(191, 97, 106, 0.2);
|
|
color: var(--owlry-badge-uuctl);
|
|
border-color: rgba(191, 97, 106, 0.4);
|
|
}
|
|
|
|
scrollbar slider {
|
|
background-color: rgba(76, 86, 106, 0.5);
|
|
}
|
|
|
|
scrollbar slider:hover {
|
|
background-color: rgba(76, 86, 106, 0.7);
|
|
}
|
|
|
|
scrollbar slider:active {
|
|
background-color: var(--owlry-accent);
|
|
}
|