-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
53 lines (53 loc) · 1.33 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: [
'~/mdx-components.tsx',
'./mdx-components.tsx',
'~/posts/*.mdx',
'./posts/*.mdx',
'~/app/**/*.{js,ts,jsx,tsx}',
'./app/**/*.{js,ts,jsx,tsx}',
'~/app/(pages)/**/*.{js,ts,jsx,tsx}',
'./app/(pages)/**/*.{js,ts,jsx,tsx}',
'~/app/components/**/*.{js,ts,jsx,tsx}',
'./app/components/**/*.{js,ts,jsx,tsx}',
'~/test/**/*.{js,ts,jsx,tsx}',
'./test/**/*.{js,ts,jsx,tsx}',
'!./node_modules'
],
theme: {
extend: {
fontFamily: {
heading: ['var(--font-poppins)'],
body: ['var(--font-inter)']
},
borderColor: {
primary: '#262626' // text-neutral-800
},
textColor: {
primary: '#e4e4e7', // text-zinc-200
secondary: '#a1a1aa', // text-zinc-400
other: '#52525b' // text-zinc-500
},
backgroundColor: {
primary: '#0a0a0a', // text-neutral-950
secondary: '#262626' // text-neutral-800
},
keyframes: {
titlegradient: {
to: {
'background-position': '200% 50%'
}
}
},
backgroundSize: {
'200%': '200% auto'
},
animation: {
'title-gradient': 'titlegradient 2s linear infinite reverse'
}
}
},
plugins: []
}