From 88a7b03b4fcead278652e2d69ff897ffc7a1dc62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Weber?= Date: Sat, 19 Feb 2022 00:53:12 +0100 Subject: [PATCH] variant: fix mapping #188 --- exampleSite/content/basics/generator/_index.en.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exampleSite/content/basics/generator/_index.en.md b/exampleSite/content/basics/generator/_index.en.md index 867eb201ab..829223dc51 100644 --- a/exampleSite/content/basics/generator/_index.en.md +++ b/exampleSite/content/basics/generator/_index.en.md @@ -180,9 +180,9 @@ var variables = [ { name: 'TAG-BG-color', group: 'content', fallback: 'MENU-HEADER-BG-color' }, - { name: 'MAIN-TITLES-color', group: 'headings', default: '#444753' }, + { name: 'MAIN-TITLES-TEXT-color', group: 'headings', default: '#444753' }, { name: 'MAIN-TITLES-H1-color', group: 'headings', fallback: 'MAIN-TEXT-color' }, - { name: 'MAIN-TITLES-H2-color', group: 'headings', fallback: 'MAIN-TITLES-color' }, + { name: 'MAIN-TITLES-H2-color', group: 'headings', fallback: 'MAIN-TITLES-TEXT-color' }, { name: 'MAIN-TITLES-H3-color', group: 'headings', fallback: 'MAIN-TITLES-H2-color' }, { name: 'MAIN-TITLES-H4-color', group: 'headings', fallback: 'MAIN-TITLES-H3-color' }, { name: 'MAIN-TITLES-H5-color', group: 'headings', fallback: 'MAIN-TITLES-H4-color' },