Hex #00eeee Color

#00eeee
equivalent to

RGB

(0, 238, 238)

Details of #00eeee

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
0
46.0072
0.50
1.00
85.6664
67.3221
180°
82.0501
238
67.3221
1.00
0.00
-45.6333
0.2247
100°
-43.4985
238
91.4586
0.47
0.00   0.07
-13.4188
0.3287
93°
-8.6306

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
0
0
0
0
Green
11101110
356
238
EE
Blue
11101110
356
238
EE

RGB in % of #00eeee

%0.00
%50.00
%50.00

CMYK in % of #00eeee

%100
%0
%0
%7

Triads of color #00eeee

#00eeee #eeee00 #ee00ee

Similar Colors to #00eeee

#00eeee #00ee77 #0077ee

Preview Color #00eeee on black ground

#00eeee is very interesting for text.

Preview Color #00eeee on white ground

#00eeee is very interesting for text.

CSS Codes #00eeee color

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

Text Font Color #00eeee

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

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

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

This div background color is #00eeee


Border Color #00eeee

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

The color of this border is #00eeee


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #00eeee