AI Skill Report Card

Applying Clicky UI Aesthetic

A-85·Sep 24, 2026·Source: Web
15 / 15

To apply this aesthetic to a component, hit these five marks:

  1. Background: flat, saturated color (butter yellow, hot coral, sky blue, or off-white cream) — never gradients or subtle grays.
  2. Borders: thick (2–4px), solid black or near-black, on almost everything (buttons, cards, images).
  3. Shadows: hard offset drop shadows (no blur), e.g. box-shadow: 4px 4px 0px #000; — mimics a sticker lifted off the page.
  4. Type: chunky, rounded, high-weight display font for headlines (think fun/bubbly sans), paired with a simple readable sans for body copy.
  5. Shapes: rounded corners everywhere (buttons, cards, avatars), occasional blob/organic shapes as background decoration.
CSS
.card { background: #FFF7E6; border: 3px solid #111; border-radius: 20px; box-shadow: 6px 6px 0px #111; padding: 24px; } .button-primary { background: #FF6B4A; border: 2.5px solid #111; border-radius: 999px; /* pill shape */ box-shadow: 4px 4px 0px #111; font-weight: 800; padding: 12px 28px; transition: transform 0.1s ease; } .button-primary:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0px #111; }
Recommendation▾
Add a concrete 'bad output' example (e.g., a soft-shadow, pastel version) to explicitly contrast good vs. bad application, per examples-quality best practice.
13 / 15

Progress checklist for applying the aesthetic to a page/component:

  • Choose a 2–3 color saturated palette (one dominant background, one accent, one neutral cream/white)
  • Apply thick black/dark borders to all interactive and card elements
  • Add hard offset shadows (no blur) for a "sticker" or "pop-up" feel
  • Pick a rounded, bold display typeface for headlines; keep body text simple and legible
  • Round all corners generously — pills for buttons, large radii for cards
  • Add playful decorative elements: blobs, squiggles, stars, hand-drawn arrows, emoji-like icons
  • Animate on hover/click with small physical movement (translate + shadow grow/shrink) instead of fades
  • Keep layout loose and asymmetric rather than rigid grid-perfect — slight rotation on cards/images adds charm
  • Ensure copy tone matches visuals: short, punchy, conversational, exclamation-friendly
Recommendation▾
Include a short list of recommended font names/pairings (e.g., specific Google Fonts) to make the display font guidance more actionable rather than generic ('think fun/bubbly sans').
17 / 20

Example 1: Input: A generic SaaS pricing card with white background, gray border, subtle shadow, and a blue "Subscribe" button. Output: Cream background card with 3px black border and hard 6px offset black shadow, slightly rotated -2deg for playfulness. Price in huge bold rounded font. "Subscribe" button becomes a coral pill with black outline and its own offset shadow that "presses in" (shadow shrinks, button shifts down-right) on click.

Example 2: Input: A hero section with headline, subtext, and CTA button on a plain white background. Output: Background becomes a saturated color block (e.g. soft yellow) with large organic blob shapes in a contrasting color floating behind the text. Headline uses a chunky rounded display font in black, oversized. CTA is a pill button with thick border and hard shadow. A small hand-drawn arrow or squiggle points toward the CTA.

Example 3: Input: A testimonial/avatar row with plain circular photos. Output: Avatars get thick black circular borders and are placed at slightly varying rotations, overlapping like stickers, each with its own tiny hard shadow.

Recommendation▾
Consider consolidating 'Best Practices' and 'Common Pitfalls' since they overlap significantly — merging would tighten the skill and reduce redundancy.
  • Keep the palette limited (2–3 flat colors + black + cream) — too many colors kills the punchy effect.
  • Always pair a decorative/bold display font for headlines with a clean, highly legible body font — don't use the display font for paragraphs.
  • Use hard, unblurred offset shadows exclusively — a single blurred soft shadow anywhere breaks the whole aesthetic.
  • Favor pill-shaped or heavily rounded buttons over sharp rectangles.
  • Introduce slight rotation (1–3deg) on cards/images for a hand-placed, sticker-book feel — but don't overdo it (max a couple elements per view).
  • Use micro-interactions: buttons should look like they physically press down (shadow shrinks + element translates toward the shadow's origin) on click.
  • Decorative shapes (blobs, stars, squiggles) should sit behind or around content, never crowd or obscure it.
  • Don't use blurred/soft box-shadows — it immediately reads as generic modern SaaS, killing the retro-sticker vibe.
  • Don't mix in thin, delicate borders — borders must stay thick and confident everywhere for consistency.
  • Don't use muted/desaturated colors — pastels-only or grayscale palettes lose the energetic pop.
  • Don't overcrowd with decorative shapes to the point of distraction — they're seasoning, not the main dish.
  • Don't use a serif or "corporate professional" typeface for headlines — it clashes with the playful tone.
  • Don't make every element perfectly grid-aligned — too much symmetry feels sterile and undermines the handmade charm.
0
Grade A-AI Skill Framework
Scorecard
Criteria Breakdown
Quick Start
15/15
Workflow
13/15
Examples
17/20
Completeness
17/20
Format
14/15
Conciseness
13/15