-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
52 lines (51 loc) · 1.58 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
purge: ['./index.html', './src/pages/**/*.html', './src/js/**/*.js'],
darkMode: 'class',
theme: {
screens: {
'2md': '975px', // for suggestion section
...defaultTheme.screens,
},
extend: {
fontFamily: {
nunito: ['Nunito Sans', 'sans-serif'],
poppins: ['Poppins', 'sans-serif']
},
colors: {
"yellow-900": "var(--clr-yellow)",
"dark-blue-700": "var(--dark-blue)",
"dark-blue-900": "var(--very-dark-blue)",
"dark-gray-700": "var(--dark-gray-input)",
"dark-gray-400": "var(--very-light-gray)",
"white-700": "var(--white)",
},
keyframes: {
flip: {
'0%': {
transform: 'perspective(400px) rotateY(0)',
'animation-timing-function': 'ease-out',
},
'40%': {
transform: 'perspective(400px) translateZ(50px) rotateY(170deg)',
'animation-timing-function': 'ease-out',
},
'50%': {
transform: 'perspective(400px) translateZ(80px) rotateY(190deg) scale(1)',
'animation-timing-function': 'ease-in',
},
'80%': {
transform: 'perspective(400px) rotateY(360deg) scale(0.95)',
'animation-timing-function': 'ease-in',
},
'100%': {
transform: 'perspective(400px) scale(1)',
'animation-timing-function': 'ease-in',
},
},
},
},
},
plugins: [],
}