-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
45 lines (43 loc) · 945 Bytes
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
fontSize: {
xs: '0.875rem',
sm: '1rem',
md: '1.125rem',
lg: '1.25rem',
xl: '1.5rem',
'2xl': '2rem',
},
colors: {
transparent: 'transparent',
gray: {
900: '#121214',
800: '#202024',
400: '#7c7c8a',
200: '#c4c4cc',
100: '#e1e1e6',
// 'gray-900': '#121214',
// 'gray-800': '#202024',
// 'gray-400': '#7c7c8a',
// 'gray-200': '#c4c4cc',
// 'gray-100': '#e1e1e6',
},
cyan: {
500: '#81d8f7',
300: '#9be1fb',
// 'cyan-500': '#81d8f7',
// 'cyan-300': '#9be1fb',
},
black: '#000000',
white: '#FFFFFF',
},
extend: {
fontFamily: {
sans: 'Inter, sans-serif',
},
},
},
plugins: [],
};