Hex #ff4500 Color

#ff4500
equivalent to

RGB

(255, 69, 0)

Details of #ff4500

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
255
43.3681
0.05
0.00
57.5750
25.5162
16°
50.5136
69
25.5162
1.00
0.73
67.7955
0.6063
100°
64.8513
0
2.6394
0.50
1.00   0.00
68.9714
0.3568
100°
32.2618

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11111111
377
255
FF
Green
1000101
105
69
45
Blue
0
0
0
0

RGB in % of #ff4500

%78.70
%21.30
%0.00

CMYK in % of #ff4500

%0
%73
%100
%0

Triads of color #ff4500

#ff4500 #4500ff #00ff00

Similar Colors to #ff4500

#ff4500 #ff003b #ffc500

Preview Color #ff4500 on black ground

#ff4500 is very interesting for text.

Preview Color #ff4500 on white ground

#ff4500 is very interesting for text.

CSS Codes #ff4500 color

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

Text Font Color #ff4500

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

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

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

This div background color is #ff4500


Border Color #ff4500

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

The color of this border is #ff4500


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #ff4500