Skip to content

Instantly share code, notes, and snippets.

View treetrunkz's full-sized avatar
🍊
Happily, Found Work 👯‍♀️

Eleanor Carl treetrunkz

🍊
Happily, Found Work 👯‍♀️
View GitHub Profile
@treetrunkz
treetrunkz / color.ts
Created August 21, 2020 05:18 — forked from EvAlex/color.ts
TypeScript Color class, useful to manipulate rgba components and convert to rga/rgba/hex
export const RGB_COLOR_REGEX = /\((\d+),\s*(\d+),\s*(\d+)(,\s*(\d*.\d*))?\)/;
export class Color {
public r: number;
public g: number;
public b: number;
public a: number;
constructor()
constructor(colorStr?: string)