rDrama/tailwind.config.js

30 lines
603 B
JavaScript
Raw Normal View History

2021-11-25 21:58:01 +00:00
const colors = require('tailwindcss/colors')
2021-11-25 21:47:51 +00:00
module.exports = {
2021-11-25 21:58:01 +00:00
//mode: 'jit',
//purge: [
// '../../templates/**/*.html',
// '../../templates/*.html'
//],*/
darkMode: 'class', // or 'media' or 'class'
2021-11-25 21:47:51 +00:00
theme: {
2021-11-25 21:58:01 +00:00
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.gray,
pink: colors.pink,
green: colors.green,
red: colors.rose,
2021-11-25 22:03:37 +00:00
yellow: colors.amber,
blue: colors.blue
2021-11-25 21:58:01 +00:00
},
2021-11-25 21:47:51 +00:00
extend: {},
},
variants: {
extend: {},
},
plugins: [],
}