-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
24 lines (23 loc) · 1 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./**/*.php', './**/*.js'],
theme: {
extend: {
fontFamily: {
rockwell: ['Rockwell', 'Courier Bold', 'Courier', 'Georgia', 'Times', 'Times New Roman', 'serif'],
bondoni: ['Bodoni MT', 'Didot', 'Courier Bold', 'Courier', 'Georgia', 'Times', 'Times New Roman', 'serif'],
copp: ['Copperplate', 'Copperplate Gothic Light', 'fantasy'],
papyrus: ['Papyrus', 'fantasy'],
courier: ['Courier New', 'Courier', 'Lucida Sans Typewriter', 'Lucida Typewriter', 'monospace'],
meshed: ['MeshedDisplayBlack', 'Georgia', 'Times', 'Times New Roman', 'serif'],
meshedLight: ['MeshedDisplayLight', 'Georgia', 'Times', 'Times New Roman', 'serif'],
news: ['Newsreader', 'Georgia', 'Times', 'Times New Roman', 'serif'],
pop: ['Poppins', 'Georgia', 'Times', 'Times New Roman', 'serif'],
}
},
},
plugins: [
require('@tailwindcss/typography'),
require('daisyui')
],
}