This repository was archived by the owner on Jul 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
58 lines (53 loc) · 1.44 KB
/
tailwind.config.ts
File metadata and controls
58 lines (53 loc) · 1.44 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
import type { Config } from "tailwindcss";
const config: Config = {
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
screens: {
sm: "420px",
// => @media (min-width: 420px) { ... }
md: "652px",
// => @media (min-width: 652px) { ... }
lg: "820px",
// => @media (min-width: 820px) { ... }
xl: "1322px",
// => @media (min-width: 1322px) { ... }
"2xl": "1440px",
// => @media (min-width: 1440px) { ... }
},
extend: {
colors: {
black: "#171717",
"black-dashboard": "#0C0C0C",
white: "#fff",
"gray-50": "#F6F6F6",
"gray-100": "#E5E5E5",
"gray-200": "#CBCBCB",
"gray-300": "#B2B2B2",
"gray-400": "#989898",
"gray-500": "#7F7F7F",
"gray-600": "#656363",
"gray-700": "#1F1F1F",
"primary-50": "#FFE9E7",
"primary-100": "#FFB9B3",
"primary-200": "#FF897E",
"primary-300": "#FD5849",
"primary-400": "#E42413",
"primary-500": "#B10F00",
"primary-600": "#7E0A00",
"primary-700": "#4B0600",
},
dropShadow: {
"glow-white": [
"0 0px 40px rgba(255, 255, 255, 0.25)",
"0 0px 10px rgba(255, 255,255, 0.1)",
],
"glow-red": [
"0 0px 40px rgba(177, 15, 0, 0.45)",
"0 0px 20px rgba(177, 15, 0, 0.1)",
],
},
},
},
plugins: [],
};
export default config;