Files
ssh/frontend/tailwind.config.js
T
jamie 8d8e9c052d
CI / Build and Push (push) Successful in 12s
feat: initial commit
2026-04-17 12:12:31 +01:00

25 lines
561 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
surface: {
DEFAULT: "#0f1419",
raised: "#151c24",
overlay: "#1a232e",
},
accent: {
DEFAULT: "#3d9aed",
muted: "#2a6fa3",
},
},
fontFamily: {
sans: ["IBM Plex Sans", "system-ui", "sans-serif"],
mono: ["IBM Plex Mono", "ui-monospace", "monospace"],
},
},
},
plugins: [],
};