theme_eafit_light.Rd
ligther
theme_eafit_light( text.font = NULL, title.font = NULL, legend.font = NULL, title.size = 18, text.size = 14, subtitle.size = 12, axis.title.size = 14, axis.text.size = 12, legend.title.size = 10, legend.text.size = 9, title.color = "#000359", subtitle.color = "#000359", text.color = "#000359", axis.title.color = "#000359", axis.text.color = "#000359", legend.title.color = "#000359", legend.text.color = "#000359", legend.position = "bottom" )
text.font | font, Default: NULL |
---|---|
title.font | font, Default: NULL |
legend.font | font, Default: NULL |
title.size | title font size, Default: 18 |
text.size | text font size, Default: 14 |
subtitle.size | subtitle font size, Default: 12 |
axis.title.size | title font size, Default: 14 |
axis.text.size | text font size, Default: 12 |
legend.title.size | title font size, Default: 10 |
legend.text.size | text font size, Default: 9 |
title.color | title color, Default: '#000359' |
subtitle.color | subtitle color, Default: '#000359' |
text.color | text color, Default: '#000359' |
axis.title.color | axis title color, Default: '#000359' |
axis.text.color | axis text color, Default: '#000359' |
legend.title.color | legend title color, Default: '#000359' |
legend.text.color | legend text color, Default: '#000359' |
legend.position | legend position, Default: 'bottom' |
library(ggplot2) library(palmerpenguins) library(eafithemer) ggplot(penguins, aes(bill_length_mm, flipper_length_mm)) + geom_point(aes(color = species, shape = species)) + labs( title = "Little title", subtitle = "Testing the subtitle", caption = "First attempt on package creation" ) + eafithemer::theme_eafit_light() + eafithemer::scale_color_eafit() + theme( legend.title = element_blank() )#> Warning: Removed 2 rows containing missing values (geom_point).