(indexed: RGBA[], base: RGBA, overlay: RGBA, value: number)
| 269 | } |
| 270 | |
| 271 | function splashShadow(indexed: RGBA[], base: RGBA, overlay: RGBA, value: number): RGBA { |
| 272 | const mixed = tint(base, overlay, value) |
| 273 | return nearestIndexed(indexed, mixed) |
| 274 | } |
| 275 | |
| 276 | export function resolveTheme(theme: ThemeJson, pick: "dark" | "light"): TuiThemeCurrent { |
| 277 | const defs = theme.defs ?? {} |
no test coverage detected