Color: #F1EBB1

#F1EBB1 Color Information

#F1EBB1 is a light color. The closest websafe version is #F1EBB1. A complement of this color would be #B1B7F1, perceived brightness is 0.90, and the grayscale version is #D1D1D1.

In the HSL color space, this color has a hue angle of 54°,a saturation of 70%, and a lightness of 82%.The HSV representation shows a hue of 54°, a saturation of 27%, and a value of 95%.

In a RGB color space, #F1EBB1 is composed of 95% red, 92% green and 69% blue. Whereas in a CMYK color space, it is composed of 0% cyan, 2% magenta, 27% yellow and 5% black.

In the Yxy color space, this color is represented as Y: 81.79, x: 0.3849, and y: 0.4108.

Color Code #F1EBB1

#F1EBB1rgb(241, 235, 177)
HEX
#F1EBB1
RGB
rgb(241, 235, 177)
HSL
hsl(54, 70%, 82%)
HSV
hsv(54, 27%, 95%)
CMYK
0%, 2%, 27%, 5%
XYZ
X: 76.64, Y: 81.79, Z: 40.69
Lab
L: 92.48, a: -4.45, b: 29.03
Name

Shades of Color #F1EBB1

Shades are created by darkening the original color #F1EBB1 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 #F1EBB1

Tints are created by lightening the original color #F1EBB1 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.

#F1EBB1rgb(241, 235, 177)

About #F1EBB1 Color Code

In the HSL color space, this color has a hue angle of 54°, a saturation of 70%, and a lightness of 82%. The HSV representation shows a hue of 54°, a saturation of 27%, and a value of 95%.

  • HEX: #F1EBB1
  • RGB: rgb(241, 235, 177)
  • HSL: hsl(54, 70%, 82%)
  • HSV: hsv(54, 27%, 95%)
  • CMYK: 0.00% cyan, 2.00% magenta, 27.00% yellow, 5.00% black
  • XYZ: 76.64, 81.79, 40.69
  • Yxy: 81.79, 0.3849, 0.4108
  • Hunter Lab: 92.48, -4.45, 29.03
  • CIE-Lab: 92.48, -4.45, 29.03

In the XYZ color space, this color is represented as X: 76.64, Y: 81.79, Z: 40.69. The Yxy representation further refines this as Y: 81.79, x: 0.3849, and y: 0.4108.

In the Hunter Lab color space, this color is represented as L: 92.48, a: -4.45, and b: 29.03. Similarly, in the CIE-Lab color space, it is represented as L: 92.48, a: -4.45, and b: 29.03.

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 #F1EBB1

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

Analogous Colors of #F1EBB1

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

Split Complementary Colors of #F1EBB1

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

Tetradic Colors of #F1EBB1

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

Monochromatic Colors of #F1EBB1

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

Complementary Color of #F1EBB1

The complementary color of #F1EBB1 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 #F1EBB1

/* Using HEX */
body {
  background-color: #f1ebb1;
}
/* Using RGB */
body {
  background-color: rgb(241, 235, 177);
}
/* Using RGB with opacity */
body {
  background-color: rgba(241, 235, 177, 0.5);
}
/* Using HSL */
body {
  background-color: hsl(54, 70%, 82%);
}
/* Text color */
p {
  color: #f1ebb1;
}
Text Preview
/* Box shadow */
div {
  box-shadow: 4px 4px #f1ebb1;
}
/* Border color */
.box {
  border: 4px solid #f1ebb1;
}
/* Text shadow */
h1 {
  color: #222;
  text-shadow: 2px 2px 0 #f1ebb1;
}
Text Shadow Preview
/* Background with text */
div {
  background: #f1ebb1;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
}
#F1EBB1
On Black Background
#F1EBB1
On White Background
#F1EBB1

HTML Examples of #F1EBB1

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

Related Colors of #F1EBB1

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