San Francisco Chronicles-inspired table theme
Usage
sanfran(
font_size = 14,
font_color = "#222222",
header_font_size = 15,
header_font_color = "#212121",
cell_color = "#f5f5f5",
cell_border_width = 6,
cell_border_color = "#ffffff",
cell_padding = 6,
pagination_color = "#222222",
centered = FALSE
)
Arguments
- font_size
Numeric value representing the size of the font within the table (in px). Default is 14.
- font_color
Color of the font for the text within the table. Default is #222222.
- header_font_size
Numeric value representing the size of the font within the table (in px). Default is 15.
- header_font_color
Color of the font for the header text. Default is transparent
- cell_color
Color of the background of the cells. Default is #f5f5f5.
- cell_border_width
Numeric value representing the border width of the cells. Default is 6.
- cell_border_color
Numeric value representing the border color of the cells. Default is #ffffff.
- cell_padding
Numeric value representing the padding size between cells (in px). Default is 6.
- pagination_color
Color of the pagination below the table. Default is #222222.
- centered
Logical: vertically center the contents of the table. Default is FALSE.
Examples
data <- iris[10:29, ]
## Standard void theme
reactable(data,
theme = sanfran())
#> Error in x$width %||% settings$fig.width * settings$dpi: non-numeric argument to binary operator
## Additional options applied
reactable(data,
theme = sanfran(font_size = 12, font_color = "grey"))
#> Error in x$width %||% settings$fig.width * settings$dpi: non-numeric argument to binary operator