Hex #00b2ee Color

#00b2ee
equivalent to

RGB

(0, 178, 238)

Details of #00b2ee

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
0
31.3530
0.54
1.00
68.0308
38.0138
195°
61.6554
178
38.0138
1.00
0.25
-16.7265
0.2011
100°
-17.1256
238
86.5738
0.47
0.00   0.07
-40.4037
0.2438
93°
-40.0640

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
0
0
0
0
Green
10110010
262
178
B2
Blue
11101110
356
238
EE

RGB in % of #00b2ee

%0.00
%42.79
%57.21

CMYK in % of #00b2ee

%100
%25
%0
%7

Triads of color #00b2ee

#00b2ee #b2ee00 #ee00ee

Similar Colors to #00b2ee

#00b2ee #00eeb3 #003bee

Preview Color #00b2ee on black ground

#00b2ee is very interesting for text.

Preview Color #00b2ee on white ground

#00b2ee is very interesting for text.

CSS Codes #00b2ee color

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

Text Font Color #00b2ee

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

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

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

This div background color is #00b2ee


Border Color #00b2ee

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

The color of this border is #00b2ee


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #00b2ee