Theme Config Variables
The theme config
directory contains json files. The properties defined in these files can be used within templates. You are free to give your config files any names you want.
config/colors.json
{
"heading": "red"
}
templates/page/default.html.twig
<h1 style="color: {{ config.colors.heading }}">Heading</h1>