@sanity/ui
Version:
The Sanity UI components.
22 lines (17 loc) • 406 B
text/typescript
import {mixThemeColor} from './mixThemeColor'
test('mix 1', () => {
const result = mixThemeColor('#222222', {
black: '#222222',
white: '#ffffff',
blendMode: 'multiply',
})
expect(result).toBe('#222222')
})
test('mix 2', () => {
const result = mixThemeColor('#ffffff', {
black: '#222222',
white: '#ffffff',
blendMode: 'multiply',
})
expect(result).toBe('#ffffff')
})