@carbon/themes
Version:
Themes for applying color in the Carbon Design System
27 lines (26 loc) • 1.05 kB
TypeScript
/**
* Copyright IBM Corp. 2018, 2026
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
import * as white from './white';
import * as g10 from './g10';
import * as g90 from './g90';
import * as g100 from './g100';
import * as v10 from './v10';
import * as buttonTokens from './component-tokens/button';
import * as tagTokens from './component-tokens/tag';
import * as notificationTokens from './component-tokens/notification';
import * as statusTokens from './component-tokens/status';
import * as contentSwitcherTokens from './component-tokens/content-switcher';
import { formatTokenName } from './tools';
import { unstable_metadata } from './tokens';
declare const themes: {
white: typeof white;
g10: typeof g10;
g90: typeof g90;
g100: typeof g100;
};
export * from './white';
export { white, g10, g90, g100, themes, v10, buttonTokens, tagTokens, notificationTokens, statusTokens, contentSwitcherTokens, unstable_metadata, formatTokenName, };