diff --git a/packages/components/src/mobile/color-settings/palette.screen.native.js b/packages/components/src/mobile/color-settings/palette.screen.native.js index 19e7c5847f9547..33456ee03a4fd6 100644 --- a/packages/components/src/mobile/color-settings/palette.screen.native.js +++ b/packages/components/src/mobile/color-settings/palette.screen.native.js @@ -56,6 +56,10 @@ const PaletteScreen = () => { styles.clearButton, styles.clearButtonDark ); + const selectedColorTextStyle = usePreferredColorSchemeStyle( + styles.colorText, + styles.colorTextDark + ); const isSolidSegment = currentSegment === segments[ 0 ]; const isCustomGadientShown = ! isSolidSegment && isGradientColor; @@ -136,12 +140,22 @@ const PaletteScreen = () => { /> ) } - - { __( 'Select a color' ) } - + { currentValue ? ( + + { currentValue.toUpperCase() } + + ) : ( + + { __( 'Select a color above' ) } + + ) } { currentValue && getClearButton() } diff --git a/packages/components/src/mobile/color-settings/style.native.scss b/packages/components/src/mobile/color-settings/style.native.scss index a86ebe02388d7d..a9ab1ffab935f7 100644 --- a/packages/components/src/mobile/color-settings/style.native.scss +++ b/packages/components/src/mobile/color-settings/style.native.scss @@ -29,6 +29,17 @@ line-height: 24px; } +.colorText { + font-family: $default-monospace-font; + color: $light-primary; + font-size: 16px; + font-weight: 400; +} + +.colorTextDark { + color: $dark-primary; +} + .flex { flex: 1; }