UNPKG

@actinc/dls

Version:

Design Language System (DLS) for ACT & Encoura front-end projects.

24 lines 733 B
/** * 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 { createTheme } from "../createTheme"; import COMPONENTS from './components'; import CUSTOM_DIMS from './customDims'; import PALETTE from './palette'; import SHAPE from './shape'; import spacing, { SPACING_PX } from './spacing'; import TYPOGRAPHY from './typography'; export var THEME_ACT = { components: COMPONENTS, customDims: CUSTOM_DIMS, palette: PALETTE, shape: SHAPE, spacing: spacing, spacingPx: SPACING_PX, typography: TYPOGRAPHY, }; export default createTheme(THEME_ACT); //# sourceMappingURL=index.js.map