Introducing Nuvyx UI v1.0.0

Docs
Cyberpunk Card

Cyberpunk Card

A futuristic glowing card that shifts colors dynamically. Supports hover-triggered light trails around the border.

Lucy

Edgerunner

Advanced cybernetic enhancement module for combat performance

80%
75%
60%

Installation

Examples

HACKING SUITE

ONLINE

Advanced intrusion tools with ICE-breaking capabilities and self-modifying algorithms

SYSTEM INTEGRITY: 75%UPTIME: 13:42:06
logo1
CONNECTION:
SECURED
TARGET:
Arasaka Database
PING:
127ms|||||||||||||
ICE: 3/7CPU: 42%
SYSTEM READY

Usage

import { CyberpunkCard } from "@/components/ui/cyberpunk-card";
<CyberpunkCard
  theme="neon-blue"
  borderStyle="solid"
  colorShift={true}
  lightTrail={true}
  rounded="md"
  glow={true}
  glowIntensity={3}
>
  <div className="p-6">
    <h3 className="text-xl font-bold text-white">Cyberpunk Title</h3>
    <p className="text-blue-100 mt-2">Your content goes here</p>
  </div>
</CyberpunkCard>

Props

Cyberpunk Card

PropTypeDefaultDescription
themestring"neon-blue"The color theme of the card. Possible values: "neon-blue", "neon-pink", "neon-green", "neon-orange", "neon-purple", "custom"
customColorsobjectundefinedCustom colors for the card when theme is set to "custom". The object should include properties: primary, secondary, and accent
borderStylestring"solid"The border style of the card. Possible values: "solid", "dashed", "glitch", "corners"
colorShiftbooleantrueWhether to enable the color shift effect
lightTrailbooleantrueWhether to enable the light trail effect
roundedstring"md"The border radius of the card. Possible values: "none", "sm", "md", "lg"
glowbooleantrueWhether to show a glow effect
glowIntensitynumber3The intensity of the glow effect (1-5)
classNamestring""Additional CSS classes to apply
childrenReact.ReactNodeundefinedContent of the card