Hex #ff707d Color

#ff707d
equivalent to

RGB

(255, 112, 125)

Details of #ff707d

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
255
50.7358
0.98
0.00
65.2229
34.3290
355°
58.5910
112
34.3290
1.00
0.56
55.4991
0.4680
56°
52.0350
125
23.3541
0.72
0.51   0.00
20.3201
0.3166
100°
17.3886

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11111111
377
255
FF
Green
1110000
160
112
70
Blue
1111101
175
125
7D

RGB in % of #ff707d

%51.83
%22.76
%25.41

CMYK in % of #ff707d

%0
%56
%51
%0

Triads of color #ff707d

#ff707d #707dff #7dff7d

Similar Colors to #ff707d

#ff707d #ff70c5 #ffab70

Preview Color #ff707d on black ground

#ff707d is very interesting for text.

Preview Color #ff707d on white ground

#ff707d is very interesting for text.

CSS Codes #ff707d color

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

Text Font Color #ff707d

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

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

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

This div background color is #ff707d


Border Color #ff707d

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

The color of this border is #ff707d


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #ff707d