generated from celo-org/celo-composer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
53 lines (52 loc) · 1.07 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
module.exports = {
content: ['./src/**/*.{js,jsx}', './public/index.html'],
theme: {
screens: {
sm: '480px',
md: '768px',
lg: '976px',
xl: '1440px',
},
colors: {
blue: '#20FFFF',
pink: '#ff49db',
purple: '#B62EE0',
green: '#34eb3d',
white: '#ffffff',
red: '#000000',
yellow: '#fff620',
gray: '#8492a6',
blac: '#000000',
},
container: {
center: true,
},
fontFamily: {
Poppins: ['Poppins', 'sans-serif'],
sans: ['Graphik', 'sans-serif'],
serif: ['Merriweather', 'serif'],
'press-start': ['"Press Start 2P"', 'cursive'],
},
extend: {
spacing: {
128: '32rem',
144: '36rem',
},
borderRadius: {
'4xl': '2rem',
},
backgroundImage: {
'hero-img': 'url(../public/home/hero-img.png)',
'nav-img': 'url(../public/nav-shadow.png)',
"logos-img": "url(../public/home/logos-img.png)",
"celo-logo": "url(../public/celo-logo.png)",
},
gradientColorStops: (theme) => ({
primary: '#FF8C00',
secondary: '#FFA500',
danger: '#FFD700',
}),
},
},
plugins: [require('daisyui')],
};