Skip to content

Commit

Permalink
Coloring from thread
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Feb 1, 2025
1 parent 0bce761 commit 7cbc4a1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test_data/volvox/umd_plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,12 @@
configure(pluginManager) {
pluginManager.jexl.addFunction('repeatColor', feature => {
let type = feature.get('repeatClass')
return { R: 'red', RC: 'green', F: 'blue', C: 'orange' }[type]
return {
R: '#00A000',
RC: '#FF7F00',
F: '#8b0000',
C: '#0000FF',
}[type]
})
}
}
Expand Down

0 comments on commit 7cbc4a1

Please sign in to comment.