| minty | R Documentation | 
Bootstrap-inspired minty theme
minty( font_size = 15, font_color = "#9a9a9a", header_font_size = 16, header_font_color = "#c9e7de", cell_padding = 6, centered = FALSE )
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 #9a9a9a.  | 
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 #c9e7de.  | 
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.  | 
an object of class theme that is applied to a reactable table.
data <- iris[10:29, ]
## Standard minty theme
reactable(data,
          theme = minty())
## Additional options applied
reactable(data,
          theme = minty(font_size = 12, font_color = "grey", cell_padding = 3))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.