-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
47 lines (46 loc) · 1.11 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
const lineClamp = require('@tailwindcss/line-clamp');
const typography = require('@tailwindcss/typography');
const forms = require('@tailwindcss/forms');
module.exports = {
content: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
enabled: true,
darkMode: 'class',
variants: {},
theme: {
extend: {
colors: {
gray: {
900: '#202225',
800: '#2f3136',
700: '#36393f',
600: '#4f545c',
400: '#d4d7dc',
300: '#e3e5e8',
200: '#ebedef',
100: '#f2f3f5',
},
'bookmark-purple': '#5267DF',
'bookmark-red': '#fa5959',
'bookmark-blue': '#242A45',
'bookmark-grey': '#9194A2',
'bookmark-white': '#f7f7f7',
},
spacing: {
88: '22rem',
},
fontFamily: {
Poppins: ['Poppins, sans-serif'],
},
container: {
center: true,
padding: '1rem',
screens: {
lg: '1124px',
xl: '1124px',
'2xl': '1124px',
},
},
},
},
plugins: [forms, typography, lineClamp],
};