Is there anyway to change the color of my embed, or change the text of it?
I don’t think Discord supports different text colors… to be clear, by embed do you mean when you post a link to your community… like this?
The description there is pulled from your community’s site description
site setting
I’m talking about the color on the side, also yes I do mean embed like that. Is there any way to change it other than the site description
setting?
About the color, it’s set by this tag:
<meta name="theme-color" content="#a97189">
Which seems to be the header background color from your default color scheme:
As for the text, I don’t think there’s a way to have a different one than the site_description setting.
is there any way to override both of them through a theme component? also thanks for the info!
Quick and dirty.
Admin → Customize → Themes → Edit CSS/HTML → Common tab → Head tab:
Set additional tags:
<meta name="theme-color" content="#ff0000">
<meta property="og:description" content="Whatever you want">
The tags will be duplicated in the HTML code, but what you want to achieve will work.
Here’s an example where I replaced a black line with a red one and set “Texte arbitraire” in the og:description
tag:
A better solution would be to actually replace the value instead of duplicating tag, but I don’t know how to do that.
thanks! i didn’t even know this was something you could do.