add day15

This commit is contained in:
Zoe
2022-10-07 18:21:08 -05:00
parent f3718a1229
commit b37cfee924
29 changed files with 6367 additions and 0 deletions

17
day15/tailwind.config.cjs Normal file
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: [],
}