| 80 | * globally (a display preference, not a per-project fact). */ |
| 81 | |
| 82 | export interface DisplaySettings { |
| 83 | /** Edge brightness multiplier (0.1–3, default 1). */ |
| 84 | edgeBrightness: number; |
| 85 | /** Node glow-boost multiplier (0–2, default 1). */ |
| 86 | nodeGlow: number; |
| 87 | /** Bloom intensity multiplier (0–2, default 1). */ |
| 88 | bloom: number; |
| 89 | } |
| 90 | |
| 91 | export const DEFAULT_DISPLAY_SETTINGS: DisplaySettings = { |
| 92 | edgeBrightness: 1, |
nothing calls this directly
no outgoing calls
no test coverage detected