rDrama/tailwind.config.js

46 lines
925 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 22:10:04 +00:00
mode: 'jit',
purge: [
2021-11-25 22:12:43 +00:00
'files/templates/**/*.html',
'files/templates/*.html'
2021-11-25 22:10:04 +00:00
],
2021-11-25 21:58:01 +00:00
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,
pink: colors.pink,
green: colors.green,
2021-11-26 02:16:47 +00:00
red: colors.red,
2021-11-25 22:03:37 +00:00
yellow: colors.amber,
2021-11-26 02:16:47 +00:00
blue: colors.sky
2021-11-25 21:58:01 +00:00
},
2021-11-30 22:55:37 +00:00
fontFamily: {
2021-11-30 23:00:06 +00:00
'heading': ['Delius Swash Caps']
2021-11-30 22:55:37 +00:00
},
2021-11-28 16:54:01 +00:00
extend: {
colors: {
gray: {
2021-11-29 06:48:07 +00:00
'100': '#f4f6f4',
'200': '#e5ebe7',
'300': '#d1dbd5',
'400': '#9bafa1',
'500': '#6a8073',
'600': '#4c6351',
'700': '#37523e',
'800': '#1f3726',
'900': '#112817'
2021-11-28 16:54:01 +00:00
},
}
},
2021-11-25 21:47:51 +00:00
},
variants: {
extend: {},
},
plugins: [],
}