A modern Astro template with Sentry branding and Tailwind CSS v4, designed for use with Sentry.New application builder.
- Astro v5 with modern web development
- Tailwind CSS v4 for styling with Vite plugin
- Sentry brand colors with purple and pink accent theming
- TypeScript for type safety
- Dark mode support with CSS custom properties
Use with degit to quickly scaffold a new project:
npx degit codyde/template-astro my-app
cd my-app
npm install
npm run devOr manually:
git clone https://github.com/codyde/template-astro.git
cd template-astro
npm install
npm run devOpen http://localhost:4321 to see your application.
The template uses Sentry's brand colors:
- Primary: Purple (#6C5FC7 / oklch(0.52 0.15 285))
- Accent: Pink (#E1567C / oklch(0.65 0.18 340))
- Background: Light purple tints for light mode, dark purple for dark mode
/
├── public/
│ └── favicon.svg
├── src/
│ ├── pages/
│ │ └── index.astro
│ └── styles/
│ └── global.css
├── astro.config.mjs
├── package.json
└── tsconfig.json