@aurigma/design-atoms-model
Version:
Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.
25 lines • 661 B
JavaScript
import { RgbColor } from "./RgbColor";
export class RgbColors {
static get transparent() {
return new RgbColor(0, 0, 0, 0);
}
static get black() {
return new RgbColor(0, 0, 0, 255);
}
static get white() {
return new RgbColor(255, 255, 255, 255);
}
static get red() {
return new RgbColor(255, 0, 0, 255);
}
static get green() {
return new RgbColor(0, 255, 0, 255);
}
static get blue() {
return new RgbColor(0, 0, 255, 255);
}
static get cyan() {
return new RgbColor(0, 255, 255, 255);
}
}
//# sourceMappingURL=RgbColors.js.map