forked from ujen5173/hash
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
33 lines (31 loc) · 776 Bytes
/
tailwind.config.ts
File metadata and controls
33 lines (31 loc) · 776 Bytes
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
/** @type {import('tailwindcss').Config} */
import { type Config } from "tailwindcss";
export default {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
darkMode: "class",
theme: {
extend: {
screens: {
xs: "500px",
},
colors: {
primary: "#0f172a",
"light-bg": "#f8fafc",
"primary-light": "#1e293b",
green: "#22C55E",
secondary: "#2563eb",
yellow: "#facc15",
border: "#2c3646",
"border-light": "#d4d7dacc",
"text-primary": "#94a3b8",
"text-secondary": "#e2e8f0",
red: "#dc2626",
twitterColor: "#1da1f2",
linkedinColor: "#0077b5",
instaColor: "#e1306c",
discordColor: "#7289da",
},
},
},
plugins: [],
} as Config;