Metis portal provides a user-friendly frontend for the Metis API which is written in Vue.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
294 B

4 years ago
  1. const colors = require('tailwindcss/colors')
  2. module.exports = {
  3. purge: [
  4. './src/**/*.html',
  5. './src/**/*.vue',
  6. './src/**/*.jsx',
  7. ],
  8. colors: colors,
  9. darkMode: false, // or 'media' or 'class'
  10. theme: {
  11. extend: {},
  12. },
  13. variants: {
  14. extend: {},
  15. },
  16. plugins: [],
  17. }