-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
56 lines (55 loc) · 1.28 KB
/
tailwind.config.ts
File metadata and controls
56 lines (55 loc) · 1.28 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
size: {
'128': '30rem',
},
fontFamily: {
'overpass': 'Overpass, sans-serif'
},
colors: {
'highlight-green': '#3CCCCB',
'en-orange': '#ED8A01',
'en-red': '#9B2226',
'en-blue': '#0F49A0',
'en-pink': '#C042A9',
'en-green': '#218281',
},
keyframes: {
slidein: {
from: {
opacity: '0',
transform: 'translateY(-10px)',
},
to: {
opacity: '1',
transform: 'translateY(0)',
},
},
},
animation: {
slidein300: 'slidein 1s ease 300ms forwards',
slidein500: 'slidein 1s ease 500ms forwards',
slidein700: 'slidein 1s ease 700ms forwards',
},
padding: {
'small-screen': '4.5rem',
'medium-screen': '9rem',
'large-screen': '8rem',
},
margin: {
'stack-sm': '2.5rem',
'stack-md': '5rem',
'stack-lg': '10rem',
},
},
},
plugins: [],
};
export default config;