You are here

protected function Bootstrap4::baseColors in GridStack 8.2

Returns the base colors.

Overrides BootstrapBase::baseColors

1 call to Bootstrap4::baseColors()
Bootstrap4::getVersionClasses in src/Plugin/gridstack/engine/Bootstrap4.php
Returns the module feature CSS classes, not available at CSS frameworks.

File

src/Plugin/gridstack/engine/Bootstrap4.php, line 21

Class

Bootstrap4
Provides a GridStack Bootstrap 4 layout engine.

Namespace

Drupal\gridstack\Plugin\gridstack\engine

Code

protected function baseColors() {
  $colors = parent::baseColors();
  $colors4 = [
    'secondary',
    'light',
    'dark',
  ];
  return array_merge($colors, $colors4);
}