forked from tinamayswinkels/jekyll-tailwind-magazine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
73 lines (73 loc) · 1.64 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
66
67
68
69
70
71
72
73
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./_includes/**/*.{html,js,md}',
'./_layouts/**/*.{html,js,md}',
'./_*/*.{html,js,md}',
'./*.{html,js,md}'
],
theme: {
fontSize: {
xs: ['0.75rem', '1.2'],
sm: ['0.875rem;', '1.2'],
base: ['1rem', '1.2'],
lg: ['1.125rem;', '1.2'],
xl: ['1.25rem', '1.2'],
'2xl': ['1.5rem', '1.2'],
'3xl': ['1.875rem', '1'],
'4xl': ['2.25rem', '1'],
'5xl': ['3rem', '1'],
'6xl': ['3.75rem', '1'],
'7xl': ['4.5rem', '1'],
'8xl': ['6rem', '1'],
'9xl': ['8rem', '1'],
},
fontFamily: {
sans: ['Figtree', 'sans-serif'],
serif: ['Playfair Display', 'serif'],
},
extend: {
lineHeight: {
'tight': '.85',
'snug': '.95',
'12': '3rem',
},
spacing: {
'5p': '5%',
'10p': '10%',
'15p': '15%',
'1/3': '33.33%',
'1/2': '50%',
'2/3': '75%',
'1/1': '100%',
},
aspectRatio: {
'5/3': '5 / 3',
},
minHeight:{
'100': '100vh',
'90': '90vh',
'80': '80vh',
'70': '70vh',
'60': '60vh',
'50': '50vh',
},
aspectRatio: {
'landscape': '3 / 2',
'portrait-tall': '5/8',
'portrait': '4/5',
},
colors: {
'dark': 'rgb(63 63 70);',
'light': 'rgb(244 244 245);',
'featured': 'rgb(248 113 113);',
'blog-light': '#D4D1CD',
'blog-dark': '#1e1e1e',
'blog-section' : '#edeceb',
},
},
},
plugins: [
require('@tailwindcss/typography'),
],
}