This repository has been archived by the owner on Apr 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
67 lines (67 loc) · 1.68 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
safelist: [
"bg-hack-gray",
"bg-hack-gray-stroke",
"border-hack-gray-stroke",
"text-hack-gray-text",
"stroke-hack-gray-stroke",
"bg-hack-yellow",
"bg-hack-yellow-stroke",
"border-hack-yellow-stroke",
"text-hack-yellow-text",
"stroke-hack-yellow-stroke",
"bg-hack-blue",
"bg-hack-blue-stroke",
"border-hack-blue-stroke",
"text-hack-blue-text",
"stroke-hack-blue-stroke",
"bg-hack-green",
"bg-hack-green-stroke",
"border-hack-green-stroke",
"text-hack-green-text",
"stroke-hack-green-stroke",
],
theme: {
extend: {
fontFamily: {
"poppins": ["Poppins", "Propmt", "sans-serif"],
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
colors: {
primary: { DEFAULT: "#2A2D48" },
secondary: "#f7f7f8",
"hack-gray": {
DEFAULT: "#D8D8FF",
stroke: "#D8D8FF",
text: "#2A2D48",
},
"hack-yellow": {
DEFAULT: "#FFD541",
stroke: "#EB9C03",
text: "#EB9C03",
},
"hack-blue": {
DEFAULT: "#35A1EF",
stroke: "#0C5A93",
text: "#0C5A93",
},
"hack-green": {
DEFAULT: "#A2FF6A",
stroke: "#4B991C",
text: "#4B991C",
},
},
},
},
plugins: [],
};