package io.scanbot.barcodesdk.plugin.reactnative.extensions import io.scanbot.sdk.ui_v2.common.ScanbotColor object Utils { fun tryToParseRGBAHexColor(colorString: String): Int? { return try { ScanbotColor(colorString, false).toAndroid() } catch (ex: Exception) { null } } }