Cyan
HEX: #00FFFF | Modern Palette
Color Specifications
#00FFFF
0, 255, 255
180°, 100% ,50%
100, 0, 0, 0
About Cyan
Cyan (#00FFFF) is a color with RGB(0, 255, 255) and HSL(180°, 100%, 50%). It is commonly associated with Bold moods. In design, it fits Vivid, Cool styles and is suitable for Text, Button, Accent. Its complementary color is Red (#FF0000), which creates strong contrast. Its triadic palette includes Magenta (#FF00FF) and Yellow (#FFFF00). The name comes from κύανος (kýanos) (Ancient Greek).
- HEX: #00FFFF
- RGB: 0, 255, 255
- HSL: 180°, 100%, 50%
- Mood: Bold
- Style: Vivid, Cool
- Use case: Text, Button, Accent
- Complementary color: Red (#FF0000)
- Triadic colors: Magenta (#FF00FF), Yellow (#FFFF00)
- The name comes from κύανος (kýanos) (Ancient Greek).
Live Components
Color Palettes
Color Harmonies
Complementary
The color directly opposite on the color wheel — creates maximum contrast and vibrance.
Analogous
Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.
Triadic
Three colors equally spaced 120° apart — bold, balanced, and visually rich.
Split-Complementary
Two colors flanking the complement — high contrast with less tension than full complementary.
Tetradic (Square)
Four colors at 90° intervals — rich variety, best when one color dominates.
Monochromatic
Shades and tints of the same hue — cohesive, elegant, and easy to work with.
Shades & Tints
A seamless scale of #00FFFF from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The term 'cyan' in English was first used in the late 18th or early 19th century, specifically in the context of chemistry and dyes, to describe a blue-green color. Its adoption into broader color terminology, particularly as a primary color in subtractive color models (CMYK), became prominent with the advent of color printing and photography in the 19th and 20th centuries. It's one of the three subtractive primary colors, along with magenta and yellow, used to create a full spectrum of colors in print.
First Recorded Use
The Greek word 'kýanos' dates back to antiquity, referring to a deep blue color or substance. The English word 'cyan' derived from this root appeared much later.
Cultural Associations
Cyan is often associated with water, sky, and technology. In many cultures, blue-green hues evoke feelings of calmness, serenity, and freshness. It's a common color in branding for tech companies, environmental organizations, and products related to cleanliness or health. Due to its role in CMYK printing, it's a fundamental color in graphic design and publishing worldwide.
Code Snippets
/* Background */
.element {
background-color: #00FFFF;
}
/* Text */
.element {
color: #00FFFF;
}
/* Border */
.element {
border: 1px solid #00FFFF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#00FFFF,
#FF0000
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#00FFFF,
#FF0000
);
}
// SCSS variable
$cyan: #00FFFF;
// With RGB channels (useful for rgba() usage)
$cyan-r: 0;
$cyan-g: 255;
$cyan-b: 255;
// Usage
.element {
background-color: $cyan;
color: rgba($cyan-r, $cyan-g, $cyan-b, 0.8);
}