* ESLint rule: const naming Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: KlingerMatheus <klinger.matheus@gitstart.dev> * Refactor according to review Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: KlingerMatheus <klinger.matheus@gitstart.dev> * refactor: Reverts changes on `twenty-server` Co-authored-by: KlingerMatheus <klinger.matheus@gitstart.dev> Co-authored-by: v1b3m <vibenjamin6@gmail.com> --------- Co-authored-by: gitstart-twenty <gitstart-twenty@users.noreply.github.com> Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: KlingerMatheus <klinger.matheus@gitstart.dev>
17 lines
463 B
TypeScript
17 lines
463 B
TypeScript
import { COLOR } from '@/ui/theme/constants/Colors';
|
|
import { FONT_COMMON } from '@/ui/theme/constants/FontCommon';
|
|
import { GRAY_SCALE } from '@/ui/theme/constants/GrayScale';
|
|
|
|
export const FONT_DARK = {
|
|
color: {
|
|
primary: GRAY_SCALE.gray20,
|
|
secondary: GRAY_SCALE.gray35,
|
|
tertiary: GRAY_SCALE.gray45,
|
|
light: GRAY_SCALE.gray50,
|
|
extraLight: GRAY_SCALE.gray55,
|
|
inverted: GRAY_SCALE.gray100,
|
|
danger: COLOR.red,
|
|
},
|
|
...FONT_COMMON,
|
|
};
|