-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.ts
69 lines (68 loc) · 1.74 KB
/
tailwind.config.ts
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
59
60
61
62
63
64
65
66
67
68
69
import type { Config } from "tailwindcss";
export default {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
'primary': '#870042',
'secondary': '#ad0054',
'light': '#eeeeee',
'gray': '#4c4c4e',
'dark': '#131313',
'facebook': '#1868fc',
'instagram': '#ff0069',
'github': '#2dba4e',
'extra': '#87004280',
'nortal': '#009639',
'netgroup': '#fc3056',
},
screens: {
'xs': '480px',
sm: '640px',
md: '768px',
lg: '1146px',
xl: '1344px',
'2xl': '1536px',
},
backgroundImage: {
'epic-gradient': 'linear-gradient(90deg, rgba(75, 0, 110, 0.528) 0.07%, rgba(135, 0, 66, 0.528) 99.94%)',
},
boxShadow: {
'filled': '3px 3px 10px 0px black',
'nofill': 'inset 3px 3px 10px 0px black, 3px 3px 10px 0px black',
},
animation: {
rotate: '2s cubic-bezier(.68,-0.55,.27,1.55) infinite rotate',
etator: '2s cubic-bezier(.68,-0.55,.27,1.55) infinite etator',
bright: 'bright 1s infinite',
},
keyframes: {
rotate: {
'0%': {
transform: 'rotate(0deg)',
},
'100%': {
transform: 'rotate(360deg)',
},
},
etator: {
'0%': {
transform: 'rotate(0deg)',
},
'100%': {
transform: 'rotate(-360deg)',
},
},
bright: {
'0%, 100%': { opacity: '0.5' },
'50%': { opacity: '1' },
},
},
},
},
plugins: [],
} satisfies Config;