24 lines
631 B
TypeScript
24 lines
631 B
TypeScript
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;
|