Color: #FECF5C

#FECF5C Color Information

#FECF5C is a light color. The closest websafe version is #FECF5C. A complement of this color would be #5D8AFE, perceived brightness is 0.82, and the grayscale version is #ADADAD.

In the HSL color space, this color has a hue angle of 43°,a saturation of 99%, and a lightness of 68%.The HSV representation shows a hue of 43°, a saturation of 64%, and a value of 100%.

In a RGB color space, #FECF5C is composed of 100% red, 81% green and 36% blue. Whereas in a CMYK color space, it is composed of 0% cyan, 19% magenta, 64% yellow and 0% black.

In the Yxy color space, this color is represented as Y: 67.43, x: 0.4546, and y: 0.4457.

Color Code #FECF5C

#FECF5Crgb(254, 207, 92)
HEX
#FECF5C
RGB
rgb(254, 207, 92)
HSL
hsl(43, 99%, 68%)
HSV
hsv(43, 64%, 100%)
CMYK
0%, 19%, 64%, 0%
XYZ
X: 68.78, Y: 67.43, Z: 15.08
Lab
L: 85.72, a: 8.29, b: 61.88
Name

Shades of Color #FECF5C

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

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

#FECF5Crgb(254, 207, 92)

About #FECF5C Color Code

In the HSL color space, this color has a hue angle of 43°, a saturation of 99%, and a lightness of 68%. The HSV representation shows a hue of 43°, a saturation of 64%, and a value of 100%.

  • HEX: #FECF5C
  • RGB: rgb(254, 207, 92)
  • HSL: hsl(43, 99%, 68%)
  • HSV: hsv(43, 64%, 100%)
  • CMYK: 0.00% cyan, 19.00% magenta, 64.00% yellow, 0.00% black
  • XYZ: 68.78, 67.43, 15.08
  • Yxy: 67.43, 0.4546, 0.4457
  • Hunter Lab: 85.72, 8.29, 61.88
  • CIE-Lab: 85.72, 8.29, 61.88

In the XYZ color space, this color is represented as X: 68.78, Y: 67.43, Z: 15.08. The Yxy representation further refines this as Y: 67.43, x: 0.4546, and y: 0.4457.

In the Hunter Lab color space, this color is represented as L: 85.72, a: 8.29, and b: 61.88. Similarly, in the CIE-Lab color space, it is represented as L: 85.72, a: 8.29, and b: 61.88.

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

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

Analogous Colors of #FECF5C

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

Split Complementary Colors of #FECF5C

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

Tetradic Colors of #FECF5C

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

Monochromatic Colors of #FECF5C

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

Complementary Color of #FECF5C

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

/* Using HEX */
body {
  background-color: #fecf5c;
}
/* Using RGB */
body {
  background-color: rgb(254, 207, 92);
}
/* Using RGB with opacity */
body {
  background-color: rgba(254, 207, 92, 0.5);
}
/* Using HSL */
body {
  background-color: hsl(43, 99%, 68%);
}
/* Text color */
p {
  color: #fecf5c;
}
Text Preview
/* Box shadow */
div {
  box-shadow: 4px 4px #fecf5c;
}
/* Border color */
.box {
  border: 4px solid #fecf5c;
}
/* Text shadow */
h1 {
  color: #222;
  text-shadow: 2px 2px 0 #fecf5c;
}
Text Shadow Preview
/* Background with text */
div {
  background: #fecf5c;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
}
#FECF5C
On Black Background
#FECF5C
On White Background
#FECF5C

HTML Examples of #FECF5C

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

Related Colors of #FECF5C

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