forked from suraniharsh/CodeCandy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
76 lines (75 loc) · 1.71 KB
/
tailwind.config.js
File metadata and controls
76 lines (75 loc) · 1.71 KB
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
},
colors: {
primary: {
50: '#f0f9ff',
100: '#e0f2fe',
200: '#bae6fd',
300: '#7dd3fc',
400: '#38bdf8',
500: '#0ea5e9',
600: '#0284c7',
700: '#0369a1',
800: '#075985',
900: '#0c4a6e',
},
dark: {
100: '#d1d5db',
200: '#9ca3af',
300: '#6b7280',
400: '#4b5563',
500: '#374151',
600: '#1f2937',
700: '#111827',
800: '#0d1117',
900: '#0a0c10',
},
},
typography: {
DEFAULT: {
css: {
maxWidth: '65ch',
color: '#374151',
lineHeight: '1.75',
a: {
color: '#0ea5e9',
'&:hover': {
color: '#0284c7',
},
},
h1: {
fontWeight: '700',
fontSize: '2.25rem',
},
h2: {
fontWeight: '600',
fontSize: '1.875rem',
},
h3: {
fontWeight: '600',
fontSize: '1.5rem',
},
code: {
color: '#111827',
backgroundColor: '#f3f4f6',
padding: '0.2em 0.4em',
borderRadius: '0.25rem',
fontFamily: 'JetBrains Mono',
},
},
},
},
},
},
plugins: [],
}