dragoon0x/everything-design-taste

glassmorphism-effects

Glass effects, blur techniques, frosted glass UI, and translucency in interface design.

First seen Jul 18, 2026

Installation

$ npx skills add dragoon0x/everything-design-taste --skill glassmorphism-effects

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,135 B
  • docs SUMMARY.md 116 B

History

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

SKILL.md

Glassmorphism Effects

Glassmorphism

Properties

.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
}

When It Works

  • Overlays on colorful or photographic backgrounds.
  • Navigation bars over content.
  • Card overlays on media.
  • Modal backgrounds.

When It Doesn't

  • On solid color backgrounds (nothing to blur = no effect).
  • Dense text content (readability suffers).
  • Low-end devices (backdrop-filter is expensive).

Performance

  • backdrop-filter is GPU-intensive.
  • Provide fallback: solid semi-transparent background.
  • Test on older devices.
  • Limit the area affected (don't blur the entire viewport).

Accessibility

  • Ensure text contrast meets WCAG even with blur.
  • Test with blur disabled (graceful degradation).
  • High-contrast mode should override glass effects.