| 12345678910111213141516171819 |
- module.exports = {
- content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
- theme: {
- extend: {
- colors: {
- primary: '#00327d',
- secondary: '#005ab7',
- surface: '#f7f9fb',
- 'on-surface': '#191c1e',
- 'on-surface-variant': '#434653',
- },
- fontFamily: {
- headline: ['Manrope', 'sans-serif'],
- body: ['Inter', 'sans-serif'],
- },
- },
- },
- plugins: [],
- };
|