Learn R Programming

reactablefmtr (version 2.0.0)

hoverdark: Theme hoverdark

Description

Changes from light-themed to dark-themed on hover

Usage

hoverdark(
  font_size = 15,
  font_color = "#222222",
  header_font_size = 15,
  cell_padding = 4,
  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. Default is #222222.

header_font_size

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

cell_padding

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

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

Run this code
# NOT RUN {
data <- iris[10:29, ]

## Standard hoverdark theme
reactable(data,
          theme = hoverdark())

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

# }

Run the code above in your browser using DataLab