@@ -355,7 +355,7 @@ def _create_label_group(
355355 font ,
356356 scale ,
357357 height_adjustment ,
358- background_color = None ,
358+ font_background_color = None ,
359359 color = 0xFFFFFF ,
360360 width_adjustment = 2 ,
361361 line_spacing = 0.75 ,
@@ -370,7 +370,7 @@ def _create_label_group(
370370 font ,
371371 text = text ,
372372 line_spacing = line_spacing ,
373- background_color = background_color ,
373+ background_color = font_background_color ,
374374 )
375375 _ , _ , width , _ = create_label .bounding_box
376376 create_label .x = (self .display .width // (width_adjustment * scale )) - width // 2
@@ -454,7 +454,7 @@ def show_business_card(
454454 name_scale = 1 ,
455455 name_font = terminalio .FONT ,
456456 font_color = 0xFFFFFF ,
457- background_color = None ,
457+ font_background_color = None ,
458458 email_string_one = None ,
459459 email_scale_one = 1 ,
460460 email_font_one = terminalio .FONT ,
@@ -500,7 +500,7 @@ def show_business_card(
500500 color = font_color ,
501501 scale = name_scale ,
502502 height_adjustment = 0.73 ,
503- background_color = background_color ,
503+ background_color = font_background_color ,
504504 )
505505 business_card_label_groups .append (name_group )
506506 if email_string_one :
@@ -510,7 +510,7 @@ def show_business_card(
510510 color = font_color ,
511511 scale = email_scale_one ,
512512 height_adjustment = 0.84 ,
513- background_color = background_color ,
513+ background_color = font_background_color ,
514514 )
515515 business_card_label_groups .append (email_one_group )
516516 if email_string_two :
@@ -520,7 +520,7 @@ def show_business_card(
520520 color = font_color ,
521521 scale = email_scale_two ,
522522 height_adjustment = 0.91 ,
523- background_color = background_color ,
523+ background_color = font_background_color ,
524524 )
525525 business_card_label_groups .append (email_two_group )
526526
0 commit comments