Hi,
ich habe ein eigenes Theme plugin erstellt (erbt vom default theme) und möchte nun die Default Werte in der Theme Konfiguration überschreiben.
Das mach ich z.B. so:
// theme.json
{
"name": "CustomTheme",
"author": "Me myself and I",
"config": {
"fields": {
"sw-color-brand-primary": {
"label": {
"en-GB": "Primary",
"de-DE": "Primär"
},
"type": "color",
"value": "#000",
"editable": true,
"block": "colors",
"section": "generalColors"
}
}
}
// ...
}
Wie finde ich denn die Keys (z.B. sw-color-brand-primary) der anderen Felder raus ?
Bzw. wo sind die Configs des default themes ?