You are here

protected function BootstrapBase::baseColors in GridStack 8.2

Returns the base colors.

2 calls to BootstrapBase::baseColors()
Bootstrap4::baseColors in src/Plugin/gridstack/engine/Bootstrap4.php
Returns the base colors.
BootstrapBase::colors in src/Plugin/gridstack/engine/BootstrapBase.php
Returns the colors.
1 method overrides BootstrapBase::baseColors()
Bootstrap4::baseColors in src/Plugin/gridstack/engine/Bootstrap4.php
Returns the base colors.

File

src/Plugin/gridstack/engine/BootstrapBase.php, line 112

Class

BootstrapBase
Provides the base Bootstrap layout engine.

Namespace

Drupal\gridstack\Plugin\gridstack\engine

Code

protected function baseColors() {
  return [
    'primary',
    'danger',
    'info',
    'warning',
    'success',
  ];
}