tailwind.config.js 418 B

123456789101112131415161718192021222324
  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. content: ['./src/**/*.{html,js,svelte,ts}'],
  4. theme: {
  5. extend: {
  6. colors: {
  7. gray: {
  8. 50: '#f7f7f8',
  9. 100: '#ececf1',
  10. 200: '#d9d9e3',
  11. 300: '#c5c5d2',
  12. 400: '#acacbe',
  13. 500: '#8e8ea0',
  14. 600: '#565869',
  15. 700: '#40414f',
  16. 800: '#343541',
  17. 900: '#202123',
  18. 950: '#050509'
  19. }
  20. }
  21. }
  22. },
  23. plugins: []
  24. };