library(ggplot2)
library(showtext)
# run once to download the PT Sans fonts
font_add_google(name = "PT Sans", family = "PT Sans")
font_add_google(name = "PT Sans Narrow", family = "PT Sans Narrow")
showtext_auto()
# make a plot with theme_lucas()
ggplot(mtcars) +
aes(x = mpg, y = wt, color = cyl) +
geom_point() +
theme_lucas()
Run the code above in your browser using DataLab