-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
67 lines (65 loc) · 1.79 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
const {colors} = require('tailwindcss/defaultTheme')
module.exports = {
content: [
'./components/**/*.{ts,js,jsx,tsx}',
'./app/**/*.{ts,jsx,js,tsx}',
'./src/**/*.{ts,tsx}',
'./css/**/*.css'
],
theme: {
fontWeight: {
normal: 400,
medium: 600,
bold: 700,
},
extend: {
fontSize: {
'base': '1.125rem', // 18px
// 'lg': '1.5rem',
'xl2': '1.167rem',
// '2xl': '2rem',
// '5xl': '3rem',
// '6xl': '4rem',
// '7xl': '5rem',
},
fontFamily: {
'body': [
'NeueHaasGrotesk',
'Helvetica',
'Arial',
'sans-serif'],
'display': [
'NeueHaasGrotesk',
'Helvetica',
'Arial',
'sans-serif'],
},
minWidth: {
'2/5': '40%',
},
colors: {
primary: '#FEF208',
green: "#3EAA47",
blue: "#73CEDF",
orange: "#F4A41B",
red: "#F12E3E",
secondary: '#009DCA',
black: '#221E1F',
gray: {
100: '#FBFBFB',
200: '#F7F7F7',
300: '#F2F2F2',
400: '#EEEEEE',
500: '#EAEAEA',
600: '#BBBBBB',
700: '#8C8C8C',
800: '#5E5E5E',
900: '#221E1F',
},
},
},
},
variants: {},
plugins: [],
}
// TODO: Change line heights