-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
37 lines (37 loc) Β· 1.03 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
fontFamily: {
outfit: ['Outfit', 'sans-serif'],
},
colors: {
primary: '#10141E',
'primary-dark': '#161D2F',
'primary-light': '#5A698F',
secondary: '#FC4747',
},
fontSize: {
h1: [
'2rem',
{
fontWeight: 300,
lineHeight: '2.5rem',
letterSpacing: '-0.0313rem',
},
],
'h2-light': ['1.5rem', { fontWeight: 300, lineHeight: '1.875rem' }],
'h2-medium': ['1.5rem', { fontWeight: 500, lineHeight: '1.1875rem' }],
h3: ['1.125rem', { fontWeight: 500, lineHeight: '1.4375rem' }],
'body-1': ['0.9375rem', { fontWeight: 300, lineHeight: '1.1875rem' }],
'body-2': ['0.8125rem', { fontWeight: 300, lineHeight: '1rem' }],
},
},
},
plugins: [],
};