Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | 36x | import colors from '../../theme/colors'; // const darkThemeTextColors = { // neutral: colors.neutral0, // primary: colors.primary200, // success: colors.success200, // warning: colors.warning200, // danger: colors.danger200, // }; const textTheme = { sizings: { l: { fontSize: '1.25rem', }, m: { fontSize: '1rem', }, s: { fontSize: '.875rem', }, xs: { fontSize: '.75rem', }, }, opacities: { high: 1, normal: 0.8, low: 0.6, }, colors: { neutral: colors.neutral1000, primary: colors.primary500, success: colors.success500, warning: colors.warning500, danger: colors.danger500, }, onBackground: { primary: { neutral: colors.neutral0, }, success: { neutral: colors.neutral0, }, warning: { neutral: colors.neutral0, }, danger: { neutral: colors.neutral0, }, }, common: { fontWeight: 400, fontFamily: 'Lato, Arial, Helvetica, sans-serif', }, }; export default textTheme; |