import forms from "npm:@tailwindcss/forms"; import typography from "npm:@tailwindcss/typography"; export default { theme: { extend: { fontFamily: { sans: ["Schibsted Grotesk", "Iosevka Aile Iaso", "sans-serif"], mono: ["Iosevka Curly Iaso", "monospace"], serif: ["Podkova", "Iosevka Etoile Iaso", "serif"], aile: ["Iosevka Aile Iaso", "Inter"], startup: ["sans-serif"], }, colors: { bg: { hard: "#f9f5d7", soft: "#f2e5bc", 0: "#fbf1c7", 1: "#ebdbb2", 2: "#d5c4a1", 3: "#bdae93", 4: "#a89984", }, bgDark: { hard: "#1d2021", soft: "#32302f", 0: "#282828", 1: "#3c3836", 2: "#504945", 3: "#665c54", 4: "#7c6f64", }, fg: { 0: "#282828", 1: "#3c3836", 2: "#504945", 3: "#665c54", 4: "#7c6f64", }, fgDark: { 0: "#fbf1c7", 1: "#ebdbb2", 2: "#d5c4a1", 3: "#bdae93", 4: "#a89984", }, red: { dark: "#9d0006", light: "#cc241d", }, redDark: { dark: "#cc241d", light: "#fb4934", }, green: { light: "#98971a", dark: "#79740e", }, greenDark: { dark: "#98971a", light: "#b8bb26", }, yellow: { light: "#d79921", dark: "#b57614", }, yellowDark: { light: "#d79921", dark: "#fabd2f", }, blue: { light: "#458588", dark: "#076678", }, blueDark: { dark: "#458588", light: "#83a598", }, purple: { light: "#b16286", dark: "#8f3f71", }, purpleDark: { dark: "#b16286", light: "#d3869b", }, aqua: { light: "#689d6a", dark: "#427b58", }, aquaDark: { dark: "#689d6a", light: "#8ec07c", }, orange: { light: "#d65d0e", dark: "#af3a03", }, orangeDark: { dark: "#d65d0e", light: "#fe8019", }, gray: { light: "#928374", dark: "#7c6f64", }, grayDark: { dark: "#928374", light: "#a89984", }, link: { light: { normal: "#b80050", hoverBg: "#9e0045", hover: "#fdf4c1", visited: "#53493c", visitedHover: "#fff", visitedHoverBg: "#282828", }, dark: { normal: "#ffa8ce", hoverBg: "#b3004d", hover: "#fff", visited: "#c1b7a9", visitedHover: "#fdf4c1", visitedHoverBg: "#282828", } } } }, }, plugins: [forms, typography], };