-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
58 lines (57 loc) · 1.42 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
const colors = require('tailwindcss/colors')
/** @type {import('tailwindcss').Config} */
module.exports = {
// content: [],
content: ["./dist/**/*.{html,js}"],
darkMode: 'class',
theme: {
screens: {
sm: '480px',
md: '768px',
lg: '976px',
xl: '1440px',
},
extend: {
animation: {
blob: "blob 7s infinite",
},
colors: {
savoryWhite: 'hsl(0, 36%, 95%)',
mutedWhite: 'hsl(224, 16%, 54%)',
whiteHover: 'hsl(0, 36%, 95%)',
pinkHeading: 'hsl(279, 48%, 54%)',
pinkSubHeading: 'hsl(293, 43%, 55%)',
blackSubHeading: 'hsl(221, 39%, 11%)',
deepBlueSubHeading: 'hsl(229, 38%, 40%)',
fuchsia: colors.fuchsia,
},
keyframes: {
blob: {
"0%": {
transform: "translate(0px, 0px) scale(1)",
},
"33%": {
transform: "translate(30px, -50px) scale(1.1)",
},
"66%": {
transform: "translate(-20px, 20px) scale(0.9)",
},
"100%": {
transform: "tranlate(0px, 0px) scale(1)",
},
},
},
backgroundColor: {
main: 'hsl(215, 45%, 14%)',
},
},
fontFamily: {
navigation: ['Poppins', 'sans-serif']
}
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
require('@tailwindcss/line-clamp'),
],
}