benface / tailwindcss-typography

Tailwind CSS plugin to generate typography utilities and text style components
ISC License
244 stars 5 forks source link

Support text-rendering properties #11

Closed mapgrid closed 4 years ago

mapgrid commented 4 years ago

Although it's an SVG property, it's widely used for typography. We could add:

.text-optimize-legibility {
    text-rendering: optimizeLegibility;
}

.text-optimize-speed {
    text-rendering: optimizeSpeed;
}

.text-geometric-precision {
    text-rendering: geometricPrecision;
}

Happy to submit a PR.

benface commented 4 years ago

Sure, a PR would be great :) If not I'll try to do it when I can. Thank you!