Import, edit, and export palettes across Procreate, Adobe, and GIMP formats.
Open Web App β’
Download Desktop
Available for web, Windows, macOS, and Linux
- Import
.swatches,.ase,.gpl,.aco,.act,.pal,.sketchpalette,.json,.css,.scss,.less,.hexand.txtpalettes. - Pull a palette out of any image, automatically or by picking points yourself.
- Generate palettes by style (analogous, complementary, triadic, etc.) with optional base colors.
- Edit colors, rename, reorder by drag-and-drop, and switch between HEX/RGB/HSB/HSL/CMYK/LAB views.
- Export single or batch palettes to ASE, Swatches, and GIMP GPL (zip downloads for multi-export).
- Quick exports for PNG, PDF, CSS variables, Tailwind config, SVG, JSON, and embed snippets.
- Share palettes via URL (Coolors, X, Pinterest) and import from shared links.
- Preferences and palettes are stored locally in the browser/desktop app.
Go to the examples folder to see some converted palettes like this one:
Converted palette imported in Photoshop
The project now includes a cross-platform GUI that runs in the browser (Firebase Hosting) and as a desktop app for Windows, macOS, and Linux.
- Install dependencies with
npm install. - Start the dev server with
npm run dev:web. - Build a static site with
npm run build:web(output:dist-web). - Preview the static build with
npm run preview:web. - Upload palette files (
.swatches,.ase,.gpl,.aco,.act,.pal,.sketchpalette,.json,.css,.scss,.less,.hex,.txt) or an image to take the colors from. - Generate new palettes, edit names/colors, and reorder swatches.
- Export single palettes or batch export as ASE/Swatches/GPL.
- Use quick exports for images, PDF, CSS, Tailwind, SVG, JSON, embed snippets, or share URLs.
Use the Firebase CLI to deploy the web build without GitHub Actions. The repo is
already configured for Hosting in firebase.json (public dir: dist-web).
- Install the Firebase CLI once:
npm install -g firebase-tools. - Authenticate:
firebase login. - Link this repo to a Firebase project.
- Build the web assets:
npm run build:web. - Deploy Firestore rules and Hosting:
firebase deploy --only firestore:rules,hosting.
Project linking options:
- Create a local alias file:
firebase use --add(creates.firebaserc). - Or deploy with an explicit project each time:
firebase deploy --project <PROJECT_ID> --only firestore:rules,hosting.
Optional local preview:
- Build the web assets:
npm run build:web. - Serve the Hosting build locally:
firebase serve --only hosting.
Multiple Hosting targets (staging/testing/production):
Use Firebase Hosting targets to map additional sites to this repo. Example for a production target:
firebase target:apply hosting production palettes
firebase deploy --only hosting:productionPalette Studio can sync palettes between devices, publish public palettes, and show a discovery feed using Firebase Auth + Firestore (Spark/free tier).
- Create a Firebase project (Spark plan) and add a Web app.
- Enable Authentication β Sign-in method β Google (and optionally add your support email).
- Create a Firestore database in production mode.
- Copy the Firebase config into
web/.envusingweb/.env.exampleas a guide:VITE_FIREBASE_API_KEY=... VITE_FIREBASE_AUTH_DOMAIN=... VITE_FIREBASE_PROJECT_ID=... VITE_FIREBASE_APP_ID=... VITE_FIREBASE_STORAGE_BUCKET=... VITE_FIREBASE_MESSAGING_SENDER_ID=... VITE_FIREBASE_APP_CHECK_KEY=... (optional) - Restart the dev server or rebuild the app.
Optional: GitHub Actions secrets
Add the same VITE_FIREBASE_* keys as repository secrets to ensure builds
deploy with Firebase enabled (for hosting and releases).
The deployment workflow also requires a FIREBASE_SERVICE_ACCOUNT repository
secret containing the complete JSON key for a service account with Firebase
Hosting Admin and Firebase Rules Admin access to the project.
Recommended Firestore rules
Use rules that only allow authenticated users to read/write their own sync document, and allow public palettes to be read by anyone while restricting writes to their owners. The repo now includes a hardened baseline in firestore.rules with per-user access, size limits, and simple rate limits.
Deploy firestore.rules before shipping a client whose sync payload has changed: firebase deploy --only firestore:rules. The GitHub deployment workflow does this before publishing Hosting; its service account therefore needs the Firebase Rules Admin role (roles/firebaserules.admin) in addition to its Hosting permissions.
Palette Studio can be wrapped as an Android app using Capacitor:
- Build the web app:
npm run build:web - Add Android once:
npx cap add android - Sync web assets:
npm run build:android - Open Android Studio:
npm run open:android
Be sure to register the Android app in Firebase and add the generated
google-services.json to the Android project when you enable sync.
To ensure only this app can talk to Firebase:
- Restrict API keys in Google Cloud Console β APIs & Services β Credentials.
- For web: restrict HTTP referrers to your production domains.
- For Android: restrict by package name and SHA-1 certificate fingerprints.
- Enable App Check with reCAPTCHA v3 (web) and Play Integrity (Android) to stop unauthorized clients.
- Web uses
VITE_FIREBASE_APP_CHECK_KEY(reCAPTCHA v3 site key). - Electron/desktop needs a custom App Check provider if you plan to enforce App Check on Firestore.
- Web uses
- Lock down Firestore rules (see above) and avoid public write access.
- Rotate keys if you suspect leakage and keep
.envout of version control.
- Run
npm run dev:desktopto launch the Electron app with hot reload. - Build the desktop bundle with
npm run build:desktop(outputs:dist-electron,dist-web). - Build installers with
npm run dist:desktop(outputs:release). - Desktop mode uses the same drag-and-drop workflow and saves zip exports via a native dialog.
Code signing (recommended) Configure CI signing secrets so releases are signed on Windows/macOS:
- Windows:
WIN_CSC_LINK,WIN_CSC_KEY_PASSWORD - macOS:
MAC_CSC_LINK,MAC_CSC_KEY_PASSWORD,APPLE_ID,APPLE_APP_SPECIFIC_PASSWORD,APPLE_TEAM_ID
Be sure to have Node.js 22.22+ installed, then:
- Download or clone the repo.
- Run
npm installin the root folder to install dependencies. - Add your palette files in the
palette-infolder. Anything the app reads works here:.swatches,.ase,.gpl,.aco,.act,.pal,.sketchpalette,.json,.css,.scss,.less,.hexand.txt. - Run
npm run convertto convert the palettes into the formats you choose. - The converted files should be in the
palette-outfolder.
The input/output folders, color naming, and optional black & white colors can be changed in: config.json
- inFolder: folder used to read the palette files.
- outFolder: folder used to output the converted palettes.
- outFormats: output formats as an array or comma-separated string. Use
ase,swatches,gpl, orall. Defaults toase. - colorNameFormat: sets the collection of color names to be used. Available namings are: roygbiv, basic, html, x11, pantone, ntc. See color namer for reference.
- addBlackWhite: if true, two extra colors will be added:
Converted palette with extra black and white colors imported in Photoshop
- Run unit tests with
npm test. - Run coverage with
npm run test:coverage. - Run GUI tests with
npm run test:gui(installs Playwright as needed).
Source of the provided palettes:
