-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.js
More file actions
125 lines (124 loc) · 2.46 KB
/
Copy pathtailwind.config.js
File metadata and controls
125 lines (124 loc) · 2.46 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
const { fontFamily } = require("tailwindcss/defaultTheme");
module.exports = {
// darkMode: "class",
content: [
"./pages/**/*.{js,jsx}",
"./components/**/*.{js,jsx}",
"./constants/**/*.{js,jsx}",
"./_projects/**/*.mdx",
"./_posts/**/*.mdx"
],
theme: {
extend: {
colors: {
azure: {
"50": "#E5F2FF",
"100": "#CCE5FF",
"200": "#99CBFF",
"300": "#66B0FF",
"400": "#3396FF",
"500": "#007CFF",
"600": "#0063CC",
"700": "#004A99",
"800": "#003266",
"900": "#001933"
},
flesh: {
"50": "#FFFFFF",
"100": "#FFFFFF",
"200": "#FFFFFF",
"300": "#FED6D6",
"400": "#FEA5A3",
"500": "#FD7471",
"600": "#FC433F",
"700": "#FC120C",
"800": "#D20703",
"900": "#A00602"
},
hulk: {
"50": "#E3F9F0",
"100": "#CEF4E5",
"200": "#A4EBCF",
"300": "#7BE1B9",
"400": "#51D8A2",
"500": "#2DC98B",
"600": "#249F6E",
"700": "#1A7651",
"800": "#114C35",
"900": "#082218"
},
mango: {
"50": "#FFFFFF",
"100": "#FFFFFF",
"200": "#FEF8E6",
"300": "#FDE9B4",
"400": "#FBDB83",
"500": "#FACD51",
"600": "#F9BF1F",
"700": "#DFA506",
"800": "#AD8005",
"900": "#7B5C04"
},
eggshell: {
50: "#ffffff",
100: "#ffffff",
200: "#ffffff",
300: "#fffffc",
400: "#fcf8f2",
500: "#f2eee8",
600: "#e8e4de",
700: "#dedad4",
800: "#d4d0ca",
900: "#cac6c0"
}
},
fontFamily: {
plex: ["IBM Plex Sans", ...fontFamily.sans]
},
animation: {
'float': 'float 6s ease-in-out infinite',
'gradient-x': 'gradient-x 3s ease infinite',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-20px)' },
},
'gradient-x': {
'0%, 100%': {
'background-size': '200% 200%',
'background-position': 'left center'
},
'50%': {
'background-size': '200% 200%',
'background-position': 'right center'
},
}
},
typography: (theme) => ({
DEFAULT: {
css: {
color: theme("colors.zinc.700"),
a: {
color: theme("colors.azure.500"),
}
}
},
dark: {
css: {
color: theme("colors.zinc.200"),
a: {
color: theme("colors.mango.500"),
},
code: {
color: theme("colors.zinc.100"),
}
}
}
})
},
},
plugins: [
require("@tailwindcss/typography")
],
}