No description
Find a file
google-labs-jules[bot] 43f04e7454 Fix "Invalid Date" display in album details
- Backfill album release date from tracks if missing in API response.
- Gracefully handle invalid or missing dates in UI rendering.
- Fix potential NaN in download folder naming due to invalid dates.
2025-12-23 13:33:24 +01:00
assets Create asseenonfmhy880x310.png 2025-10-22 22:00:48 +03:00
js Fix "Invalid Date" display in album details 2025-12-23 13:33:24 +01:00
index.html Fix "Invalid Date" display in album details 2025-12-23 13:33:24 +01:00
instances.json Update instances.json 2025-11-05 19:22:12 +02:00
license.md 2 2025-10-10 22:20:23 +03:00
manifest.json fix 2025-10-22 18:03:28 +03:00
readme.md nvm 2025-12-23 15:18:44 +03:00
styles.css Add light theme and fix hardcoded styles 2025-12-23 13:33:24 +01:00
sw.js cc 2025-10-11 19:22:53 +03:00

Monochrome Logo

Monochrome

Monochrome is an open-source, privacy-respecting, ad-free TIDAL web UI, built on top of Hi-Fi.

Monochrome UI

Check it out live at: monochrome.samidy.com

GitHub stars GitHub forks GitHub issues

As seen on FMHY

Warning

This is not the official repository or instance. It is an actively maintained fork. The official one can be found here: https://github.com/eduardprigoana/monochrome . This fork was created because the original project was shut down (as you can see in the repository).

I am Not Affiliated with the original Owner!

Development

Monochrome is built with Vanilla JavaScript, HTML, and CSS. No build step is required (no Webpack, Vite, etc.), but because it uses ES Modules, you must run it over HTTP(S).

Prerequisites

  • A modern web browser
  • A way to serve static files (e.g., Python, VS Code Live Server, Node.js http-server)

Setup

  1. Clone the repository

    git clone https://github.com/SamidyFR/monochrome.git
    cd monochrome
    
  2. Run locally You can use any static file server. For example:

    Using Python 3:

    python3 -m http.server 8000
    

    Using Node.js http-server:

    npx http-server .
    
  3. Open in Browser Navigate to http://localhost:8000 (or whatever port your server uses).

Contributing

  1. Fork the project
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request