-
Notifications
You must be signed in to change notification settings - Fork 7
/
tailwind.config.js
65 lines (65 loc) · 1.25 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
module.exports = {
mode: 'jit',
purge: {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./functions/**/*.{js,ts,jsx,tsx}',
'./data/**/*.{js,ts,jsx,tsx}',
'./content/**/*.{js,ts,jsx,tsx,mdx}',
],
options: {
safelist: [
'border-gray-300',
'bg-blue-400',
'max-w-md',
'my-20',
'gap-3',
'block',
'hidden',
],
},
},
darkMode: false,
theme: {
container: {
center: true,
padding: '1.5rem',
},
screens: {
tiny: '320px',
xs: '350px',
bp: '380px',
xsm: '600px',
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1200px',
'2xl': '1536px',
landscape: { raw: '(orientation: landscape)' },
},
extend: {
gridTemplateColumns: {
sidebar: 'minmax(0, 1fr) 336px',
sidebar_wide: 'minmax(0, 1fr) 336px',
overview: '1fr 1fr 3fr',
news: '1fr 2fr',
},
fontSize: {
smaller: ['0.95rem', '1.35rem'],
small: ['0.9rem', '1.3rem'],
tiny: ['0.8rem', '1.15rem'],
xxs: ['0.7rem', '0.9rem'],
},
colors: {
blue: {
brand_sharp: 'rgba(44, 98, 136)',
brand_light: 'rgba(60, 116, 212)',
sharp: 'rgba(1, 90, 210, 1)',
link: 'rgb(30, 115, 186, 1)',
},
},
},
},
plugins: [require('@tailwindcss/forms')],
};