Hex #ff7f00 Color

#ff7f00
equivalent to

RGB

(255, 127, 0)

Details of #ff7f00

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
255
48.8294
0.08
0.00
66.8538
36.4387
30°
60.3645
127
36.4387
1.00
0.50
43.3239
0.5442
100°
38.7525
0
4.4598
0.50
1.00   0.00
73.9098
0.4061
100°
37.8753

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11111111
377
255
FF
Green
1111111
177
127
7F
Blue
0
0
0
0

RGB in % of #ff7f00

%66.75
%33.25
%0.00

CMYK in % of #ff7f00

%0
%50
%100
%0

Triads of color #ff7f00

#ff7f00 #7f00ff #00ff00

Similar Colors to #ff7f00

#ff7f00 #ff0000 #ffff00

Preview Color #ff7f00 on black ground

#ff7f00 is very interesting for text.

Preview Color #ff7f00 on white ground

#ff7f00 is very interesting for text.

CSS Codes #ff7f00 color

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

Text Font Color #ff7f00

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

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

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

This div background color is #ff7f00


Border Color #ff7f00

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

The color of this border is #ff7f00


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #ff7f00