-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (36 loc) · 866 Bytes
/
tailwind.config.js
File metadata and controls
37 lines (36 loc) · 866 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
const colors = require('tailwindcss/colors')
module.exports = {
important: false,
content: ['./components/**/*.{js,ts,jsx,tsx,mdx}', './pages/**/*.{js,ts,jsx,tsx,mdx}'],
darkMode: 'class', // 'media' or 'class'
theme: {
extend: {
colors: {
primary: {
50: '#f3f3f4',
100: '#e8e8e8',
200: '#c5c5c6',
300: '#a1a2a3',
400: '#5b5d5e',
500: '#121212',
600: '#131517',
700: '#101113',
800: '#0d0e0f',
900: '#313131'
},
accent: colors.amber
},
backgroundImage: (theme) => ({
check: "url('/images/check.svg')"
}),
skew: {
'-10': '-10deg'
}
},
fontFamily: {
minecraft: ['minecraftiaregular', 'sans-serif'],
primary: ['Inter', 'sans-serif']
}
},
plugins: []
}