No description
Find a file
2026-01-02 00:03:34 +01:00
assets Create asseenonfmhy880x310.png 2025-10-22 22:00:48 +03:00
js IMP: fullscreen lyrics, various css fixes 2026-01-02 00:03:34 +01:00
legacy change font 2025-12-31 14:48:25 +00:00
firebase-setup.md feat: implement firebase synchronization for library and history 2025-12-29 22:18:51 +01:00
index.html IMP: fullscreen lyrics, various css fixes 2026-01-02 00:03:34 +01:00
instances.json new: mix for artists, use new api 2026-01-01 19:27:29 +01:00
INSTANCES.md Instances.md: add QQDL, bump up arjix, remove squid.wtf warning 2025-12-31 20:07:51 +03:00
license.md 2 2025-10-10 22:20:23 +03:00
manifest.json feat(pwa): implement window controls overlay for desktop 2025-12-23 21:18:42 +01:00
readme.md add space between owner & features + update about more 2025-12-23 22:54:19 -08:00
styles.css IMP: fullscreen lyrics, various css fixes 2026-01-02 00:03:34 +01:00
sw.js update SW.js to prevent cache problems 2026-01-02 00:51:59 +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