@@ -36,7 +36,7 @@ export const [_backgroundColor, backgroundColor] =
3636 * This value requires the Theme Params component to be mounted to extract a valid RGB value
3737 * of the color key.
3838 */
39- export const backgroundColorRGB = rgbBasedOn ( backgroundColor ) ;
39+ export const backgroundColorRGB = rgbBasedOn ( _backgroundColor ) ;
4040
4141
4242/**
@@ -52,7 +52,7 @@ export const [_bottomBarColor, bottomBarColor] =
5252 * of the color key.
5353 */
5454export const bottomBarColorRGB = createComputed < RGB | undefined > ( ( ) => {
55- const color = bottomBarColor ( ) ;
55+ const color = _bottomBarColor ( ) ;
5656 return isRGB ( color )
5757 ? color
5858 : color === 'bottom_bar_bg_color'
@@ -75,7 +75,7 @@ export const [_headerColor, headerColor] = createSignalsTuple<HeaderColor>('bg_c
7575 * This value requires the Theme Params component to be mounted to extract a valid RGB value
7676 * of the color key.
7777 */
78- export const headerColorRGB = rgbBasedOn ( headerColor ) ;
78+ export const headerColorRGB = rgbBasedOn ( _headerColor ) ;
7979
8080/**
8181 * True if CSS variables are currently bound.
@@ -99,8 +99,8 @@ export const [_isActive, isActive] = createSignalsTuple(true);
9999 * Complete component state.
100100 */
101101export const state = createComputed < State > ( ( ) => ( {
102- backgroundColor : backgroundColor ( ) ,
103- bottomBarColor : bottomBarColor ( ) ,
104- headerColor : headerColor ( ) ,
105- isActive : isActive ( ) ,
102+ backgroundColor : _backgroundColor ( ) ,
103+ bottomBarColor : _bottomBarColor ( ) ,
104+ headerColor : _headerColor ( ) ,
105+ isActive : _isActive ( ) ,
106106} ) ) ;
0 commit comments