This repository has been archived by the owner on May 26, 2024. It is now read-only.
forked from Jexactyl/Jexactyl
-
Notifications
You must be signed in to change notification settings - Fork 7
/
tailwind.config.js
84 lines (83 loc) · 2 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
75
76
77
78
79
80
81
82
83
84
const { cyan } = require("tailwindcss/colors");
module.exports = {
content: ["./resources/scripts/**/*.{js,ts,tsx}"],
theme: {
extend: {
backgroundImage: {
storeone:
"url('https://i.imgur.com/xBTeAWe.jpg')",
storetwo:
"url('https://i2.wp.com/ucgosu.pl/wp-content/uploads/2017/07/RAM.jpg')",
storethree:
"url('https://images.pexels.com/photos/47344/dollar-currency-money-us-dollar-47344.jpeg')",
},
colors: {
black: "#000",
primary: {
50: "#f0e6fc",
100: "#E9D8FD",
200: "#D6BCFA",
300: "#B794F4",
400: "#9F7AEA",
500: "#805AD5",
600: "#6B46C1",
700: "#553C9A",
800: "#44337A",
900: "#322659",
},
green: {
50: "#f0e6fc",
100: "#E9D8FD",
200: "#D6BCFA",
300: "#B794F4",
400: "#9F7AEA",
500: "#805AD5",
600: "#6B46C1",
700: "#553C9A",
800: "#44337A",
900: "#322659",
},
neutral: {
50: "#F7FAFC",
100: "#EDF2F7",
200: "#E2E8F0",
300: "#CBD5E0",
400: "#A0AEC0",
500: "#718096",
600: "#4A5568",
700: "#2D3748",
800: "#1A202C",
900: "#171923",
},
gray: {
50: "#F7FAFC",
100: "#EDF2F7",
200: "#E2E8F0",
300: "#CBD5E0",
400: "#A0AEC0",
500: "#718096",
600: "#4A5568",
700: "#2D3748",
800: "#1A202C",
900: "#171923",
},
cyan: cyan,
},
fontSize: {
"2xs": "0.625rem",
},
transitionDuration: {
250: "250ms",
},
borderColor: (theme) => ({
default: theme("colors.neutral.400", "currentColor"),
}),
},
},
plugins: [
require("@tailwindcss/line-clamp"),
require("@tailwindcss/forms")({
strategy: "class",
}),
],
};