๐ CYBERCORE CSS
๐ฎ A cyberpunk-inspired CSS framework for building futuristic interfaces
Inspired by Cyberpunk 2077, Blade Runner, and the neon-soaked streets of Night City
โก Quick Start
NPM Installation
npm install cybercore-css
CDN
<link
rel="stylesheet"
href="https://unpkg.com/cybercore-css@latest/dist/cybercore.min.css"
/>
Import in Your Project
// Import everything
@use 'cybercore-css';
// Or import specific modules
@use 'cybercore-css/components/buttons';
@use 'cybercore-css/effects/glitch';
๐ฏ Features
| Feature | Description |
|---|---|
| ๐จ Pure CSS | Zero JavaScript dependencies - just CSS/SCSS |
| ๐งฉ Modular | Import only what you need |
| ๐ Dark Theme | Designed for dark interfaces |
| ๐ง Customizable | CSS variables for easy theming |
| โฟ Accessible | Respects prefers-reduced-motion |
| ๐ค AI-Friendly | Simple, predictable class names |
| โก Modern CSS | CSS Layers, Container Queries, color-mix() |
| ๐ฑ Responsive | Mobile-first approach |
| ๐ญ Icon System | 153 cyberpunk-themed SVG icons |
๐ธ Screenshots
Glitch Effect

Glitch text effect with chromatic aberration, scanlines, and animated distortion
Neon Border

Animated neon glow borders in cyan, magenta, and green variants
Terminal

Cyberpunk terminal component with scanlines and colored output
Buttons

Button variants: primary colors, outline, and ghost styles
Cards

Card components with datastream effect and interactive elements
Icons
![]()
153 cyberpunk-themed SVG icons across 10 categories with search and filters
Dashboard Showcase

Full dashboard example combining multiple CYBERCORE components
๐จ Color Palette
๐ต Cyan #00f0ff โ Primary accent
๐ด Magenta #ff2a6d โ Secondary accent
๐ก Yellow #fcee0a โ Warning/highlight
๐ข Green #05ffa1 โ Success states
โซ Void #0a0a0f โ Background
โช Chrome #b4b4b4 โ Neutral tones
๐ญ Icons
CYBERCORE CSS includes a complete icon system with 153 cyberpunk-themed SVG icons across 10 categories, with support for 4 style variants.
Quick Start
// Import the icon utilities
import { renderIcon, getIcon, icons } from 'cybercore-css/icons';
// Render an icon with options
const svg = renderIcon('terminal', { size: 24, color: 'cyan' });
// Get raw SVG string
const terminalSvg = getIcon('terminal');
// Access the full registry
console.log(icons.terminal.svg);
Tree-Shakeable Imports
// Import only the icons you need
import {
ChipIcon,
TerminalIcon,
SignalIcon,
} from 'cybercore-css/icons/individual';
Icon Categories
| Category | Icons | Description |
|---|---|---|
| Navigation | 14 | Arrows, chevrons, menus |
| Actions | 23 | Edit, delete, copy, download |
| Media | 17 | Play, pause, volume controls |
| Communication | 10 | Messages, mail, notifications |
| Data | 14 | Charts, database, cloud |
| Security | 15 | Lock, shield, user, auth |
| Tech | 22 | Terminal, code, chip, settings |
| Files | 15 | File types, folders |
| Status | 12 | Info, warning, error, success |
| Social | 11 | Heart, star, bookmark, share |
Style Variants
- outline - Stroke-based, default style (1.5px stroke)
- solid - Filled icons for emphasis
- duotone - Two-tone with primary/secondary colors
- glitch - Animated/glitchy variant for cyber effects
// Use different variants
renderIcon('shield', { variant: 'solid' });
renderIcon('terminal', { variant: 'duotone' });
๐ Full documentation: Icon System Docs
๐งฉ Components
Buttons
<!-- Primary button -->
<button class="cyber-btn">EXECUTE</button>
<!-- Color variants -->
<button class="cyber-btn cyber-btn--magenta">DANGER</button>
<button class="cyber-btn cyber-btn--yellow">CAUTION</button>
<button class="cyber-btn cyber-btn--green">CONFIRM</button>
<!-- Ghost style -->
<button class="cyber-btn cyber-btn--ghost">GHOST</button>
Cards
<div class="cyber-card">
<div class="cyber-card__header">
<h3 class="cyber-card__title">SYSTEM STATUS</h3>
</div>
<div class="cyber-card__body">All systems operational.</div>
</div>
<!-- Interactive card -->
<div class="cyber-card cyber-card--interactive">
<!-- Glows on hover! -->
</div>
<!-- Holographic effect -->
<div class="cyber-card cyber-card--holo">
<!-- Animated shimmer! -->
</div>
Inputs
<input type="text" class="cyber-input" placeholder="Enter data..." />
<!-- With field wrapper -->
<div class="cyber-field">
<label class="cyber-field__label">USERNAME</label>
<input type="text" class="cyber-input" />
<span class="cyber-field__helper">Enter your handle</span>
</div>
Terminal
<div class="cyber-terminal">
<div class="cyber-terminal__chrome">
<div class="cyber-terminal__dots">
<span class="cyber-terminal__dot"></span>
<span class="cyber-terminal__dot"></span>
<span class="cyber-terminal__dot"></span>
</div>
<span class="cyber-terminal__title">system.exe</span>
</div>
<div class="cyber-terminal__body">
<div class="cyber-terminal__line">
<span class="cyber-terminal__prompt">$</span>
<span class="cyber-terminal__command">hack the planet</span>
</div>
</div>
</div>
More Components
- ๐ท๏ธ Badges - Status indicators and labels
- โ ๏ธ Alerts - Notifications and messages
- ๐ Tables - Data grids with cyber styling
- ๐ Progress - Loading bars and indicators
- ๐๏ธ Tabs - Tabbed navigation
- ๐ Modal - Dialog windows
- โณ Spinner - Loading animations
- ๐ Skeleton - Loading placeholders
- ๐งญ Nav - Navigation bars
โจ Effects
Glitch Text
<h1 class="cyber-glitch" data-text="GLITCH">GLITCH</h1>
Neon Border
<div class="cyber-neon-border">Glowing border effect</div>
<div class="cyber-neon-border cyber-neon-border--magenta">Magenta variant</div>
Scanlines
<div class="cyber-scanlines">CRT monitor effect</div>
Noise Overlay
<div class="cyber-noise">Static noise texture</div>
Datastream
<div class="cyber-datastream">Animated light sweep</div>
๐ ๏ธ Utilities
Text Colors
<span class="cyber-text-cyan">Cyan text</span>
<span class="cyber-text-magenta">Magenta text</span>
<span class="cyber-text-yellow">Yellow text</span>
<span class="cyber-text-green">Green text</span>
Text Glow
<span class="cyber-text-glow">Glowing text</span>
Display
<div class="cyber-d-flex">Flexbox</div>
<div class="cyber-d-grid">Grid</div>
<div class="cyber-d-none">Hidden</div>
Spacing
<div class="cyber-m-md">Margin medium</div>
<div class="cyber-p-lg">Padding large</div>
<div class="cyber-gap-sm">Gap small</div>
๐๏ธ Customization
CSS Variables
Override any variable in your own CSS:
:root {
/* Change primary accent */
--cyber-cyan-500: #00ffaa;
/* Adjust spacing */
--space-md: 1.5rem;
/* Modify glow intensity */
--glow-cyan: 0 0 10px #00ffaa, 0 0 30px rgba(0, 255, 170, 0.5);
}
SCSS Configuration
// Override before importing
$cyber-primary: #00ffaa;
$cyber-font-mono: 'JetBrains Mono', monospace;
@use 'cybercore-css' with (
$primary-color: $cyber-primary,
$font-mono: $cyber-font-mono
);
๐ Project Structure
cybercore-css/
โโโ src/scss/
โ โโโ cybercore.scss # Main entry point
โ โโโ core/
โ โ โโโ _variables.scss # Design tokens
โ โ โโโ _reset.scss # CSS reset
โ โ โโโ _base.scss # Base styles
โ โ โโโ _typography.scss # Type system
โ โโโ components/
โ โ โโโ _buttons.scss
โ โ โโโ _cards.scss
โ โ โโโ _inputs.scss
โ โ โโโ ... (14 components)
โ โโโ effects/
โ โ โโโ _glitch.scss
โ โ โโโ _neon-border.scss
โ โ โโโ ... (6 effects)
โ โโโ utilities/
โ โโโ _display.scss
โ โโโ _flex.scss
โ โโโ ... (8 utilities)
โโโ dist/
โโโ cybercore.css # Full build
โโโ cybercore.min.css # Minified
๐งช Development
# Install dependencies
npm install
# Start dev server with demo site
npm run dev
# Build CSS
npm run build
# Run tests
npm run test
# Lint
npm run lint
# Format
npm run format
๐ Browser Support
| Browser | Version |
|---|---|
| Chrome | 105+ |
| Firefox | 121+ |
| Safari | 15.4+ |
| Edge | 105+ |
Requires CSS Layers, color-mix(), and container queries support
๐ License
MIT License - Use it, hack it, share it.
๐ Related Projects
- CYBERCORE CHARTS - Zero-dependency SVG chart library with the same cyberpunk aesthetic. Neon glows, dark themes, and AI-optimized.
๐ค Contributing
- Fork the repo
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
โก Built for the future. Styled for Night City. โก
๐ Demo โข ๐ Docs โข ๐ Issues โข ๐ฌ Discussions
โโโโโโโโโโ โโโโโโโโโโ โโโโโโโโโโโโโโโ โโโโโโโ โโโโโโโ โโโโโโโ โโโโโโโโ
โโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โโโ โโโโโโโ โโโโโโโโโโโโโโ โโโโโโโโโโโ โโโ โโโโโโโโโโโโโโโโโ
โโโ โโโโโ โโโโโโโโโโโโโโ โโโโโโโโโโโ โโโ โโโโโโโโโโโโโโโโโ
โโโโโโโโ โโโ โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโ
โโโโโโโ โโโ โโโโโโโ โโโโโโโโโโโ โโโ โโโโโโโ โโโโโโโ โโโ โโโโโโโโโโโ