@actinc/dls
Version:
Design Language System (DLS) for ACT & Encoura front-end projects.
26 lines • 699 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 { common } from '@mui/material/colors';
import COLORS from './colors';
var PALETTE = {
primary: {
main: COLORS.PRIMARY,
},
secondary: {
contrastText: common.white,
dark: COLORS.SECONDARY_DARK,
light: COLORS.SECONDARY_LIGHT,
main: COLORS.SECONDARY,
},
text: {
disabled: COLORS.TEXT_DISABLED,
primary: COLORS.TEXT_PRIMARY,
secondary: COLORS.TEXT_SECONDARY,
},
};
export default PALETTE;
//# sourceMappingURL=palette.js.map