You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

37 lines
955 B

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{ts,tsx}"],
theme: {
fontFamily: {
mono: [
"Cascadia Code",
"ui-monospace",
"SFMono-Regular",
"Menlo",
"Monaco",
"Consolas",
"Liberation Mono",
"Courier New",
"monospace"
]
},
colors: {
transparent: "transparent",
current: "currentColor",
backgroundPrimary: "var(--backgroundPrimary)",
backgroundSecondary: "var(--backgroundSecondary)",
accent: "var(--accent)",
button: "var(--button)",
textPrimary: "var(--textPrimary)",
textSecondary: "var(--textSecondary)",
link: "var(--link)"
},
brightness: {
hover: "var(--brighnessHover)",
press: "var(--brightnessPress)",
disabled: "var(--brightnessDisabled)"
},
extend: {}
},
plugins: [require("@tailwindcss/forms")]
};