npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

signal-styler

v1.1.1

Published

Add custom CSS to Signal Desktop

Readme

signal-styler 🎨✨

Make theming Signal Desktop easy!

Adds custom CSS to Signal Desktop.

⚠️ This tool modifies the app.asar of Signal Desktop.
Use at your own risk. Restart Signal after styling.


📦 Installation

Option 1: Install using npm

This works for most platforms. Install Node.js and run:

npm install -g signal-styler

Option 2: Install using AUR

If you use an Arch Linux (btw) based distro, you can install it from the official Arch User Repository package.

Using an AUR helper like paru, yay or trizen:

paru -S signal-styler

Or manually:

git clone https://aur.archlinux.org/signal-styler.git
cd signal-styler
makepkg -si

Option 3: Run from source (for developers)

Only do this to test new features before releases or for contributing.

git clone https://github.com/m-obeid/signal-styler.git
cd signal-styler
npm install -g pnpm # if not working try sudo or install through your package manager
pnpm install
node . -v # run node . instead of signal-styler

🚀 Usage

signal-styler [options] custom.css

Arguments

  • custom.css Path to your custom stylesheet.

Options

  • -a, --asar <path> Path to Signal Desktop’s app.asar to patch. By default, the tool will try to locate it automatically. Useful if Signal is installed via Flatpak.

  • -t, --tray-icons <path> Path to the custom tray icons folder. Useful if you want to override the default tray icons with your own.

    The tray icons folder should have the following structure:

    tray-icons
    ├── alert
    │   ├── signal-tray-icon-16x16-alert-1.png
    │   ├── signal-tray-icon-16x16-alert-2.png
    │   ├── signal-tray-icon-16x16-alert-3.png
    │   ├── signal-tray-icon-16x16-alert-4.png
    │   ├── signal-tray-icon-16x16-alert-5.png
    │   ├── signal-tray-icon-16x16-alert-6.png
    │   ├── signal-tray-icon-16x16-alert-7.png
    │   ├── signal-tray-icon-16x16-alert-8.png
    │   ├── signal-tray-icon-16x16-alert-9.png
    │   ├── signal-tray-icon-16x16-alert-9+.png
    │   ├── signal-tray-icon-256x256-alert-1.png
    │   ├── signal-tray-icon-256x256-alert-2.png
    │   ├── signal-tray-icon-256x256-alert-3.png
    │   ├── signal-tray-icon-256x256-alert-4.png
    │   ├── signal-tray-icon-256x256-alert-5.png
    │   ├── signal-tray-icon-256x256-alert-6.png
    │   ├── signal-tray-icon-256x256-alert-7.png
    │   ├── signal-tray-icon-256x256-alert-8.png
    │   ├── signal-tray-icon-256x256-alert-9.png
    │   ├── signal-tray-icon-256x256-alert-9+.png
    │   ├── signal-tray-icon-32x32-alert-1.png
    │   ├── signal-tray-icon-32x32-alert-2.png
    │   ├── signal-tray-icon-32x32-alert-3.png
    │   ├── signal-tray-icon-32x32-alert-4.png
    │   ├── signal-tray-icon-32x32-alert-5.png
    │   ├── signal-tray-icon-32x32-alert-6.png
    │   ├── signal-tray-icon-32x32-alert-7.png
    │   ├── signal-tray-icon-32x32-alert-8.png
    │   ├── signal-tray-icon-32x32-alert-9.png
    │   ├── signal-tray-icon-32x32-alert-9+.png
    │   ├── signal-tray-icon-48x48-alert-1.png
    │   ├── signal-tray-icon-48x48-alert-2.png
    │   ├── signal-tray-icon-48x48-alert-3.png
    │   ├── signal-tray-icon-48x48-alert-4.png
    │   ├── signal-tray-icon-48x48-alert-5.png
    │   ├── signal-tray-icon-48x48-alert-6.png
    │   ├── signal-tray-icon-48x48-alert-7.png
    │   ├── signal-tray-icon-48x48-alert-8.png
    │   ├── signal-tray-icon-48x48-alert-9.png
    │   └── signal-tray-icon-48x48-alert-9+.png
    └── base
        ├── signal-tray-icon-16x16-base.png
        ├── signal-tray-icon-256x256-base.png
        ├── signal-tray-icon-32x32-base.png
        └── signal-tray-icon-48x48-base.png
  • -v, --version Show the version number.


🔧 Examples

Apply my-theme.css with auto-detected Signal path:

signal-styler my-theme.css

Specify the asar path explicitly, for example for Signal installed in userspace:

signal-styler -a ~/.var/app/org.signal.Signal/files/Signal/resources/app.asar my-style.css

If you get permission errors, run with sudo:

sudo signal-styler custom.css

📝 Notes

  • Only tested on Linux for now. It could work on Windows and macOS too, but I haven't tested it.
  • File a GitHub issue if you run into any issues.
  • The script expects Signal Desktop on Linux to be installed via Flatpak, if not you likely need to use --asar or -a to point to the right file.
  • You can safely re-run the tool with new CSS — it will overwrite the existing stylesheet.
  • Every time Signal updates, you will need to run the tool again to update the stylesheet.

🎨 Themes

signal-styler does not include any themes by default other than purple.css from the GitHub repo, which needs to be downloaded separately.

Here are some that could work (didn't test):

To get one, you just need the CSS file, which might be named manifest.css or something like that. Do not report theme issues to me, but the original author of the theme.


👨‍💻 Author

Made with ❤️ by POCOGuy / m-obeid


📜 License

GPL-3.0-only