mirror of
https://github.com/shadcn-ui/taxonomy
synced 2026-05-23 09:18:30 +00:00
35 lines
768 B
JavaScript
35 lines
768 B
JavaScript
const { colors } = require("tailwindcss/colors")
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./app/**/*.{ts,tsx}",
|
|
"./components/**/*.{ts,tsx}",
|
|
"./ui/**/*.{ts,tsx}",
|
|
],
|
|
theme: {
|
|
container: {
|
|
center: true,
|
|
padding: "1.5rem",
|
|
},
|
|
extend: {
|
|
colors: {
|
|
...colors,
|
|
brand: {
|
|
50: "#f3f3f3",
|
|
100: "#e7e7e7",
|
|
200: "#c4c4c4",
|
|
300: "#a0a0a0",
|
|
400: "#585858",
|
|
500: "#111111",
|
|
600: "#0f0f0f",
|
|
700: "#0d0d0d",
|
|
800: "#0a0a0a",
|
|
900: "#080808",
|
|
DEFAULT: "#111111",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [require("tailwindcss-animate"), require("@tailwindcss/typography")],
|
|
}
|