-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
69 lines (69 loc) · 1.9 KB
/
tailwind.config.js
File metadata and controls
69 lines (69 loc) · 1.9 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ["class"],
content: [
"./pages/**/*.{ts,tsx}",
"./components/**/*.{ts,tsx}",
"./app/**/*.{ts,tsx}",
"./src/**/*.{ts,tsx}",
],
theme: {
container: {
center: true,
padding: "2rem",
screens: {
"2xl": "1400px",
},
},
extend: {
screens: {
"2sm": "740px",
// => @media (min-width: 740px) { ... }
},
colors: {
"dark-1": "#111111",
"dark-2": "#222222",
"dark-3": "#0D0D0D",
"dark-4": "#121417",
"dark-5": "#0E0C0C",
"dark-6": "#3F3F46",
"dark-7": "#1F243B",
"blue-dark-1": "#1B1B27",
"blue-dark-2": "#15192B",
"blue-dark-3": "#161622",
"blue-dark-4": "#121417",
"light-white": "#C7D8EB",
"light-white-2": "#CAD7E9",
"light-green": "#A3DE83",
"dark-green": "#08BF31",
"shadow-green": "#9B9B1F",
golden: "rgba(254, 197, 118, 0.54)",
bluen: "rgba(199, 216, 235, 0.40)",
darken: "rgba(63, 63, 70, 0.83)",
darkentwo: "rgba(183, 183, 151, 0.58)",
},
fontFamily: {
sans: ["Mirza", "cursive"],
lato: ["Lato", "sans-serif"],
tajwal: ["Tajawal", "sans-serif"],
italiano: ["Italianno", "cursive"],
tapestry: ["Tapestry", "cursive"],
},
keyframes: {
"accordion-down": {
from: { height: 0 },
to: { height: "var(--radix-accordion-content-height)" },
},
"accordion-up": {
from: { height: "var(--radix-accordion-content-height)" },
to: { height: 0 },
},
},
animation: {
"accordion-down": "accordion-down 0.2s ease-out",
"accordion-up": "accordion-up 0.2s ease-out",
},
},
},
plugins: [require("tailwindcss-animate"), require("tailwind-scrollbar-hide")],
};