This commit is contained in:
Zoe
2022-10-05 19:15:55 -05:00
parent cf198b63a5
commit 8ceabc3a2f
26 changed files with 5426 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
module.exports = {
content: [
"./index.html",
"./src/**/*.{devto,js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
gray: colors.zinc
}
},
},
plugins: [],
}