Description
When requesting a corporation which doesn't have a color palette set, ESI returns a palette with a main color of #ffffff, which is incorrect.
In-game uses a different color in that situation (based on the corp logo I think), and ESI could send the same. If that's not feasible, then ESI should send back null instead of the incorrect white palette.
Request
https://developers.eveonline.com/api-explorer#operations/GetCorporationsCorporationId
Compatibility Date
2026-07-21
Response - Status Code
200
Response - Headers
Response - Body
...
"palette": {
"main_color": "#ffffff"
}
...
Expected Response
Color from the corp logo (or whatever in-game shows as the main color when corp palette is unset):
...
"palette": {
"main_color": "#ad976e"
}
...
Or if that's not possible:
...
"palette": null
...
Description
When requesting a corporation which doesn't have a color palette set, ESI returns a palette with a main color of
#ffffff, which is incorrect.In-game uses a different color in that situation (based on the corp logo I think), and ESI could send the same. If that's not feasible, then ESI should send back
nullinstead of the incorrect white palette.Request
https://developers.eveonline.com/api-explorer#operations/GetCorporationsCorporationId
Compatibility Date
2026-07-21
Response - Status Code
200
Response - Headers
Response - Body
Expected Response