Hex #00e5ee Color

#00e5ee
equivalent to

RGB

(0, 229, 238)

Details of #00e5ee

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
0
43.4519
0.51
1.00
83.0259
62.2117
182°
78.8744
229
62.2117
1.00
0.04
-41.6587
0.2214
100°
-39.6939
238
90.6068
0.47
0.00   0.07
-17.3837
0.3170
93°
-12.8734

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
0
0
0
0
Green
11100101
345
229
E5
Blue
11101110
356
238
EE

RGB in % of #00e5ee

%0.00
%49.04
%50.96

CMYK in % of #00e5ee

%100
%4
%0
%7

Triads of color #00e5ee

#00e5ee #e5ee00 #ee00ee

Similar Colors to #00e5ee

#00e5ee #00ee80 #006eee

Preview Color #00e5ee on black ground

#00e5ee is very interesting for text.

Preview Color #00e5ee on white ground

#00e5ee is very interesting for text.

CSS Codes #00e5ee color

.mybgcolor {background-color:#00e5ee; }
.myforecolor {color:#00e5ee; }
.mybordercolor {border:3px solid #00e5ee; }

Text Font Color #00e5ee

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

This sample text font color is #00e5ee
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 #00e5ee

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

This div background color is #00e5ee


Border Color #00e5ee

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

The color of this border is #00e5ee


Examples Css3

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

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 #00e5ee">Text here</p>
				

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #00e5ee