Skip to content

Commit 6b1255f

Browse files
authored
Merge pull request #880 from nonso7/fix/gradient-theme-tokens-stellar-chat
fix(frontend): replace hardcoded gradients in StellarChatInterface wi…
2 parents edbeee2 + 835f1dc commit 6b1255f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

dex_with_fiat_frontend/src/components/StellarChatInterface.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -477,11 +477,11 @@ function StellarChatInterfaceContent() {
477477
</button>
478478

479479
<div className="flex items-center gap-2">
480-
<div className="w-8 h-8 rounded-full bg-gradient-to-br from-blue-500 to-purple-600 flex items-center justify-center">
480+
<div className="w-8 h-8 rounded-full bg-[var(--color-primary)] flex items-center justify-center">
481481
<Star className="w-4 h-4 text-white" />
482482
</div>
483483
<div>
484-
<h1 className="text-xl font-bold bg-gradient-to-r from-blue-600 to-indigo-600 bg-clip-text text-transparent">
484+
<h1 className="text-xl font-bold text-[var(--color-primary)]">
485485
{t('header.title')}
486486
</h1>
487487
<p
@@ -659,7 +659,7 @@ function StellarChatInterfaceContent() {
659659
) : (
660660
<button
661661
onClick={connect}
662-
className="flex items-center gap-2 px-4 py-2 bg-gradient-to-r from-blue-600 to-purple-600 hover:from-blue-700 hover:to-purple-700 text-white text-sm font-medium rounded-lg transition-all"
662+
className="flex items-center gap-2 px-4 py-2 bg-[var(--color-primary)] hover:bg-[var(--color-primary-hover)] text-white text-sm font-medium rounded-lg transition-all"
663663
>
664664
<Wallet className="w-4 h-4" />
665665
{t('header.connect_freighter')}

0 commit comments

Comments
 (0)