Utilities for controlling the bullet/number style of a list.
export default {
  theme: {
    listStyleType: {
      none: 'none',
      disc: 'disc',
      decimal: 'decimal',
      square: 'square',
      roman: 'upper-roman',
    },
  },
}
Utilities for controlling the position of bullets/numbers in lists.