wwf
3 天以前 a430284aa21e3ae1f0d5654e55b2ad2852519cc2
app/components/base/chat/embedded-chatbot/theme/utils.ts
@@ -1,9 +1,9 @@
export function hexToRGBA(hex: string, opacity: number): string {
  hex = hex.replace('#', '')
  const r = Number.parseInt(hex.slice(0, 2), 16)
  const g = Number.parseInt(hex.slice(2, 4), 16)
  const b = Number.parseInt(hex.slice(4, 6), 16)
  const r = parseInt(hex.slice(0, 2), 16)
  const g = parseInt(hex.slice(2, 4), 16)
  const b = parseInt(hex.slice(4, 6), 16)
  // Returning an RGB color object
  return `rgba(${r},${g},${b},${opacity.toString()})`