library/specializations/ux-ui-design/skills/color-palette-generator/SKILL.md
Generate accessible color palettes with WCAG compliance
npx skillsauth add a5c-ai/babysitter color-palette-generatorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Generate accessible color palettes that comply with WCAG contrast requirements, create color scales, and export to design token formats.
{
"type": "object",
"properties": {
"baseColors": {
"type": "array",
"items": { "type": "string" },
"description": "Base colors in hex format"
},
"schemeType": {
"type": "string",
"enum": ["complementary", "analogous", "triadic", "split-complementary", "monochromatic"]
},
"contrastLevel": {
"type": "string",
"enum": ["AA", "AAA"],
"default": "AA"
},
"includeDarkMode": {
"type": "boolean",
"default": true
},
"outputFormat": {
"type": "string",
"enum": ["css", "scss", "json", "tokens"],
"default": "tokens"
}
},
"required": ["baseColors"]
}
{
"type": "object",
"properties": {
"palette": {
"type": "object",
"description": "Generated color palette with scales"
},
"contrastMatrix": {
"type": "array",
"description": "Contrast ratios between color pairs"
},
"darkModePalette": {
"type": "object",
"description": "Dark mode color variants"
},
"tokenOutput": {
"type": "string",
"description": "Exported tokens in requested format"
},
"accessibilityReport": {
"type": "object",
"description": "WCAG compliance report"
}
}
}
const result = await skill.execute({
baseColors: ['#1a73e8', '#34a853', '#ea4335'],
schemeType: 'complementary',
contrastLevel: 'AA',
includeDarkMode: true,
outputFormat: 'tokens'
});
development
Model documentation skill for generating model cards following Google's model card framework.
development
MLflow integration skill for experiment tracking, model registry, and artifact management. Enables LLMs to log experiments, compare runs, manage model lifecycle, and retrieve artifacts through the MLflow API.
data-ai
LIME-based local explanation skill for individual predictions across tabular, text, and image data.
devops
Kubeflow Pipelines skill for ML workflow orchestration, component management, and Kubernetes-native ML.