-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
36 lines (33 loc) · 1.17 KB
/
tailwind.config.js
File metadata and controls
36 lines (33 loc) · 1.17 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
import defaultTheme from 'tailwindcss/defaultTheme';
import forms from '@tailwindcss/forms';
import typography from '@tailwindcss/typography';
import containerQueries from '@tailwindcss/container-queries';
import tailwindcssPrimeUi from 'tailwindcss-primeui';
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./index.html',
'./src/**/*.vue',
],
theme: {
extend: {
fontFamily: {
sans: ['Space Grotesk', ...defaultTheme.fontFamily.sans],
text: ['Nunito', ...defaultTheme.fontFamily.sans],
},
keyframes: {
'font-cycle': {
'0%, 100%': { 'font-family': 'Space Grotesk' },
'20%': { 'font-family': 'Arial' },
'40%': { 'font-family': 'Nunito' },
'60%': { 'font-family': 'Times New Roman' },
'80%': { 'font-family': 'Garamond' },
},
},
animation: {
'font-cycle': 'font-cycle 2.5s linear infinite',
},
},
},
plugins: [forms, typography, containerQueries, tailwindcssPrimeUi],
};