cannery/assets/tailwind.config.js

44 lines
806 B
JavaScript
Raw Permalink Normal View History

2021-03-11 21:12:55 -05:00
const colors = require('tailwindcss/colors')
module.exports = {
2022-05-06 20:31:16 -04:00
content: [
'../lib/**/*.{ex,heex,leex,eex}',
2021-03-11 21:12:55 -05:00
'./js/**/*.js'
],
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
2021-09-02 23:31:12 -04:00
primary: colors.gray,
2021-03-11 21:12:55 -05:00
black: colors.black,
white: colors.white,
2022-05-06 20:31:16 -04:00
gray: colors.neutral,
2021-03-11 21:12:55 -05:00
indigo: colors.indigo,
red: colors.rose,
2022-01-23 00:02:25 -05:00
yellow: colors.amber
2021-03-11 21:12:55 -05:00
},
extend: {
spacing: {
128: '32rem',
192: '48rem',
256: '64rem'
},
minWidth: {
4: '1rem',
8: '2rem',
12: '3rem',
16: '4rem',
20: '8rem'
},
maxWidth: {
4: '1rem',
8: '2rem',
12: '3rem',
16: '4rem',
20: '8rem'
}
}
2021-03-11 21:12:55 -05:00
},
2022-01-23 00:02:25 -05:00
plugins: []
2021-03-11 21:12:55 -05:00
}