Merges user-provided colors with default VideoGrid colors.
Optional
Partial color configuration to merge with defaults
Complete color configuration with defaults filled in
Allows partial overrides - any properties not specified in userColors will use the default values.
userColors
const colors = mergeVideoGridColors({ dominantBorder: '#ff0000' });// Result: { background: '#212121', dominantBorder: '#ff0000' } Copy
const colors = mergeVideoGridColors({ dominantBorder: '#ff0000' });// Result: { background: '#212121', dominantBorder: '#ff0000' }
Merges user-provided colors with default VideoGrid colors.