add day14

This commit is contained in:
Zoe
2022-10-06 21:37:51 -05:00
parent 6855cb94f3
commit f3718a1229
32 changed files with 6369 additions and 56 deletions

17
day14/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: [],
}