diff --git a/src/engine/Color.ts b/src/engine/Color.ts index 2df0eeb6c..d20c41636 100644 --- a/src/engine/Color.ts +++ b/src/engine/Color.ts @@ -339,6 +339,13 @@ export class Color { return Color.fromHex('#FF007F'); } + /** + * Pink (#FFC0CB) + */ + public static get Pink(): Color { + return Color.fromHex('#FFC0CB'); + } + /** * Magenta (#FF00FF) */ @@ -353,6 +360,13 @@ export class Color { return Color.fromHex('#7F00FF'); } + /** + * Purple (#800080) + */ + public static get Purple(): Color { + return Color.fromHex('#800080'); + } + /** * Blue (#0000FF) */ @@ -381,6 +395,13 @@ export class Color { return Color.fromHex('#59978F'); } + /** + * Teal (#008080) + */ + public static get Teal(): Color { + return Color.fromHex('#008080'); + } + /** * Green (#00FF00) */ @@ -408,6 +429,13 @@ export class Color { public static get ExcaliburBlue(): Color { return Color.fromHex('#176BAA'); } + + /** + * Brown (#964B00) + */ + public static get Brown(): Color { + return Color.fromHex('#964B00'); + } } /**