-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
38 lines (38 loc) · 1.24 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/**/*.{js,jsx}'
],
theme: {
extend: {
fontFamily: {
eesti: ['var(--font-eesti)'],
inter: ['var(--font-inter)'],
dm: ['var(--font-dm)']
},
colors: {
'brand-cyan': 'var(--brand-cyan)',
'brand-pink': 'var(--brand-pink)',
'brand-gray': 'var(--brand-gray)',
'brand-black': 'var(--brand-black)'
},
backgroundImage: {
'main-gradient': 'var(--main-gradient)',
'black-top-gradient': 'var(--black-top-gradient)',
'black-bottom-gradient': 'var(--black-bottom-gradient)',
news: "url('/assets/images/landing/news.png')",
mvoutline: "url('/assets/images/mavieoutline.png')"
},
animation: {
'spin-slow': 'spin 3s linear infinite'
},
transitionTimingFunction: {
spring: 'cubic-bezier(.58,.08,.23,1.38)'
}
}
},
plugins: [
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/line-clamp')
]
}