-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
50 lines (50 loc) · 1.52 KB
/
tailwind.config.js
File metadata and controls
50 lines (50 loc) · 1.52 KB
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
heading: ['Sora', 'sans-serif'],
body: ['Manrope', 'sans-serif'],
}
},
},
plugins: [
function({ addBase }) {
addBase({
'@font-face': [
{
fontFamily: 'Manrope',
fontWeight: '400',
fontStyle: 'normal',
fontDisplay: 'swap',
src: `url('/fonts/manrope-v20-latin-regular.woff2') format('woff2'), url('/fonts/manrope-v20-latin-regular.ttf') format('truetype')`,
},
{
fontFamily: 'Manrope',
fontWeight: '700',
fontStyle: 'normal',
fontDisplay: 'swap',
src: `url('/fonts/manrope-v20-latin-700.woff2') format('woff2'), url('/fonts/manrope-v20-latin-700.ttf') format('truetype')`,
},
{
fontFamily: 'Sora',
fontWeight: '400',
fontStyle: 'normal',
fontDisplay: 'swap',
src: `url('/fonts/sora-v17-latin-regular.woff2') format('woff2'), url('/fonts/sora-v17-latin-regular.ttf') format('truetype')`,
},
{
fontFamily: 'Sora',
fontWeight: '700',
fontStyle: 'normal',
fontDisplay: 'swap',
src: `url('/fonts/sora-v17-latin-700.woff2') format('woff2'), url('/fonts/sora-v17-latin-700.ttf') format('truetype')`,
}]
})
}
],
}