<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
Overriding wagtailautocomplete's unintuitive color scheme.

All hex values are taken from Wagtail's style guide.
 */

li.c-wagtailautocomplete__suggestions__item--active {
    background-color: #43b1b0;
    color: #fafafa;
}

li.c-wagtailautocomplete__suggestions__item--active path {
    fill: #fafafa;
}

div.c-wagtailautocomplete__selection {
    background-color: #fafafa;
    border: 1px solid #e6e6e6;
    color: #404040;
}

div.c-wagtailautocomplete__selection path {
    fill: #404040;
}
</pre></body></html>