61 lines
1.4 KiB
TypeScript
61 lines
1.4 KiB
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: {
|
|
taupe: {
|
|
50: '#f8f6f4',
|
|
100: '#f0ede9',
|
|
200: '#e1ddd7',
|
|
300: '#d2cdc5',
|
|
400: '#b8b0a5',
|
|
500: '#9e968a',
|
|
600: '#7a6c5d',
|
|
700: '#6b5e51',
|
|
800: '#5b4f43',
|
|
900: '#4a3b2f',
|
|
950: '#2d2218',
|
|
},
|
|
olive: {
|
|
50: '#f4f7f1',
|
|
100: '#e8f0e2',
|
|
200: '#d1e1c5',
|
|
300: '#b9d2a8',
|
|
400: '#9fb98a',
|
|
500: '#748e58',
|
|
600: '#5f7446',
|
|
700: '#4b5b38',
|
|
800: '#37432a',
|
|
900: '#242b1c',
|
|
950: '#12160d',
|
|
},
|
|
brown: {
|
|
50: '#faf8f6',
|
|
100: '#f4f0ec',
|
|
200: '#e8e0d7',
|
|
300: '#d9cfc4',
|
|
400: '#bda08d',
|
|
500: '#9e7a64',
|
|
600: '#7a5e4d',
|
|
700: '#5b4636',
|
|
800: '#4a372a',
|
|
900: '#382a1f',
|
|
950: '#261d15',
|
|
}
|
|
},
|
|
fontFamily: {
|
|
sans: ['var(--font-geist-sans)', 'sans-serif'],
|
|
mono: ['var(--font-geist-mono)', 'monospace']
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
export default config;
|