color details

Color Details
#66ffff Color Hex

#66ffff color RGB value is (6, 111, 255).
#66ffff hex color red value is 6, green value is 111, and blue value is 255.
Cylindrical-coordinate representations (HSL) of color #66ffff hue: 214.7, saturation: 1 and lightness: 0.51.

The process color (four-color CMYK) of #66ffff color hex is 0.00, 0.28, 0.40, 0.03. Web safe color of #66ffff is #ff9999. Color #66ffff contains mainly RED.

Color Spaces
Color spaces of #66ffffValue
RGB102, 255, 255
HSL0.5, 1, 0.7
HSV180°, 60°, 100°
XYZ59.28, 81.56, 107.21
Base Numbers
Base Red Green Blue
Binary 1100110 11111111 11111111
Octal 146 377 377
Decimal 102 255 255
Hex 66 FF FF

RGB Percentages for Color #66ffff

16.67%
41.67%
41.67%

CMYK Percentages of the Color #66ffff

60%
CSS Codes for Color #66ffff
.mybgColor {background-color: #66ffff;}
.myforeColor {color: #66ffff;}
.myborderColor {border:3px solid #66ffff;}
Text Font Color #66ffff

<p style="color:#66ffff">Text here</p>

This sample text is styled with the font color #66ffff. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here,

Background Color #66ffff

<div style="background-color:#66ffff">Div content here</div>

The background color of this div is #66ffff
Border Color #66ffff

<div style="border:3px solid #66ffff">Div here</div>

The border color of this div is #66ffff
Css3 Examples
            .textShadowRgb {
                text-shadow: 4px 4px 2px rgba(102, 255, 255, 0.8);            }
            .textShadowHex {
                text-shadow: 4px 4px 2px #66ffff;            }
            .divShadow {
                -moz-box-shadow: 1px 1px 3px #66ffff;
-webkit-box-shadow: 1px 1px 3px #66ffff;
box-shadow: 1px 1px 3px #66ffff;            }
            
Text Shadow Using RGB Values

<p style="text-shadow: 4px 4px 2px rgba(102, 255, 255, 0.8);">Text here</p>

This text has a shadow with RGB values.

Text Shadow Using Hex Values

<p style="text-shadow: 4px 4px 2px #66ffff;">Text here</p>

This text has a shadow with hexadecimal (hex) values.

Shadow Div Box

<div style="-moz-box-shadow: 1px 1px 3px #66ffff; -webkit-box-shadow: 1px 1px 3px #66ffff; box-shadow: 1px 1px 3px #66ffff;">Div content here</div>

This div box has a shadow with a specified color. #66ffff

Scroll to Top