/* vibn Design Tokens — Ink & Parchment */ /* Import this in any HTML file or reference these values */ @import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@400;500;600&display=swap'); :root { --ink: #1a1510; --ink2: #2c2c2a; --ink3: #444441; --mid: #5f5e5a; --muted: #888780; --stone: #b4b2a9; --parch: #d3d1c7; --cream: #f1efe8; --paper: #f7f4ee; --white: #fdfcfa; --border: #e8e2d9; --serif: 'Lora', Georgia, serif; --sans: 'Inter', sans-serif; } * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: var(--sans); background: var(--paper); color: var(--ink); } .f { font-family: var(--serif); } .s { font-family: var(--sans); }