Named palettes yield unexpected result
See original GitHub issueI would assume the following two styles to be equivalent
A | B |
---|---|
{ bands: [ {band: 1, palette: ['#000', '#f00']}, // red {band: 2, palette: ['#000', '#0f0']}, // green {band: 3, palette: ['#000', '#00f']} // blue ] } |
{ bands: [ {band: 1, palette: 'red'}, {band: 2, palette: 'green'}, {band: 3, palette: 'blue'} ] } |
However, they are not and produce totally different thumbnails:
A | B |
---|---|
![]() |
![]() |
Is this expected? Should "red"
be interpreted as equivalent to ['#000', '#f00']
Issue Analytics
- State:
- Created a year ago
- Comments:9 (5 by maintainers)
Top Results From Across the Web
Polychrome: Creating New Palettes
This result should not be unexpected based on the “greedy” nature of the underlying algorithm, which tries at each step to find the...
Read more >D.5 Defining and using custom colors - Bookdown
Color palettes are either defined as functions that return an output vector, data frame, or matrix, or as R objects that are vectors,...
Read more >seaborn/palettes.py at master - GitHub
Name of a seaborn palette (deep, muted, bright, pastel, dark, colorblind) ... While the separation of the resulting colors will be mathematically.
Read more >Colloids-Yield-Full-Color-Palette - C&EN
This came as no surprise to Manoharan. Other researchers had made so-called photonic pigments, or pigments based on structural color, ...
Read more >Plotly: How to change the colorscheme of a plotly express ...
Generally, changing the color scheme for a plotly express figure is very straight-forward. What's causing the problems here is the fact that ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
This was resolved in #858.
IMO the palette spec could be designed better. The priority order and all the things a string value could represent seems potentially confusing to users.
As one idea, I’d suggest new specification modes for the different conditionals so the function does not need to interpret opaque strings in so many ways, something like this:
Single-string palettes like
palette: 'green'
orpalette: '#0f0'
would not be allowed (or we allow them for now with existing behavior but deprecate it in the future).This would still let someone do [‘#000’, ‘green’] and get something perhaps unexpected, but I can’t see a way around that because you probably want to support CSS colors in palette arrays.