Help me understand the pattern of depreciated

String does not equal the pattern of depreciated is the error code I get where did I go wrong?
the six lines related to the two lines below give me this error
white_value_command_topic: “LightMCU/glitterChance”
white_value_state_topic: “LightMCU/glitterChanceState”

# Example configuration.yaml entry
mqtt:
  broker: xxx.xxx.x.xxx
  port: 1883

# Configure a default setup of Home Assistant (frontend, api, etc)
default_config:

# Text to speech
tts:
  - platform: google_translate

group: !include groups.yaml

cards:
      - type: entities
        title: Holiday Lights
        show_header_toggle: false
        entities:    
          - light.holiday_lights
          - light.color_1
          - light.color_2
          - light.color_3
          - light.glitter
          - light.lightning
          - sensor.current_led

automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml

sensor:
  - platform: mqtt
    name: "Current LED"
    state_topic: "LightMCU/locator"

light:
  - platform: mqtt
    name: "Holiday Lights"
    command_topic: "LightMCU/power"
    state_topic: "LightMCU/powerState"
    brightness_command_topic: "LightMCU/brightness"
    brightness_state_topic: "LightMCU/brightnessState"
    brightness_scale: 255
    white_value_command_topic: "LightMCU/modifier"
    white_value_state_topic: "LightMCU/modifierState"
    white_value_scale: 500
    effect_command_topic: "LightMCU/effect"
    effect_state_topic: "LightMCU/effectState"
    effect_list:
      - Color_Chase
      - Color_Glitter
      - Single_Race
      - Double_Crash
      - Rainbow
      - Blocked_Colors
      - BPM
      - Twinkle
      - Fire
      - Fill_Solid
      - Spooky_Eyes
      - LED_Locator
    retain: true
  - platform: mqtt
    name: "Color 1"
    command_topic: "LightMCU/ColorPower"
    state_topic: "LightMCU/powerState"
    rgb_command_topic: "LightMCU/color1"
    rgb_state_topic: "LightMCU/color1State"
    retain: true
  - platform: mqtt
    name: "Color 2"
    command_topic: "LightMCU/ColorPower"
    state_topic: "LightMCU/powerState"
    rgb_command_topic: "LightMCU/color2"
    rgb_state_topic: "LightMCU/color2State"
    retain: true
  - platform: mqtt
    name: "Color 3"
    command_topic: "LightMCU/ColorPower"
    state_topic: "LightMCU/powerState"
    rgb_command_topic: "LightMCU/color3"
    rgb_state_topic: "LightMCU/color3State"
    retain: true
  - platform: mqtt
    name: "Glitter"
    command_topic: "LightMCU/addEffects"
    state_topic: "LightMCU/glitter/state"
    
    payload_on: "Glitter On"
    payload_off: "Glitter Off"
    rgb_command_topic: "LightMCU/glitterColor"
    rgb_state_topic: "LightMCU/glitterColorState"
    white_value_command_topic: "LightMCU/glitterChance"
    white_value_state_topic: "LightMCU/glitterChanceState"
    white_value_scale: 255
    retain: true
  - platform: mqtt
    name: "Lightning"
    state_topic: "LightMCU/lightning/state"
    command_topic: "LightMCU/addEffects"
    payload_on: "Lightning On"
    payload_off: "Lightning Off"
    white_value_command_topic: "LightMCU/lightningChance"
    white_value_state_topic: "LightMCU/lightningChanceState"
    white_value_scale: 500
    retain: true

Please copy and paste the exact error message.

That’s for your UI, not configuration.yaml