-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
45 lines (44 loc) · 997 Bytes
/
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
39
40
41
42
43
44
45
const colors = require('tailwindcss/colors');
const { fontFamily } = require('tailwindcss/defaultTheme');
module.exports = {
content: [
'./public/**/*.html',
'./src/**/*.{astro,js,jsx}',
],
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
indigo: colors.indigo,
slate: colors.slate,
'gray': {
50: '#EEE',
100: '#BEBEBE',
200: '#9C9C9C',
300: '#585858',
400: '#2F2F2F',
},
},
fontFamily: {
...fontFamily,
'open-sans': ['Open Sans', 'sans-serif'],
},
extend: {
keyframes: {
fadeUp: {
'0%': { transform: 'translateY(100px)' },
'100%': { transform: 'translateY(0px)' },
},
},
animation: {
'fadeUp': 'fadeUp 1s'
}
},
},
variants: {
animation: ['responsive', 'motion-safe', 'motion-reduce', 'hover']
},
plugins: [],
};