-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.js
54 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
module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: "class",
theme: {
container: {
center: true,
},
colors: {
'black': '#000',
'dark-green': '#134E4A',
'outline': '#483C5C',
'darker-blue': '#1F1B2B',
'dark-blue': '#2C263D',
'blue': '#7AA5C5',
'light-blue': '#A1C3DB',
'purple': '#635B8B',
'green': '#1dad9d',
'light-green': '#14B8A6',
'red': '#9A5553',
'orange': '#C39E6B',
'dark-yellow': '#78350F',
'yellow': '#f59e0b',
'white': '#FEFEFE',
},
spacing: {
'1': '8px',
'2': '16px',
'3': '32px',
'4': '48px',
'5': '52px',
'6': '64px',
},
fontSize: {
'xs': '.75rem',
'sm': '.875rem',
'tiny': '1rem',
'base': '1.5rem',
'lg': '2rem',
'xl': '2.5rem',
'2xl': '3.5rem',
'3xl': '4.5rem',
'4xl': '2.25rem',
'5xl': '3rem',
'6xl': '4rem',
'7xl': '5rem',
},
fontFamily: {
'sans': ['Inter'],
'header': ['Inter']
},
extend: {},
},
plugins: [],
}