24 lines
498 B
JavaScript
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: [],
|
|
}
|