This repository has been archived on 2026-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
itsthevine/tailwind.config.ts
T
2025-02-08 14:24:51 -06:00

35 lines
821 B
TypeScript

import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
'bakery': {
50: '#f2f3f2',
100: '#d9dbd7',
200: '#c0c3bc',
300: '#a7aba1',
400: '#8e9386',
500: '#74796c',
600: '#5a5e54',
700: '#40433c',
800: '#272824',
900: '#0d0d0c',
},
},
fontFamily: {
'serif': ['var(--font-playfair)'],
'sans': ['var(--font-raleway)'],
'adbhashitha': ['var(--font-adbhashitha)'],
'lejour': ['var(--font-lejour)'],
},
},
},
plugins: [],
};
export default config;