color details

Color Details
#ebebeb Color Hex

#ebebeb color RGB value is (14, 190, 190).
#ebebeb hex color red value is 14, green value is 190, and blue value is 190.
Cylindrical-coordinate representations (HSL) of color #ebebeb hue: 180, saturation: 0.86 and lightness: 0.4.

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

Color Spaces
Color spaces of #ebebebValue
RGB235, 235, 235
HSL0, 0, 0.92
HSV0°, 0°, 92°
XYZ78.96, 83.08, 90.46
Base Numbers
Base Red Green Blue
Binary 11101011 11101011 11101011
Octal 353 353 353
Decimal 235 235 235
Hex EB EB EB

RGB Percentages for Color #ebebeb

33.33%
33.33%
33.33%

CMYK Percentages of the Color #ebebeb

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

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

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

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

The background color of this div is #ebebeb
Border Color #ebebeb

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

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

<p style="text-shadow: 4px 4px 2px rgba(235, 235, 235, 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 #ebebeb;">Text here</p>

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

Shadow Div Box

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

This div box has a shadow with a specified color. #ebebeb

Scroll to Top