Skip to contents

ESPN-inspired table theme

Usage

espn(
  font_size = 12,
  font_color = "#6C6D6F",
  header_font_size = 11,
  header_font_color = "#48494a",
  cell_padding = 7,
  centered = FALSE
)

Arguments

font_size

Numeric value representing the size of the font within the table (in px). Default is 12.

font_color

Color of the font for the text within the table and the group headers. Default is #6C6D6F.

header_font_size

Numeric value representing the size of the font within the table (in px). Default is 11.

header_font_color

Color of the font for the header text. Default is #48494a.

cell_padding

Numeric value representing the padding size between cells (in px). Default is 7.

centered

Logical: vertically center the contents of the table. Default is FALSE.

Value

an object of class theme that is applied to a reactable table.

Examples

data <- iris[10:29, ]

## Standard espn theme
reactable(data,
          theme = espn())
#> Error in x$width %||% settings$fig.width * settings$dpi: non-numeric argument to binary operator

## Additional options applied
reactable(data,
          theme = espn(font_size = 12, font_color = "grey", cell_padding = 3))
#> Error in x$width %||% settings$fig.width * settings$dpi: non-numeric argument to binary operator