-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
49 lines (47 loc) · 1001 Bytes
/
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
const forms = require('@tailwindcss/forms');
const lineClamp = require('@tailwindcss/line-clamp');
/**
* @type {import('tailwindcss').Config}
*/
module.exports = {
content: [
'./src/components/**/*.@(tsx|ts)',
'./src/containers/**/*.@(tsx|ts)',
'./src/layouts/**/*.tsx',
'./src/pages/**/*.tsx',
],
plugins: [forms, lineClamp],
theme: {
extend: {
fontFamily: {
inter: ['var(--font-inter)'],
serif: ['var(--font-serif)'],
},
colors: {
yellow: {
0: '#FAD201',
},
green: {
0: '#47DCAF',
1: '#34CA9D',
},
cobalt: {
0: '#002E65',
1: '#00489D',
2: '#315682',
3: '#002551',
},
cyan: {
0: '#5BCEFB',
},
},
letterSpacing: {
tight: '-.01em',
tighter: '-.03em',
},
backgroundImage: {
'smart-carbon': "url('/images/smart-carbon')",
},
},
},
};