diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/asciidoctor/pdf/converter.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/asciidoctor/pdf/converter.rb b/lib/asciidoctor/pdf/converter.rb index 2f8913cd..15f80011 100644 --- a/lib/asciidoctor/pdf/converter.rb +++ b/lib/asciidoctor/pdf/converter.rb @@ -1383,9 +1383,10 @@ module Asciidoctor @list_numerals << (index = @list_numerals.pop).next theme_font :conum do marker_width = rendered_width_of_string %(#{marker = conum_glyph index}x) + marker_font_color = @theme.callout_list_marker_font_color || @font_color float do bounding_box [bounds.left, cursor], width: marker_width do - ink_prose marker, align: :center, inline_format: false, margin: 0 + ink_prose marker, align: :center, inline_format: false, margin: 0, color: marker_font_color end end end |
