mango-v4-ui/tailwind.config.js

30 lines
599 B
JavaScript
Raw Normal View History

2022-05-03 21:20:14 -07:00
module.exports = {
content: ['./pages/**/*.tsx', './components/**/*.tsx'],
theme: {
2022-06-10 06:05:45 -07:00
fontFamily: {
display: ['Lato, sans-serif'],
body: ['Lato, sans-serif'],
},
extend: {
colors: {
transparent: 'transparent',
mango: {
100: '#efedfe',
200: '#c6c3db',
300: '#978fa4',
400: '#4b475a',
2022-06-21 03:58:57 -07:00
500: '#464063',
600: '#393450',
2022-06-10 06:05:45 -07:00
700: '#1d1832',
800: '#141026',
2022-06-21 03:58:57 -07:00
900: '#100d1e',
2022-06-10 06:05:45 -07:00
},
},
},
2022-05-03 21:20:14 -07:00
},
plugins: [
// ...
require('@tailwindcss/forms'),
],
}