UNPKG

isaacscript-common

Version:

Helper functions and features for IsaacScript mods.

24 lines 780 B
/** * A collection of common colors that can be reused. * * Note that if you want to further modify these colors, you should copy them first with the * `copyColor` function. * * The non-standard colors come from: * https://htmlcolorcodes.com/color-names/ */ export declare const COLORS: { readonly Black: Readonly<Color>; readonly Red: Readonly<Color>; readonly Green: Readonly<Color>; readonly Blue: Readonly<Color>; readonly Yellow: Readonly<Color>; readonly Cyan: Readonly<Color>; readonly Magenta: Readonly<Color>; readonly White: Readonly<Color>; readonly Brown: Readonly<Color>; readonly Gray: Readonly<Color>; readonly Orange: Readonly<Color>; readonly Purple: Readonly<Color>; }; //# sourceMappingURL=colors.d.ts.map