Color: #FBE0A5

#FBE0A5 Color Information

#FBE0A5 is a light color. The closest websafe version is #FBE0A5. A complement of this color would be #A7C2FB, perceived brightness is 0.88, and the grayscale version is #D0D0D0.

In the HSL color space, this color has a hue angle of 41°,a saturation of 91%, and a lightness of 82%.The HSV representation shows a hue of 41°, a saturation of 34%, and a value of 98%.

In a RGB color space, #FBE0A5 is composed of 98% red, 88% green and 65% blue. Whereas in a CMYK color space, it is composed of 0% cyan, 11% magenta, 34% yellow and 2% black.

In the Yxy color space, this color is represented as Y: 77.18, x: 0.4034, and y: 0.4088.

Color Code #FBE0A5

#FBE0A5rgb(251, 224, 165)
HEX
#FBE0A5
RGB
rgb(251, 224, 165)
HSL
hsl(41, 91%, 82%)
HSV
hsv(41, 34%, 98%)
CMYK
0%, 11%, 34%, 2%
XYZ
X: 76.15, Y: 77.18, Z: 35.45
Lab
L: 90.41, a: 3.53, b: 32.54
Name

Shades of Color #FBE0A5

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

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

#FBE0A5rgb(251, 224, 165)

About #FBE0A5 Color Code

In the HSL color space, this color has a hue angle of 41°, a saturation of 91%, and a lightness of 82%. The HSV representation shows a hue of 41°, a saturation of 34%, and a value of 98%.

  • HEX: #FBE0A5
  • RGB: rgb(251, 224, 165)
  • HSL: hsl(41, 91%, 82%)
  • HSV: hsv(41, 34%, 98%)
  • CMYK: 0.00% cyan, 11.00% magenta, 34.00% yellow, 2.00% black
  • XYZ: 76.15, 77.18, 35.45
  • Yxy: 77.18, 0.4034, 0.4088
  • Hunter Lab: 90.41, 3.53, 32.54
  • CIE-Lab: 90.41, 3.53, 32.54

In the XYZ color space, this color is represented as X: 76.15, Y: 77.18, Z: 35.45. The Yxy representation further refines this as Y: 77.18, x: 0.4034, and y: 0.4088.

In the Hunter Lab color space, this color is represented as L: 90.41, a: 3.53, and b: 32.54. Similarly, in the CIE-Lab color space, it is represented as L: 90.41, a: 3.53, and b: 32.54.

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

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

Analogous Colors of #FBE0A5

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

Split Complementary Colors of #FBE0A5

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

Tetradic Colors of #FBE0A5

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

Monochromatic Colors of #FBE0A5

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

Complementary Color of #FBE0A5

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

/* Using HEX */
body {
  background-color: #fbe0a5;
}
/* Using RGB */
body {
  background-color: rgb(251, 224, 165);
}
/* Using RGB with opacity */
body {
  background-color: rgba(251, 224, 165, 0.5);
}
/* Using HSL */
body {
  background-color: hsl(41, 91%, 82%);
}
/* Text color */
p {
  color: #fbe0a5;
}
Text Preview
/* Box shadow */
div {
  box-shadow: 4px 4px #fbe0a5;
}
/* Border color */
.box {
  border: 4px solid #fbe0a5;
}
/* Text shadow */
h1 {
  color: #222;
  text-shadow: 2px 2px 0 #fbe0a5;
}
Text Shadow Preview
/* Background with text */
div {
  background: #fbe0a5;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
}
#FBE0A5
On Black Background
#FBE0A5
On White Background
#FBE0A5

HTML Examples of #FBE0A5

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

Related Colors of #FBE0A5

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