Tagify dropdown active item has dark text on dark blue in Gin (1.2.51 regression)
## Problem
In Gin light mode, the active item in any Tagify autocomplete dropdown renders as near-black text on a dark-blue background — a contrast failure that makes the highlighted suggestion unreadable.
Computed styles on `.tagify__dropdown__item--active` in 1.2.51:
- `background-color: rgb(5, 80, 230)` (`--gin-color-primary`)
- `color: rgb(34, 35, 48)` (`--gin-color-text`)
On 1.2.50 the same item computes `color: rgb(255, 255, 255)`.
## Cause
Commit [`51a05a69`](https://git.drupalcode.org/project/tagify/-/commit/51a05a69ec7fb61720b82a34ce39f2c9650d2540) (from #3573529) added a `color` rule to `.tagify__dropdown__item` without pairing it with an explicit `color` on `.tagify__dropdown__item--active`. Before that, the upstream Tagify default (white text) inherited correctly onto the dark active background. Now Gin's text color wins.
Dark mode and Drupal CMS Core Navigation are unaffected — they each set their own active-item color with higher specificity.
## Proposed fix
```css
.tagify__dropdown__item--active {
color: #fff !important;
background: var(--gin-color-primary) !important;
}
```
Patch attached.
## Steps to reproduce
1. `drupal/tagify` 1.2.51, Gin admin theme, light mode.
2. Edit a node with a `tagify_entity_reference_autocomplete_widget` field.
3. Type into the input to open the dropdown.
4. First (auto-highlighted) suggestion: dark blue background, near-black text.
issue