Ceil
HEX: #92A1CF | Modern Palette
Color Specifications
#92A1CF
146, 161, 207
225°, 29% ,81%
29.47, 22.22, 0, 18.82
About Ceil
Ceil (#92A1CF) is a color with RGB(146, 161, 207) and HSL(225.25°, 29.47%, 81.18%). In design, it fits Pastel, Cool styles and is suitable for Text, Background, Print. Its complementary color is #CFC092, which creates strong contrast. Its triadic palette includes #CF92A1 and #A1CF92. The name comes from caelum (Latin).
- HEX: #92A1CF
- RGB: 146, 161, 207
- HSL: 225.25°, 29.47%, 81.18%
- Style: Pastel, Cool
- Use case: Text, Background, Print
- Complementary color: #CFC092
- Triadic colors: #CF92A1, #A1CF92
- The name comes from caelum (Latin).
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 #92A1CF from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#9D9DCF
#9F9FCF
#89A8A8
#A2A2A2
Frequently Asked Questions
Name, History & Etymology
History
The word 'ceil' (and its modern English form 'ceiling') derives from the Latin 'caelum' meaning 'sky' or 'heaven'. In Old French, this evolved into 'ciel', which referred to the 'sky' or 'canopy'. Over time, as architectural elements developed, 'ciel' began to be used for the 'inner roof' or 'upper surface of a room'. The English word 'ceiling' emerged from this Old French root, specifically from the verb 'ceilen' (to panel or line a roof), which itself came from 'ciel'. The 'g' in 'ceiling' is an English addition, likely by analogy with words like 'lining' or 'covering'. The color #92a1cf, a shade of blue, is often associated with the sky, which aligns with the original Latin meaning of 'caelum'.
First Recorded Use
13th Century
Cultural Associations
The concept of a 'ceiling' as the upper limit or boundary of a space has cultural significance beyond architecture. It can metaphorically represent a limit to growth, opportunity, or achievement (e.g., 'glass ceiling'). In art and religion, ceilings have often been decorated with elaborate frescoes or mosaics depicting heavens, gods, or celestial scenes, reinforcing the connection to the original meaning of 'sky' or 'heaven'.
Code Snippets
/* Background */
.element {
background-color: #92A1CF;
}
/* Text */
.element {
color: #92A1CF;
}
/* Border */
.element {
border: 1px solid #92A1CF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#92A1CF,
#DDD6C1
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#92A1CF,
#DDD6C1
);
}
// SCSS variable
$ceil: #92A1CF;
// With RGB channels (useful for rgba() usage)
$ceil-r: 146;
$ceil-g: 161;
$ceil-b: 207;
// Usage
.element {
background-color: $ceil;
color: rgba($ceil-r, $ceil-g, $ceil-b, 0.8);
}