Multi-hued multi-stop color scales tool adapted for Figma from gka.github.io/palettes/ by Gregor Aisch.
Read Gregor's article: Mastering Multi-hued Color Scales
- swatches
- hex codes
- document styles
- variables
- Runs the TypeScript compiler (
tsc
) to build the main plugin code.ts - Usage:
npm run build:code
- Description: This script uses Vite to build the UI.
- Usage:
npm run build:ui
- Description: This script runs the TypeScript compiler (
tsc
) in watch mode to continuously build the code as changes are made. - Usage:
npm run build:code:watch
- Description: This script uses Vite in watch mode to continuously build the UI as changes are made.
- Usage:
npm run build:ui:watch
- Description: This script uses Vite in watch mode with the development mode enabled to continuously build the UI as changes are made.
- Usage:
npm run build:ui:dev:watch
- Description: This script runs both
build:ui:watch
andbuild:code:watch
concurrently to continuously build both the UI and the code as changes are made. - Usage:
npm run build:watch
- Description: This script runs both
build:ui
andbuild:code
sequentially to build both the UI and the code. - Usage:
npm run build
- Description: This script uses Vite to start a development server to test the UI in the browser outside of Figma.