-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
25 lines (25 loc) · 744 Bytes
/
tailwind.config.cjs
File metadata and controls
25 lines (25 loc) · 744 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
// SPDX-License-Identifier: Apache-2.0
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{ts,tsx,js,jsx,mdx}"],
theme: {
extend: {
colors: {
bg: "var(--bg)",
fg: "var(--fg)",
muted: "var(--muted)",
border: "var(--border)",
brand: "var(--brand)",
"brand-contrast": "var(--brand-contrast)",
card: "var(--card)",
"card-fg": "var(--card-fg)",
accent: "var(--accent)",
"accent-contrast": "var(--accent-contrast)",
},
borderRadius: { xl: "var(--radius)", "2xl": "calc(var(--radius) + 6px)" },
boxShadow: { soft: "var(--shadow)" },
maxWidth: { screen: "var(--maxw)" }
},
},
plugins: [],
};