From c1677dab8e0856976a6d30942fa4cab50bdfc5a0 Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Thu, 21 Dec 2017 15:20:46 -0600 Subject: [PATCH] refactor(themes): rename css custom property names --- .../scripts/theme-builder/src/theme-variables.ts | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/packages/core/scripts/theme-builder/src/theme-variables.ts b/packages/core/scripts/theme-builder/src/theme-variables.ts index 26f96cbf38..dcc1491d2d 100644 --- a/packages/core/scripts/theme-builder/src/theme-variables.ts +++ b/packages/core/scripts/theme-builder/src/theme-variables.ts @@ -56,16 +56,16 @@ export const THEME_VARIABLES = [ property: '--dark-contrast' }, { - property: '--content-color' + property: '--text-color' }, { - property: '--content-sub-color' + property: '--text-sub-color' }, { - property: '--content-background' + property: '--background-color' }, { - property: '--content-sub-background' + property: '--background-color-alt' }, { property: '--toolbar-background' @@ -74,13 +74,16 @@ export const THEME_VARIABLES = [ property: '--tabbar-background' }, { - property: '--item-background' + property: '--item-background-color' }, { - property: '--item-sub-background' + property: '--item-background-color-alt' }, { property: '--border-color' }, + { + property: '--box-shadow' + }, ];