iqual/iq_backend_theme

This package is abandoned and no longer maintained. No replacement package was suggested.
There is no license information available for the latest version (v2.0) of this package.

Unicorn Backend theme - A moden backend theme, based on the gin backend theme.

Installs: 14

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 3

Forks: 0

Open Issues: 1

Language:SCSS

Type:drupal-custom-theme

v2.0 2022-11-29 13:16 UTC

This package is auto-updated.

Last update: 2025-10-02 12:16:13 UTC


README

Backend theme for unicorn installations.
Per default, gin's dark mode is enabled but each user can override the admin theme settings the user profile (/user/edit).

Installation guide:

// Install composer package
composer require iqual/iq_backend_theme

// Enable gin theme
drush then gin

// Enable dependency modules
drush en gin_toolbar gin_login iq_backend_theme_helper

// Enable theme
drush then iq_backend_theme

// Set as admin theme
drush php:eval '$config = \Drupal::service("config.factory")->getEditable("system.theme"); $config->set("admin", "iq_backend_theme")->save();'

Or as a sexy one-liner:

composer require iqual/iq_backend_theme && drush then gin && drush en gin_toolbar gin_login iq_backend_theme_helper && drush then iq_backend_theme && drush php:eval '$config = \Drupal::service("config.factory")->getEditable("system.theme"); $config->set("admin", "iq_backend_theme")->save();'

Don't forget to uninstall Adminimal, once everything is working fine!

drush thun adminimal
composer remove drupal/adminimal