Skip to content

Instantly share code, notes, and snippets.

@surfaceflinger
Last active February 6, 2026 08:26
Show Gist options
  • Select an option

  • Save surfaceflinger/2ede5b03fca2fee7fc0d60a7528235e4 to your computer and use it in GitHub Desktop.

Select an option

Save surfaceflinger/2ede5b03fca2fee7fc0d60a7528235e4 to your computer and use it in GitHub Desktop.
Very simple Custom CSS for Kagi that makes results more readable, like in old Google Search.
:root {
--search-result-title: #1a0dab;
--search-result-url-link: #006621;
--result-item-title-border: rgba(0, 0, 0, 0);
}
@media (prefers-color-scheme: dark) {
:root {
--search-result-title: #99c3ff;
--search-result-url-link: #b2d2a4;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment