25 lines
473 B
JavaScript
25 lines
473 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
gray: {
|
|
900: "#0f0f0f",
|
|
800: "#1a1a1a",
|
|
700: "#2d2d2d",
|
|
600: "#404040",
|
|
500: "#525252",
|
|
400: "#737373",
|
|
300: "#a3a3a3",
|
|
200: "#d4d4d4",
|
|
100: "#e5e5e5",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|