paper-ai-release-24-07-21/tailwind.config.js

25 lines
602 B
JavaScript
Raw Normal View History

2024-01-18 15:46:18 +08:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
2024-02-03 23:07:02 +08:00
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
2024-01-18 15:46:18 +08:00
],
theme: {
extend: {
colors: {
2024-02-03 23:07:02 +08:00
background: "hsl(var(--background))",
foreground: "hsl(var(--foreground))",
2024-01-18 15:46:18 +08:00
btn: {
2024-02-03 23:07:02 +08:00
background: "hsl(var(--btn-background))",
"background-hover": "hsl(var(--btn-background-hover))",
},
"blue-gray": {
100: "#F0F4F8", // 这里使用你选择的颜色值
2024-01-18 15:46:18 +08:00
},
2024-02-08 15:47:49 +08:00
gold: "#FFD700",
2024-01-18 15:46:18 +08:00
},
},
},
plugins: [],
2024-02-03 23:07:02 +08:00
};