How to change the color of code

Hi!
Obsidian, macOS, standard theme.
Where do I have to edit, add what css-magic to change the color of how code is rendered (both edit, read modes).
I can change the monospace font but I would like to set the color.
Thanks , Uwe

Here are the steps to use a CSS snippet: CSS snippets - Obsidian Help

And this is CSS code you can paste into your snippet to change the default code color:

body {
	--code-normal: orange;
}

Welcome to CSS!