Initial import of AbelBirdNest Stock

This commit is contained in:
2026-05-16 18:25:51 +07:00
commit 14bb9bf744
472 changed files with 70671 additions and 0 deletions

23
tailwind.config.ts Normal file
View File

@ -0,0 +1,23 @@
import type { Config } from "tailwindcss";
const config: Config = {
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
extend: {
colors: {
ink: "rgb(var(--color-ink) / <alpha-value>)",
canvas: "rgb(var(--color-canvas) / <alpha-value>)",
sand: "rgb(var(--color-sand) / <alpha-value>)",
moss: "rgb(var(--color-moss) / <alpha-value>)",
ember: "rgb(var(--color-ember) / <alpha-value>)",
line: "rgb(var(--color-line) / <alpha-value>)"
},
boxShadow: {
panel: "0 2px 4px rgba(0, 0, 0, 0.05)"
}
}
},
plugins: []
};
export default config;