-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
38 lines (38 loc) · 1.02 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./styles/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
green: '#3E625C', //green
accentcolor1: '#73059E', //purple
accentcolor2: '#F9F9F9', //off-white
accentcolor3: '#F5E8DA', //cream
accentcolor4: '#540375', //dark-purple
},
fontFamily: {
cursive: ['Jomhuria', 'cursive'],
sans: ['Open Sans', 'sans-serif'],
heading: ['Finger Paint', 'cursive'],
},
fontSize: {
base: ['2.8rem', '1.5rem'],
custom: ['1.8rem', '1.25rem'],
small: ['1rem', '1rem'],
},
backgroundImage: {
'hero-image': "url('/bg-image.png')",
'hero-image-phone': "url('/bg-image-phone-new.png')",
},
boxShadow: {
custom: '0 1px 3px 0 rgba(255, 255, 255, 0.3)',
},
},
plugins: [],
},
};