-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (41 loc) · 1.08 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: [
`./src/pages/**/*.{js,jsx,ts,tsx}`,
`./src/components/**/*.{js,jsx,ts,tsx}`,
],
theme: {
screens: {
'xs': '379px',
'xxs': '320px',
'tablet': {'raw': '(min-width: 820px) and (min-height: 950px)'},
...defaultTheme.screens,
},
extend: {
// remove if you want pitch black
colors: {
black: '#111111',
},
fontFamily: {
greatVibes: ['Great Vibes', 'Great Vibes'],
arizonia: ['Arizonia', 'Arizonia'],
windSong: ['WindSong', 'WindSong'],
pixel: ['Pixelify Sans', 'Pixelify Sans'],
sans: ['Helvetica', 'sans-serif', 'Arial'],
},
},
},
plugins: [
require('tailwind-typewriter')({
wordsets: {
devTitle: {
words: ['Web Developer', 'Software Engineer', 'Product Designer', 'QA Analyst', 'Problem Solver'],
delay: 1,
writeSpeed: .3,
}
}
}),
require("@igorkowalczyk/is-browser"),
],
}