-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (41 loc) · 1003 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
/* eslint-disable @typescript-eslint/no-var-requires */
const { fontFamily } = require('tailwindcss/defaultTheme');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
fontFamily: {
primary: ['Poppins', ...fontFamily.sans],
},
colors: {
primary: {
100: '#06A371',
200: '#CFEEE4',
300: '#E6F8F2',
400: '#EDFFF9',
500: '#FFFFFF',
600: '#23926f',
},
secondary: {
100: '#FFA500',
200: '#FF7A00',
},
},
keyframes: {
shimmer: {
'0%': {
backgroundPosition: '-700px 0',
},
'100%': {
backgroundPosition: '700px 0',
},
},
},
animation: {
shimmer: 'shimmer 1.3s linear infinite',
},
},
},
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/line-clamp')],
};