SPB Git

spb/earth-now Public License

earth-now.co — real-time planetary dashboard: live world metrics modeled, not streamed.

TypeScript 93% Shell 2.3% SQL 1.4% JavaScript 1.3% Dockerfile 1.2% CSS 0.8%
1.1 KB · 52 lines typescript
Raw Blame History
1/**2 * earth-now.co3 * Author:  Simon-Pierre Boucher4 * Contact: contact@spboucher.ai5 * File:    apps/web/tailwind.config.ts6 * Purpose: Tailwind 3.4 configuration — semantic colors bound to the theme CSS variables (light default, dark toggle)7 */89import type { Config } from "tailwindcss";1011const config: Config = {12  content: [13    "./app/**/*.{ts,tsx}",14    "./components/**/*.{ts,tsx}",15    "./lib/**/*.{ts,tsx}",16  ],17  theme: {18    extend: {19      colors: {20        page: "var(--page)",21        surface: "var(--surface)",22        ink: "var(--ink)",23        ink2: "var(--ink-2)",24        muted: "var(--muted)",25        line: "var(--line)",26        accent: "var(--accent)",27        good: "var(--good)",28        warn: "var(--warn)",29        critical: "var(--critical)",30      },31      borderColor: {32        DEFAULT: "var(--border)",33      },34      backgroundColor: {35        wash: "var(--accent-wash)",36      },37      fontFamily: {38        sans: [39          "system-ui",40          "-apple-system",41          "Segoe UI",42          "Roboto",43          "sans-serif",44        ],45      },46    },47  },48  plugins: [],49};5051export default config;52