-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtailwind.config.js
66 lines (65 loc) · 1.42 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
58
59
60
61
62
63
64
65
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
screens: {
short: { raw: "(max-height: 720px)" },
shorter: { raw: "(max-height: 500px)" },
'ml': '842px',
'mh': '992px'
},
fontFamily: {
'nunito': ['Nunito', 'sans-serif'],
'lato': ['Lato', 'sans-serif'],
},
fontWeight: {
'nunito-h1': 900,
'nunito-h2': 700,
'nunito-h3': 700,
'nunito-h4': 400,
'nunito-subtitle': 300,
'nunito-button': 700,
'nunito-overline': 600,
'lato-body-big': 400,
'lato-body': 400,
'lato-bold': 700,
'lato-small': 400,
'lato-small-bold': 700,
},
colors: {
primary: {
100: '#d4e3cc',
200: '#a9c799',
300: '#7daa66',
400: '#528e33',
500: '#277200',
600: '#0CAF60',
},
secondary: {
50: '#fafafa',
100: '#eceff2',
200: '#d9dfe4',
300: '#c5d0d7',
400: '#b2c0c9',
500: '#9FB0BC',
},
base: {
100: '#d6d9da',
200: '#adb2b6',
300: '#858c91',
400: '#5c656d',
500: '#333F48',
},
}
}
},
variants: {
extend: {
fontSize: ["short", "shorter"],
},
},
plugins: [],
}