dragoon0x/everything-design-taste

toggle-switch-patterns

Toggle switches, checkbox patterns, radio button groups, and boolean input design.

First seen Jul 18, 2026

Installation

$ npx skills add dragoon0x/everything-design-taste --skill toggle-switch-patterns

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from dragoon0x/everything-design-taste · top by installs.

npx skills add dragoon0x/everything-design-taste

Browse all from dragoon0x/everything-design-taste

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 11
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,392 B
  • docs SUMMARY.md 112 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Toggle Switch Patterns

Choosing the Right Control

Need Control Why
On/off, immediate effect Toggle switch Visual, instant feedback
On/off, needs save Checkbox Part of a form, explicit submission
One from few options Radio group All options visible
One from many options Dropdown Space-efficient
Multiple from few Checkbox group All options visible
Multiple from many Multi-select dropdown Space-efficient

Toggle Switch Rules

  • Takes effect immediately. No save button needed.
  • Label describes the ON state. "Enable notifications" (not "Disable notifications").
  • Show current state clearly. Color change + position + optional ON/OFF text.
  • Minimum size: 48px wide, 24px tall (larger on mobile).

Checkbox Rules

  • Use when selection is not immediately applied.
  • Indeterminate state for parent checkboxes with mixed children.
  • Group related checkboxes. Max 7 before switching to multi-select.

Radio Rules

  • Always show all options. If too many, use dropdown.
  • One option pre-selected (don't leave all unselected).
  • Vertical layout preferred. Horizontal only for 2-3 short options.