-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (37 loc) · 866 Bytes
/
tailwind.config.js
File metadata and controls
37 lines (37 loc) · 866 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
colors: {
'bg': "#101010",
'fg': "#e8e3e3",
'al': "#181818",
'bg2': "#202020",
'hw': "#282828",
'fg2': "#e8e3e380",
'fg3': "#cccccc",
'ov': "#101010bf",
'br': '#e8e3e30f',
},
extend: {
keyframes: {
like: {
'0%': { scale: '1', opacity: '0' },
'50%': { scale: '1.25' },
'100%': { scale: '1', opacity: '1'}
},
},
animation: {
'like': 'like 400ms ease forwards',
},
backgroundImage: {
'gradient-loading': 'linear-gradient(to bottom right, #1a1a1a, #181818)',
},
},
},
plugins: [],
}