starbase-81/tailwind.config.js
Jordan Roher 71af371470 Basic things displaying
Added React Helmet
2023-04-19 15:59:25 -07:00

14 lines
228 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
bg: "#f8fafc",
border: "#336699",
},
},
},
plugins: [],
};