akka.http.scaladsl.server.Directives._をimportしたらよかった。
import akka.http.scaladsl.server.Directives._ ..... val route = parameters('color, 'backgroundColor) { (color, backgroundColor) => val result = s"The color is '$color' and the background is '$backgroundColor'" complete(result) }