
Last chance! 50% off unlimited learning
Sale ends in
Pro Football Focus-inspired table theme
pff(
font_size = 16,
font_color = "#878e94",
header_font_size = 12,
header_font_color = "#ffffff",
cell_padding = 4,
centered = FALSE
)
Numeric value representing the size of the font within the table (in px). Default is 16.
Color of the font for the text within the table and the group headers. Default is #878e94.
Numeric value representing the size of the font within the table (in px). Default is 12.
Color of the font for the header text. Default is #ffffff.
Numeric value representing the padding size between cells (in px). Default is 4.
Logical: vertically center the contents of the table. Default is FALSE.
an object of class theme that is applied to a reactable table.
# NOT RUN {
data <- iris[10:29, ]
## Standard pff theme
reactable(data,
theme = pff())
## Additional options applied
reactable(data,
theme = pff(font_size = 12, font_color = "grey", cell_padding = 3))
# }
Run the code above in your browser using DataLab