| import type { Config } from "tailwindcss"; | |
| const config: Config = { | |
| content: ["./app/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"], | |
| theme: { | |
| extend: { | |
| colors: { | |
| navy: "#0b1420", | |
| cyan: "#22d3ee", | |
| sky: "#38bdf8", | |
| surface: "#112530", | |
| }, | |
| }, | |
| }, | |
| plugins: [], | |
| }; | |
| export default config; | |