This style only aligns left, the font is not bold.
bold_italic = styles.add_style :b => true, :i => true
bold = styles.add_style :b => true
yellow_bg = styles.add_style :b => true, :bg_color => 'FFF60B',
sheet.add_row ['År:', Time.now.year, "Pågår"],
:style => [bold_italic, yellow_bg, bold]
The yellow_bg styling also works. Is there a new syntax for getting the font bold?