Skip to main content

Styling Approach

Horse Trust uses Tailwind CSS 4 as the primary styling solution, combined with a custom equestrian-themed design system. All styles are utility-first with custom CSS variables for brand consistency.

Tailwind CSS Configuration

Installation

package.json

Global Styles

Location: app/globals.css
app/globals.css

Custom Color Palette

Brand Colors

The Horse Trust design system uses an equestrian-inspired color palette:

Using Custom Colors

Tailwind automatically generates utility classes from CSS variables:

Typography System

Font Families

Two Google Fonts are loaded for typography hierarchy: 1. Public Sans (Sans-serif) - Body text and UI elements 2. Playfair Display (Serif) - Headings and luxury accents

Font Configuration

Typography Classes

Typography Examples

Heading Example
Body Text Example
Small Caps Label

Theme Configuration

Root CSS Variables

Dark Mode Support

Tailwind’s dark mode is configured for automatic theme switching:

Custom CSS Classes

Hero Gradient

Usage:

Luxury Card Hover

Usage:

Scrollbar Styling

Custom scrollbar for both light and dark themes:
app/globals.css

Component Styling Patterns

Button Styles

Card Styles

Input Styles

Badge Styles

Responsive Design

Breakpoints

Tailwind’s default breakpoints:

Responsive Examples

Layout Utilities

Container

Flexbox

Grid

Animation & Transitions

Transition Classes

Backdrop Effects

Best Practices

1. Use Semantic Color Names

2. Leverage Tailwind’s Utility Classes

3. Use Responsive Prefixes

4. Group Hover Effects

5. Consistent Spacing

Use Tailwind’s spacing scale (4px increments):

Design Tokens Reference

Spacing Scale

  • p-2 → 8px
  • p-4 → 16px
  • p-6 → 24px
  • p-8 → 32px
  • p-12 → 48px

Border Radius

  • rounded → 4px
  • rounded-lg → 8px
  • rounded-xl → 12px
  • rounded-2xl → 16px
  • rounded-full → 9999px

Shadow Scale

  • shadow-sm → Subtle shadow
  • shadow → Standard shadow
  • shadow-md → Medium shadow
  • shadow-lg → Large shadow
  • shadow-xl → Extra large shadow
  • shadow-2xl → Dramatic shadow