Cypher

A technical, angular theme designed exclusively for Filament v4

4.x
Cypher - Light Mode
Cypher - Dark Mode

Standard

USD 59.00 one time
  • Single site license
  • 1 year of updates
  • Lifetime access
Best value

Unlimited

USD 149.00 one time
  • Unlimited sites
  • Lifetime updates
  • Lifetime access

Requirements

  • PHP 8.2+
  • Filament v4
  • Tailwind v4

Purchase & Activation

You can buy Cypher here. Once you have completed the checkout, you'll receive your license key and you will be prompted to activate your theme by entering the domain you intend to use for your production environment. You will not be able to install the theme if you have not activated it!

activation

If you missed this step, you should be able to access it by finding the email with you license key and clicking the "Get started with Cypher" button.

Installation

1. Add the Repository

Once you have purchased Cypher, add the private repository to your composer.json:

composer config repositories.cypher composer https://cypher.composer.sh

2. Install the Package

Install the package via Composer:

composer require filafly/cypher

You will be prompted to provide your username and password.

Loading composer repositories with package information
Authentication required (cypher.composer.sh):
Username: [email]
Password: [key:domain]

The username will be your email address and the password will be equal to your license key. You will also need to include the domain name of your project by appending it to the key with a colon (:). Take the following instance for example:

  • Contact email: nolan@filafly.com
  • License key: 8c21df8f-6273-4932-b4ba-8bcc723ef500
  • Activation fingerprint: filafly.com
Loading composer repositories with package information
Authentication required (cypher.composer.sh):
Username: [nolan@filafly.com]
Password: [8c21df8f-6273-4932-b4ba-8bcc723ef500:filafly.com]

It is recommended to store the credentials when asked.

3. Create a custom theme

To ensure that Filament is aware of the styling changes, we must setup a new custom theme.

php artisan make:filament-theme

Once you've created your theme, you'll need to replace the existing import at the top of the file.

@import '../../../../vendor/filafly/cypher/resources/css/theme.css';

4. Add to Your Panel

Now you'll tell your Filament panel about the custom theme file and register a plugin for Cypher. If we assume your custom theme was created for an "admin" panel, you would make the following method calls in the panel provider:

use Filafly\Themes\Cypher\CypherTheme;

public function panel(Panel $panel): Panel
{
    return $panel
        // ... other configuration
        ->viteTheme('resources/css/filament/admin/theme.css')
        ->plugin(CypherTheme::make());
}

Customization

Disabling the Suggested Colors

Cypher comes with a carefully chosen set of default colors designed to enhance your Filament panel's visual harmony. However, if you'd like to maintain your existing color scheme or implement your own custom palette, you can prevent Cypher from applying its default colors by using the withoutSuggestedColors() method:

CypherTheme::make()->withoutSuggestedColors()

Disabling the Suggested Font

By default, Cypher applies the Oxanium and IBM Plex Mono for fonts to your Filament panel to achieve a technical look. If you prefer to use your own fonts or keep your existing font configuration, you can disable this behavior using the withoutSuggestedFont() method:

CypherTheme::make()->withoutSuggestedFont()

Disabling the Suggested Icons

Cypher comes with a curated set of icons designed to provide a unified visual experience in your Filament panel. If you'd rather use your own icons or maintain your current icon configuration, you can prevent Cypher from applying its default icons by using the withoutSuggestedIcons() method:

CypherTheme::make()->withoutSuggestedIcons()

Screenshots

Dashboard

Dashboard Light Mode Dashboard Dark Mode

Authentication

Login Page - Light Mode Login Page - Dark Mode

Database Notifications

Database Notifications - Light Mode Database Notifications - Dark Mode

Edit Order

Edit Order Form - Light Mode Edit Order Form - Dark Mode

Orders List

Orders List - Light Mode Orders List - Dark Mode

Top Navigation

Top Navigation - Light Mode Top Navigation - Dark Mode

Modal Dialog - Light Mode Modal Dialog - Dark Mode

Data Tables

Data Table - Light Mode Data Table - Dark Mode

Empty States

Empty State - Light Mode Empty State - Dark Mode Animation

License

This is a commercial product. Your license grants you the right to use this theme according to the terms of your purchase through Anystack.sh.

Standard

USD 59.00 one time
  • Single site license
  • 1 year of updates
  • Lifetime access
Best value

Unlimited

USD 149.00 one time
  • Unlimited sites
  • Lifetime updates
  • Lifetime access

Have questions about Cypher? Get help in our Discord community.