You are here

protected function Bootstrap4::colors in GridStack 8.2

Returns the colors.

Overrides BootstrapBase::colors

File

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

Class

Bootstrap4
Provides a GridStack Bootstrap 4 layout engine.

Namespace

Drupal\gridstack\Plugin\gridstack\engine

Code

protected function colors() {
  $colors = parent::colors();
  $colors4 = [
    'white',
    'transparent',
  ];
  return array_merge($colors, $colors4);
}