SimpleUtils

🏷️ Brand & Export Toolkit

Create a custom-branded toolkit with your logo and colors. Select the tools you need, preview the result, and download a single self-contained HTML file ready to deploy anywhere.

1

Brand Setup

2

Select Tools

📄 PDF Tools

🖼️ Image Tools

3

Build & Preview

⚙️

Building your toolkit...

How It Works

  1. Upload your branding: Add your logo, company name, and choose an accent color
  2. Select tools: Pick which PDF and image tools to include in your bundle
  3. Preview: See exactly how your branded toolkit will look
  4. Download: Get a single self-contained HTML file ready to deploy

💡 Tip: The output file works completely offline (except for external dependencies like PDF.js). You can host it on any web server, share it via USB, or email it — no backend required.

Features

${brandData.name}
${toolSections}
`; } function adjustColor(color, amount) { const num = parseInt(color.replace('#', ''), 16); const r = Math.max(0, Math.min(255, (num >> 16) + amount)); const g = Math.max(0, Math.min(255, ((num >> 8) & 0x00FF) + amount)); const b = Math.max(0, Math.min(255, (num & 0x0000FF) + amount)); return '#' + ((r << 16) | (g << 8) | b).toString(16).padStart(6, '0'); }