UNPKG

@actinc/dls

Version:

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

69 lines 1.58 kB
/** * 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 { PaletteColorOptions, PaletteOptions } from '@mui/material/styles'; export declare const COLORS: { BACKGROUND_DISABLED: string; ERROR: string; ERROR_BACKGROUND: string; INFO: string; INFO_BACKGROUND: string; OVERLAY_BACKGROUND: string; PLACEHOLDER: string; PRIMARY: string; PRIMARY_DARK: string; PRIMARY_LIGHT: string; SECONDARY: string; SECONDARY_DARK: string; SECONDARY_LIGHT: string; SUCCESS: string; SUCCESS_BACKGROUND: string; TERTIARY: string; TEXT_DISABLED: string; TEXT_PRIMARY: string; TEXT_SECONDARY: string; WARNING: string; WARNING_BACKGROUND: string; }; export type CustomPaletteOptions = PaletteOptions & { tertiary: PaletteColorOptions; }; declare const PALETTE: { error: { main: string; }; info: { main: string; }; primary: { contrastText: "#fff"; dark: string; light: string; main: string; }; secondary: { contrastText: "#fff"; dark: string; light: string; main: string; }; success: { main: string; }; tertiary: { main: string; }; text: { disabled: string; primary: string; secondary: string; }; warning: { main: string; }; }; export default PALETTE; //# sourceMappingURL=palette.d.ts.map