Corn
HEX: #FBEC5D | Modern Palette
Color Specifications
#FBEC5D
251, 236, 93
54°, 95% ,67%
0, 6, 63, 2
About Corn
Corn (#FBEC5D) is a color with RGB(251, 236, 93) and HSL(54.3°, 95.2%, 67.5%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #5D6CFB, which creates strong contrast. Its triadic palette includes #5DFBEC and #EC5DFB. The name comes from corn (Old English).
- HEX: #FBEC5D
- RGB: 251, 236, 93
- HSL: 54.3°, 95.2%, 67.5%
- Mood: Energetic, Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #5D6CFB
- Triadic colors: #5DFBEC, #EC5DFB
- The name comes from corn (Old English).
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 #FBEC5D from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Initially, 'corn' in English was a generic term for any small, hard seed or grain, especially the predominant cereal crop of a region. In England, this was typically wheat, barley, or oats. When Europeans encountered maize in the Americas, they called it 'Indian corn' because it was the primary 'corn' (grain) of the indigenous people. Over time, especially in North America, the 'Indian' was dropped, and 'corn' became synonymous with maize. In other English-speaking regions, 'corn' still refers to the local staple grain (e.g., 'corn' in Scotland often means oats).
First Recorded Use
The word 'corn' has roots in Proto-Germanic '*kurnam' and Proto-Indo-European '*grnóm', both referring to 'grain'. Its usage in Old English predates the discovery of the Americas.
Cultural Associations
The color #fbec5d, a vibrant yellow, strongly evokes the image of ripe maize kernels, which is the dominant association with 'corn' in many cultures today, particularly in the Americas. Maize (corn) holds immense cultural significance, being a staple food, a symbol of harvest and fertility, and central to many indigenous American mythologies and agricultural practices. It is also a major global commodity.
Code Snippets
/* Background */
.element {
background-color: #FBEC5D;
}
/* Text */
.element {
color: #FBEC5D;
}
/* Border */
.element {
border: 1px solid #FBEC5D;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FBEC5D,
#5D6CFB
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FBEC5D,
#5D6CFB
);
}
// SCSS variable
$corn: #FBEC5D;
// With RGB channels (useful for rgba() usage)
$corn-r: 251;
$corn-g: 236;
$corn-b: 93;
// Usage
.element {
background-color: $corn;
color: rgba($corn-r, $corn-g, $corn-b, 0.8);
}