R/utils-app.R

Defines functions theme_custom

Documented in theme_custom

# app utils


#' Custom ggplot2 theme
#' @export theme_custom
#' @import ggplot2
theme_custom <- function() {
    theme_minimal() +
        theme(
            text = element_text(colour = "black", size = 12),
            axis.text = element_text(colour = "black", size = 12)
        )
}
cantabricagr/cantabricar documentation built on Dec. 19, 2021, 1:48 p.m.