- Complete React app with 7 developer tools - JSON Tool with visual structured editor - Serialize Tool with visual structured editor - URL, Base64, CSV/JSON, Beautifier, Diff tools - Responsive navigation with dropdown menu - Dark/light mode toggle - Mobile-responsive design with sticky header - All tools working with copy/paste functionality
11 lines
368 B
TypeScript
11 lines
368 B
TypeScript
/**
|
|
* We used to work with 2 digits after the decimal point, but it wasn't accurate enough,
|
|
* so the library produced colors that were perceived differently.
|
|
*/
|
|
export declare const ALPHA_PRECISION = 3;
|
|
/**
|
|
* Valid CSS <angle> units.
|
|
* https://developer.mozilla.org/en-US/docs/Web/CSS/angle
|
|
*/
|
|
export declare const ANGLE_UNITS: Record<string, number>;
|