← Back to blog
customizationguide

Customizing Your SaaS Template

GorilliSaaS Team · March 15, 2024

Overview


The GorilliSaaS template is designed to be fully customizable. The CUSTOMIZATION.md file at the repository root is your canonical reference for adapting every aspect of the template.


Branding & Theming


Update your brand name and colors in `config/site.ts` and `tailwind.config.ts`. The template uses a dark theme by default with accent color `#e8ff47`.


Feature Toggles


You can enable or disable features through environment variables and configuration files. This allows you to ship only what you need without removing code.


Auth Providers


The template supports multiple authentication providers through NextAuth.js. Configure your preferred providers in the auth configuration.


Pricing Plans


Update `config/plans.ts` with your pricing tiers. Remember to keep `PlanId` in sync with `PlanKey` in `types/admin.ts`.


Navigation


Customize the navigation links in `config/site.ts` under the `nav` array.