-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (40 loc) · 1.09 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
const { thonUI, thonUIContent } = require('thon-ui/plugin');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['app/**/*.tsx', thonUIContent()],
jit: true,
theme: {
extend: {
fontFamily: {
sans: ['Poppins', 'sans-serif'],
},
colors: {
primary: '#10B981',
green: {
50: '#ECFDF5',
100: '#D1FAE5',
200: '#A7F3D0',
300: '#6EE7B7',
400: '#34D399',
500: '#10B981',
600: '#059669',
700: '#047857',
800: '#065F46',
900: '#064E3B',
},
},
dropShadow: {
green: '2px 2px 1px #047857',
},
backgroundImage: {
'radial-green':
'radial-gradient(47.09% 47.09% at 50% 50%, #10B981 0%, rgba(217, 217, 217, 0) 100%)',
'radial-yellow':
'radial-gradient(47.09% 47.09% at 50% 50%, #FBBF24 0%, rgba(217, 217, 217, 0) 100%)',
'radial-blue':
'radial-gradient(47.09% 47.09% at 50% 50%, #1D4ED8 0%, rgba(217, 217, 217, 0) 100%)',
},
},
},
plugins: [thonUI()],
};