-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
68 lines (64 loc) · 1.88 KB
/
tailwind.config.js
File metadata and controls
68 lines (64 loc) · 1.88 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
57
58
59
60
61
62
63
64
65
66
67
68
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'primary-dark': '#050423',
'primary-light': '#EAE4DE',
'accent-purple': '#281362',
'accent-blue': '#0F8EAE',
'accent-green': '#78C162',
'accent-yellow': '#FCBA2A',
'accent-pink': '#C73484',
'gradient-top': '#151A3C',
'gradient-bottom': '#3746A2',
'font-light-blue': '#82CCFA',
'font-sky-blue': '#3ABDDE',
'font-dark-blue': '#82A8FA',
'font-cyan': '#65E6DB',
'font-green': '#8AFA82',
'font-orange': '#FAD082',
'font-peach': '#FA9E82',
'font-pink': '#FA8282',
'font-purple': '#C3D6FF'
},
dropShadow: {
'sponsor-logo': '0 2px 5px #EAE4DE'
},
boxShadow: {
'sponsor-box': '0 2px 8px #EAE4DECF'
},
textShadow: {
'primary-dark': '0 2px 4px #050423',
'primary-light': '0 2px 4px #EAE4DE',
'accent-purple': '0 2px 4px #281362',
'accent-blue': '0 2px 4px #0F8EAE',
'accent-green': '0 2px 4px #78C162',
'accent-yellow': '0 2px 4px #FCBA2A',
'accent-pink': '0 2px 4px #C73484',
'gradient-top': '0 2px 4px #151A3C',
'gradient-bottom': '0 2px 4px #3746A2',
'font-light-blue': '0 2px 4px #82CCFA',
'font-dark-blue': '0 2px 4px #82A8FA',
'font-cyan': '0 2px 4px #65E6DB',
'font-green': '0 2px 4px #8AFAA6',
'font-orange': '0 2px 4px #FAD082',
'font-peach': '0 2px 4px #FA9E82',
'font-pink': '0 2px 4px #FA8282',
'font-purple': '0 2px 4px #C3D6FF'
},
screens: {
"xs": "350px",
"sm": "600px",
"md": "1024px",
},
},
},
plugins: [
require('tailwindcss-textshadow'),
],
}