#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 of #ebebeb | Value |
---|---|
RGB | 235, 235, 235 |
HSL | 0, 0, 0.92 |
HSV | 0°, 0°, 92° |
XYZ | 78.96, 83.08, 90.46 |
Base | Red | Green | Blue |
---|---|---|---|
Binary | 11101011 | 11101011 | 11101011 |
Octal | 353 | 353 | 353 |
Decimal | 235 | 235 | 235 |
Hex | EB | EB | EB |
Shades of #ebebeb
Tints of #ebebeb
.mybgColor {background-color: #ebebeb;} .myforeColor {color: #ebebeb;} .myborderColor {border:3px solid #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,
<div style="background-color:#ebebeb">Div content here</div>
<div style="border:3px solid #ebebeb">Div here</div>
.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; }
<p style="text-shadow: 4px 4px 2px rgba(235, 235, 235, 0.8);">Text here</p>
This text has a shadow with RGB values.
<p style="text-shadow: 4px 4px 2px #ebebeb;">Text here</p>
This text has a shadow with hexadecimal (hex) values.
<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>