82 lines
2.6 KiB
JavaScript
82 lines
2.6 KiB
JavaScript
const { hairlineWidth } = require("nativewind/theme");
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: "class",
|
|
content: [
|
|
"./App.tsx",
|
|
"./index.ts",
|
|
"./components/**/*.{js,jsx,ts,tsx}",
|
|
"./app/**/*.{js,jsx,ts,tsx}",
|
|
],
|
|
presets: [require("nativewind/preset")],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['DMSans-Regular', 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'sans-serif'],
|
|
},
|
|
colors: {
|
|
border: "rgba(var(--border), <alpha-value>)",
|
|
input: "rgba(var(--input), <alpha-value>)",
|
|
ring: "rgba(var(--ring), <alpha-value>)",
|
|
background: "rgba(var(--background), <alpha-value>)",
|
|
foreground: "rgba(var(--foreground), <alpha-value>)",
|
|
primary: {
|
|
DEFAULT: "rgba(var(--primary), <alpha-value>)",
|
|
foreground: "rgba(var(--primary-foreground), <alpha-value>)",
|
|
},
|
|
secondary: {
|
|
DEFAULT: "rgba(var(--secondary), <alpha-value>)",
|
|
foreground: "rgba(var(--secondary-foreground), <alpha-value>)",
|
|
},
|
|
destructive: {
|
|
DEFAULT: "rgba(var(--destructive), <alpha-value>)",
|
|
foreground: "rgba(var(--destructive-foreground), <alpha-value>)",
|
|
},
|
|
muted: {
|
|
DEFAULT: "rgba(var(--muted), <alpha-value>)",
|
|
foreground: "rgba(var(--muted-foreground), <alpha-value>)",
|
|
},
|
|
accent: {
|
|
DEFAULT: "rgba(var(--accent), <alpha-value>)",
|
|
foreground: "rgba(var(--accent-foreground), <alpha-value>)",
|
|
},
|
|
popover: {
|
|
DEFAULT: "rgba(var(--popover), <alpha-value>)",
|
|
foreground: "rgba(var(--popover-foreground), <alpha-value>)",
|
|
},
|
|
card: {
|
|
DEFAULT: "rgba(var(--card), <alpha-value>)",
|
|
foreground: "rgba(var(--card-foreground), <alpha-value>)",
|
|
},
|
|
},
|
|
borderRadius: {
|
|
lg: "var(--radius)",
|
|
md: "calc(var(--radius) - 2px)",
|
|
sm: "calc(var(--radius) - 4px)",
|
|
},
|
|
borderWidth: {
|
|
hairline: hairlineWidth(),
|
|
},
|
|
keyframes: {
|
|
"accordion-down": {
|
|
from: { height: "0" },
|
|
to: { height: "var(--radix-accordion-content-height)" },
|
|
},
|
|
"accordion-up": {
|
|
from: { height: "var(--radix-accordion-content-height)" },
|
|
to: { height: "0" },
|
|
},
|
|
},
|
|
animation: {
|
|
"accordion-down": "accordion-down 0.2s ease-out",
|
|
"accordion-up": "accordion-up 0.2s ease-out",
|
|
},
|
|
},
|
|
},
|
|
future: {
|
|
hoverOnlyWhenSupported: true,
|
|
},
|
|
plugins: [require("tailwindcss-animate")],
|
|
};
|