forked from duneanalytics/evm.codes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
40 lines (40 loc) · 853 Bytes
/
tailwind.config.js
File metadata and controls
40 lines (40 loc) · 853 Bytes
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
module.exports = {
darkMode: 'class', // or 'media' or 'class'
purge: {
enabled: true,
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
},
theme: {
fontFamily: {
serif: ['Inter', 'sans-serif'],
sans: ['Inter', 'sans-serif'],
mono: 'ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;',
},
extend: {
fontSize: {
'2xs': '10px',
tiny: '13px',
},
colors: {
black: {
900: '#000000',
800: '#080808',
700: '#101111',
600: '#141515',
500: '#1B1B1B',
400: '#2F2F2F',
},
},
},
},
variants: {
extend: {
backgroundColor: ['dark'],
textColor: ['dark'],
},
},
plugins: [],
}