Nothing
css_light <- "
// tables
.reveal table {
// height: auto; /* Adjust table width to fit content up to the available slide space */
margin: auto;
border-collapse: collapse;
border-spacing: 0;
}
.reveal table th,
.reveal table td {
border: none;
padding: .23em;
font-size: %sem;
}
/* Adds a bottom border to the table header row for distinction */
.reveal table thead th,
.reveal .slides table tr:last-child td,
.reveal .slides table {
border-bottom: 2px solid #D3D3D3;
}
/* Make column headers bold */
.reveal table thead th {
}
/* Styling table captions */
.reveal table caption {
color: #666666; /* Dark grey color for the caption */
font-size: %emem;
}
"
css_dark <- "
// tables
.reveal table {
// height: auto; /* Adjust table width to fit content up to the available slide space */
margin: auto;
border-collapse: collapse;
border-spacing: 0;
background-color: #2d2d2d; /* Dark background for tables */
color: white; /* White text color */
}
.reveal table th,
.reveal table td {
border: none;
padding: .23em;
font-size: %sem;
color: white; /* White text color */
}
/* Adds a bottom border to the table header row for distinction */
.reveal table thead th {
border-bottom: 2px solid white; /* White border color for dark theme */
}
.reveal .slides table tr:last-child td {
border-bottom: 2px solid white; /* White border color for dark theme */
}
.reveal .slides table {
border-bottom: 2px solid white; /* White border color for dark theme */
}
/* Make column headers bold */
.reveal table thead th {
}
/* Styling table captions */
.reveal table caption {
color: white; /* White color for the caption */
font-size: %emem;
}
"
#' RevealJS presentation theme
#'
#' @param x A `tinytable` object.
#' @param css String. CSS theme: "light" (default) or "dark".
#' @param fontsize Numeric. Font size multiplier for table content.
#' @param fontsize_caption Numeric. Font size multiplier for table captions.
#' @return A modified `tinytable` object.
#' @export
theme_revealjs <- function(
x,
css = get_option("tinytable_revealjs_css", default = "light"),
fontsize = get_option("tinytable_revealjs_fontsize", default = 0.8),
fontsize_caption = get_option("tinytable_revealjs_fontsize_caption", default = 1)) {
if (css == "light") {
css <- sprintf(css_light, fontsize, fontsize_caption)
} else if (css == "dark") {
css <- sprintf(css_dark, fontsize, fontsize_caption)
}
x <- theme_html(x, engine = "tinytable", css_rule = css)
return(x)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.