(_target, prop)
| 157 | // Legacy export for backwards compatibility - use a getter to avoid circular dependency |
| 158 | export const colors = new Proxy({} as Colors, { |
| 159 | get(_target, prop) { |
| 160 | return getColors()[prop as keyof Colors]; |
| 161 | }, |
| 162 | }); |
| 163 | |
| 164 | // Get the package root directory (where this module is installed) |
nothing calls this directly
no test coverage detected