Skip to main content

image-analysis

Extract color palettes from images (screenshots, Figma exports, design mockups) to help implement matching UI. Use when the user shares a screenshot, design image, or asks to "match these colors", "extract colors from this image", "implement this design", or "get the color palette".

설치로 이동

소스 정보

저장소
pascalorg/skills
최근 소스 활동
2026년 3월 6일 19:19
감지된 SKILL.md 언어
영어
스타
91
포크
25

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

파일 탐색기
5 개 파일

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
image-analysis
description
Extract color palettes from images (screenshots, Figma exports, design mockups) to help implement matching UI. Use when the user shares a screenshot, design image, or asks to "match these colors", "extract colors from this image", "implement this design", or "get the color palette".
metadata
{"author":"pascalorg","version":"1.0.0"}
# Image Analysis — Color Extraction Extract dominant colors from any image file (PNG, JPG, WebP, BMP, GIF) and return a structured palette. Useful for implementing UIs that match a screenshot, Figma export, or design mockup. ## When to Use - The user provides a screenshot or design image and wants to implement it - The user asks to extract or identify colors from an image - The user wants a color palette from a photo or mockup - The user wants to match their code's colors to a reference image ## How It Works 1. Reads the image file using `get-pixels` to obtain raw pixel data 2. Passes pixel data to `extract-colors` to compute dominant colors 3. Returns a sorted palette (by area/prominence) with hex, RGB, HSL values, and area coverage ## Usage Run the extraction script, passing the image path as the first argument: ```bash bash <skill-path>/scripts/extract-colors.sh /path/to/image.png ``` **Arguments:** - `$1` — Path to the image file (required). Supports PNG, JPG, WebP, BMP, GIF. **Examples:** ```bash # Extract colors from a screenshot bash <skill-path>/scripts/extract-colors.sh ./screenshot.png # Extract colors from a Figma export bash <skill-path>/scripts/extract-colors.sh ~/Downloads/figma-design.jpg ``` ## Output The script outputs a JSON array of colors sorted by prominence: ```json [ { "hex": "#1a1a2e", "red": 26, "green": 26, "blue": 46, "hue": 0.6667, "saturation": 0.2778, "lightness": 0.1412, "area": 0.3241 }, { "hex": "#e94560", "red": 233, "green": 69, "blue": 96, "hue": 0.9724, "saturation": 0.7928, "lightness": 0.5922, "area": 0.1856 } ] ``` | Field | Type | Description | |------------|---------|------------------------------------------| | hex | String | Color as hex string (e.g. `#1a1a2e`) | | red | Integer | Red channel (0-255) | | green | Integer | Green channel (0-255) | | blue | Integer | Blue channel (0-255) | | hue | Number | Hue (0-1) | | saturation | Number | Saturation (0-1) | | lightness | Number | Lightness (0-1) | | area | Number | Relative area/prominence (0-1) | ## Present Results to User After extracting colors, present them as a structured palette: ``` Color Palette (sorted by prominence): 1. #1a1a2e — 32.4% (dark navy) — Primary background 2. #e94560 — 18.6% (coral red) — Accent color 3. #f5f5f5 — 15.2% (light gray) — Secondary background ... ``` Then suggest how to use these colors in the user's codebase: - CSS custom properties / variables - Tailwind config theme colors - Design token definitions - Direct usage in component styles ## Troubleshooting ### "Cannot find module" errors The script auto-installs dependencies (`extract-colors`, `get-pixels`) on first run. If this fails, install them manually: ```bash cd <skill-path>/scripts && npm install ``` ### Unsupported image format The underlying `get-pixels` library supports PNG, JPG, GIF, and BMP. For other formats, convert the image first. ### Large images are slow The `extract-colors` library automatically downsamples to 64,000 pixels by default. For very large images this is already fast, but you can adjust the `pixels` option in the script if needed.
GitHub에서 보기