41 lines
1.0 KiB
JavaScript
41 lines
1.0 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./index.html", "./src/**/*.{vue,js,ts}"],
|
|
darkMode: "class",
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
50: "#ecfeff",
|
|
100: "#cffafe",
|
|
200: "#a5f3fc",
|
|
300: "#67e8f9",
|
|
400: "#22d3ee",
|
|
500: "#06b6d4",
|
|
600: "#0891b2",
|
|
700: "#0e7490",
|
|
800: "#155e75",
|
|
900: "#164e63"
|
|
},
|
|
lab: {
|
|
ink: "#111827",
|
|
panel: "#f8fafc",
|
|
line: "#d9e2ec",
|
|
live: "#16a34a",
|
|
blocked: "#dc2626",
|
|
source: "#2563eb",
|
|
dry: "#7c3aed"
|
|
}
|
|
},
|
|
boxShadow: {
|
|
card: "0 1px 2px rgba(15, 23, 42, 0.08), 0 8px 24px rgba(15, 23, 42, 0.06)"
|
|
},
|
|
fontFamily: {
|
|
sans: ["ui-sans-serif", "system-ui", "Segoe UI", "PingFang SC", "Microsoft YaHei", "sans-serif"],
|
|
mono: ["ui-monospace", "SFMono-Regular", "Menlo", "Monaco", "Consolas", "monospace"]
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
};
|