-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
38 lines (36 loc) · 969 Bytes
/
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
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
screens: {
'md': '880px',
'lg' :'1025px'
},},
fontFamily: {
led: ["Led-counter", "sans-serif"],
Aeonik:["Aeonik","sans-serif"],
Aeo:["Aeo","sans-serif"],
},
animation: {
marquee: 'marquee 7s linear infinite',
marquee2: 'marquee2 7s linear infinite',
},
keyframes: {
marquee: {
'0%': { transform: 'translateX(0%)' },
'100%': { transform: 'translateX(-100%)' },
},
marquee2: {
'0%': { transform: 'translateX(100%)' },
'100%': { transform: 'translateX(0%)' },
},
},
},
plugins: [
require('@tailwindcss/typography'),
],
}