Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

openclaw-color-paletteOpenClaw color palette 开发

Agent Skill

openclaw-color-palette 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

13,344

周安装

556

GitHub Stars

1

下载量

4,448
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:openclaw-color-palette(OpenClaw color palette 开发)
来源仓库:https://github.com/yedanyagamiai-cmd/openclaw-color-palette
安装命令:
openclaw skills install openclaw-color-palette
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install openclaw-color-palette

简介

生成和谐调色板并验证 WCAG 2.1 可访问性对比度。

  • 适用于前端设计、UI 开发和视觉规范制定。openclaw-color-palette 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 安装后可在 OpenClaw 中辅助界面样式决策。
  • 使用前无需特殊权限,支持十六进制与 RGB 格式转换。
  • 建议根据项目标准选择 AA 或 AAA 级别进行校验。

SKILL.md

name
openclaw-color-palette
version
2.0.0
description
Design-grade color processing suite — generate harmonious palettes from any seed color, check WCAG 2.1 AA/AAA contrast accessibility, convert between hex/RGB/HSL/HSV/CMYK, simulate 8 color blindness types, and extract dominant colors from images. Use when: (1) user says 'generate a color palette' or 'give me a color scheme for my website', (2) user asks 'check contrast' or 'is this readable' or 'WCAG accessibility', (3) user needs to 'convert hex to RGB' or 'what is #FF5733 in HSL', (4) user wants to 'simulate color blindness' or 'how do colorblind users see this', (5) user requests 'extract colors from image' or 'pull brand colors from this logo'. 6 harmony algorithms, 140 CSS named colors, k-means clustering. Zero install, sub-100ms on Cloudflare Workers. Free + Pro $9/mo.
read_when
commands
metadata
openclaw
emoji
\F3A8
homepage
https://github.com/yedanyagamiai-cmd/openclaw-mcp-servers
always
false

OpenClaw Color Palette v2.0

Design-grade color tools -- 5 tools for palettes, accessibility, conversion, simulation, and extraction.

Quick Reference

SituationActionTool
Starting a new website or app designGenerate a harmonious palette from a brand colorgenerate_palette
Text looks hard to read on a backgroundCheck WCAG 2.1 AA/AAA contrast ratiocheck_contrast
Designer gave hex, you need RGB for codeConvert between any color formatconvert_color
Need to ensure inclusive designSimulate 8 types of color vision deficiencycolor_blindness_sim
Client sent a logo, need brand colorsExtract dominant colors with frequency dataextract_palette
Building a design system from scratchGenerate palette + check contrast + simulate CVDAll 3 combined

What's New in v2.0

  • :art: HarmonyEngine -- 6 color theory algorithms: complementary, analogous, triadic, split-complementary, tetradic, monochromatic. Mathematically precise palette generation from any seed color.
  • :shield: AccessGuard Protocol -- Full WCAG 2.1 AA and AAA checking for normal and large text. When contrast fails, auto-suggests the nearest accessible color pair with minimal visual change.
  • :eye: VisionSim 8-Type -- Simulate protanopia, deuteranopia, tritanopia, achromatopsia, protanomaly, deuteranomaly, tritanomaly, and achromatomaly. Warns when palette colors become indistinguishable.
  • :dropper: ChromaExtract -- K-means clustering extracts 5-10 dominant colors from any image URL or base64 data, sorted by area percentage.

MCP Quick Start

{
  "openclaw-colors": {
    "type": "streamable-http",
    "url": "https://color-palette-mcp.yagami8095.workers.dev/mcp"
  }
}

Add to Claude Desktop, Cursor, Windsurf, VS Code, or any MCP-compatible client. No API key needed for Free tier. Works immediately.

Detection Triggers

This skill activates when you say:

  • "generate a color palette" / "color scheme for my website" / "give me colors for"
  • "check contrast" / "is this readable" / "WCAG accessibility" / "contrast ratio"
  • "convert hex to RGB" / "convert color" / "what is #FF5733 in HSL" / "hex to CMYK"
  • "simulate color blindness" / "how do colorblind users see this" / "protanopia simulation"
  • "extract colors from image" / "pull palette from logo" / "brand colors from screenshot"
  • "complementary colors" / "analogous palette" / "triadic" / "split-complementary" / "monochromatic"

Tools (5)

generate_palette -- Harmony-Based Palettes (HarmonyEngine)

Generate mathematically harmonious color palettes from any seed color using 6 color theory algorithms.

ParameterTypeDefaultDescription
colorstringrequiredSeed color in any format: hex, RGB, HSL, or CSS name
harmonystring"complementary"Algorithm: complementary, analogous, triadic, split-complementary, tetradic, monochromatic
countnumber5Number of colors to generate (3-8)

Output: Array of colors, each with hex, rgb, hsl, name (nearest CSS name), plus ready-to-paste CSS custom properties (--color-primary, --color-secondary, etc.).

WRONG vs RIGHT

WRONG -- Picking colors by gut feeling in a color picker:

User: I need a color palette for my SaaS dashboard
Agent: *suggests random colors* "#3498db, #e74c3c, #2ecc71" — no harmony, no theory, may clash

RIGHT -- Use generate_palette:

User: I need a color palette based on #3498db
Agent: calls generate_palette with triadic harmony → returns 5 mathematically balanced colors with hex/RGB/HSL, CSS variables, and named descriptors

check_contrast -- WCAG Accessibility Checker (AccessGuard Protocol)

Check foreground/background color contrast ratio against WCAG 2.1 standards for both AA and AAA levels, normal and large text.

ParameterTypeDefaultDescription
foregroundstringrequiredText color (any format)
backgroundstringrequiredBackground color (any format)

Output: { ratio: "4.5:1", AA_normal: "pass", AA_large: "pass", AAA_normal: "fail", AAA_large: "pass", suggestion: { foreground: "#...", background: "#..." } }

When contrast fails, suggestion provides the nearest accessible color pair that passes with minimal visual change from the original colors.

WRONG vs RIGHT

WRONG -- Eyeballing if light gray text on white is readable:

User: Is #999999 text readable on white?
Agent: *guesses* "It looks okay to me" — fails WCAG AA at 2.85:1 (needs 4.5:1)

RIGHT -- Use check_contrast:

User: Is #999999 text readable on white?
Agent: calls check_contrast → "Ratio 2.85:1 — FAILS AA normal text (needs 4.5:1). Suggestion: darken to #767676 for AA pass at 4.54:1"

convert_color -- Universal Format Conversion (ChromaBridge)

Convert any color between hex, RGB, HSL, HSV, CMYK, and all 140 CSS named colors. Auto-detects input format.

ParameterTypeDefaultDescription
colorstringrequiredColor in any recognized format
formatstring"all"Target format: hex, rgb, hsl, hsv, cmyk, all

Auto-detected inputs: #FF5733, #F53, rgb(255,87,51), rgba(255,87,51,0.8), hsl(11,100%,60%), hsv(11,80%,100%), cmyk(0,66,80,0), tomato, rebeccapurple.

Output: All formats simultaneously plus nearestCssName, luminance, isLight (boolean for text color selection).


color_blindness_sim -- Vision Deficiency Simulation (VisionSim 8-Type)

Simulate how any color or full palette appears to users with 8 different types of color vision deficiency.

ParameterTypeDefaultDescription
colorsstring[]requiredArray of colors to simulate (any format)
typesstring[]["all"]CVD types to simulate, or "all" for all 8

8 types:

  • Protanopia -- no red cones (1% of males)
  • Deuteranopia -- no green cones (1% of males)
  • Tritanopia -- no blue cones (0.003% of population)
  • Achromatopsia -- complete color blindness (rare)
  • Protanomaly -- weak red cones (1% of males)
  • Deuteranomaly -- weak green cones (5% of males, most common CVD)
  • Tritanomaly -- weak blue cones (very rare)
  • Achromatomaly -- weak all cones (rare)

Output: For each color, simulated hex values for each CVD type plus warnings[] where palette colors become indistinguishable (Delta E < 5).


extract_palette -- Image Color Extraction (ChromaExtract)

Extract dominant colors from an image URL or base64 data using k-means clustering algorithm.

ParameterTypeDefaultDescription
imagestringrequiredImage URL or base64 data string
countnumber5Number of dominant colors to extract (3-10)

Output: Array of colors sorted by area percentage, each with hex, rgb, percentage, name (nearest CSS name). Total coverage percentage included.

Use for: Brand color analysis, design inspiration, mood board creation, logo color extraction, competitive design analysis.

What NOT to Do

Don'tWhyDo Instead
Expect print-accurate CMYK valuesMathematical conversion only, no ICC profilesUse a color management system for print
Send images over 5MBEdge workers have memory limitsResize or compress images first
Use CVD simulation for medical diagnosisIllustrative only, not clinically calibratedRefer to ophthalmology resources
Rely solely on contrast ratio for accessibilityColor is one aspect of accessibilityAlso consider font size, weight, and spacing
Input colors with alpha in CMYK conversionCMYK has no alpha channel conceptRemove alpha or use RGB/HSL output

Security & Privacy

WhatStatus
Reads your color values and imagesYes -- for processing only
Stores your data or imagesNo -- zero persistence, stateless edge processing
Sends data to third partiesNo -- processed entirely on Cloudflare Workers
Logs request contentNo -- only anonymous usage counters
Downloads images to serverFetched transiently for extraction, never stored
Requires authenticationFree tier: no. Pro: API key header only

Pricing

TierCalls/DayPriceWhat You Get
Free25$0All 5 color tools, no signup
Pro1,000$9/moAll 9 OpenClaw servers (49 tools), priority routing
x402Pay-per-call$0.05 USDCNo account needed, crypto-native

Get Pro Key: https://buy.stripe.com/4gw5na5U19SP9TW288

The OpenClaw Intelligence Stack

ServerToolsBest For
JSON Toolkit6Format, validate, diff, query, transform JSON
Regex Engine5Test, extract, replace, explain regex patterns
Color Palette5Generate, convert, harmonize, accessibility-check colors
Timestamp Converter5Parse, format, diff, timezone-convert timestamps
Prompt Enhancer6Optimize, rewrite, score, A/B test AI prompts
Market Intelligence6AI market trends, GitHub stats, competitor analysis
Fortune & Tarot3Daily fortune, tarot readings, I Ching
Content Publisher8MoltBook posts, social content, newsletter
AgentForge Compare5Compare AI tools, frameworks, MCP servers

All 9 servers share one Pro key. $9/mo = 49 tools.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

91.36%
按下载量换算4,064

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills