File size: 355 Bytes
b8e6434
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;