mirror of
https://github.com/infinilabs/coco-app.git
synced 2025-12-15 19:17:42 +01:00
31 lines
878 B
JavaScript
31 lines
878 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./index.html", "./src/**/*.{html,js,jsx,ts,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
backgroundColor: {
|
|
primary: "rgb(var(--color-primary) / <alpha-value>)",
|
|
secondary: "rgb(var(--color-secondary) / <alpha-value>)",
|
|
background: "rgb(var(--color-background) / <alpha-value>)",
|
|
foreground: "rgb(var(--color-foreground) / <alpha-value>)",
|
|
separator: "rgb(var(--color-separator) / <alpha-value>)",
|
|
},
|
|
textColor: {
|
|
primary: "rgb(var(--color-foreground) / <alpha-value>)",
|
|
},
|
|
animation: {
|
|
"fade-in": "fade-in 0.2s ease-in-out",
|
|
},
|
|
keyframes: {
|
|
"fade-in": {
|
|
"0%": { opacity: "0" },
|
|
"100%": { opacity: "1" },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
mode: "jit",
|
|
darkMode: "class",
|
|
};
|