Avatar: The Last Airbender theme, Recommended font: "Slayer"
theme_avatar(
text.font = NULL,
title.font = NULL,
legend.font = NULL,
title.size = 14,
text.size = 10,
subtitle.size = 12,
axis.title.size = 10,
axis.text.size = 8,
legend.title.size = 10,
legend.text.size = 8,
title.color = NULL,
subtitle.color = "grey20",
text.color = NULL,
axis.title.color = "grey20",
axis.text.color = "grey20",
legend.title.color = "grey20",
legend.text.color = "grey20",
legend.position = "bottom",
ticks = FALSE
)
text font, Default: NULL
title font, Default: NULL
legend font, Default: NULL
title font size, Default: 14
text font size, Default: 10
subtitle font size, Default: 12
axis title font size, Default: 10
axis text font size, Default: 8
legend title font size, Default: 10
legend text font size, Default: 8
title color, Default: NULL
subtitle.color, Default: "grey20"
text color, Default: NULL
axis title color, Default: "grey20"
axis text color, Default: "grey20"
legend title color, Default: "grey20"
legend text color, Default: "grey20"
legend position, Default: "bottom"
add axis ticks, Default: FALSE
[ggplot2::theme]
library(ggplot2)
ggplot(airquality, aes(x = Day, y = Temp,
group = as.factor(Month), color = as.factor(Month))) +
geom_point(size = 2.5) +
scale_color_avatar() +
theme_avatar()