Initial commit

This commit is contained in:
2024-02-23 09:56:02 +00:00
commit d37de6d304
73 changed files with 10954 additions and 0 deletions

27
tailwind.config.cjs Normal file
View File

@ -0,0 +1,27 @@
const defaultTheme = require('tailwindcss/defaultTheme')
const colors = require('tailwindcss/colors')
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
fontFamily: {
// add your default font below
'sans': ['Font Name', ...defaultTheme.fontFamily.sans]
},
extend: {
colors: {
// primary color used by the projet, easily swappable
primary: colors.amber
},
container: {
// default the container to center the content
center: true,
padding: {
// add a default padding to the container
DEFAULT: '1rem'
}
},
},
}
}