- 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.
14 lines
275 B
TypeScript
14 lines
275 B
TypeScript
import { GRAY_SCALE } from '@ui/theme/constants/GrayScale';
|
|
import { COLOR } from './Colors';
|
|
|
|
export const ILLUSTRATION_ICON_DARK = {
|
|
color: {
|
|
blue: COLOR.blue50,
|
|
gray: GRAY_SCALE.gray50,
|
|
},
|
|
fill: {
|
|
blue: COLOR.blue70,
|
|
gray: GRAY_SCALE.gray70,
|
|
},
|
|
};
|