feat: Add 'Transcendent' rarity color

- Added a new rarity color 'Transcendent' with corresponding text color to the ChampionSkinController.
This commit is contained in:
Rico van Zelst
2024-06-03 18:51:14 +02:00
parent ba7b221568
commit 0d2392eacc

View File

@@ -28,6 +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',
]; ];
return view('skins.index', ['skins' => $skins, 'rarityColor' => $rarityColor]); return view('skins.index', ['skins' => $skins, 'rarityColor' => $rarityColor]);