qplot(1:10, (1:10)^3) + theme_fte()
# Easy to set different theme colors:
mycolors = c("#F2F1E8", "#D2D2D2", "#6E6E6E", "#6E6E6E")
qplot(1:10, (1:10)^3) +
theme_fte(colors=mycolors) #ae8b38
mycolors = c("wheat", "#C2AF8D", "#8F6D2F", "darkred")
qplot(1:10, (1:10)^3) +
theme_fte(colors=mycolors)
# Check that it is a complete theme
attr(theme_fte(), "complete")
Run the code above in your browser using DataLab