Initial MVP for QA asset backend

This commit is contained in:
2026-07-05 17:44:15 +08:00
commit 95b5e09fd4
71 changed files with 6546 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./lib/**/*.{js,ts,jsx,tsx,mdx}"
],
theme: {
extend: {
colors: {
ink: "#1f2933",
line: "#d8dee6",
panel: "#f8fafc",
jade: "#0f766e",
coral: "#c2410c"
}
}
},
plugins: []
};
export default config;