-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
39 lines (39 loc) · 1.13 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
module.exports = {
purge: ['./components/**/*.{js,ts,jsx,tsx}', './pages/**/*.{js,ts,jsx,tsx}'],
darkMode: false, // or 'media' or 'class'
theme: {
fontFamily: {
strong: ['"Sofia Pro Bold"'],
},
extend: {
colors: {
blue: {
dark: '#04467B',
DEFAULT: '#065798',
light: '#0B6DBB',
lightest: '#EEF7FF',
},
coolGray: {
lightest: '#FAFAFA',
},
},
backgroundImage: {
// as of now, tailwind and next does not include these on build
// see `styles/globals.css` for a workaround
// (these are kept here in the hopes that this gets fixed soon..)
'home-header': "url('/assets/illustrations/home.png')",
'nonprofit-header': "url('/assets/illustrations/nonprofits.png')",
'projects-header': "url('/assets/illustrations/projects.png')",
'student-header': "url('/assets/illustrations/students.png')",
'donate-header': "url('/assets/illustrations/donate.png')",
},
},
minWidth: {
1.5: '0.375rem',
},
},
variants: {
extend: {},
},
plugins: [],
};