()
| 111 | } |
| 112 | |
| 113 | function getGridBorderColor() { |
| 114 | const isDarkMode = window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches; |
| 115 | return isDarkMode ? "rgba(255, 255, 255, 0.2)" : "rgba(0, 0, 0, 0.2)"; |
| 116 | } |
| 117 | |
| 118 | function addThresholdAnnotations(thresholds) { |
| 119 | if (!thresholds) return []; |
no outgoing calls
no test coverage detected