We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eba90e3 commit 496f0b7Copy full SHA for 496f0b7
color/color-common.ts
@@ -115,7 +115,7 @@ export class Color implements definition.Color {
115
}
116
117
private _parseComponents() {
118
- if (!this._argb) {
+ if (types.isUndefined(this._argb)) {
119
throw new Error("Missing the ARGB numeric value");
120
121
color/known-colors.ts
@@ -1,4 +1,5 @@
1
-export var AliceBlue = "#F0F8FF";
+export var Transparent = "#00000000";
2
+export var AliceBlue = "#F0F8FF";
3
export var AntiqueWhite = "#FAEBD7";
4
export var Aqua = "#00FFFF";
5
export var Aquamarine = "#7FFFD4";
0 commit comments