We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
library(xaringanthemer) palette <- c( primary = "#1381B0", # Blue secondary = "#FF961C" # Yellow/orange ) style_duo_accent( outfile = NULL, primary_color = palette["primary"], secondary_color = palette["secondary"], inverse_header_color = "#FFFFFF" ) #> Error: Color names in `colors` must be valid CSS classes
happens because primary.primary and secondary.secondary are names in the color vector and fails checks that they'll be valid CSS.
primary.primary
secondary.secondary
The text was updated successfully, but these errors were encountered:
21269a0
No branches or pull requests
happens because
primary.primary
andsecondary.secondary
are names in the color vector and fails checks that they'll be valid CSS.The text was updated successfully, but these errors were encountered: