(name)
| 122 | const root = document.documentElement; |
| 123 | |
| 124 | function getComputed(name) { |
| 125 | return getComputedStyle(root).getPropertyValue(name).trim() || null; |
| 126 | } |
| 127 | |
| 128 | /** Returns array of 7 branch/lane colors from CSS variables (theme-aware). */ |
| 129 | window.__GG.getGraphColors = function () { |