tailwind.config.ts
1 import type { Config } from "tailwindcss"; 2 3 export default { 4 content: ["./app/**/{**,.client,.server}/**/*.{js,jsx,ts,tsx}"], 5 theme: { 6 extend: { 7 colors: { 8 // I have modified solace blue here so its not as dark as the original 9 'solace-blue': '#20344a', 10 'solace-green': '#00af83', 11 'solace-dark-green': '#068f6c', 12 'solace-light-blue': '#032034', 13 }, 14 fontFamily: { 15 sans: [ 16 "Inter", 17 "ui-sans-serif", 18 "system-ui", 19 "sans-serif", 20 "Apple Color Emoji", 21 "Segoe UI Emoji", 22 "Segoe UI Symbol", 23 "Noto Color Emoji", 24 ], 25 }, 26 }, 27 }, 28 plugins: [], 29 } satisfies Config;