Initial commit
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: [
|
||||
'./app/**/*.{js,ts,jsx,tsx,mdx}',
|
||||
'./components/**/*.{js,ts,jsx,tsx,mdx}',
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
accent: '#1a6b3c',
|
||||
'accent-light': '#e8f5ee',
|
||||
'accent-dark': '#134d2b',
|
||||
dark: '#111827',
|
||||
warm: '#fafaf8',
|
||||
sand: '#f5f0e8',
|
||||
muted: '#6b7280',
|
||||
},
|
||||
fontFamily: {
|
||||
sans: ['Inter', 'system-ui', 'sans-serif'],
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
};
|
||||
Reference in New Issue
Block a user