()
| 512 | // Created lazily because `#createColors` loads the (large) webpack package, |
| 513 | // which commands like `version`/`info` don't otherwise need. |
| 514 | get colors(): Colors { |
| 515 | return (this.#colors ??= this.#createColors()); |
| 516 | } |
| 517 | |
| 518 | set colors(value: Colors) { |
| 519 | this.#colors = value; |
nothing calls this directly
no test coverage detected