Skip to content
Snippets Groups Projects
tailwind.config.js 437 B
Newer Older
  • Learn to ignore specific revisions
  • /* eslint-disable */
    
    module.exports = {
      content: ["./src/**/*.md"],
      theme: {
        extend: {
          colors: {
            pine: {
              50: "#F2FAF9",
              100: "#E7F9E4",
              200: "#bfe4e1",
              300: "#99d4cf",
              400: "#4db4aa",
              500: "#009486",
              600: "#008579",
              700: "#006D60",
              800: "#00564A",
              900: "#003D0B",
            },
          },
        },
      },
      plugins: [],
    };