-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
42 lines (40 loc) · 953 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
39
40
41
42
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
fontFamily: {
dalek : ['Dalek'],
pinpoint : ['Dalek Pinpoint','Poppins'],
greek: ['greek to me'],
azonix : ['azonix']
},
colors: {
bleu : '#111F4D',
noir : '#020205',
orange: '#E43A19'
},
cursor: {
'pen': 'url(pen.png), pointer',
},
backgroundImage: {
'illustrations': "url('../public/images/Digital_art/DIGITAL_ART_BG.png')",
},
keyframes:{
move:{
'0%': {transform : 'translateX(-24%)'},
'100%' : {transform : 'translateX(-6%)'},
}
},
animation: {
move: 'move 10s linear infinite',
},
gridTemplateColumns: {
'fit': 'repeat(auto-fit, minmax(250px,1fr))',
'fitsm': 'repeat(auto-fit, minmax(195px,1fr))',
},
},
},
plugins: [],
}