From b246232ae4eb77c683d373a9a38fedf0e0fec103 Mon Sep 17 00:00:00 2001 From: Rico van Zelst Date: Fri, 6 Dec 2024 14:12:25 +0100 Subject: [PATCH] fix: Add new Skin Rarity --- app/Http/Controllers/ChampionSkinController.php | 1 + tailwind.config.js | 1 + 2 files changed, 2 insertions(+) diff --git a/app/Http/Controllers/ChampionSkinController.php b/app/Http/Controllers/ChampionSkinController.php index 4eb698b..5f7e7dd 100644 --- a/app/Http/Controllers/ChampionSkinController.php +++ b/app/Http/Controllers/ChampionSkinController.php @@ -30,6 +30,7 @@ public function index(Request $request) 'Mythic' => 'text-purple-500', 'Ultimate' => 'text-yellow-400', 'Transcendent' => 'text-violet-400', + 'Exalted' => 'text-violet-300', ]; return view('skins.index', ['skins' => $skins, 'rarityColor' => $rarityColor])->fragmentIf($request->hasHeader('HX-Request'), 'skin-list'); diff --git a/tailwind.config.js b/tailwind.config.js index 5bd8ac5..e1d050e 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -18,6 +18,7 @@ module.exports = { "text-purple-500", "text-yellow-400", "text-violet-400", + "text-violet-300", ], theme: { extend: {