-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtailwind.config.js
55 lines (55 loc) · 1.28 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
'./node_modules/react-toastify/dist/ReactToastify.css',
],
darkMode: 'media',
theme: {
extend: {
fontFamily: {
lato: ['Lato'],
inter: ['Inter'],
asap: ['Asap'],
},
screens: {
print: { raw: 'print' },
xs: '428px',
'3xl': '2400px',
},
backgroundImage: {
haikeiWavy: "url('/backgrounds/wavy-background.svg')",
},
colors: {
primary: '#CD329F',
primaryLight: '#d75bb2',
accent: '#CB128D',
},
},
textColor: (theme) => ({
...theme('colors'),
primary: '#CD329F',
accent: '#CB128D',
}),
backgroundColor: (theme) => ({
...theme('colors'),
'light-accent': '#CD329F',
'light-vision': '#000',
'light-background': '#F5F5F5',
'button-light-background': '#000',
}),
borderColor: (theme) => ({
...theme('colors'),
'light-accent': '#CD329F',
}),
},
plugins: [
require('tailwindcss-animate'),
require('tailwindcss-debug-screens'),
require('@tailwindcss/typography'),
],
corePlugins: {
divideStyle: true,
},
};