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.
Package info
github.com/iqual-ch/iq_backend_theme
Language:SCSS
Type:drupal-custom-theme
pkg:composer/iqual/iq_backend_theme
v2.0
2022-11-29 13:16 UTC
Requires
- drupal/gin: ^3.0
- drupal/gin_login: ^1.0
- iqual/iq_backend_theme_helper: ^2.0
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