Initial import

Change-Id: I59748a78b35a3e14013333912966971a02dd19b4
diff --git a/man/figures/Readme-Example-1.png b/man/figures/Readme-Example-1.png
new file mode 100644
index 0000000..71b36bd
--- /dev/null
+++ b/man/figures/Readme-Example-1.png
Binary files differ
diff --git a/man/hc_theme_ids_dark.Rd b/man/hc_theme_ids_dark.Rd
new file mode 100644
index 0000000..2620594
--- /dev/null
+++ b/man/hc_theme_ids_dark.Rd
@@ -0,0 +1,103 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/highcharter-themes.R
+\name{hc_theme_ids_dark}
+\alias{hc_theme_ids_dark}
+\title{Dark IDS theme for \link[highcharter]{highcharter}}
+\usage{
+hc_theme_ids_dark(
+  fontFamily = "Fira Sans Condensed",
+  fontSize = "medium",
+  textColor = "#E0E0E3",
+  lowContrastColor = "#707073",
+  highContrastColor = "#F0F0F3",
+  palette = c("#EB7C31", "#1F77B4", "#2CA02C", "#D62728", "#9467BD", "#8C564B",
+    "#E377C2", "#7F7F7F", "#BCBD22", "#17BECF", "#AEC7E8", "#FFBB78", "#98DF8A",
+    "#FF9896", "#C5B0D5", "#C49C94", "#F7B6D2", "#C7C7C7", "#DBDB8D", "#9EDAE5"),
+  backgroundColor = list(linearGradient = list(x1 = 0, y1 = 1, x2 = 1, y2 = 0), stops =
+    list(list(0, "#2a2a2b"), list(1, "#3e3e3e"))),
+  titleColor = textColor,
+  subtitleColor = titleColor,
+  gridLineColor = lowContrastColor,
+  axisLabelColor = textColor,
+  axisLineColor = lowContrastColor,
+  minorGridLineColor = "#505053",
+  tickColor = lowContrastColor,
+  axisTitleColor = axisLabelColor,
+  tooltipBackgroundColor = "rgba(0, 0, 0, 0.85)",
+  tooltipColor = textColor,
+  dataLabelColor = textColor,
+  boxplotFillColor = "#505053",
+  candlestickColor = highContrastColor,
+  errorbarColor = candlestickColor,
+  legendColor = textColor,
+  legendHoverColor = highContrastColor,
+  legendHiddenColor = lowContrastColor,
+  creditsColor = lowContrastColor,
+  burgerMenuBackground = backgroundColor,
+  ...
+)
+}
+\arguments{
+\item{fontFamily}{font family}
+
+\item{fontSize}{default font size}
+
+\item{textColor}{default text color}
+
+\item{lowContrastColor}{color with low contrast to background}
+
+\item{highContrastColor}{color with high contrast to background}
+
+\item{palette}{array of colors to be used for different series}
+
+\item{backgroundColor}{background color}
+
+\item{titleColor}{color of the title text}
+
+\item{subtitleColor}{color of the subtitle text}
+
+\item{gridLineColor}{color of grid lines}
+
+\item{axisLabelColor}{color of the axis labels}
+
+\item{axisLineColor}{color of the axis lines}
+
+\item{minorGridLineColor}{color of minor grid lines}
+
+\item{tickColor}{color of axis ticks}
+
+\item{axisTitleColor}{color of axis titles}
+
+\item{tooltipBackgroundColor}{background color for tool tips}
+
+\item{tooltipColor}{foreground color for tool tips}
+
+\item{dataLabelColor}{color of data point labels}
+
+\item{boxplotFillColor}{color for box plot fills}
+
+\item{candlestickColor}{color the candle stick part of error bars}
+
+\item{errorbarColor}{error bar color}
+
+\item{legendColor}{series legend label color}
+
+\item{legendHoverColor}{mouse over series legend label color}
+
+\item{legendHiddenColor}{hidden series legend label color}
+
+\item{creditsColor}{color of the credits}
+
+\item{burgerMenuBackground}{burger menu background color}
+
+\item{...}{named arguments to modify the theme}
+}
+\description{
+Dark IDS theme for \link[highcharter]{highcharter}
+}
+\examples{
+library(tidyverse)
+library(highcharter)
+highcharts_demo() \%>\%
+  hc_add_theme(hc_theme_ids_dark())
+}
diff --git a/man/hc_theme_ids_light.Rd b/man/hc_theme_ids_light.Rd
new file mode 100644
index 0000000..fec68e2
--- /dev/null
+++ b/man/hc_theme_ids_light.Rd
@@ -0,0 +1,20 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/highcharter-themes.R
+\name{hc_theme_ids_light}
+\alias{hc_theme_ids_light}
+\title{Light IDS theme for \link[highcharter]{highcharter}}
+\usage{
+hc_theme_ids_light(...)
+}
+\arguments{
+\item{...}{named arguments to modify the theme}
+}
+\description{
+See \code{\link{hc_theme_ids_dark}} for further documentation.
+}
+\examples{
+library(tidyverse)
+library(highcharter)
+highcharts_demo() \%>\%
+  hc_add_theme(hc_theme_ids_light())
+}
diff --git a/man/hc_theme_ids_mono.Rd b/man/hc_theme_ids_mono.Rd
new file mode 100644
index 0000000..5ce70cb
--- /dev/null
+++ b/man/hc_theme_ids_mono.Rd
@@ -0,0 +1,20 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/highcharter-themes.R
+\name{hc_theme_ids_mono}
+\alias{hc_theme_ids_mono}
+\title{Monochrome IDS theme for \link[highcharter]{highcharter}}
+\usage{
+hc_theme_ids_mono(...)
+}
+\arguments{
+\item{...}{named arguments to modify the theme}
+}
+\description{
+See \code{\link{hc_theme_ids_dark}} for further documentation.
+}
+\examples{
+library(tidyverse)
+library(highcharter)
+highcharts_demo() \%>\%
+  hc_add_theme(hc_theme_ids_mono())
+}