Hex #00bfff Color

#00bfff
equivalent to

RGB

(0, 191, 255)

Details of #00bfff

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
0
36.6808
0.54
1.00
72.5492
44.4816
195°
66.6945
191
44.4816
1.00
0.25
-17.6480
0.2011
100°
-18.5432
255
101.2603
0.50
0.00   0.00
-42.5483
0.2438
100°
-43.2999

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
0
0
0
0
Green
10111111
277
191
BF
Blue
11111111
377
255
FF

RGB in % of #00bfff

%0.00
%42.83
%57.17

CMYK in % of #00bfff

%100
%25
%0
%0

Triads of color #00bfff

#00bfff #bfff00 #ff00ff

Similar Colors to #00bfff

#00bfff #00ffc0 #0040ff

Preview Color #00bfff on black ground

#00bfff is very interesting for text.

Preview Color #00bfff on white ground

#00bfff is very interesting for text.

CSS Codes #00bfff color

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

Text Font Color #00bfff

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

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

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

This div background color is #00bfff


Border Color #00bfff

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

The color of this border is #00bfff


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #00bfff