forked from japa/japa.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
84 lines (84 loc) · 1.91 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
module.exports = {
content: ['resources/views/**/*.edge'],
darkMode: ['class'],
theme: {
colors: {
white: '#fff',
transparent: 'transparent',
translucent: 'rgba(255, 255, 255, 0.16)',
brand: '#5a45ff',
brandDark: 'rgb(82, 169, 255)',
green: {
500: '#2dd4bf',
},
red: {
500: '#fb7185',
},
gray: {
50: '#f5f5f4',
100: '#C1BFB9',
200: '#f8f7f6',
300: '#e7e5e0',
600: '#72716d',
800: '#40403d',
900: '#1a1a19',
},
darkGray: {
50: 'rgb(21, 23, 24)',
100: 'rgb(26, 29, 30)',
200: 'rgba(253,252,253,.05)',
300: '#2e2e30',
600: 'rgb(155, 161, 166)',
700: '#777',
800: 'rgb(26, 29, 30)',
900: 'rgb(236, 237, 238)',
},
},
fontFamily: {
display: ['Familjen Grotesk'],
body: ['Inter'],
mono: ['Source Code Pro'],
},
extend: {
lineHeight: {
0: '0',
},
screens: {
'bigger-desktop': '1340px',
},
listStyleType: {
circle: 'circle',
},
spacing: {
'sidebar': '322px',
'sidebar-small': '280px',
'header': '4rem',
'toc': '260px',
},
height: {
'screen-wo-header': 'calc(100% - 4rem)',
},
boxShadow: {
xl: '0 12px 32px rgba(0, 0, 0, .1), 0 2px 6px rgba(0, 0, 0, .08)',
lg: '0px 2px 4px rgba(44, 43, 42, 0.1)',
search: 'inset 0 0 0 1px #ffffff1f',
},
transitionProperty: {
left: 'left',
},
fontSize: {
'prose-lg': '1rem',
'prose-xl': '1.125rem',
'prose-6xl': '2.4rem',
'prose-4xl': '1.7rem',
'prose-3xl': '1.3rem',
'prose-2xl': '1.1rem',
'prose-code': '1rem',
'prose-pre': '0.9rem',
'prose': '1.06rem',
'md': '0.9rem',
},
},
},
plugins: [],
}