cyberpunk-ui

Implements cyberpunk UI styling with neon colors and clipped-corner shapes across web and mobile frameworks.

3|Updated Jul 17, 2026
One-click install
npx skills add https://github.com/Javeria-Javaid/Alkhidmat_foundation_lahore --skill cyberpunk-ui-javeria-javaid
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: cyberpunk-ui
Source: https://github.com/Javeria-Javaid/Alkhidmat_foundation_lahore/tree/main/Users/Javeria/Desktop/Alkhidmat_foundation_lahore/.agents/skills/design-it/cyberpunk-ui
Command: npx skills add https://github.com/Javeria-Javaid/Alkhidmat_foundation_lahore --skill cyberpunk-ui-javeria-javaid

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires react-native-svg.

What problem does it solve? Applying a consistent cyberpunk aesthetic (neon-on-black palettes, angled clipped corners, glitch effects) is difficult because standard UI frameworks default to rounded corners and soft styling, requiring custom shapes and clip paths on every platform. ## Core Features & Use Cases - Visual Design System: Defines the cyberpunk color palette (Acid Yellow #FCE205, Cyan #00FFFF, Hot Pink #FF003C on black), typography choices, and styling rules like diagonal stripes and warning-tape patterns. - Cross-Platform Implementation: Provides ready-to-adapt code for CSS clip-path, SwiftUI custom Shape, Flutter CustomClipper, React Native SVG polygons, and Jetpack Compose custom Shape. - Use Case: A developer building a hacking-themed game interface or dystopian landing page can copy the clipped-corner button implementations directly into their web or mobile project. ## Quick Start Apply the cyberpunk UI style to my app's primary button using the neon color palette and clipped-corner shape for my target framework.

Frequently Asked Questions about cyberpunk-ui

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create clipped corner buttons in CSS?▼

Use the CSS clip-path property with a polygon() function that cuts the corners at fixed pixel offsets, such as polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px)). This creates the signature angled cyberpunk cut without border-radius.

How to make angled shape buttons in Flutter?▼

Extend CustomClipper<Path> and trace the corner cuts in getClip using lineTo calls, then wrap your Container in ClipPath. For borders, use a CustomPaint with a CustomPainter tracing the same path since ClipPath alone cannot stroke edges.

Can React Native clip views into custom shapes?▼

React Native does not natively support clip paths on views. Use react-native-svg to draw an absolute-positioned Polygon as the background behind transparent text, defining the cut corners via the points attribute.

What colors define the cyberpunk UI aesthetic?▼

The palette uses absolute black (#000000) or deep charcoal backgrounds with neon accents: Acid Yellow (#FCE205), Cyan (#00FFFF), and Hot Pink (#FF003C). Typography pairs industrial squared sans-serifs like Rajdhani or Teko with small monospace fonts for data streams.

When should I avoid using cyberpunk UI styling?▼

Avoid it when the product needs soft, organic, or approachable branding, since the style demands sharp aggressive geometry with no rounded corners or gradients. Also verify contrast ratios and accessibility separately, as neon-on-black combinations can fail readability standards.