-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (41 loc) · 1.01 KB
/
Copy pathtailwind.config.js
File metadata and controls
41 lines (41 loc) · 1.01 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
37
38
39
40
41
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
'orange': '#feb931',
'gray': '#9f9e9d',
'white': '#fff',
'linkBlue': '#71a5ea',
'textGray': '#797979',
'darkGray': '#1a1a1a',
'lightGray': '#222222',
'red': '#ff0000',
},
backgroundColor: {
'gray-background': '#191919',
'black': '#000',
},
backgroundImage: {
'parallax-image': "url('/assets/bg_1.png')",
},
animation: {
slideup: 'slideup 1s ease-in-out',
},
keyframes: {
slideup: {
from: { opacity: 0, transform: 'translateY(25%)' },
to: { opacity: 1, transform: 'none' },
},
wave: {
'0%': { transform: 'scale(0)' },
'50%': { transform: 'scale(1)' },
'100%': { transform: 'scale(0)' },
},
},
},
},
variants: {},
plugins: [],
};