A collection of beautiful themes for TorBox dashboard, offering multiple color schemes and aesthetics. Transform your torrenting dashboard into a modern, eye-friendly interface with cohesive colors and interactive effects.
- Install Stylus browser extension
 - Click any "Install" button above for your preferred theme
 - Stylus will automatically open with the theme ready to install
 - Click "Install style" and you're done!
 
- Install Stylus or Stylish browser extension
 - Browse the styles folder and choose your theme
 - Copy the CSS content and create a new style in your extension
 - Set the URL to apply to: 
https://torbox.app/* - Save and enjoy!
 
All themes include:
- Complete dashboard theming for the entire TorBox interface
 - Status-aware coloring - different colors for active, cached, private, and ready downloads
 - Interactive hover effects - subtle animations and visual feedback
 - Custom badge styling - clearly distinguished torrent types and statuses
 - Consistent typography - proper text hierarchy with optimized readability
 - Mobile-friendly - responsive design that works on all devices
 
Want to create your own theme or modify an existing one? Each theme uses CSS variables for easy customization:
/* Example: Customizing the Dark Blue theme */
* {
  /* Change the accent color (used for icons and highlights) */
  --color-accent: #ff6b6b; /* Red accent instead of blue */
  /* Adjust background darkness */
  --color-bg: #2c3e50; /* Lighter background */
  --color-bg-alt: #3c5a78; /* Lighter secondary */
  /* Modify badge colors */
  --color-cached: #1abc9c; /* More green for cached */
  --color-badge-private: #e74c3c; /* Red for private */
}Each theme has its unique color scheme:
- Dark Blue: Dark blues and grays
 - Catppuccin: Soft pastels from the Catppuccin palette
 - Amber: Warm golds and oranges
 - Light: Clean whites and light blues
 - Deep Sea: Professional blues and deep ocean tones
 - Fire Sunset: Bold reds, oranges, and warm sunset hues
 - Forest Green: Natural greens and earth tones
 - Ocean Breeze: Deep blues and refreshing cyan accents
 - Ocean Depths: Deep oceanic colors transitioning to mysterious purples
 - Onyx: Sleek blacks and grays inspired by Discord
 - Pastel Dreams: Soft, dreamy pastel colors
 - Vivid Purple: Luxurious purples and royal gradients
 - Torbox But Better: RealDebrid
 
💡 How to add optional features: Copy any of the CSS code blocks below and paste them at the end of your chosen theme file in Stylus.
Blur download titles after 2 seconds of hovering:
/* Blur effect on download titles */
[id^="headlessui-popover-button"] p.text-lg {
  filter: blur(0);
  transition: filter 0.3s;
  transition-delay: 2s;
}
[id^="headlessui-popover-button"]:hover p.text-lg {
  filter: blur(4px);
  transition-delay: 1s;
}Always blur download titles:
/* Indefinitely blur download titles */
[id^="headlessui-popover-button"] p.text-lg {
  filter: blur(4px);
  transition-delay: 1s;
}Best as a user style for easy togglability: 
/* Hide sidebar */
main {
  grid-template-columns: none !important;
}
div.relative.sidebar {
  display: none;
}Hide or show UI elements, like the "Explore Addons" or "Get Extra Time" buttons:
/* Hide addons button */
a.rounded-md.p-2.w-full.bg-\[\#F59E0B\] {
  display: none !important;
}
/* Hide Get more time button */
a.rounded-md.p-2.w-full.bg-red-500 {
  display: none !important;
}Theme not applying?
- Make sure you're on 
https://torbox.app/*(themes work on all TorBox pages) - Clear browser cache and refresh the page
 - Check that your browser extension is enabled and the style is active
 
Some elements not themed?
- TorBox may have updated their CSS classes
 - Try a different theme to see if it's theme-specific
 - Right-click the element, inspect, and note the class names
 - Open an issue with the details and screenshots
 
Canvas graph still showing original colors?
- Canvas elements can't be styled with CSS
 - This is a known limitation - the graph colors are hardcoded in JavaScript
 
Install button not working?
- Make sure you have Stylus installed and enabled
 - Try right-clicking the install link and selecting "Save link as" to download manually
 - You can then import the .css file into Stylus
 
- Tested on: Chrome, Firefox, Edge, Safari
 - TorBox Version: Compatible with current version (August 2025)
 - Browser Extensions: Stylus (recommended), Stylish, and other UserCSS-compatible extensions
 
Found an unthemed element, want to suggest improvements, or create a new theme? We'd love your help:
- Report Issues: Open an issue with screenshots and browser details
 - Submit Themes: Create a pull request with your new theme in the 
styles/folder - Share Customizations: Show off your color modifications in discussions
 - Suggest Features: Request new themes or improvements
 
- Fork the repository
 - Create a new 
.user.cssfile in thestyles/folder - Follow the existing naming convention: 
torbox-[theme-name].user.css - Include proper UserCSS metadata at the top
 - Update this README with your theme in the table
 - Submit a pull request
 
- Original Dark Blue theme inspired by monkeytype.com
 - Catppuccin theme uses colors from the Catppuccin project
 
If you enjoy these themes and would like to support my work, consider buying me a coffee! ☕
Transform your TorBox experience with beautiful, functional themes












