styleColor Scheme

Cyberpunk Neon

A cyberpunk palette with electric neon pinks and blues on dark backgrounds. Inspired by dystopian futures and rain-soaked neon cityscapes.

#020617
#0f172a
#ec4899
#0ea5e9
#d946ef

Color Breakdown

Role

background

Name

Slate 950

Hex

#020617

Tailwind

bg-slate-950

Role

surface

Name

Slate 900

Hex

#0f172a

Tailwind

bg-slate-900

Role

primary

Name

Pink 500

Hex

#ec4899

Tailwind

text-pink-500

Role

secondary

Name

Sky 500

Hex

#0ea5e9

Tailwind

text-sky-500

Role

accent

Name

Fuchsia 500

Hex

#d946ef

Tailwind

bg-fuchsia-500

Live Preview

Welcome Back

This is a live preview of the Cyberpunk Neon color scheme applied to a sample card component. See how the colors work together in a realistic UI context.

Design Rationale

Neon pink and cyan on dark backgrounds create the signature cyberpunk visual language. Fuchsia accents intensify the electric, high-tech atmosphere.

Use Cases

Cyberpunk game sitesFuturistic portfoliosTech noir aesthetics

CSS Variables

CSS
:root {
  --background: #020617;
  --surface: #0f172a;
  --primary: #ec4899;
  --secondary: #0ea5e9;
  --accent: #d946ef;
}

Tailwind Config

JavaScript
// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'cyberpunk-neon': {
  'background': '#020617',  // bg-slate-950
  'surface': '#0f172a',  // bg-slate-900
  'primary': '#ec4899',  // text-pink-500
  'secondary': '#0ea5e9',  // text-sky-500
  'accent': '#d946ef',  // bg-fuchsia-500
        },
      },
    },
  },
};

Related Color Schemes

Build with This Scheme

Use our palette generator to customize and extend this color scheme for your project.

Open Palette Generator

Frequently Asked Questions

What colors define cyberpunk aesthetics?
Cyberpunk relies on neon pinks, magentas, and electric blues against dark backgrounds to evoke a tech-saturated dystopian future.