-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathtailwind.config.js
More file actions
39 lines (39 loc) · 943 Bytes
/
tailwind.config.js
File metadata and controls
39 lines (39 loc) · 943 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
34
35
36
37
38
39
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./index.tsx",
"./App.tsx",
"./components/**/*.{js,ts,jsx,tsx}",
"./services/**/*.{js,ts,jsx,tsx}",
],
darkMode: "class",
theme: {
extend: {
colors: {
primary: "#607AFB",
"background-light": "#f5f6f8",
"background-dark": "#0f1323",
"text-light": "#1e293b",
"text-dark": "#e2e8f0",
"subtle-light": "#64748b",
"subtle-dark": "#94a3b8",
"border-light": "#e2e8f0",
"border-dark": "#334155",
"surface-light": "#ffffff",
"surface-dark": "#1e293b"
},
fontFamily: {
display: "Inter, sans-serif",
mono: "'Fira Code', 'JetBrains Mono', monospace",
},
borderRadius: {
DEFAULT: "0.25rem",
lg: "0.5rem",
xl: "0.75rem",
full: "9999px"
}
}
},
plugins: [],
}