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
Portland Orange #FF5A36 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Portland Orange #FF5A36 pairs with #36DBFF as its complementary color, and #36FF5A and #5A36FF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}