You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Next line pass the theme object from dust_theme to example_plot, works fine for me
example_plot + dust_theme$theme
Here's come the issue, when I try to pass also the colors for the scale to the plot
example_plot + dust_theme$theme + dust_theme$scales$scale_fill_discrete()
warning: attempt to apply non-function
The colors doesn't change, and there's nothing in the object dust_theme referred to scales
dust_theme$scales = NULL
dust_themes$scales$scale_fill_discrete
Any idea about why the colors don't change??.
I achieve to change colors if I type, but they are not so well adapted to the background
As to why the colours do not change, it appears as if the dust_theme$scales does not exist, as per your original comment. I've tracked narrowed it down to this commit from last year, which removed the scales element from the theme structure.
I'll make a pull request to update the readme as this part is no longer accurate.
Hi, first of all congrats for the amazing package and themes !
Following the examples I achieve to change the theme of a ggplot2 object following your instructions in the last part
Next line set the theme
Next line pass the theme object from dust_theme to example_plot, works fine for me
Here's come the issue, when I try to pass also the colors for the scale to the plot
The colors doesn't change, and there's nothing in the object dust_theme referred to scales
dust_theme$scales = NULL
dust_themes$scales$scale_fill_discrete
Any idea about why the colors don't change??.
I achieve to change colors if I type, but they are not so well adapted to the background
Thanks for your time and help!
The text was updated successfully, but these errors were encountered: