Skip to content

Latest commit

 

History

History
49 lines (44 loc) · 1.27 KB

README.md

File metadata and controls

49 lines (44 loc) · 1.27 KB

modern-text

Minzip Version Downloads Issues License

Usage

import { renderText } from 'modern-text'

const view = document.createElement('canvas')
document.body.append(view)

renderText({
  view,
  style: {
    width: 100,
    height: 200,
    fontSize: 22,
    textDecoration: 'underline',
  },
  content: [
    {
      letterSpacing: 3,
      fragments: [
        { content: 'He', color: 'red', fontSize: 12 },
        { content: 'llo', color: 'black' },
      ],
    },
    { content: ', ', color: 'grey' },
    { content: 'World!', color: 'black' },
  ],
})