()
| 513 | } |
| 514 | |
| 515 | function getHeatColors() { |
| 516 | const style = getComputedStyle(document.documentElement); |
| 517 | const colors = {}; |
| 518 | for (let i = 1; i <= 8; i++) { |
| 519 | colors[i] = style.getPropertyValue(`--heat-${i}`).trim(); |
| 520 | } |
| 521 | return colors; |
| 522 | } |
| 523 | |
| 524 | function getDiffColors() { |
| 525 | const style = getComputedStyle(document.documentElement); |
no outgoing calls
no test coverage detected
searching dependent graphs…