Hex #ffc0cb Color

#ffc0cb
equivalent to

RGB

(255, 192, 203)

Details of #ffc0cb

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
255
70.8691
0.97
0.00
83.5848
63.2711
350°
79.5431
192
63.2711
1.00
0.25
24.1497
0.3559
25°
19.8349
203
64.9772
0.88
0.20   0.00
3.3154
0.3178
100°
7.2638

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11111111
377
255
FF
Green
11000000
300
192
C0
Blue
11001011
313
203
CB

RGB in % of #ffc0cb

%39.23
%29.54
%31.23

CMYK in % of #ffc0cb

%0
%25
%20
%0

Triads of color #ffc0cb

#ffc0cb #c0cbff #cbffcb

Similar Colors to #ffc0cb

#ffc0cb #ffc0eb #ffd5c0

Preview Color #ffc0cb on black ground

#ffc0cb is very interesting for text.

Preview Color #ffc0cb on white ground

#ffc0cb is very interesting for text.

CSS Codes #ffc0cb color

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

Text Font Color #ffc0cb

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

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

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

This div background color is #ffc0cb


Border Color #ffc0cb

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

The color of this border is #ffc0cb


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #ffc0cb