Migrate to official Astro Tailwind integration for robust styling
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
emerald: {
|
||||
950: '#022c22',
|
||||
900: '#064e3b',
|
||||
800: '#065f46',
|
||||
},
|
||||
amber: {
|
||||
400: '#fbbf24',
|
||||
500: '#f59e0b',
|
||||
600: '#d97706',
|
||||
},
|
||||
stone: {
|
||||
950: '#0c0a09',
|
||||
900: '#1c1917',
|
||||
800: '#292524',
|
||||
}
|
||||
},
|
||||
fontFamily: {
|
||||
luxury: ['Cinzel', 'serif'],
|
||||
sans: ['Plus Jakarta Sans', 'sans-serif'],
|
||||
}
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
Reference in New Issue
Block a user