jhunterdeloche.com/tailwind.config.mjs

34 lines
759 B
JavaScript
Raw Normal View History

2024-04-02 02:34:10 +00:00
const colors = require("tailwindcss/colors")
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
fontFamily: {
display: ["Old Standard TT", "serif"],
body: ["Kanit", "sans"]
},
colors: {
background: colors.amber[50],
foreground: colors.zinc[800],
fg_light: colors.zinc[600],
accent: colors.emerald[900],
},
2024-04-04 20:13:26 +00:00
screens: {
md: "850px",
},
dropShadow: {
accent: [
'0 10px 8px rgba(6, 78, 59, 0.1)',
'0 4px 3px rgba(6, 78, 59, 0.2)'
],
},
2024-04-02 02:34:10 +00:00
},
},
future: {
hoverOnlyWhenSupported: true,
},
2024-04-02 02:34:10 +00:00
plugins: [],
}