/*!
 * SPDX-License-Identifier: Apache-2.0
 *
 * The OpenSearch Contributors require contributions made to
 * this file be licensed under the Apache-2.0 license or a
 * compatible open source license.
 *
 * Modifications Copyright OpenSearch Contributors. See
 * GitHub history for details.
 */

// --------------------------------------------------------------------------------------
// OUI global variables
// --------------------------------------------------------------------------------------
// This module contains all global variables available within OUI. Every variable in this
// document should be prefixed with $oui. This lets us know where the variable is
// coming from when looking inside the individual component files. Any component local
// variables should be declared at the top of those documents prefixed with $componentName.

// Import order is important. Size, color, ...etc are used in other variables.
@import 'size';
@import 'colors';
@import 'animations';
@import 'typography';
@import 'borders';
@import 'responsive';
@import 'shadows';
@import 'states';
@import 'z_index';

@import 'buttons';
@import 'form';
@import 'header';
@import 'page';
@import 'panel';
@import 'tool_tip';
@import 'collapsible_nav';
