-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
57 lines (57 loc) · 1.38 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
57
module.exports = {
mode: 'jit',
purge: ['./stories/**/*.{js,jsx,ts,tsx,vue}'],
darkMode: 'class',
theme: {
fontFamily: {
heading: ['Poppins', 'Helvetica', 'Arial', 'sans-serif'],
body: ['Nunito', 'Helvetica', 'Arial', 'sans-serif'],
timer: ['Montserrat', 'sans-serif'],
},
screens: {
sm: '576px',
md: '768px',
lg: '1024px',
xl: '1366px',
'2xl': '1440px',
'3xl': '1920px',
},
fontSize: {
xs: '.75rem', // 12px
sm: '.875rem', // 14px
base: '1rem', // 16px
lead: '1.313rem', // 21px
md: '1.4375rem', // 23px
lg: '1.875rem', // 30px
xl: '2.3125rem', // 37px
'2xl': '2.875rem', // 46px
'3xl': '3.375rem', // 54px
},
extend: {
colors: {
success: '#61B45B',
error: '#BF2C44',
celeste: '#EDF2FB',
'light-indigo': '#638FEF',
'dark-indigo': '#4f46e5',
'dark-blue': '#182532',
'darker-blue': '#131E28',
'light-gray': '#E7E8EA',
'dark-gray': '#747C84',
'dark-gray-20': 'rgba(116,124,132,0.2)',
'darker-gray': '#333B44',
'lighter-white': '#F9F9F9',
'light-white': '#F4F5F7',
'dark-black': '#1C1D1F',
'darker-black': '#131415',
},
transitionProperty: {
width: 'width',
},
},
},
variants: {
extend: {},
},
plugins: [],
}