Gradients
Basic gradient
Section titled “Basic gradient”import { tw } from 'typewritingclass'
// Property-access tokenstw.bgGradient.toRight .gradientFrom.blue500 .gradientTo.indigo600
// String lookups (equivalent)tw.bgGradient.toRight .gradientFrom('blue-500') .gradientTo('indigo-600')Three-stop gradient
Section titled “Three-stop gradient”tw.bgGradient.toRight .gradientFrom.rose500 .gradientVia.amber400 .gradientTo.yellow300Direction
Section titled “Direction”tw.bgGradient.toRighttw.bgGradient.toBottomtw.bgGradient.toBottomRighttw.bgGradient('135deg') // arbitrary angleBackground utilities
Section titled “Background utilities”tw.bgAttachment('fixed')tw.bgClip('text')tw.bgPosition('center')tw.bgRepeat('no-repeat')tw.bgSize('cover')tw.bgImage('url(/hero.jpg)')