Merge pull request #2557 from Tyriar/fix_release

Correct import in Color.ts
This commit is contained in:
Daniel Imms
2019-11-10 11:49:12 -08:00
committed by GitHub
+1 -1
View File
@@ -3,7 +3,7 @@
* @license MIT
*/
import { IColor } from './Types';
import { IColor } from 'browser/Types';
export function blend(bg: IColor, fg: IColor): IColor {
const a = (fg.rgba & 0xFF) / 255;