-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtailwind.config.ts
55 lines (53 loc) · 1.26 KB
/
tailwind.config.ts
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
52
53
54
55
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
backgroundColor: {
'default': '#17171C',
},
colors: {
primary: {
100: '#D2EEE9',
200: '#A5DED3',
300: '#77CDBE',
400: '#4ABDA8',
DEFAULT: '#1DAC92',
},
secondary: {
100: '#C5CCE0',
200: '#B1BBD6',
300: '#6378AE',
400: '#4A5A82',
DEFAULT: '#252D41',
},
grayscale: {
50: '#F8FAFC',
100: '#F1F5F9',
200: '#E2E8F0',
300: '#CBD5E1',
400: '#94A3B8',
500: '#64748B',
600: '#475569',
700: '#334155',
800: '#1E293B',
900: '#121826',
},
gradienteGreen: {
left: '#1DAC92',
right: '#228E8E',
},
},
},
},
plugins: [],
};
export default config;