The Disney+ Hotstar Clone maintains a consistent dark theme across all three pages —Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Vipul-Gejage/Disney-Hotstar-Clone/llms.txt
Use this file to discover all available pages before exploring further.
Hotstar.html, login.html, and otp.html. The base background throughout is #0c111b (deep navy), and the primary interactive accent is #1f80e0 (blue). These two values appear repeatedly across Hotstar.css and login.css, making a full palette swap straightforward: locate every instance of each hex code and replace it with your chosen color.
Color Palette Reference
The table below lists every color role, the CSS selector that controls it, and the exact value from the source files.| Role | Selector | Value |
|---|---|---|
| Page background | body background | #0c111b |
| Navbar background | .navbar background | #0c111b |
| Slide content overlay | .slide-content gradient start | #030b17 |
| Primary accent (buttons) | .sub-btn background | #1f80e0 |
| Search focus border | .search-box:focus border-color | #1f80e0 |
| Watchlist alert screen | #fullscreen-alert background | rgba(0, 0, 0, 0.9) |
| Alert dialog background | .alert-content background | #0c111b |
| Login card background | .container background | #fff |
| Login button | button background | #095ae5 |
| Login button hover | button:hover background | #062a99 |
| Card hover overlay | .card-body gradient end | #192133 |
Key Color Declarations
The following CSS excerpts show exactly where each color is defined in the source. Every rule is taken directly fromHotstar.css and login.css.
Changing the Primary Accent Color
The blue accent#1f80e0 appears in three places across Hotstar.css:
.sub-btnbackground — the “Subscribe” button in the navbar.search-box:focusborder-color — the highlighted search field border.alert-content buttonbackground — the “Close” button in the watchlist alert overlay
#e03030), make the following edits in Hotstar.css:
login.css as #095ae5 (button) and #062a99 (hover). Update both values there as well to keep the two pages visually consistent.
Switching to a Light Theme
The project is built as a dark-first UI, but converting to a light theme requires updating a small set of selectors. At minimum, change these rules inHotstar.css:
body→ setbackgroundto a light value (e.g.,#f4f4f4).navbar→ setbackgroundto match the new page background.slide-content→ replace the gradient’s dark start color#030b17.pre-btnand.nxt-btn→ the gradient overlays reference#0c111b; update both to match the new background.alert-content→ setbackgroundto a light surface color
color: #fff — change these to a dark foreground color (e.g., #111) for legibility on a light background. The .name, .des, and .title selectors in Hotstar.css are the relevant targets.