-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
56 lines (56 loc) · 1.31 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{ts,tsx}',
'./components/**/*.{ts,tsx}',
'./app/**/*.{ts,tsx}',
],
darkMode: ['class'],
theme: {
screens: {
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
'2xl': '1536px',
},
colors: {
'blue-line': '#3D405B',
'blue': '#31263E',
'blue-dark': '#172A47',
'blue-light': '#90E0EF',
'blue-gray': '#035E7B',
'blue-green': '#3F88C5',
'purple-dark': '#290628',
'white': '#F2F5FF',
'silver': '#C9C7C2',
'black-dark': '#0F0A0A',
'black-light': '#121619',
'orange-light': '#DD8F46',
'orange': '#F96E46',
'orange-dark': '#FF8552',
'red-light': '#E07A5F',
'red-dark': '#DA344D',
'green-light': '#85FFC7',
'green': '#BBDBB4',
'green-dark': '#81F495',
'yellow-light': '#F5FF90',
'yellow-dark': '#F2CC8F',
'yellow-orange': '#FBB13C',
'aero': '#6BBAEC',
'gray-dark': '#8e9aaf',
'gray-light': '#cbc0d3',
'gray': '#adb5bd',
'card-background': '#75D3D7',
'hero-font': '#1F7A8C'
},
extend: {
transitionDuration: {
0: '0ms',
2000: '2000ms',
4000: '4000ms',
},
},
},
plugins: [],
}