nytimes: Theme nytimes

View source: R/themes.R

nytimesR Documentation

Theme nytimes

Description

The New York Times-inspired table theme

Usage

nytimes(
  font_size = 13,
  font_color = "#333333",
  header_font_size = 11,
  header_font_color = "#999999",
  background_color = NULL,
  border_color = "#e7e7e7",
  border_width = "1px",
  cell_padding = 5,
  centered = FALSE
)

Arguments

font_size

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

font_color

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

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 #999999.

background_color

Background color of the table. Default is NULL.

border_color

The color of the borders between rows. Default is #e7e7e7.

border_width

The width of the border between rows (in px). Default is 1px.

cell_padding

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

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 nytimes theme
reactable(data,
          theme = nytimes())

## Additional options applied
reactable(data,
          theme = nytimes(font_size = 12, font_color = "grey", cell_padding = 3))


kcuilla/reactablefmtr documentation built on Jan. 13, 2023, 11:36 p.m.