Color: #F1FBB7

#F1FBB7 Color Information

#F1FBB7 is a light color. The closest websafe version is #F1FBB7. A complement of this color would be #C1B7FB, perceived brightness is 0.94, and the grayscale version is #D9D9D9.

In the HSL color space, this color has a hue angle of 69°,a saturation of 89%, and a lightness of 85%.The HSV representation shows a hue of 69°, a saturation of 27%, and a value of 98%.

In a RGB color space, #F1FBB7 is composed of 95% red, 98% green and 72% blue. Whereas in a CMYK color space, it is composed of 4% cyan, 0% magenta, 27% yellow and 2% black.

In the Yxy color space, this color is represented as Y: 91.60, x: 0.3769, and y: 0.4196.

Color Code #F1FBB7

#F1FBB7rgb(241, 251, 183)
HEX
#F1FBB7
RGB
rgb(241, 251, 183)
HSL
hsl(69, 89%, 85%)
HSV
hsv(69, 27%, 98%)
CMYK
4%, 0%, 27%, 2%
XYZ
X: 82.28, Y: 91.60, Z: 44.41
Lab
L: 96.66, a: -11.33, b: 31.55
Name

Shades of Color #F1FBB7

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

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

#F1FBB7rgb(241, 251, 183)

About #F1FBB7 Color Code

In the HSL color space, this color has a hue angle of 69°, a saturation of 89%, and a lightness of 85%. The HSV representation shows a hue of 69°, a saturation of 27%, and a value of 98%.

  • HEX: #F1FBB7
  • RGB: rgb(241, 251, 183)
  • HSL: hsl(69, 89%, 85%)
  • HSV: hsv(69, 27%, 98%)
  • CMYK: 4.00% cyan, 0.00% magenta, 27.00% yellow, 2.00% black
  • XYZ: 82.28, 91.60, 44.41
  • Yxy: 91.60, 0.3769, 0.4196
  • Hunter Lab: 96.66, -11.33, 31.55
  • CIE-Lab: 96.66, -11.33, 31.55

In the XYZ color space, this color is represented as X: 82.28, Y: 91.60, Z: 44.41. The Yxy representation further refines this as Y: 91.60, x: 0.3769, and y: 0.4196.

In the Hunter Lab color space, this color is represented as L: 96.66, a: -11.33, and b: 31.55. Similarly, in the CIE-Lab color space, it is represented as L: 96.66, a: -11.33, and b: 31.55.

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

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

Analogous Colors of #F1FBB7

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

Split Complementary Colors of #F1FBB7

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

Tetradic Colors of #F1FBB7

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

Monochromatic Colors of #F1FBB7

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

Complementary Color of #F1FBB7

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

/* Using HEX */
body {
  background-color: #f1fbb7;
}
/* Using RGB */
body {
  background-color: rgb(241, 251, 183);
}
/* Using RGB with opacity */
body {
  background-color: rgba(241, 251, 183, 0.5);
}
/* Using HSL */
body {
  background-color: hsl(69, 89%, 85%);
}
/* Text color */
p {
  color: #f1fbb7;
}
Text Preview
/* Box shadow */
div {
  box-shadow: 4px 4px #f1fbb7;
}
/* Border color */
.box {
  border: 4px solid #f1fbb7;
}
/* Text shadow */
h1 {
  color: #222;
  text-shadow: 2px 2px 0 #f1fbb7;
}
Text Shadow Preview
/* Background with text */
div {
  background: #f1fbb7;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
}
#F1FBB7
On Black Background
#F1FBB7
On White Background
#F1FBB7

HTML Examples of #F1FBB7

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

Related Colors of #F1FBB7

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