starbase-81/tailwind.config.js

14 lines
228 B
JavaScript
Raw Normal View History

2023-04-19 21:40:25 +00:00
/** @type {import('tailwindcss').Config} */
export default {
2023-04-19 22:00:42 +00:00
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
bg: "#f8fafc",
border: "#336699",
},
2023-04-19 22:00:42 +00:00
},
},
plugins: [],
};