import type { Config } from "tailwindcss"; const config: Config = { content: [ "./app/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}", ], theme: { extend: { colors: { // Restrained, dashboard-style neutral palette. ink: { 950: "#0a0a0b", 900: "#0e0e10", 850: "#141417", 800: "#1b1b1f", 700: "#26262b", 600: "#3a3a42", }, }, fontFamily: { sans: [ "ui-sans-serif", "system-ui", "-apple-system", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", "sans-serif", ], mono: [ "ui-monospace", "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", "monospace", ], }, }, }, plugins: [], }; export default config;