UNPKG

kruk

Version:

Command Line Tool for CrUX Rest API

35 lines (34 loc) 831 B
/** @type {import('tailwindcss').Config} */ export default { darkMode: 'class', content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { colors: { moss: '#2E4036', 'moss-light': '#3A5246', clay: '#CC5833', cream: '#F2F0E9', charcoal: '#1A1A1A', 'dark-bg': '#0A0A0F', 'dark-surface': '#12121A', }, fontFamily: { sans: ['"Plus Jakarta Sans"', '"Outfit"', 'sans-serif'], serif: ['"Cormorant Garamond"', 'serif'], mono: ['"IBM Plex Mono"', 'monospace'], }, borderRadius: { '3xl': '3rem', }, animation: { 'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite', 'spin-slow': 'spin 12s linear infinite', }, }, }, plugins: [], }