ワンクリックで
quieter
Tone down overly bold or visually aggressive Puree UI designs. Reduces intensity while maintaining design quality and impact.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Tone down overly bold or visually aggressive Puree UI designs. Reduces intensity while maintaining design quality and impact.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Create distinctive, production-grade Puree UI interfaces with high design quality. Use this skill when the user asks to build UI panels, dashboards, toolbars, or Blender addon interfaces. Generates creative, polished YAML/SCSS/Python code that avoids generic AI aesthetics.
Review Puree UI code (YAML/SCSS/Python) for correctness, common mistakes, and best practices. Use when checking code quality, debugging render issues, or validating before shipping.
Improve Puree typography by fixing font choices, hierarchy, sizing, weight consistency, and readability in YAML/SCSS. Makes text feel intentional and polished.
Create distinctive, production-grade Puree UI interfaces with high design quality. Use this skill when the user asks to build UI panels, dashboards, toolbars, or Blender addon interfaces. Generates creative, polished YAML/SCSS/Python code that avoids generic AI aesthetics.
Review Puree UI code (YAML/SCSS/Python) for correctness, common mistakes, and best practices. Use when checking code quality, debugging render issues, or validating before shipping.
Improve Puree typography by fixing font choices, hierarchy, sizing, weight consistency, and readability in YAML/SCSS. Makes text feel intentional and polished.
| name | quieter |
| description | Tone down overly bold or visually aggressive Puree UI designs. Reduces intensity while maintaining design quality and impact. |
| user-invocable | true |
| argument-hint | Describe the component or panel section to tone down (e.g. "header gradients", "alert colors") |
Reduce visual intensity in Puree designs that are too bold, aggressive, or overstimulating, creating a more refined and approachable aesthetic without losing effectiveness.
Use the frontend-design skill — it contains design principles, anti-patterns, and the Context Gathering Protocol. Follow the protocol before proceeding — if no design context exists yet, you MUST run teach-impeccable first.
Analyze what makes the design feel too intense:
Identify intensity sources:
Understand the context:
If any of these are unclear from the codebase, ask the user directly to clarify what you cannot infer.
CRITICAL: "Quieter" doesn't mean boring or generic. It means refined, sophisticated, and easier on the eyes. Think luxury, not laziness.
Create a strategy to reduce intensity while maintaining impact:
IMPORTANT: Great quiet design is harder than great bold design. Subtlety requires precision.
Systematically reduce intensity across these dimensions:
rgba() transparency instead// Before: too intense
$accent: #ff3333;
$surface: #000000;
// After: refined
$accent: #c0392b;
$surface: #1a1a2e;
// Before: heavy
.heading {
font-size: 32px;
font-weight: bold;
color: $accent;
}
// After: refined
.heading {
font-size: 24px;
font-weight: bold;
color: $text-primary;
}
border-radius valuesbox-shadow, multiple borders, intense gradients:hover (5-10% shift, not 30%)// Before: dramatic
.card {
transition: background-color 0.4s ease, border-color 0.4s ease, opacity 0.4s ease;
&:hover {
background-color: lighten($surface, 15%);
border-color: $accent;
}
}
// After: subtle
.card {
transition: background-color 0.2s ease;
&:hover {
background-color: lighten($surface, 3%);
}
}
NEVER:
Ensure refinement maintains quality:
Remember: Quiet design is confident design. It doesn't need to shout. Less is more, but less is also harder. Refine with precision and maintain intentionality.