style: update rarity color for 'Transcendent'

- Change the rarity color class for 'Transcendent' from 'text-orange-400' to 'text-violet-400'.
This commit is contained in:
Rico van Zelst
2024-06-03 18:54:05 +02:00
parent 0d2392eacc
commit 1616891d21

View File

@@ -28,7 +28,7 @@ class ChampionSkinController extends Controller
'Rare' => 'text-pink-300', 'Rare' => 'text-pink-300',
'Mythic' => 'text-purple-500', 'Mythic' => 'text-purple-500',
'Ultimate' => 'text-yellow-400', 'Ultimate' => 'text-yellow-400',
'Transcendent' => 'text-orange-400', 'Transcendent' => 'text-violet-400',
]; ];
return view('skins.index', ['skins' => $skins, 'rarityColor' => $rarityColor]); return view('skins.index', ['skins' => $skins, 'rarityColor' => $rarityColor]);