-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
49 lines (48 loc) · 1.17 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
const { fontFamily } = require('tailwindcss/defaultTheme');
const colors = require('tailwindcss/colors');
module.exports = {
mode: 'jit',
content: ['./src/**/*.{js,ts,jsx,tsx}'],
darkMode: ['class', '[data-theme="dark"]'],
theme: {
container: {
center: true,
},
extend: {
colors: {
primary: {
...colors.blue,
DEFAULT: colors.blue['500'],
},
gray: {
50: '#ffffff',
100: '#e6e6e6',
200: '#cccccc',
300: '#b3b3b3',
400: '#999999',
500: '#808080',
600: '#666666',
700: '#4c4c4c',
800: '#333333',
900: '#191919',
},
},
fontFamily: {
sans: ['Inter', ...fontFamily.sans],
},
typography: theme => ({
DEFAULT: {
css: {
blockquote: {
borderLeftColor: theme('colors.primary.400'),
},
'blockquote p:first-of-type::before': false,
'blockquote p:last-of-type::after': false,
},
},
}),
},
},
variants: {},
plugins: [require('@tailwindcss/typography'), require('@tailwindcss/forms')],
};