midnight: Theme midnight

View source: R/themes.R

midnightR Documentation

Theme midnight

Description

midnight table theme

Usage

midnight(
  font_size = 15,
  font_color = "#727272",
  header_font_size = 15,
  header_font_color = "#666666",
  background_color = "#141518",
  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 #727272.

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

background_color

Background color of the table. Default is #141518.

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

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


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