-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
49 lines (48 loc) · 1.09 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
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: ["components/**/*.js", "pages/**/*.js"],
safeList: [
'active',
'show-to-top-btn'
],
theme: {
screens: {
xs: '450px',
semi: '600px',
...defaultTheme.screens,
},
extend: {
colors: {
"main-color": "#094758",
"secondary-color": "#581A09",
},
boxShadow: {
"comment-shadow": "5px 6px 20px 0 rgba(0 0 0 / 5%)"
},
fontFamily: {
"pacifico": "Pacifico, cursive",
"open-sans": "'Open Sans', sans-serif",
"poppins": "'Poppins', sans-serif",
"luckiest-guy": "'Luckiest Guy', cursive",
"mulish": "'Mulish', sans-serif",
},
backgroundImage: {
'hero-bg': "linear-gradient(rgba(0, 0, 0, .8), rgba(0, 0, 0, .8)), url(/img/hero-bg.jpg)"
},
animation: {
"smoothSlide": "smoothSlide 1.5s linear infinite forwards"
},
keyframes: {
smoothSlide: {
"0%, 100%": { 'transform': 'translateX(0)' },
"50%": { 'transform': 'translateX(1rem)' }
},
},
},
},
plugins: [
require("@tailwindcss/forms")({
strategy: 'class',
}),
],
};