fix(desktop): tooltip colors

This commit is contained in:
Adam
2025-12-31 14:20:21 -06:00
parent d4a2652eda
commit 7f3a0b8e5c
3 changed files with 7 additions and 20 deletions

View File

@@ -38,15 +38,15 @@ export function SessionContextUsage() {
<div class="">
<div class="flex items-center gap-2">
<span class="text-text-invert-strong">{ctx().tokens}</span>
<span class="text-text-invert-weak">Tokens</span>
<span class="text-text-invert-base">Tokens</span>
</div>
<div class="flex items-center gap-2">
<span class="text-text-invert-strong">{ctx().percentage ?? 0}%</span>
<span class="text-text-invert-weak">Usage</span>
<span class="text-text-invert-base">Usage</span>
</div>
<div class="flex items-center gap-2">
<span class="text-text-invert-strong">{cost()}</span>
<span class="text-text-invert-weak">Cost</span>
<span class="text-text-invert-base">Cost</span>
</div>
</div>
}