-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
26 lines (22 loc) · 907 Bytes
/
tailwind.config.js
File metadata and controls
26 lines (22 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: ['Roboto', 'sans-serif'], // For body text, general use
montserrat: ['Montserrat', 'sans-serif'], // For headings or call-to-actions
merriweather: ['Merriweather', 'serif'], // For elegant body text or quotes
openSans: ['Open Sans', 'sans-serif'], // For clarity in small text or inputs
workSans: ['Work Sans', 'sans-serif'], // For professional or modern touch in paragraphs
oswald: ['Oswald', 'sans-serif'], // For bold headings or highlights
muli: ['Muli', 'sans-serif'], // For light and subtle text
lato: ['Lato', 'sans-serif'], // For versatile headings and body
},
},
},
plugins: [],
}