/** * Get dark mode color for a given color * @param color The color to calculate from * @param baseLValue The Light value for base dark color in LAB format. @default the Light value for #333333 */ export default function getDarkColor(color: string, baseLValue?: number): string;