Files
discord-retokenizer-web/tailwind.config.js
2022-12-17 19:22:23 -06:00

24 lines
498 B
JavaScript

/** @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: [],
}