drfeely.com/tailwind.config.js

36 lines
782 B
JavaScript
Raw Normal View History

2023-07-23 18:31:41 +00:00
const colors = require("tailwindcss/colors");
2023-07-23 14:44:58 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
2023-07-23 18:31:41 +00:00
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
2023-07-23 14:44:58 +00:00
],
theme: {
extend: {
2023-07-23 18:31:41 +00:00
colors: {
primary: {
500: "#202948",
300: "#8097B8",
100: "#F2F8FF",
},
secondary: {
500: "#CCA93F",
300: "#C4B074",
},
tertiary: {
400: colors.stone[400],
300: colors.stone[300],
},
},
fontFamily: {
abel: ["Abel", "sans-serif"],
cormorant: ["Cormorant", "serif"],
frankRuhl: ["Frank Ruhl Libre", "serif"],
2023-07-23 14:44:58 +00:00
},
},
},
plugins: [],
2023-07-23 18:31:41 +00:00
};