(text = '', secondText = '', isPseudo = false)
| 46 | } |
| 47 | |
| 48 | export function getNodeColor(text = '', secondText = '', isPseudo = false) { |
| 49 | if (isPseudo) { |
| 50 | return PSEUDO_COLOR; |
| 51 | } |
| 52 | return colors(text, secondText).toString(); |
| 53 | } |
| 54 | |
| 55 | export function getNodeColorDark(text = '', secondText = '', isPseudo = false) { |
| 56 | if (isPseudo) { |
no test coverage detected
searching dependent graphs…