Color: #FEF8EB

#FEF8EB Color Information

#FEF8EB is a light color. The closest websafe version is #FEF8EB. A complement of this color would be #ECF1FE, perceived brightness is 0.97, and the grayscale version is #F4F4F4.

In the HSL color space, this color has a hue angle of 41°,a saturation of 90%, and a lightness of 96%.The HSV representation shows a hue of 41°, a saturation of 7%, and a value of 100%.

In a RGB color space, #FEF8EB is composed of 100% red, 97% green and 92% blue. Whereas in a CMYK color space, it is composed of 0% cyan, 2% magenta, 7% yellow and 0% black.

In the Yxy color space, this color is represented as Y: 94.38, x: 0.3572, and y: 0.3695.

Color Code #FEF8EB

#FEF8EBrgb(254, 248, 235)
HEX
#FEF8EB
RGB
rgb(254, 248, 235)
HSL
hsl(41, 90%, 96%)
HSV
hsv(41, 7%, 100%)
CMYK
0%, 2%, 7%, 0%
XYZ
X: 91.25, Y: 94.38, Z: 69.83
Lab
L: 97.79, a: 0.44, b: 7.01
Name

Shades of Color #FEF8EB

Shades are created by darkening the original color #FEF8EB in equal steps from 0% to 90%. These shades are perfect for creating depth and contrast in your designs. Use them to add visual hierarchy or highlight specific elements in your projects.

Tints of Color #FEF8EB

Tints are created by lightening the original color #FEF8EB in equal steps from 0% to 90%, ending with pure white. These tints are ideal for creating soft backgrounds, subtle highlights, or cohesive UI elements that complement your designs.

#FEF8EBrgb(254, 248, 235)

About #FEF8EB Color Code

In the HSL color space, this color has a hue angle of 41°, a saturation of 90%, and a lightness of 96%. The HSV representation shows a hue of 41°, a saturation of 7%, and a value of 100%.

  • HEX: #FEF8EB
  • RGB: rgb(254, 248, 235)
  • HSL: hsl(41, 90%, 96%)
  • HSV: hsv(41, 7%, 100%)
  • CMYK: 0.00% cyan, 2.00% magenta, 7.00% yellow, 0.00% black
  • XYZ: 91.25, 94.38, 69.83
  • Yxy: 94.38, 0.3572, 0.3695
  • Hunter Lab: 97.79, 0.44, 7.01
  • CIE-Lab: 97.79, 0.44, 7.01

In the XYZ color space, this color is represented as X: 91.25, Y: 94.38, Z: 69.83. The Yxy representation further refines this as Y: 94.38, x: 0.3572, and y: 0.3695.

In the Hunter Lab color space, this color is represented as L: 97.79, a: 0.44, and b: 7.01. Similarly, in the CIE-Lab color space, it is represented as L: 97.79, a: 0.44, and b: 7.01.

Use these color codes in your CSS, design tools, or anywhere you need to specify a color. You can also explore its shades and tints for more creative options.

Triadic Colors of #FEF8EB

Triadic colors are three colors evenly spaced around the color wheel, including #FEF8EB. They create vibrant and balanced color schemes, perfect for designs that need contrast and harmony.

Analogous Colors of #FEF8EB

Analogous colors are adjacent to #FEF8EB on the color wheel. They create harmonious and visually pleasing designs, ideal for projects that need a cohesive look.

Split Complementary Colors of #FEF8EB

Split complementary colors are two colors adjacent to the complementary color of #FEF8EB. They create a balanced and visually appealing color scheme.

Tetradic Colors of #FEF8EB

Tetradic colors form a rectangle on the color wheel, including #FEF8EB. They provide vibrant and diverse color schemes for creative designs.

Monochromatic Colors of #FEF8EB

Monochromatic colors are variations of #FEF8EB, including its shades, tints, and tones. They create elegant and minimalistic designs with a unified color theme.

Complementary Color of #FEF8EB

The complementary color of #FEF8EB is opposite it on the color wheel. Complementary colors provide strong contrast and are ideal for designs that need visual impact and attention.

CSS Examples of #FEF8EB

/* Using HEX */
body {
  background-color: #fef8eb;
}
/* Using RGB */
body {
  background-color: rgb(254, 248, 235);
}
/* Using RGB with opacity */
body {
  background-color: rgba(254, 248, 235, 0.5);
}
/* Using HSL */
body {
  background-color: hsl(41, 90%, 96%);
}
/* Text color */
p {
  color: #fef8eb;
}
Text Preview
/* Box shadow */
div {
  box-shadow: 4px 4px #fef8eb;
}
/* Border color */
.box {
  border: 4px solid #fef8eb;
}
/* Text shadow */
h1 {
  color: #222;
  text-shadow: 2px 2px 0 #fef8eb;
}
Text Shadow Preview
/* Background with text */
div {
  background: #fef8eb;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
}
#FEF8EB
On Black Background
#FEF8EB
On White Background
#FEF8EB

HTML Examples of #FEF8EB

<!-- Using HEX -->
<div style="background-color: #fef8eb; width: 100px; height: 100px;"></div>
<!-- Using RGB -->
<div style="background-color: rgb(254, 248, 235); width: 100px; height: 100px;"></div>
<!-- Using RGB with opacity -->
<div style="background-color: rgba(254, 248, 235, 0.5); width: 100px; height: 100px;"></div>
<!-- Using HSL -->
<div style="background-color: hsl(41, 90%, 96%); width: 100px; height: 100px;"></div>
<!-- Text color -->
<p style="color: #fef8eb;">This is a text example.</p>
Text Preview
<!-- Box shadow -->
<div style="box-shadow: 4px 4px #fef8eb; width: 100px; height: 100px;"></div>
<!-- Border color -->
<div style="border: 4px solid #fef8eb; width: 100px; height: 100px;"></div>
<!-- Text shadow -->
<h1 style="color: #222; text-shadow: 2px 2px 0 #fef8eb;">Text Shadow Preview</h1>
Text Shadow Preview
<!-- Background with text -->
<div style="background: #fef8eb; color: #fff; padding: 16px; border-radius: 8px;">
  #FEF8EB
</div>
#FEF8EB
On Black Background
#FEF8EB
On White Background
#FEF8EB

Related Colors of #FEF8EB

These colors are similar to #FEF8EB, with slight variations in hue. Use them to create harmonious designs or explore alternative shades for your projects.