constants.d.ts 358 B

12345678910
  1. /**
  2. * We used to work with 2 digits after the decimal point, but it wasn't accurate enough,
  3. * so the library produced colors that were perceived differently.
  4. */
  5. export declare const ALPHA_PRECISION = 3;
  6. /**
  7. * Valid CSS <angle> units.
  8. * https://developer.mozilla.org/en-US/docs/Web/CSS/angle
  9. */
  10. export declare const ANGLE_UNITS: Record<string, number>;