17 lines
393 B
JavaScript
17 lines
393 B
JavaScript
/** @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: [],
|
|
}
|