-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
40 lines (40 loc) · 1.1 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'selector',
content: [
'./src/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
fontFamily: {
sans: ['var(--font-cera-pro)'],
mono: ['monospace'],
},
extend: {
colors: {
zinc: {
850: '#202023',
},
heatmap: {
900: '#334d6e',
800: '#3e6184',
700: '#497599',
600: '#558bad',
500: '#6c9eb8',
400: '#82b0c2',
300: '#98c0cc',
200: '#aed0d7',
100: '#c4dee1',
50: '#daebec',
},
},
boxShadow: {
sm: '0 4px 10px rgba(203, 203, 203, 0.25)',
DEFAULT: '2px 2px 20px rgba(203, 203, 203, 0.25)',
lg: '2px 2px 20px rgba(4px 4px 30px, 0.25)',
},
},
},
plugins: [
require('@tailwindcss/typography'),
],
};