| 199 | type NaiveColorKey = `${App.Theme.ThemeColorKey}Color${NaiveColorScene}`; |
| 200 | type NaiveThemeColor = Partial<Record<NaiveColorKey, string>>; |
| 201 | interface NaiveColorAction { |
| 202 | scene: NaiveColorScene; |
| 203 | handler: (color: string) => string; |
| 204 | } |
| 205 | |
| 206 | /** |
| 207 | * Get naive theme colors |
nothing calls this directly
no outgoing calls
no test coverage detected