function createLogoConfig()

in src/utils/image.ts [7:16]


function createLogoConfig(colors: Color): SharpOptions {
  return {
    create: {
      width: LOGO_SIZE,
      height: LOGO_SIZE,
      channels: 4,
      background: colors,
    },
  };
}