-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
83 lines (79 loc) · 1.4 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,ts}'],
theme: {
extend: {
fontFamily: {
sans: ['IBM Plex Mono', 'monospace'],
},
colors: {
primary: {
DEFAULT: '#FFFFFF',
50: '#F7FAFC',
100: '#EDF2F7',
200: '#E2E8F0',
300: '#CBD5E0',
400: '#A0AEC0',
500: '#718096',
600: '#4A5568',
700: '#2D3748',
800: '#1A202C',
900: '#171923',
},
secondary: {
DEFAULT: '#1D1B1B',
50: '#F0F0F0',
100: '#D9D9D9',
200: '#BFBFBF',
300: '#A6A6A6',
400: '#8C8C8C',
500: '#737373',
600: '#595959',
700: '#404040',
800: '#262626',
900: '#0D0D0D',
},
gray: {
c50: '#AEAEAE',
50: '#F9FAFB',
100: '#F3F4F6',
200: '#E5E7EB',
300: '#D1D5DB',
400: '#9CA3AF',
500: '#6B7280',
600: '#4B5563',
700: '#374151',
800: '#1F2937',
900: '#111827',
},
green: {
1: '#76DE5C',
},
red: {
1: '#E53939',
},
blue: {
1: '#3954E5',
},
},
borderWidth: {
3: '3px',
},
borderRadius: {
sm: '5px',
},
shadow: {
cstm: '24px -10px 0px 1px #000000',
},
},
container: {
center: true,
padding: {
DEFAULT: '1rem',
lg: '1rem',
'2xl': '2rem',
},
},
},
plugins: [require('postcss-import'), require('tailwindcss'), require('autoprefixer')],
};