-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtailwind.config.js
74 lines (71 loc) · 1.77 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: ["./src/**/**/*.{js,ts,jsx,tsx}"],
theme: {
fontFamily: {
sans: ["Kumbh Sans", "sans-serif"],
},
extend: {
backgroundImage: {
"header-pattern": "url('/purple-mesh.jpeg')",
},
screens: {
sm: "640px",
// => @media (min-width: 640px) { ... }
md: "768px",
// => @media (min-width: 768px) { ... }
lg: "1024px",
// => @media (min-width: 1024px) { ... }
xl: "1280px",
// => @media (min-width: 1280px) { ... }
"2xl": "1336px",
"3xl": "1440px",
"4xl": "1536px",
},
colors: {
"purple-heart": {
DEFAULT: "#7B3FE4",
50: "#EAE0FB",
100: "#DDCEF8",
200: "#C5AAF3",
300: "#AC87EE",
400: "#9463E9",
500: "#7B3FE4",
600: "#5D1DCE",
700: "#47169D",
800: "#310F6C",
900: "#1A083A",
},
"blue-ribbon": {
DEFAULT: "#016EEA",
50: "#A4CEFF",
100: "#90C4FF",
200: "#67AEFE",
300: "#3E98FE",
400: "#1682FE",
500: "#016EEA",
600: "#0154B2",
700: "#01397A",
800: "#001F42",
900: "#00050B",
},
"mine-shaft": {
DEFAULT: "#242424",
50: "#808080",
100: "#767676",
200: "#616161",
300: "#4D4D4D",
400: "#383838",
500: "#242424",
600: "#080808",
700: "#000000",
800: "#000000",
900: "#000000",
},
"neutral-dark": "#19202D",
"neutral-light": "#6E8098",
},
},
},
plugins: [require("@tailwindcss/line-clamp")],
};