color details

Color Details
#00FFEF Color Hex

#00FFEF color RGB value is (0, 15, 254).
#00FFEF hex color red value is 0, green value is 15, and blue value is 254.
Cylindrical-coordinate representations (HSL) of color #00FFEF hue: 236.46, saturation: 1 and lightness: 0.5.

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

Color Spaces
Color spaces of #00FFEFValue
RGB0, 255, 239
HSL0.49, 1, 0.5
HSV176°, 100°, 100°
XYZ51.33, 77.75, 93.95
Base Numbers
Base Red Green Blue
Binary 0 11111111 11101111
Octal 0 377 357
Decimal 0 255 239
Hex 0 FF EF

RGB Percentages for Color #00FFEF

51.62%
48.38%

CMYK Percentages of the Color #00FFEF

100%
6.27%
CSS Codes for Color #00FFEF
.mybgColor {background-color: #00FFEF;}
.myforeColor {color: #00FFEF;}
.myborderColor {border:3px solid #00FFEF;}
Text Font Color #00FFEF

<p style="color:#00FFEF">Text here</p>

This sample text is styled with the font color #00FFEF. 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 #00FFEF

<div style="background-color:#00FFEF">Div content here</div>

The background color of this div is #00FFEF
Border Color #00FFEF

<div style="border:3px solid #00FFEF">Div here</div>

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

<p style="text-shadow: 4px 4px 2px rgba(0, 255, 239, 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 #00FFEF;">Text here</p>

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

Shadow Div Box

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

This div box has a shadow with a specified color. #00FFEF
Scroll to Top