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

ember-branding

v0.1.0

Published

Ember brand assets — app icons, marks, splash screens, and backdrop textures, plus the deterministic generators that produce them.

Readme

ember-branding

All Ember brand assets in one package, consumed by the mobile app and the website. Every generated asset is produced by the deterministic, dependency-free Node scripts in scripts/ — regenerate everything with:

npm run gen

Assets

| File | Size | Used by | Source | | --- | --- | --- | --- | | assets/icon.png | 1254² | mobile app.json iOS icon | gen-app-icon.js | | assets/icon-512.png | 512² | brand export | gen-app-icon.js | | assets/android-icon.png | 1024² | mobile app.json Android icon | gen-app-icon.js | | assets/adaptive-icon.png | 1024² | mobile app.json adaptive icon (tighter for the circle mask) | gen-app-icon.js | | assets/favicon.png | 48² | mobile app.json web favicon | gen-app-icon.js | | assets/icon-web.png | 1024² | website header/footer mark + apple-touch icon (transparent cutout) | gen-app-icon.js | | assets/icon-web-512.png | 512² | website (transparent cutout) | gen-app-icon.js | | assets/favicon-96.png | 96² | website favicon | hand-derived from the icon (website/scripts/round-icons.swift) | | assets/ember-mark.png | 1024² | brand export (transparent) — feed to image models / icon tooling | gen-ember-mark.js | | assets/ember-mark-dark.png | 1024² | brand export on the app's #0D1117 dark | gen-ember-mark.js | | assets/splash-ember.png | 2048² | interim splash (dark, mark at the optical center) | gen-ember-mark.js | | assets/splash-video-first-frame.png | — | mobile native splash (app.json) + SplashIgnition static frame | first frame of the splash animation | | assets/ember-splash.html | — | self-contained animated splash page (the splash video's source) | authored | | assets/sunburst-thin.png | 2048² | mobile SunBackdropRays (white, tinted at runtime) | gen-sunburst.js | | assets/sunburst-thick.png | 2048² | mobile SunBackdropRays (white, tinted at runtime) | gen-sunburst.js | | assets/horizon-glow.png | 512² | mobile onboarding / alarm background glow (white, tinted at runtime) | gen-horizon-glow.js |

Consuming

Mobile (metro):

const source = require('ember-branding/assets/sunburst-thin.png');

and in app.json, reference through node_modules:

"icon": "./node_modules/ember-branding/assets/icon.png"

Website (Next.js static imports):

import iconWeb from "ember-branding/assets/icon-web.png";
<Image src={iconWeb} … />

Brand colors

The scripts are the source of truth for the mark's recipe: glow #F59E4C, heart #FFF0CD, app dark background #0D1117 (icon field #0B0F14). The runtime ember skins live in the mobile app (content/emberSkins.ts), which is mirrored manually by the website.