-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
56 lines (54 loc) · 1.16 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,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
primary: '#B61C1C',
black: '#000000',
white: '#FFFFFF',
gray: {
300: '#252525',
500: '#999AA5',
600: '#66676E',
700: '#38373A',
800: '#232323',
900: '#100f12',
950: '#999999'
}
},
keyframes: {
fade: {
from: { opacity: 0 },
to: { opacity: 1 }
},
scaleIn: {
'0%': {
opacity: 0,
transform: 'scale(0.9)'
},
'50%': {
opacity: 0.3
},
'100%': {
opacity: 1,
transform: 'scale(1)'
}
}
},
fontFamily: {
sans: ['var(--font-geist-sans)'],
mono: ['var(--font-geist-mono)']
},
animation: {
fade: 'fade .5s ease-in-out',
scaleIn: 'scaleIn .35s ease-in-out'
}
},
},
plugins: [],
};