mirror of
https://github.com/lorsanstand/Aether.git
synced 2026-06-19 12:05:16 +03:00
31 lines
759 B
JavaScript
31 lines
759 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'bg-sand': '#F5F5F1',
|
|
'card-white': '#FFFFFF',
|
|
'accent-terracotta': '#D27D56',
|
|
'accent-olive': '#6B705C',
|
|
'text-main': '#2C2C2C',
|
|
'text-muted': '#8B8B8B',
|
|
'input-bg': '#F9F9F7',
|
|
'error-soft': '#C79A8B',
|
|
},
|
|
fontFamily: {
|
|
'lora': ['Lora', 'serif'],
|
|
'inter': ['Inter', 'sans-serif'],
|
|
},
|
|
boxShadow: {
|
|
'soft': '0 15px 45px rgba(107, 112, 92, 0.1), 0 0 0 1px rgba(107, 112, 92, 0.05)',
|
|
'logo': '0 4px 12px rgba(107, 112, 92, 0.15)',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|