blob: 2620594610142ece528972743f4548110a3c5f40 [file] [log] [blame]
Marc Kupietzcd7acbd2020-12-10 14:02:52 +01001% Generated by roxygen2: do not edit by hand
2% Please edit documentation in R/highcharter-themes.R
3\name{hc_theme_ids_dark}
4\alias{hc_theme_ids_dark}
5\title{Dark IDS theme for \link[highcharter]{highcharter}}
6\usage{
7hc_theme_ids_dark(
8 fontFamily = "Fira Sans Condensed",
9 fontSize = "medium",
10 textColor = "#E0E0E3",
11 lowContrastColor = "#707073",
12 highContrastColor = "#F0F0F3",
13 palette = c("#EB7C31", "#1F77B4", "#2CA02C", "#D62728", "#9467BD", "#8C564B",
14 "#E377C2", "#7F7F7F", "#BCBD22", "#17BECF", "#AEC7E8", "#FFBB78", "#98DF8A",
15 "#FF9896", "#C5B0D5", "#C49C94", "#F7B6D2", "#C7C7C7", "#DBDB8D", "#9EDAE5"),
16 backgroundColor = list(linearGradient = list(x1 = 0, y1 = 1, x2 = 1, y2 = 0), stops =
17 list(list(0, "#2a2a2b"), list(1, "#3e3e3e"))),
18 titleColor = textColor,
19 subtitleColor = titleColor,
20 gridLineColor = lowContrastColor,
21 axisLabelColor = textColor,
22 axisLineColor = lowContrastColor,
23 minorGridLineColor = "#505053",
24 tickColor = lowContrastColor,
25 axisTitleColor = axisLabelColor,
26 tooltipBackgroundColor = "rgba(0, 0, 0, 0.85)",
27 tooltipColor = textColor,
28 dataLabelColor = textColor,
29 boxplotFillColor = "#505053",
30 candlestickColor = highContrastColor,
31 errorbarColor = candlestickColor,
32 legendColor = textColor,
33 legendHoverColor = highContrastColor,
34 legendHiddenColor = lowContrastColor,
35 creditsColor = lowContrastColor,
36 burgerMenuBackground = backgroundColor,
37 ...
38)
39}
40\arguments{
41\item{fontFamily}{font family}
42
43\item{fontSize}{default font size}
44
45\item{textColor}{default text color}
46
47\item{lowContrastColor}{color with low contrast to background}
48
49\item{highContrastColor}{color with high contrast to background}
50
51\item{palette}{array of colors to be used for different series}
52
53\item{backgroundColor}{background color}
54
55\item{titleColor}{color of the title text}
56
57\item{subtitleColor}{color of the subtitle text}
58
59\item{gridLineColor}{color of grid lines}
60
61\item{axisLabelColor}{color of the axis labels}
62
63\item{axisLineColor}{color of the axis lines}
64
65\item{minorGridLineColor}{color of minor grid lines}
66
67\item{tickColor}{color of axis ticks}
68
69\item{axisTitleColor}{color of axis titles}
70
71\item{tooltipBackgroundColor}{background color for tool tips}
72
73\item{tooltipColor}{foreground color for tool tips}
74
75\item{dataLabelColor}{color of data point labels}
76
77\item{boxplotFillColor}{color for box plot fills}
78
79\item{candlestickColor}{color the candle stick part of error bars}
80
81\item{errorbarColor}{error bar color}
82
83\item{legendColor}{series legend label color}
84
85\item{legendHoverColor}{mouse over series legend label color}
86
87\item{legendHiddenColor}{hidden series legend label color}
88
89\item{creditsColor}{color of the credits}
90
91\item{burgerMenuBackground}{burger menu background color}
92
93\item{...}{named arguments to modify the theme}
94}
95\description{
96Dark IDS theme for \link[highcharter]{highcharter}
97}
98\examples{
99library(tidyverse)
100library(highcharter)
101highcharts_demo() \%>\%
102 hc_add_theme(hc_theme_ids_dark())
103}