Files
extension/extension/tailwind.config.js
Timothy J. Baek 86d45a9f7e init
2024-05-22 21:11:01 -07:00

26 lines
581 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
gray: {
50: "#f9f9f9",
100: "#ececec",
200: "#e3e3e3",
300: "#cdcdcd",
400: "#b4b4b4",
500: "#9b9b9b",
600: "#676767",
700: "#4e4e4e",
800: "#333",
850: "#262626",
900: "var(--color-gray-900, #171717)",
950: "var(--color-gray-950, #0d0d0d)",
},
},
},
},
plugins: [],
};