main
js 14 lines 293 Bytes
Raw
1 /** @type {import('tailwindcss').Config} */
2 export default {
3 content: ["./index.html", "./src/**/*.{js,jsx,ts,tsx}"],
4 theme: {
5 extend: {
6 colors: {
7 "cut-red": "#E24C3B",
8 "cut-white": "#FBF3EF",
9 "cut-blue": "#0088E0",
10 },
11 },
12 },
13 plugins: [],
14 };