-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
55 lines (52 loc) · 1.26 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
// Or if using `src` directory:
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'darkblue': '#4F597E',
'salmon': '#F1A095',
'darksalmon': '#C78379',
'lightblue': '#98E1EE',
'purple': '#8980F0',
'lightpurple': '#E5E3FC',
'darkpurple': '#5d57a3',
'lightgrey': '#BDBEC2',
'darkgrey': '#747474',
'background': '#F5F6FA',
'dark': '#2C2F3A',
'blue': '#4185F5',
'darkblue': '#4F597E',
'hoverblue': '#7CC1CD',
'heartred': '#E36969',
'commentblue': '#3691D3',
'yellow': '#fcefc5',
},
fontFamily: {
'nunito': '@apply font-nunito',
'lato': '@apply font-lato',
},
dropShadow: {
'box': '0 10px 10px rgba(117, 123, 183, .1)',
}
},
fontSize: {
sm: '0.75rem',
md: '0.85rem',
base: '1rem',
xl: '1.25rem',
'2xl': '1.563rem',
'3xl': '1.953rem',
'4xl': '2.441rem',
'5xl': '3.052rem',
'9xl': '7.052rem',
},
},
plugins: [],
}