-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
140 lines (139 loc) · 2.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
module.exports = {
purge: false,
theme: {
textIndent: {
// defaults to {}
'1': '0.25rem',
'2': '0.5rem',
},
textShadow: {
// defaults to {}
default: '0 2px 5px rgba(0, 0, 0, 0.5)',
lg: '0 2px 10px rgba(0, 0, 0, 0.5)',
},
truncate: {
lines: {
3: '3',
5: '5',
8: '8',
},
},
textStyles: (theme) => ({
// defaults to {}
heading: {
output: false, // this means there won't be a "heading" component in the CSS, but it can be extended
fontWeight: theme('fontWeight.bold'),
lineHeight: theme('lineHeight.tight'),
},
h1: {
extends: 'heading', // this means all the styles in "heading" will be copied here; "extends" can also be an array to extend multiple text styles
fontSize: theme('fontSize.5xl'),
'@screen sm': {
fontSize: theme('fontSize.6xl'),
},
},
h2: {
extends: 'heading',
fontSize: theme('fontSize.4xl'),
'@screen sm': {
fontSize: theme('fontSize.5xl'),
},
},
h3: {
extends: 'heading',
fontSize: theme('fontSize.4xl'),
},
h4: {
extends: 'heading',
fontSize: theme('fontSize.3xl'),
},
h5: {
extends: 'heading',
fontSize: theme('fontSize.2xl'),
},
h6: {
extends: 'heading',
fontSize: theme('fontSize.xl'),
},
link: {
fontWeight: theme('fontWeight.bold'),
color: theme('colors.blue.500'),
'&:hover': {
color: theme('colors.blue.600'),
textDecoration: 'underline',
},
},
richText: {
fontWeight: theme('fontWeight.normal'),
fontSize: theme('fontSize.base'),
lineHeight: theme('lineHeight.relaxed'),
'> * + *': {
marginTop: '1em',
},
h1: {
extends: 'h1',
},
h2: {
extends: 'h2',
},
h3: {
extends: 'h3',
},
h4: {
extends: 'h4',
},
h5: {
extends: 'h5',
},
h6: {
extends: 'h6',
},
ul: {
listStyleType: 'disc',
},
ol: {
listStyleType: 'decimal',
},
a: {
extends: 'link',
},
'b, strong': {
fontWeight: theme('fontWeight.bold'),
},
'i, em': {
fontStyle: 'italic',
},
},
}),
extend: {
inset: {
full: '100%',
'1/2': '50%',
},
colors: {
secondary: '#d1e0f4',
primary: '#41A4F5',
link: '#1e70bf',
'inline-code': '#fff6ea',
accent: '#FF8106',
cta: '#d10220',
info: '#2ecbf6',
warning: '#e4ca52',
success: '#49d96a',
danger: '#e75160',
},
},
container: {
center: true,
},
},
corePlugins: {
container: true,
},
plugins: [
require('tailwindcss-typography')({
componentPrefix: 'type-',
}),
require('./tailwindcss/plugins/truncate-lines'),
],
};