/** @type {import('tailwindcss').Config} */ export default { content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"], future: { hoverOnlyWhenSupported: true, }, plugins: [require("@tailwindcss/typography")], theme: { extend: { fontFamily: { JetBrainsMono: ['JetBrainsMono'], }, colors: { lightModeBackground: "rgb(var(--light-mode-background) / )", lightModeForeground: "rgb(var(--light-mode-foreground) / )", lightModeForegroundMuted: "rgb(var(--light-mode-foreground-muted) / )", lightModeIconLinkOutline: "rgb(var(--light-mode-icon-link-outline) / )", lightModeIconLinkBackground: "rgb(var(--light-mode-icon-link-background) / )", lightModeIconLinkText: "rgb(var(--light-mode-icon-link-text) / )", lightModeIconLinkOutlineHover: "rgb(var(--light-mode-icon-link-outline-hover) / )", lightModeIconLinkBackgroundHover: "rgb(var(--light-mode-icon-link-background-hover) / )", lightModeIconLinkTextHover: "rgb(var(--light-mode-icon-link-text-hover) / )", lightModeCustomLinkOutline: "rgb(var(--light-mode-custom-link-outline) / )", lightModeCustomLinkBackground: "rgb(var(--light-mode-custom-link-background) / )", lightModeCustomLinkText: "rgb(var(--light-mode-custom-link-text) / )", lightModeCustomLinkOutlineHover: "rgb(var(--light-mode-custom-link-outline-hover) / )", lightModeCustomLinkBackgroundHover: "rgb(var(--light-mode-custom-link-background-hover) / )", lightModeCustomLinkTextHover: "rgb(var(--light-mode-custom-link-text-hover) / )", darkModeBackground: "rgb(var(--dark-mode-background) / )", darkModeForeground: "rgb(var(--dark-mode-foreground) / )", darkModeForegroundMuted: "rgb(var(--dark-mode-foreground-muted) / )", darkModeIconLinkOutline: "rgb(var(--dark-mode-icon-link-outline) / )", darkModeIconLinkBackground: "rgb(var(--dark-mode-icon-link-background) / )", darkModeIconLinkText: "rgb(var(--dark-mode-icon-link-text) / )", darkModeIconLinkOutlineHover: "rgb(var(--dark-mode-icon-link-outline-hover) / )", darkModeIconLinkBackgroundHover: "rgb(var(--dark-mode-icon-link-background-hover) / )", darkModeIconLinkTextHover: "rgb(var(--dark-mode-icon-link-text-hover) / )", darkModeCustomLinkOutline: "rgb(var(--dark-mode-custom-link-outline) / )", darkModeCustomLinkBackground: "rgb(var(--dark-mode-custom-link-background) / )", darkModeCustomLinkText: "rgb(var(--dark-mode-custom-link-text) / )", darkModeCustomLinkOutlineHover: "rgb(var(--dark-mode-custom-link-outline-hover) / )", darkModeCustomLinkBackgroundHover: "rgb(var(--dark-mode-custom-link-background-hover) / )", darkModeCustomLinkTextHover: "rgb(var(--dark-mode-custom-link-text-hover) / )", }, }, }, };