dark: Theme dark

View source: R/themes.R

darkR Documentation

Theme dark

Description

dark table theme

Usage

dark(
  font_size = 15,
  font_color = "#FFFFFF",
  header_font_size = 16,
  header_font_color = "#FFFFFF",
  cell_padding = 6,
  centered = FALSE
)

Arguments

font_size

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

font_color

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

header_font_size

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

header_font_color

Color of the font for the header text. Default is #FFFFFF.

cell_padding

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

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

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


reactablefmtr documentation built on March 18, 2022, 5:08 p.m.