White Labeling
White Labeling allows you to customize the logo, visible name, and basic theme of the CMS throughout the control panel.
Configuration
White Label options are available in config/statamic/cp.php
or through corresponding environment variables.
Keep in mind that according to the license terms you can only rebrand for personal, internal, or client usage. You cannot resell Statamic under another name.

CP theme
You can choose to switch the default "rad" login theme with a more vanilla (and boring) "business" theme.
'theme' => env('STATAMIC_THEME', 'rad'),
Available options:
rad
business

Custom CMS name
Set a custom name for the CMS.
'custom_cms_name' => env('STATAMIC_CUSTOM_CMS_NAME', 'Statamic'),
Custom logo
Swap out the logo with a URL to one of your own.
'custom_logo_url' => env('STATAMIC_CUSTOM_LOGO_URL', null),
You may set different logos for inside and outside Control Panel (nav bar and login screen, respectively) by passing an array.
'custom_logo_url' => [ 'nav' => '/logo-white.png', 'outside' => '/logo-dark.png'],
You can also specify a different URL to be used when in Dark Mode:
'custom_logo_url' => '/logo-light-mode.png', 'custom_dark_logo_url' => '/logo-dark-mode.png',
Custom logo text
Display a custom name in plain text in the control panel; automatically changes when in Dark Mode.
When defined, logo image URLs will take precedence over logo text.
'custom_logo_text' => env('STATAMIC_CUSTOM_LOGO_TEXT', null),
Custom favicon
Swap out the favicon with a URL to one of your own.
'custom_favicon_url' => env('STATAMIC_CUSTOM_FAVICON_URL', null),
Custom CSS
Set the path to a CSS file and easily add your own styles to the control panel.
'custom_css_url' => env('STATAMIC_CUSTOM_CSS_URL', null),
Support URL
Set the location of the support link in the "Useful Links" header dropdown. Use false
to remove it entirely.
'support_url' => env('STATAMIC_SUPPORT_URL', 'https://statamic.com/support'),
Documentation
Whether to show links to Statamic documentation throughout the Control Panel.
'link_to_docs' => env('STATAMIC_LINK_TO_DOCS', true),
Docs Feedback
Submit improvements, related content, or suggestions through Github.
Betterify this page