tailwind.config.cjs 601 B

1234567891011121314151617181920212223242526272829303132
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: ['./index.html', './src/**/*.{vue,js}'],
  4. theme: {
  5. extend: {
  6. colors: {
  7. gray: {
  8. 0: '#000',
  9. 1: '#111',
  10. 2: '#222',
  11. 3: '#333',
  12. 4: '#444',
  13. 5: '#555',
  14. 6: '#666',
  15. 7: '#777',
  16. 8: '#888',
  17. 9: '#999',
  18. a: '#aaa',
  19. b: '#bbb',
  20. c: '#ccc',
  21. d: '#ddd',
  22. e: '#eee',
  23. f: '#fff',
  24. },
  25. },
  26. },
  27. },
  28. plugins: [],
  29. corePlugins: {
  30. preflight: false,
  31. },
  32. }