- 📱 Fully responsive design (desktop, tablet, mobile)
- 🌙 Dark theme with glassmorphism effects
- ⚡ Lightning-fast search and filtering
- 🎨 2026 modern UI/UX standards
- 🖼️ Full-size image previews in modal
- ✅ 2,041 skins cataloged
- ✅ 172 champions
- ✅ 2,038 splash art images downloaded
- ✅ Champion metadata (JSON)
- ✅ CSV and JSON formats
LOL-SKIN-COLLECTION/
├── 📂 web/ # Web application (READY TO USE!)
│ ├── index.html # Main app
│ ├── styles.css # Modern styling
│ ├── app.js # Application logic
│ └── README.md # Web app docs
│
├── 📂 data/ # Data files
│ ├── skins_all.csv # 2,041 skins
│ ├── skins_all.json # JSON format
│ └── meta.json # Metadata
│
├── 📂 assets/ # Media assets
│ ├── splash/ # 2,038 splash arts (~3GB)
│ └── meta/ # Champion metadata
│
├── 📂 scripts/ # Utility scripts
│ ├── export_skins.py
│ ├── download_assets.py
│ ├── find_wad_files.py
│ └── generate_lists.py
│
├── 📂 docs/ # Documentation
│ ├── README.md
│ ├── EXTRACT_GAME_FILES.md
│ └── SKINS_LIST.md
│
└── launch_webapp.py # Quick launcher
python launch_webapp.py✅ Server starts automatically
✅ Browser opens to http://localhost:8000/web/
✅ Ready to browse!
- Navigate to
web/folder - Double-click
index.html - App opens in your default browser
python -m http.server 8000
# Visit: http://localhost:8000/web/- 🔍 Instant Search - Type to find any champion or skin
- 🎨 Chroma Filter - Show only skins with chromas
- ⭐ Prestige Filter - Filter prestige editions
- 🏆 Esports Filter - T1, DRX, SKT, and more
- 👤 Champion Filter - Dropdown to select specific champion
- ⚡ Fast Loading - Optimized performance
- 📱 Responsive - Works on all devices
- 🎯 Click to Enlarge - Full-size splash art previews
- ⌨️ Keyboard Shortcuts -
/for search,Escto close - 🎭 Smooth Animations - 60fps transitions
- 🌙 Dark Theme - Easy on the eyes
- ✨ Glassmorphism - Modern frosted glass effects
- 🎨 League Colors - Signature gold (#C89B3C)
- 📐 Minimalist - Clean, distraction-free interface
| Metric | Count |
|---|---|
| Total Skins | 2,041 |
| Champions | 172 |
| Splash Arts | 2,038 images |
| Skins with Chromas | ~1,200+ |
| Prestige Skins | ~100 |
| Esports Skins | ~150 |
| Data Size | ~3 GB |
| Patch Version | 16.1.1 |
git init
git add .
git commit -m "Initial commit"
git remote add origin https://github.com/username/lol-skins.git
git push -u origin main
# Enable GitHub Pages in repo settings
# Select: main branch, /web foldercd web
netlify deploy --prodcd web
vercel --prod- Frontend: HTML5, CSS3, Vanilla JavaScript
- Styling: CSS Grid, Flexbox, Custom Properties
- Data: CSV parsing, client-side filtering
- Server: Python HTTP server (development)
- Assets: 2,038 splash art images (JPG)
- ⚡ Faster - No build step, instant loading
- 🎯 Simpler - Easy to understand and modify
- 📦 Smaller - No dependencies, pure web standards
- 🚀 Future-proof - Works forever, no updates needed
- CSV:
data/skins_all.csv - JSON:
data/skins_all.json - Metadata:
data/meta.json
- Splash Arts:
assets/splash/- Format:
{Champion}_{SkinNum}_{SkinName}.jpg - Example:
Ahri_15_K-DA_Ahri.jpg
- Format:
- Location:
assets/meta/- Format:
{Champion}.json - Example:
Ahri.json
- Format:
Edit web/styles.css:
:root {
--primary: #c89b3c; /* Gold */
--bg-primary: #0a0e27; /* Dark blue */
--accent-blue: #0ac8b9; /* Teal */
}Edit web/app.js in the applyFilters() method:
if (this.currentFilter === "mythic") {
return skin.skin_name.includes("Mythic");
}Edit web/styles.css:
.skins-grid {
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
/* Change 280px to adjust card size */
}- Images must be in
assets/splash/folder - Filenames must match the pattern in
app.js - If images don't load, check browser console for 404 errors
- Use a local server (not direct file:// protocol)
launch_webapp.pyhandles this automatically- Or use:
python -m http.server 8000
- 2,041 skins load instantly (CSV parsing)
- Images lazy-load as you scroll
- Filtering is client-side (no server needed)
- Favorites system (localStorage)
- Dark/Light theme toggle
- Skin comparison view
- Filter by year/patch
- Filter by skin line (PROJECT, K/DA, etc.)
- Sort options (alphabetical, newest, etc.)
- Grid/List view toggle
- Export filtered results
- Add service worker (offline support)
- Implement virtual scrolling (better performance)
- Add image optimization
- Create backend API
- Add database (SQLite/PostgreSQL)
- User accounts and preferences
All League of Legends assets are property of Riot Games, Inc.
This project is for personal use only. Do not redistribute Riot's assets commercially.
Images not loading?
- Check
assets/splash/folder exists - Verify file paths in browser DevTools
- Use local server (not direct file open)
Data not loading?
- Ensure
data/skins_all.csvexists - Check browser console for errors
- Try refreshing the page
Slow performance?
- Clear browser cache
- Close other tabs
- Check image file sizes
- Check
web/README.mdfor detailed docs - Review
docs/folder for guides - Inspect browser console for errors
You now have a complete, professional, modern web application to browse all League of Legends skins!
Features:
✅ Beautiful 2026 UI
✅ Instant search & filtering
✅ 2,041 skins cataloged
✅ 2,038 splash arts
✅ Fully responsive
✅ Ready to deploy online
Made with ❤️ for League of Legends fans
Last Updated: January 13, 2026
Patch Version: 16.1.1
Total Skins: 2,041
