Hex #f08080 Color

#f08080
equivalent to

RGB

(240, 128, 128)

Details of #f08080

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
240
47.5506
0.00
0.00
66.1532
35.5221
59.6004
128
35.5221
0.79
0.47
42.8173
0.4409
47°
38.1109
128
24.7723
0.72
0.47   0.06
19.5481
0.3294
94°
17.0851

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11110000
360
240
F0
Green
10000000
200
128
80
Blue
10000000
200
128
80

RGB in % of #f08080

%48.39
%25.81
%25.81

CMYK in % of #f08080

%0
%47
%47
%6

Triads of color #f08080

#f08080 #8080f0 #80f080

Similar Colors to #f08080

#f08080 #f080b8 #f0b880

Preview Color #f08080 on black ground

#f08080 is very interesting for text.

Preview Color #f08080 on white ground

#f08080 is very interesting for text.

CSS Codes #f08080 color

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

Text Font Color #f08080

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

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

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

This div background color is #f08080


Border Color #f08080

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

The color of this border is #f08080


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #f08080