Hex #ebebeb Color

#ebebeb
equivalent to

RGB

(235, 235, 235)

Details of #ebebeb

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
235
78.9647
0.00
0.00
93.0481
83.0770
91.1466
235
83.0770
0.00
0.00
0.0049
0.3127
-4.8629
235
90.4708
0.92
0.00   0.08
-0.0098
0.3290
92°
4.9723

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11101011
353
235
EB
Green
11101011
353
235
EB
Blue
11101011
353
235
EB

RGB in % of #ebebeb

%33.33
%33.33
%33.33

CMYK in % of #ebebeb

%0
%0
%0
%8

Triads of color #ebebeb

#ebebeb #ebebeb #ebebeb

Similar Colors to #ebebeb

#ebebeb #ebebeb #ebebeb

Preview Color #ebebeb on black ground

#ebebeb is very interesting for text.

Preview Color #ebebeb on white ground

#ebebeb is very interesting for text.

CSS Codes #ebebeb color

.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 font color is #ebebeb
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.


Background Color #ebebeb

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

This div background color is #ebebeb


Border Color #ebebeb

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

The color of this border is #ebebeb


Examples Css3

.textShadowRgb {text-shadow: 4px 4px 2px rgba(0,0,0, 0.8); }
.textShadowHex {
text-shadow: 4px 4px 2px #ebebeb; }
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #ebebeb;
-webkit-box-shadow: 1px 1px 3px 2px #ebebeb;
box-shadow:         1px 1px 3px 2px #ebebeb; }
				

Text Shadow using RGB

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

The shadow of this text using RGB.


Text Shadow using Hex

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #ebebeb