Color: #EF8E1C

#EF8E1C Color Information

#EF8E1C is a light color. The closest websafe version is #EF8E1C. A complement of this color would be #1A7EEF, perceived brightness is 0.62, and the grayscale version is #868686.

In the HSL color space, this color has a hue angle of 32°,a saturation of 87%, and a lightness of 52%.The HSV representation shows a hue of 32°, a saturation of 88%, and a value of 94%.

In a RGB color space, #EF8E1C is composed of 94% red, 56% green and 11% blue. Whereas in a CMYK color space, it is composed of 0% cyan, 41% magenta, 88% yellow and 6% black.

In the Yxy color space, this color is represented as Y: 38.67, x: 0.5267, and y: 0.4224.

Color Code #EF8E1C

#EF8E1Crgb(239, 142, 28)
HEX
#EF8E1C
RGB
rgb(239, 142, 28)
HSL
hsl(32, 87%, 52%)
HSV
hsv(32, 88%, 94%)
CMYK
0%, 41%, 88%, 6%
XYZ
X: 48.22, Y: 38.67, Z: 4.66
Lab
L: 68.51, a: 32.62, b: 68.98
Name

Shades of Color #EF8E1C

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

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

#EF8E1Crgb(239, 142, 28)

About #EF8E1C Color Code

In the HSL color space, this color has a hue angle of 32°, a saturation of 87%, and a lightness of 52%. The HSV representation shows a hue of 32°, a saturation of 88%, and a value of 94%.

  • HEX: #EF8E1C
  • RGB: rgb(239, 142, 28)
  • HSL: hsl(32, 87%, 52%)
  • HSV: hsv(32, 88%, 94%)
  • CMYK: 0.00% cyan, 41.00% magenta, 88.00% yellow, 6.00% black
  • XYZ: 48.22, 38.67, 4.66
  • Yxy: 38.67, 0.5267, 0.4224
  • Hunter Lab: 68.51, 32.62, 68.98
  • CIE-Lab: 68.51, 32.62, 68.98

In the XYZ color space, this color is represented as X: 48.22, Y: 38.67, Z: 4.66. The Yxy representation further refines this as Y: 38.67, x: 0.5267, and y: 0.4224.

In the Hunter Lab color space, this color is represented as L: 68.51, a: 32.62, and b: 68.98. Similarly, in the CIE-Lab color space, it is represented as L: 68.51, a: 32.62, and b: 68.98.

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

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

Analogous Colors of #EF8E1C

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

Split Complementary Colors of #EF8E1C

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

Tetradic Colors of #EF8E1C

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

Monochromatic Colors of #EF8E1C

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

Complementary Color of #EF8E1C

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

/* Using HEX */
body {
  background-color: #ef8e1c;
}
/* Using RGB */
body {
  background-color: rgb(239, 142, 28);
}
/* Using RGB with opacity */
body {
  background-color: rgba(239, 142, 28, 0.5);
}
/* Using HSL */
body {
  background-color: hsl(32, 87%, 52%);
}
/* Text color */
p {
  color: #ef8e1c;
}
Text Preview
/* Box shadow */
div {
  box-shadow: 4px 4px #ef8e1c;
}
/* Border color */
.box {
  border: 4px solid #ef8e1c;
}
/* Text shadow */
h1 {
  color: #222;
  text-shadow: 2px 2px 0 #ef8e1c;
}
Text Shadow Preview
/* Background with text */
div {
  background: #ef8e1c;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
}
#EF8E1C
On Black Background
#EF8E1C
On White Background
#EF8E1C

HTML Examples of #EF8E1C

<!-- Using HEX -->
<div style="background-color: #ef8e1c; width: 100px; height: 100px;"></div>
<!-- Using RGB -->
<div style="background-color: rgb(239, 142, 28); width: 100px; height: 100px;"></div>
<!-- Using RGB with opacity -->
<div style="background-color: rgba(239, 142, 28, 0.5); width: 100px; height: 100px;"></div>
<!-- Using HSL -->
<div style="background-color: hsl(32, 87%, 52%); width: 100px; height: 100px;"></div>
<!-- Text color -->
<p style="color: #ef8e1c;">This is a text example.</p>
Text Preview
<!-- Box shadow -->
<div style="box-shadow: 4px 4px #ef8e1c; width: 100px; height: 100px;"></div>
<!-- Border color -->
<div style="border: 4px solid #ef8e1c; width: 100px; height: 100px;"></div>
<!-- Text shadow -->
<h1 style="color: #222; text-shadow: 2px 2px 0 #ef8e1c;">Text Shadow Preview</h1>
Text Shadow Preview
<!-- Background with text -->
<div style="background: #ef8e1c; color: #fff; padding: 16px; border-radius: 8px;">
  #EF8E1C
</div>
#EF8E1C
On Black Background
#EF8E1C
On White Background
#EF8E1C

Related Colors of #EF8E1C

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