More efficient default fill color

This commit is contained in:
ahocevar
2019-03-19 13:57:10 +01:00
parent 3f7c52c29f
commit b33ceaa400
3 changed files with 6 additions and 8 deletions

View File

@@ -85,9 +85,9 @@ export const defaultFont = '10px sans-serif';
/**
* @const
* @type {import("../color.js").Color}
* @type {import("../colorlike.js").ColorLike}
*/
export const defaultFillStyle = [0, 0, 0, 1];
export const defaultFillStyle = '#000';
/**