forked from dscnitrourkela/project-tart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
56 lines (54 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
48
49
50
51
52
53
54
55
56
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: [
'./src/**/*.{js,jsx,ts,tsx}',
],
theme: {
screens: {
'sm': '640px',
'md': '880px',
'lg': '1024px',
'xl': '1280px',
'2xl': '1536px',
},
extend: {
fontSize: {
xs: '12px',
sm: '14px',
base: '16px',
lg: '18px',
xl: '20px',
'2xl': '24px',
'4xl': '32px',
'5xl': '36px',
'8xl': '48px',
'11xl': '64px',
},
lineHeight: {
4: '16px',
4.5: '18px',
5: '20px',
6: '24px',
9: '36px',
12: '48px',
16: '64px',
24: '96px',
},
colors: {
'color-primary': '#181818',
'color-secondary': '#414141',
'color-tertiary': '#616161',
'brand-left': '#6B014E',
'brand-right': '#03016B',
'background-primary': '#F9F9F9',
'background-secondary': '#FFFFFF',
},
// Poppins: ['Poppins', 'sans-serif'],
fontFamily: {
Poppins: ['Poppins', ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [],
};