forked from team-acode/sniff-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
43 lines (42 loc) · 987 Bytes
/
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
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
acodeblack: '#1C1818',
acodewhite: '#ffffff',
acodered: '#FF2D60',
acodegray: {
50: '#f7f7f7',
100: '#ecebea',
200: '#d9d8d7',
300: '#c0bebb',
400: '#a6a49f',
500: '#989592',
600: '#85827f',
700: '#676461',
800: '#413f3d',
900: '#292323',
},
acodepoint: '#e31243',
acodeerror: '#ff114a',
},
keyframes: {
vibration: {
from: { transform: 'rotate(1deg)' },
to: { transform: 'rotate(-1deg)' },
},
},
animation: {
vibration: 'vibration 0.1s ease-in-out',
},
},
},
plugins: [],
};
export default config;