src/app/components/ThemeProvider/fontScripts/latinWithDiacritics.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
const latinWithDiacritics = {
  atlas: {
    groupA: {
      fontSize: 78,
      lineHeight: 84,
    },
    groupB: {
      fontSize: 96,
      lineHeight: 104,
    },
    groupD: {
      fontSize: 140,
      lineHeight: 148,
    },
  },
  elephant: {
    groupA: {
      fontSize: 60,
      lineHeight: 64,
    },
    groupB: {
      fontSize: 78,
      lineHeight: 84,
    },
    groupD: {
      fontSize: 116,
      lineHeight: 124,
    },
  },
  imperial: {
    groupA: {
      fontSize: 50,
      lineHeight: 54,
    },
    groupB: {
      fontSize: 64,
      lineHeight: 78,
    },
    groupD: {
      fontSize: 96,
      lineHeight: 116,
    },
  },
  royal: {
    groupA: {
      fontSize: 40,
      lineHeight: 44,
    },
    groupB: {
      fontSize: 52,
      lineHeight: 64,
    },
    groupD: {
      fontSize: 76,
      lineHeight: 92,
    },
  },
  foolscap: {
    groupA: {
      fontSize: 32,
      lineHeight: 36,
    },
    groupB: {
      fontSize: 40,
      lineHeight: 48,
    },
    groupD: {
      fontSize: 56,
      lineHeight: 68,
    },
  },
  canon: {
    groupA: {
      fontSize: 28,
      lineHeight: 36,
    },
    groupB: {
      fontSize: 32,
      lineHeight: 42,
    },
    groupD: {
      fontSize: 44,
      lineHeight: 58,
    },
  },
  trafalgar: {
    groupA: {
      fontSize: 22,
      lineHeight: 28,
    },
    groupB: {
      fontSize: 24,
      lineHeight: 32,
    },
    groupD: {
      fontSize: 32,
      lineHeight: 42,
    },
  },
  paragon: {
    groupA: {
      fontSize: 20,
      lineHeight: 26,
    },
    groupB: {
      fontSize: 22,
      lineHeight: 30,
    },
    groupD: {
      fontSize: 28,
      lineHeight: 38,
    },
  },
  doublePica: {
    groupA: {
      fontSize: 18,
      lineHeight: 24,
    },
    groupB: {
      fontSize: 20,
      lineHeight: 26,
    },
    groupD: {
      fontSize: 24,
      lineHeight: 32,
    },
  },
  greatPrimer: {
    groupA: {
      fontSize: 18,
      lineHeight: 22,
    },
    groupB: {
      fontSize: 18,
      lineHeight: 22,
    },
    groupD: {
      fontSize: 20,
      lineHeight: 24,
    },
  },
  bodyCopy: {
    groupA: {
      fontSize: 15,
      lineHeight: 20,
    },
    groupB: {
      fontSize: 16,
      lineHeight: 22,
    },
    groupD: {
      fontSize: 16,
      lineHeight: 22,
    },
  },
  pica: {
    groupA: {
      fontSize: 15,
      lineHeight: 20,
    },
    groupB: {
      fontSize: 16,
      lineHeight: 20,
    },
    groupD: {
      fontSize: 16,
      lineHeight: 20,
    },
  },
  longPrimer: {
    groupA: {
      fontSize: 15,
      lineHeight: 20,
    },
    groupB: {
      fontSize: 15,
      lineHeight: 20,
    },
    groupD: {
      fontSize: 14,
      lineHeight: 18,
    },
  },
  brevier: {
    groupA: {
      fontSize: 14,
      lineHeight: 18,
    },
    groupB: {
      fontSize: 14,
      lineHeight: 18,
    },
    groupD: {
      fontSize: 13,
      lineHeight: 16,
    },
  },
  minion: {
    groupA: {
      fontSize: 12,
      lineHeight: 16,
    },
    groupB: {
      fontSize: 12,
      lineHeight: 16,
    },
    groupD: {
      fontSize: 12,
      lineHeight: 16,
    },
  },
};

export default latinWithDiacritics;