Files
twenty/packages/twenty-ui/src/theme/constants/IllustrationIconLight.ts
Lucas Bordeau e9717603f2 Refactored and improved seeds (#8695)
- Added a new Seeder service to help with custom object seeds
- Added RichTextFieldInput to edit a rich text field directly on the
table, but deactivated it for now.
2024-12-24 14:44:52 +01:00

14 lines
276 B
TypeScript

import { GRAY_SCALE } from '@ui/theme/constants/GrayScale';
import { COLOR } from './Colors';
export const ILLUSTRATION_ICON_LIGHT = {
color: {
blue: COLOR.blue40,
gray: GRAY_SCALE.gray40,
},
fill: {
blue: COLOR.blue20,
gray: GRAY_SCALE.gray20,
},
};