-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
74 lines (70 loc) · 1.6 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
// Or if using `src` directory:
"./src/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
red: {
default: "#981E14",
},
pink: {
default: "#ff4757",
},
yellow: {
default: "#F5C343",
darker: "#9B9B9B",
},
black: {
default: "#1E1E1E",
dark: "#000000",
},
blue: {
light: "#30b3ec",
default: "#1E90FF",
dark: "#13395B",
darker: "#0E304F",
darkest: "#092D4D",
},
gray: {
darker: "#202124",
default: "#2F3542",
light: "#F1F2F6",
lighter: "#CED6E0",
},
},
screens: {
phone: "480px",
tablet: "640px",
// => @media (min-width: 640px) { ... }
laptop: "1024px",
// => @media (min-width: 1024px) { ... }
desktop: "1200px",
// => @media (min-width: 1280px) { ... }
},
keyframes: {
gradientshift: {
"0%, 100%": { size: "100%" },
"50%": { size: "120%" },
},
},
animation: {
gradientshift: "gradientshift 3s ease-in-out infinite",
},
},
},
safelist: [
"bg-pink-default",
"bg-blue-default",
"bg-gray-default",
"px-8",
"px-12",
"text-3xl",
],
plugins: [require("@codaworks/react-glow/tailwind")],
};