tailwindcss

This commit is contained in:
2022-12-17 19:22:23 -06:00
parent 8b06077359
commit 7341869d9c
10 changed files with 204 additions and 208 deletions

23
tailwind.config.js Normal file
View File

@@ -0,0 +1,23 @@
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
module.exports = {
content: ["./src/**/*.{ts,tsx,scss,html}"],
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.slate,
red: colors.red,
blue: colors.blue,
},
extend: {
boxShadow: {
'glow': '0 0 20px -10px rgba(0,0,0,.5)',
}
}
},
plugins: [],
}