tailwind.config.cjs 431 B

12345678910111213141516171819
  1. module.exports = {
  2. content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
  3. theme: {
  4. extend: {
  5. colors: {
  6. primary: '#00327d',
  7. secondary: '#005ab7',
  8. surface: '#f7f9fb',
  9. 'on-surface': '#191c1e',
  10. 'on-surface-variant': '#434653',
  11. },
  12. fontFamily: {
  13. headline: ['Manrope', 'sans-serif'],
  14. body: ['Inter', 'sans-serif'],
  15. },
  16. },
  17. },
  18. plugins: [],
  19. };