forked from datadata-team/datadata-docs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.ts
44 lines (43 loc) · 1.24 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
export default {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
"./docs/**/*.{md,mdx,ts,tsx}",
"./api/**/*.{md,mdx,ts,tsx}",
"./blog/**/*.{md,mdx,ts,tsx}",
],
theme: {
extend: {
colors: {
// primary: "rgb(var(--color-primary) / <alpha-value>)",
// text: {
// DEFAULT: "rgb(var(--color-text) / <alpha-value>)",
// secondary: "rgb(var(--color-text-secondary) / <alpha-value>)",
// },
// border: {
// DEFAULT: "rgb(var(--color-border) / <alpha-value>)",
// default: "rgb(var(--color-border) / <alpha-value>)",
// secondary: "rgb(var(--color-border-secondary) / <alpha-value>)",
// },
// neutral: {
// "50": "#fafafa",
// "100": "#f5f5f5",
// "200": "#e5e5e5",
// "300": "#d4d4d4",
// "400": "#a3a3a3",
// "500": "#737373",
// "600": "#525252",
// "700": "#404040",
// "800": "#262626",
// "900": "#171717",
// "950": "#0a0a0a",
// },
},
},
},
darkMode: ["selector", '[data-theme="dark"]'],
corePlugins: {
preflight: false,
container: false,
},
} satisfies Config;