@carbon/themes
Version:
Themes for applying color in the Carbon Design System
20 lines (19 loc) • 531 B
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 { tokens } 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, tokens };