-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
51 lines (50 loc) · 1.26 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
39
40
41
42
43
44
45
46
47
48
49
50
51
const colors = require('tailwindcss/colors');
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
darkMode: 'class',
theme: {
extend: {
colors: {
near: {
black: '#000000',
white: '#FFFFFF',
offwhite: '#f2f1e9',
green: '#00ec97',
red: '#ff7966',
purple: '#9797ff',
blue: '#17d9d4',
gray: {
50: '#f7f7f7',
100: '#efefef',
200: '#dfdfdf',
300: '#cacaca',
400: '#a8a8a8',
500: '#878787',
600: '#6d6d6d',
700: '#5f5f5f',
800: '#4a4a4a',
900: '#3b3b3b',
}
}
},
fontFamily: {
'fk-grotesk': ['FK Grotesk', 'sans-serif'],
'circular': ['Circular Std', 'sans-serif']
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'gradient': 'gradient 6s linear infinite',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
},
boxShadow: {
'near': '0 4px 14px 0 rgba(0, 236, 151, 0.1)',
}
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
],
};