-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
108 lines (108 loc) · 3.67 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
screens: {
sm: '480px',
md: '768px',
lg: '976px',
xl: '1024px',
},
container: {
center: true,
},
colors: {
'gray-light': '#FAFAFA',
'gray': '#9DA3AE',
'gray-dark': '#484848',
'red': '#ff595e',
'green': '#8ac926',
'yellow': '#ffca3a',
'blue': '#1982c4',
'black': '#000',
'white': '#fff',
},
fontFamily: {
sans: ['Fira Code', 'sans-serif'],
},
extend: {
typography: ({ theme }) => ({
uebelack: {
css: {
'--tw-prose-body': '#000',
'--tw-prose-headings': '#000',
'--tw-prose-lead': '#000',
'--tw-prose-links': '#000',
'--tw-prose-bold': '#000',
'--tw-prose-counters': '#000',
'--tw-prose-bullets': '#000',
'--tw-prose-hr': '#000',
'--tw-prose-quotes': '#000',
'--tw-prose-quote-borders': '#000',
'--tw-prose-captions': '#000',
'--tw-prose-code': '#000',
'--tw-prose-pre-code': '#000',
'--tw-prose-pre-bg': '#000',
'--tw-prose-th-borders': '#000',
'--tw-prose-td-borders': '#000',
'--tw-prose-invert-body': '#000',
'--tw-prose-invert-headings': '#fff',
'--tw-prose-invert-lead': '#000',
'--tw-prose-invert-links': '#fff',
'--tw-prose-invert-bold': '#fff',
'--tw-prose-invert-counters': '#000',
'--tw-prose-invert-bullets': '#000',
'--tw-prose-invert-hr': '#000',
'--tw-prose-invert-quotes': '#000',
'--tw-prose-invert-quote-borders': '#000',
'--tw-prose-invert-captions': '#000',
'--tw-prose-invert-code': '#fff',
'--tw-prose-invert-pre-code': '#000',
'--tw-prose-invert-pre-bg': 'rgb(0 0 0 / 50%)',
'--tw-prose-invert-th-borders': '#000',
'--tw-prose-invert-td-borders': '#000',
},
},
uebelackdark: {
css: {
'--tw-prose-body': '#fff',
'--tw-prose-headings': '#fff',
'--tw-prose-lead': '#fff',
'--tw-prose-links': '#fff',
'--tw-prose-bold': '#fff',
'--tw-prose-counters': '#fff',
'--tw-prose-bullets': '#fff',
'--tw-prose-hr': '#fff',
'--tw-prose-quotes': '#fff',
'--tw-prose-quote-borders': '#fff',
'--tw-prose-captions': '#fff',
'--tw-prose-code': '#fff',
'--tw-prose-pre-code': '#fff',
'--tw-prose-pre-bg': '#fff',
'--tw-prose-th-borders': '#fff',
'--tw-prose-td-borders': '#fff',
'--tw-prose-invert-body': '#fff',
'--tw-prose-invert-headings': '#fff',
'--tw-prose-invert-lead': '#fff',
'--tw-prose-invert-links': '#fff',
'--tw-prose-invert-bold': '#fff',
'--tw-prose-invert-counters': '#fff',
'--tw-prose-invert-bullets': '#fff',
'--tw-prose-invert-hr': '#fff',
'--tw-prose-invert-quotes': '#fff',
'--tw-prose-invert-quote-borders': '#fff',
'--tw-prose-invert-captions': '#fff',
'--tw-prose-invert-code': '#fff',
'--tw-prose-invert-pre-code': '#fff',
'--tw-prose-invert-pre-bg': 'rgb(0 0 0 / 50%)',
'--tw-prose-invert-th-borders': '#fff',
'--tw-prose-invert-td-borders': '#fff',
},
},
}),
},
},
plugins: [require('@tailwindcss/typography')],
}