Vitamin provides a TextStyle enum:
displaylargeTitle1largeTitle2title1title2title3headlinebodybodyBoldcalloutcalloutBoldsubheadfootnotefootnoteBoldcaption1caption2
With the enum you can easily generate a NSAttributedString to be fed to your labels.
You can also provide a Vitamin semantic color to directly color your text.
import Vitamin
let vitaminStyledTitle = "This is a title".styled(as: .title1)
let vitaminStyledBody = "This is a body text".styled(as: .body)
let text = "This a is a body text with positive semantic color"
var vitaminStyleBodySuccess: NSAttributedString = text.styled(as: .body, with: VitaminColor.Core.Content.positive)
let text = "This a is a caption text with custom line break mode"
var vitaminStyleCaption: NSAttributedString = text.styled(as: .caption1, lineBreakMode: .byWordWrapping)