@actinc/dls
Version:
Design Language System (DLS) for ACT & Encoura front-end projects.
24 lines • 823 B
JavaScript
/**
* Copyright (c) ACT, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import deepMerge from 'deepmerge';
import { createTheme } from "../createTheme";
import THEME_ENCOURA_CLASSIC from "../themeEncouraClassic";
import COMPONENTS from './components';
import CUSTOM_DIMS from './customDims';
import PALETTE from './palette';
import spacing, { SPACING_PX } from './spacing';
import TYPOGRAPHY from './typography';
export var THEME_ENCOURA = deepMerge(THEME_ENCOURA_CLASSIC, {
components: COMPONENTS,
customDims: CUSTOM_DIMS,
palette: PALETTE,
spacing: spacing,
spacingPx: SPACING_PX,
typography: TYPOGRAPHY,
});
export default createTheme(THEME_ENCOURA);
//# sourceMappingURL=index.js.map