This repository was archived by the owner on Sep 5, 2024. It is now read-only.
File tree Expand file tree Collapse file tree
src/core/services/theming Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -61,10 +61,10 @@ var DEFAULT_COLOR_TYPE = 'primary';
6161// A color in a theme will use these hues by default, if not specified by user.
6262var LIGHT_DEFAULT_HUES = {
6363 'accent' : {
64- 'default' : '400 ' ,
65- 'hue-1' : '300 ' ,
66- 'hue-2' : '800 ' ,
67- 'hue-3' : 'A100' ,
64+ 'default' : 'A700 ' ,
65+ 'hue-1' : 'A200 ' ,
66+ 'hue-2' : 'A400 ' ,
67+ 'hue-3' : 'A100'
6868 }
6969} ;
7070var DARK_DEFAULT_HUES = {
@@ -131,7 +131,7 @@ function ThemingProvider() {
131131
132132 var backgroundImage = getComputedStyle ( element ) . backgroundImage ;
133133 if ( backgroundImage === 'none' || ! backgroundImage ) {
134- backgroundImage = '{}'
134+ backgroundImage = '{}' ;
135135 }
136136
137137 backgroundImage = backgroundImage
You can’t perform that action at this time.
0 commit comments