Initial import of AbelBirdNest Stock
This commit is contained in:
23
tailwind.config.ts
Normal file
23
tailwind.config.ts
Normal 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;
|
||||
Reference in New Issue
Block a user