R/zzz.R

Defines functions .onAttach text_col

text_col <- function(x) {
  # This function is adapted from: https://github.com/tidyverse/tidyverse
  # If RStudio not available, messages already printed in black
  if (!rstudioapi::isAvailable()) {
    return(x)
  }

  if (!rstudioapi::hasFun("getThemeInfo")) {
    return(x)
  }

  theme <- rstudioapi::getThemeInfo()

  if (isTRUE(theme$dark)) crayon::white(x) else crayon::black(x)

}

.onAttach <- function(libname, pkgname) {
  packageStartupMessage(
    text_col(paste("Learn XploRer at:",
                   crayon::blue$underline$bold("https://vezy.github.io/XploRer")))
  )
}
VEZY/XploRer documentation built on Oct. 9, 2021, 10:05 p.m.