Correct import in Color.ts

This commit is contained in:
Daniel Imms
2019-11-10 11:48:32 -08:00
parent a8ff27ceb9
commit 450a626218
+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;