Add nature-informed counseling portfolio site

This commit is contained in:
2026-04-18 15:23:20 -04:00
commit 6a28cbdd58
59 changed files with 33409 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
/** @type {import('tailwindcss').Config} */
import { natureTheme } from './src/theme/nature'
export default {
content: ['./index.html', './src/**/*.{ts,tsx}'],
theme: {
extend: {
colors: {
emeraldSage: natureTheme.colors.emeraldSage,
parchment: natureTheme.colors.parchment,
slateSoft: natureTheme.colors.slateSoft,
},
},
},
plugins: [],
}