Portland Orange
HEX: #FF5A36 | Modern Palette
Color Specifications
#FF5A36
255, 90, 54
10°, 100% ,60%
0, 65, 79, 0
About Portland Orange
Portland Orange (#FF5A36) is a color with RGB(255, 90, 54) and HSL(10.7°, 100%, 60.6%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #36DBFF, which creates strong contrast. Its triadic palette includes #36FF5A and #5A36FF. The name comes from Portland Orange (English).
- HEX: #FF5A36
- RGB: 255, 90, 54
- HSL: 10.7°, 100%, 60.6%
- Mood: Energetic, Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #36DBFF
- Triadic colors: #36FF5A, #5A36FF
- The name comes from Portland Orange (English).
Live Components
Color Palettes
Color Harmonies
Complementary
The color directly opposite on the color wheel — creates maximum contrast and vibrance.
Analogous
Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.
Triadic
Three colors equally spaced 120° apart — bold, balanced, and visually rich.
Split-Complementary
Two colors flanking the complement — high contrast with less tension than full complementary.
Tetradic (Square)
Four colors at 90° intervals — rich variety, best when one color dominates.
Monochromatic
Shades and tints of the same hue — cohesive, elegant, and easy to work with.
Shades & Tints
A seamless scale of #FF5A36 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color 'Portland Orange' is not a traditional, ancient color name but rather a modern designation. Its primary association comes from the branding of the Portland Trail Blazers NBA team, whose original colors included a distinct orange. This specific hex code (#ff5a36) is often cited as the official or a very close approximation of the orange used by the team. The name solidifies its connection to the city of Portland, Oregon, through this prominent cultural touchstone.
First Recorded Use
Likely mid-to-late 20th century, gaining prominence with sports team branding.
Cultural Associations
Strongly associated with the Portland Trail Blazers NBA team, and by extension, the city of Portland, Oregon. It evokes a sense of local pride and sports fandom. It's a vibrant, energetic orange.
Code Snippets
/* Background */
.element {
background-color: #FF5A36;
}
/* Text */
.element {
color: #FF5A36;
}
/* Border */
.element {
border: 1px solid #FF5A36;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FF5A36,
#36DBFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FF5A36,
#36DBFF
);
}
// SCSS variable
$portland-orange: #FF5A36;
// With RGB channels (useful for rgba() usage)
$portland-orange-r: 255;
$portland-orange-g: 90;
$portland-orange-b: 54;
// Usage
.element {
background-color: $portland-orange;
color: rgba($portland-orange-r, $portland-orange-g, $portland-orange-b, 0.8);
}