-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
37 lines (37 loc) · 981 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}'
],
theme: {
extend: {
colors: {
black: '#000000',
white: '#ffffff',
primary: '#009C41',
secondary: '#145DAC',
highlight: '#e28b28'
},
animation: {
'fade-out-3': 'fadeOut 3s ease-in-out',
'ltr-linear-infinite': 'ltr-linear-infinite 60s linear infinite'
},
boxShadow: {
custom1: '0px 0px 30px -5px rgba(0, 0, 0, 0.28);'
},
keyframes: {
'ltr-linear-infinite': {
from: { 'background-position': '0 0' },
to: { 'background-position': '-400% 0%' }
}
}
}
},
plugins: [
require('tailwind-gradient-mask-image'),
require('tailwind-scrollbar')({ nocompatible: true }),
require('@tailwindcss/typography'),
require('@tailwindcss/line-clamp')
]
};