DEV Community

Cover image for ๐ŸŽจ I built a Tailwind/NativeWind color palette generator with real-time mobile mockups
TW
TW

Posted on

๐ŸŽจ I built a Tailwind/NativeWind color palette generator with real-time mobile mockups

As a React Native developer, I constantly found myself struggling with visualizing color palettes โ€” especially when working with TailwindCSS and NativeWind for mobile UIs.

Picking a few hex codes from a palette site just wasnโ€™t cutting it. I wanted a way to see how color choices actually looked in a real mobile app before committing.

So I built: ๐Ÿ‘‰ ColorWind.dev


๐Ÿ”ง What is ColorWind?

ColorWind is a dev tool that lets you build, preview, and export custom color palettes for mobile apps โ€” with real-time previews in mobile UI mockups.

Hereโ€™s what it offers:

โœ… Real-Time Previews
Build themes visually instead of guessing hex codes. See your color changes reflected instantly on light/dark mobile UI mockups.

โœ… Tailwind/NativeWind Support
Instantly export a valid tailwind.config.js or .ts file.

โœ… No Login. No Setup.
Just open the app, start customizing, and download your theme config.

โœ… Canvas Mode (like Figma).
Easily navigate mockups with zoom and pan controls


๐Ÿ–ผ๏ธ Why Mobile Mockups?

Most color tools out there give you boxes, grids, or gradients. But mobile UI design is more than just pretty colors โ€” itโ€™s about how those colors feel in a real app.

With ColorWind, you get:

  • Buttons, headers, backgrounds, and cards previewed live
  • Light and dark toggle to test both modes instantly
  • A realistic way to build themes youโ€™d actually ship

๐Ÿ“ฆ Tailwind Config Export
Once youโ€™re happy with your theme, hit Export to get a prebuilt config:

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        primary: '#...',
        background: '#...',
        text: '#...',
      }
    }
  }
}
Enter fullscreen mode Exit fullscreen mode

You can use this directly in TailwindCSS with NativeWind for React Native projects.


โœจ Why I Built It
This started as a personal tool for my own workflow, but after sharing early previews with some dev friends, I realized:

โ€œWaitโ€ฆ everyone struggles with color config in mobile too.โ€

So I polished it up and launched it as a free tool โ€” no login, no paywall, just pure dev utility.

๐Ÿš€ Try It Out
๐Ÿ”— Visit ColorWind.dev

If you're a mobile dev who builds with TailwindCSS/NativeWind, Iโ€™d love to hear your thoughts!


Feel free to:

๐Ÿ‘‰๐Ÿป Try it
๐Ÿซฃ Break it
๐Ÿค— Suggest features
๐Ÿ˜„ Tell me what sucks

๐Ÿ™ Thanks


Building this was a fun journey. If it helps even a few devs save time or design better, Iโ€™ll consider it a win.

If you enjoy it, consider sharing with your team or on Twitter/X.
Every little shoutout helps indie tools like this grow โค๏ธ

Top comments (0)