# t_985618a5 — Buy credit pack CTA contrast fix

Site: https://aieditorrsp.net
Route: /ai-photo-prompt-editor
Repo: /root/projects/aieditorrsp

## Change

Patched `src/app/globals.css` so compact account panel secondary CTAs no longer render teal text on teal background.

Rule added:

```css
.account-panel--compact .account-panel__actions a:not(:first-child){
  background:#0b0d10!important;
  color:#43ddbc!important;
  border-color:#303844!important;
}
.account-panel--compact .account-panel__actions a:not(:first-child):hover{
  border-color:#43ddbc!important;
  color:#f4efe6!important;
}
```

## Build / deploy

- `npm run build`: PASS
- `npm run deploy`: PASS
- Deploy version: `f1aa29ed-d65a-4055-8379-ab56f4924dd6`
- Commit: `3cee46b87dddd4cc75d47cd87e1dd058c5027224`
- Branch: `main`, pushed to `origin/main`

## Production smoke

- `/`: 200
- `/ai-photo-prompt-editor`: 200
- `/robots.txt`: 200
- `/sitemap.xml`: 200

## Browser/CDP evidence

Production tab target: `B758E1AB189006D6A33542DAA194428D`

Computed style for `Buy credit pack` on production `/ai-photo-prompt-editor`:

```json
{
  "found": true,
  "color": "rgb(67, 221, 188)",
  "backgroundColor": "rgb(11, 13, 16)",
  "borderColor": "rgb(48, 56, 68)",
  "width": 136.03125,
  "height": 42,
  "visible": true,
  "ruleMatch": true,
  "sameColorFailure": false,
  "bodyTextAround": "GENERATION CREDITS\n\nFree quota is active\n\nAnonymous users can use the daily free quota. Sign in with Google to attach paid credits, receipts, and Stripe checkout entitlement to your account.\n\nUPGRADE TO PRO\nBUY CREDIT PACK\nSIGN IN"
}
```

Verdict: fixed. Foreground is teal `rgb(67,221,188)`, background is dark `rgb(11,13,16)`, so the original same-color failure is gone.

## Git status after

Clean: `## main...origin/main`
